commit | f4c18cc26604a725b79ca917ef8b333647003ac3 | [log] [download] |
---|---|---|
author | payonel <payonel@hotmail.com> | Sun Jul 24 08:14:18 2016 -0700 |
committer | payonel <payonel@hotmail.com> | Sun Jul 24 08:14:18 2016 -0700 |
tree | 65856e554d7e3d737435d3c14d07f74b36026bce | |
parent | 66d73375685e7e986d34d64e7e83450fd26e0751 [diff] |
small fixes for term, cp, df, mv, rm, and init make term resize event handler safer by adding it to each window. this will have the same memory cost, but is more reliable fix cp path check for copying dirs into themselves. there was a bug where /path/a_dir looked like a parent of /path/a_dir_2 cleanup df format by not adding padding on the far right side of the table make init event handler slightly more efficient by waiting specifically for the init signal, rather than a specified amount of time mv had some weird problems with missing files or empty quoted args - fix and added unit tests rm force should have no prompt and always return success
OpenComputers is a Minecraft mod that adds programmable computers and robots to the game. The built-in computer implementation uses Lua 5.2 and is fully persistent. This means programs will continue running across reloads. For more information, please see the wiki. Feel invited to visit the community forums or drop by in the IRC channel #oc on esper.net.
A few useful links:
###Experimental Builds You can find experimental builds on the build server. Expect these to be generally more unstable than builds marked as releases. Use these at your own risk, but - when using the latest one - please do report bugs you encounter using them. Thanks!
This mod is licensed under the MIT license. All assets are public domain, unless otherwise stated; all are free to be distributed as long as the license / source credits are kept. This means you can use this mod in any mod pack as you please. I'd be happy to hear about you using it, though, just out of curiosity.
###Assets and Localizations
text
or sides
) would help a lot. Thanks!###Bug fixes, features and scripts
####Pull requests The following are a few quick guidelines on pull requests. That is to say they are not necessarily rules, so there may be exceptions and all that. Just try to stick to those points as a baseline.
Also, and this should go without saying, your contributed code will also fall under OC's license, unless otherwise specified (in the super rare case of adding third-party stuff, add the according license information as a LICENSE-???
file, please).
To use the API in your own mod, either get the API JAR from the build server, or if you're using Gradle, add a dependency to the maven repo:
repositories { maven { url = "http://maven.cil.li/" } } dependencies { compile "li.cil.oc:OpenComputers:MC1.7.10-1.5.+:api" }
Adjust the version number accordingly to the version you'd like to build against.
To run the mod in your development environment, download the dev
JAR from the build server and drop it into your development environment's eclipse/mods
(Eclipse) or run/mods
(IntelliJ IDEA) folder.
Alternatively, leave out the api
classifier and you can build against the dev JAR directly. This way you don't have to add it to your mods folder, but you will have to add -Dfml.coreMods.load=li.cil.oc.common.launch.TransformerLoader
to the VM options in your run configuration.
If you have any questions, please do not hesitate to ask, either in the forums or in the IRC!
Want to tinker with the mod itself? Here is how - for IntelliJ IDEA users.
Important
Clone the repository, then in it rungradlew setupDecompWorkspace
to setup the workspace, including assets and such, thengradlew idea
to create an IntelliJ IDEA project.
Open the project and you will be asked to import the Gradle project (check your Event Log if you missed the pop-up). Do so. This will configure additionally referenced libraries.
In the case you wish to use Eclipse rather than IntelliJ IDEA, the process is mostly the same, except you must run gradlew eclipse
rather than gradlew idea
.