Difference between revisions of "Template:Changelog"
From ComputerCraft Wiki
MKlegoman357 (Talk | contribs) m (Reformatted function links) |
Bomb Bloke (Talk | contribs) |
||
Line 18: | Line 18: | ||
| | | | ||
*Fixed some bugs which were crashing the game. | *Fixed some bugs which were crashing the game. | ||
− | *[[ | + | *[[Chat]] now supports IRC commands. |
|align=center|1.6.4 | |align=center|1.6.4 | ||
|- | |- | ||
Line 31: | Line 31: | ||
*Added [[Pocket Computer]]s. | *Added [[Pocket Computer]]s. | ||
*Added a [[Multishell|multi-tasking system]] for [[Advanced Computer]]s and [[Turtle]]s. | *Added a [[Multishell|multi-tasking system]] for [[Advanced Computer]]s and [[Turtle]]s. | ||
− | *[[Turtle]]s can now [[ | + | *[[Turtle]]s can now [[Equip|swap out their tools and peripherals]] at runtime. |
*[[Turtle]]s can now carry two tools or peripherals at once in any combination. | *[[Turtle]]s can now carry two tools or peripherals at once in any combination. | ||
*[[Turtle]]s and [[Computer]]s can now be labelled using Name Tags and Anvils. | *[[Turtle]]s and [[Computer]]s can now be labelled using Name Tags and Anvils. | ||
*Added a [[ComputerCraft.cfg|configurable fuel limit]] for [[Turtle]]s. | *Added a [[ComputerCraft.cfg|configurable fuel limit]] for [[Turtle]]s. | ||
*Added hostnames, protocols and long distance routing to the [[Rednet (API)|rednet API]]. | *Added hostnames, protocols and long distance routing to the [[Rednet (API)|rednet API]]. | ||
− | *Added a peer-to-peer [[ | + | *Added a peer-to-peer [[chat]] program to demonstrate new rednet capabilities. |
− | *Added a new game, only on [[Pocket Computer]]s: “[[ | + | *Added a new game, only on [[Pocket Computer]]s: “[[falling]]” by [http://www.computercraft.info/forums2/index.php?/user/3545-gopheratl/ GopherATL]. |
*File system commands in the shell now accept wildcard arguments. | *File system commands in the shell now accept wildcard arguments. | ||
*The shell now accepts long arguments in quotes. | *The shell now accepts long arguments in quotes. | ||
*[[term.redirect|Terminal redirection]] now no longer uses a stack-based system. Instead: [[term.current]]() gets the current terminal object and [[term.redirect]]() replaces it. [[term.restore]]() has been removed. | *[[term.redirect|Terminal redirection]] now no longer uses a stack-based system. Instead: [[term.current]]() gets the current terminal object and [[term.redirect]]() replaces it. [[term.restore]]() has been removed. | ||
*Added a new [[Window (API)|Windowing API]] for addressing sub-areas of the terminal. | *Added a new [[Window (API)|Windowing API]] for addressing sub-areas of the terminal. | ||
− | *New programs: [[ | + | *New programs: [[fg]], [[bg]], [[multishell]], [[chat]], [[repeat]], [[Redstone (program)|redstone]], [[equip]], [[unequip]]. |
− | *Improved programs: [[ | + | *Improved programs: [[copy]], [[move]], [[delete]], [[rename]], [[paint]], [[CraftOS|shell]]. |
*Removed programs: redset, redprobe, redpulse. | *Removed programs: redset, redprobe, redpulse. | ||
*New [[:Category:APIs|APIs]]: [[Window (API)|window]], [[Multishell (API)|multishell]]. | *New [[:Category:APIs|APIs]]: [[Window (API)|window]], [[Multishell (API)|multishell]]. | ||
Line 129: | Line 129: | ||
*Redesigned [[Wireless Modem]]s; they can now send and receive on multiple channels, independent of the computer ID. To use these features, interface with modem peripherals [[Modem_(API)|directly]]. The [[Rednet_(API)|rednet API]] still functions as before. | *Redesigned [[Wireless Modem]]s; they can now send and receive on multiple channels, independent of the computer ID. To use these features, interface with modem peripherals [[Modem_(API)|directly]]. The [[Rednet_(API)|rednet API]] still functions as before. | ||
*[[Floppy Disk]]s can now be dyed with multiple dyes, just like armour. | *[[Floppy Disk]]s can now be dyed with multiple dyes, just like armour. | ||
− | *The [[ | + | *The [[Excavate|“excavate”]] program now retains fuel in it’s inventory, so can run unattended. |
*[[turtle.place]]() now tries all possible block orientations before failing. | *[[turtle.place]]() now tries all possible block orientations before failing. | ||
*[[turtle.refuel]](0) returns true if a fuel item is selected. | *[[turtle.refuel]](0) returns true if a fuel item is selected. | ||
Line 198: | Line 198: | ||
| | | | ||
*Fixed labelled [[Computer]]s not keeping their data when destroyed. | *Fixed labelled [[Computer]]s not keeping their data when destroyed. | ||
− | *Fixed the [[ | + | *Fixed the [[Excavate|“excavate”]] program outputting lots of spam. |
*File system size limits now take into account empty files and directories. | *File system size limits now take into account empty files and directories. | ||
*Some small changes to the Turtle Upgrade API ahead of it’s impending release. (Update: The API has now been released). | *Some small changes to the Turtle Upgrade API ahead of it’s impending release. (Update: The API has now been released). | ||
Line 223: | Line 223: | ||
*New [[Turtle_(API)|turtle API]] functions: [[turtle.compareTo]]( [slotNum] ), [[turtle.craft]](), [[turtle.attack]](), [[turtle.attackUp]](), [[turtle.attackDown]](), [[turtle.dropUp]](), [[turtle.dropDown]](), [[turtle.getFuelLevel]](), [[turtle.refuel]](). | *New [[Turtle_(API)|turtle API]] functions: [[turtle.compareTo]]( [slotNum] ), [[turtle.craft]](), [[turtle.attack]](), [[turtle.attackUp]](), [[turtle.attackDown]](), [[turtle.dropUp]](), [[turtle.dropDown]](), [[turtle.getFuelLevel]](), [[turtle.refuel]](). | ||
*New [[Disk_(API)|disk API]] function: [[disk.getID]](). | *New [[Disk_(API)|disk API]] function: [[disk.getID]](). | ||
− | *New [[Turtle]] programs: [[ | + | *New [[Turtle]] programs: [[craft]], [[refuel]]. |
− | *[[ | + | *[[Excavate|“excavate”]] program is now much smarter: will return items to a chest when full, attack mobs, and refuel itself automatically. |
*New API: [[Keys_(API)|keys]]. | *New API: [[Keys_(API)|keys]]. | ||
*Added optional [[Floppy Disk]] and Hard Drive space limits for [[Computer]]s and [[Turtle]]s. | *Added optional [[Floppy Disk]] and Hard Drive space limits for [[Computer]]s and [[Turtle]]s. | ||
Line 268: | Line 268: | ||
*[[Computer]]s and [[Turtle]]s can connect to adjacent devices and turn them on or off. | *[[Computer]]s and [[Turtle]]s can connect to adjacent devices and turn them on or off. | ||
*User programs now give line numbers in their error messages, for easier debugging. | *User programs now give line numbers in their error messages, for easier debugging. | ||
− | *New APIs and programs for [[Turtle]]s: [[Turtle_(API)|turtle]], [[ | + | *New APIs and programs for [[Turtle]]s: [[Turtle_(API)|turtle]], [[excavate]], [[tunnel]], [[go]], [[turn]] and [[dance]]. |
*Lots of additions to existing APIs and programs. Type "help whatsnew" in game for the full details. | *Lots of additions to existing APIs and programs. Type "help whatsnew" in game for the full details. | ||
|align=center|1.1 | |align=center|1.1 | ||
Line 289: | Line 289: | ||
*Added [[os.clock]](), [[os.time]]() and [[os.setAlarm]](). | *Added [[os.clock]](), [[os.time]]() and [[os.setAlarm]](). | ||
*Added game: [[Worm|"Worm!"]]. | *Added game: [[Worm|"Worm!"]]. | ||
− | *Added programs: [[ | + | *Added programs: [[alias]], [[apis]], [[copy]], [[delete]], [[dj]], [[drive]], [[eject]], [[id]], [[label]], [[list]], [[move]], [[reboot]], [[redset]], [[rename]], [[time]]. |
*Added APIs: [[Bit_(API)|bit]], [[Colours_(API)|colours]], [[Disk_(API)|disk]], [[Help_(API)|help]], [[Rednet_(API)|rednet]], [[Parallel_(API)|parallel]], [[Textutils_(API)|textutils]]. | *Added APIs: [[Bit_(API)|bit]], [[Colours_(API)|colours]], [[Disk_(API)|disk]], [[Help_(API)|help]], [[Rednet_(API)|rednet]], [[Parallel_(API)|parallel]], [[Textutils_(API)|textutils]]. | ||
*Text can be edited with left and right arrow keys. | *Text can be edited with left and right arrow keys. |
Revision as of 09:51, 17 June 2014
Version | New Features or Changes | Minecraft Version |
---|---|---|
ComputerCraft 1.63 |
|
1.6.4 |
ComputerCraft 1.62 |
|
1.6.4 |
ComputerCraft 1.61 | 1.6.4 | |
ComputerCraft 1.6 |
|
1.6.4 |
ComputerCraft 1.58 |
|
1.6.4 |
ComputerCraft 1.57 |
|
1.6.4 |
ComputerCraft 1.56 |
|
1.6.2 |
Computercraft 1.55 |
|
1.6.2 |
ComputerCraft 1.53 |
|
1.5.2 |
Computercraft 1.52 |
|
1.5.1 |
Computercraft 1.51 |
|
1.5 |
Computercraft 1.5 |
|
1.4.7 |
Computercraft 1.481 |
|
1.4.6 |
Computercraft 1.48 |
|
1.4.6 |
ComputerCraft 1.47 |
|
1.4.4 |
ComputerCraft 1.46 |
|
1.4.2 |
ComputerCraft 1.45 |
|
1.3.2 |
ComputerCraft 1.43 |
|
1.3.2 |
ComputerCraft 1.42 |
|
1.3.2 |
ComputerCraft 1.41 |
|
1.2.5 |
ComputerCraft 1.4 |
|
1.2.5 |
ComputerCraft 1.33 |
|
1.2.5 |
ComputerCraft 1.32 |
|
1.2.4 |
ComputerCraft 1.31 |
|
1.2.3 |
ComputerCraft 1.3 |
|
1.1 |
ComputerCraft 1.21 |
|
1.1 |
ComputerCraft 1.2 |
|
1.0 |
ComputerCraft 1.11 |
|
1.0 |
ComputerCraft 1.1 |
|
1.0 |
ComputerCraft 1.02 |
|
1.0 |
ComputerCraft 1.01 |
|
1.0 |
ComputerCraft 1.0 |
|
1.0 |