-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'mc-1.14.x' into mc-1.15.x
- Loading branch information
Showing
15 changed files
with
494 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/main/resources/data/computercraft/lua/rom/help/changelog.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 28 additions & 4 deletions
32
src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,31 @@ | ||
New features in CC: Tweaked 1.86.2 | ||
New features in CC: Tweaked 1.87.0 | ||
|
||
* Fix peripheral.getMethods returning an empty table | ||
* Update to Minecraft 1.15.2. This is currently alpha-quality and so is missing | ||
missing features and may be unstable. | ||
* Add documentation to many Lua functions. This is published online at https://tweaked.cc/. | ||
* Replace to pretty-printer in the Lua REPL. It now supports displaying functions and recursive tables. This printer is may be used within your own code through the `cc.pretty` module. | ||
* Add `fs.getCapacity`. A complement to `fs.getFreeSpace`, this returns the capacity of the supplied drive. | ||
* Add `fs.getAttributes`. This provides file size and type, as well as creation and modification time. | ||
* Update Cobalt version. This backports several features from Lua 5.2 and 5.3: | ||
- The `__len` metamethod may now be used by tables. | ||
- Add `\z`, hexadecimal (`\x00`) and unicode (`\u0000`) string escape codes. | ||
- Add `utf8` lib. | ||
- Mirror Lua's behaviour of tail calls more closely. Native functions are no longer tail called, and tail calls are displayed in the stack trace. | ||
- `table.unpack` now uses `__len` and `__index` metamethods. | ||
- Parser errors now include the token where the error occured. | ||
* Add `textutils.unserializeJSON`. This can be used to decode standard JSON and stringified-NBT. | ||
* The `settings` API now allows "defining" settings. This allows settings to specify a default value and description. | ||
* Enable the motd on non-pocket computers. | ||
* Allow using the menu with the mouse in edit and paint (JakobDev). | ||
* Add Danish and Korean translations (ChristianLW, mindy15963) | ||
* Fire `mouse_up` events in the monitor program. | ||
* Allow specifying a timeout to `websocket.receive`. | ||
* Increase the maximimum limit for websocket messages. | ||
* Optimise capacity checking of computer/disk folders. | ||
|
||
And several bug fixes: | ||
* Fix turtle texture being incorrectly oriented (magiczocker10). | ||
* Prevent copying folders into themselves. | ||
* Normalise file paths within shell.setDir (JakobDev) | ||
* Fix turtles treating waterlogged blocks as water. | ||
* Register an entity renderer for the turtle's fake player. | ||
|
||
Type "help changelog" to see the full version history. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,23 @@ | ||
View the source code at https://github.com/SquidDev-CC/CC-Tweaked | ||
Please report bugs at https://github.com/SquidDev-CC/CC-Tweaked. Thanks! | ||
View the documentation at https://wiki.computercraft.cc | ||
Visit the forum at https://forums.computercraft.cc | ||
Show off your programs or ask for help at our forum: https://forums.computercraft.cc | ||
You can disable these messages by running "set motd.enable false". | ||
You can create directories with "mkdir". | ||
Want to see hidden files? Run "set list.show_hidden true". | ||
Run "list" or "ls" to see all files in a directory. | ||
You can delete files and directories with "delete" or "rm". | ||
Use "pastebin put" to upload a program to pastebin. | ||
Use "pastebin get" to download a program from pastebin. | ||
Use "pastebin run" to run a program from pastebin. | ||
Use the "edit" program to create and edit your programs. | ||
You can copy files with "copy" or "cp". | ||
You can use "wget run <url>" to run a program from the internet. | ||
You can use "wget" to download a file from the internet. | ||
On an advanced computer you can use "fg" or "bg" to run multiple programs at the same time. | ||
Use "type" to see if a path is a file or a directory. | ||
Get a list of all programs with "programs". | ||
Use an advanced computer to use colours and the mouse. | ||
With a speaker you can play sounds. | ||
Use "motd" to print the Message of the Day. | ||
You can disable the startup from a computer with "set shell.allow_startup false". | ||
You can disable the startup from a disk with "set shell.allow_disk_startup false". | ||
Programs that are placed in the "startup" folder in the root of a computer are started on boot. | ||
Use a modem to connect with other computers. | ||
With the "gps" program you can get the position of a computer. | ||
Use "monitor" to run a program on a attached monitor. | ||
View all attached peripherals with "peripherals". | ||
Use "time" to see the in-game time. | ||
You can set the label of a computer with "label set". | ||
A computer needs a label to keep its files if it is destroyed. | ||
You can disable auto completion in the shell with "set shell.autocomplete false". | ||
You can disable auto completion in edit with "set edit.autocomplete false". | ||
Don't forget to label your computer with "label set". | ||
Feeling creative? Use a printer to print a book! | ||
Files beginning with a "." character are hidden from "list" by default. | ||
Files beginning with a "." are hidden from "list" by default. | ||
Running "set" lists the current values of all settings. | ||
Some programs are only available on advanced computers, turtles, pocket computers, or command computers. | ||
The "equip" and "unequip" programs let you add or remove supported upgrades from a turtle or pocket computer without crafting. | ||
You can change the color of a disk by crafting it with dye. | ||
Right-clicking a turtle with a dye changes its color. | ||
Some programs are only available on advanced computers, turtles, pocket computers or command computers. | ||
The "equip" programs let you add upgrades to a turtle without crafting. | ||
You can change the color of a disk by crafting or right clicking it with dye. | ||
You can print on a printed page again to get multiple colors. | ||
Holding the Control and T keys terminates the running program. | ||
Holding Control and S or R shuts down or reboots the computer you are using. | ||
Holding the Ctrl and T keys terminates the running program. |
Oops, something went wrong.