1. f7603f9 Create go.lua by Vexatos · 10 years ago
  2. d84a899 Fix wide char loading in TextBuffer. by Florian Nücke · 10 years ago
  3. 3ba9854 At least it's not breaking for normal stuff. by Florian Nücke · 10 years ago
  4. 022beca Little bit of refactoring, term.write is sorta kinda supporting wide chars now. by Florian Nücke · 10 years ago
  5. f348a80 Making char width checks in unicode lib available to sandbox. by Florian Nücke · 10 years ago
  6. 2bfd15a Cleaning up a bit and getting rid of an unnecessary copy step. by Florian Nücke · 10 years ago
  7. 1ef1c9c Got the basics working. by Florian Nücke · 10 years ago
  8. f522f83 Adding in @asiekierka's contributions of unifont and parser for #41. by Florian Nücke · 10 years ago
  9. e6154c6 Some preparatory changes for #41. by Florian Nücke · 10 years ago
  10. 20a7c9c Merge branch 'LuaJSucks' of https://github.com/gamax92/OpenComputers by Florian Nücke · 10 years ago
  11. bc46f8c Add more precision support to format by gamax92 · 10 years ago
  12. ed1611c Merge branch 'LuaJSucks' of https://github.com/gamax92/OpenComputers by Florian Nücke · 10 years ago
  13. b22cfc4 More formatting functionality by gamax92 · 10 years ago
  14. e313370 Don't fall through by gamax92 · 10 years ago
  15. 2dded39 Even more format fixes by gamax92 · 10 years ago
  16. 26bcd8a Fix some more string.format by gamax92 · 10 years ago
  17. de9fe79 Merge branch 'LuaJSucks' of https://github.com/gamax92/OpenComputers by Florian Nücke · 10 years ago
  18. aa30297 Adjusted motion sensor recipe. by Florian Nücke · 10 years ago
  19. b9756bc Add some more functionality to string.format by gamax92 · 10 years ago
  20. bf79d15 Merge branch 'OC1.3-MC1.6.4' of github.com:MightyPirates/OpenComputers by Florian Nücke · 10 years ago
  21. 739d0ab Fixed recursive recipe includes. Closes #387. by Florian Nücke · 10 years ago
  22. 539ceb8 Made it possible to define colors for loot disks. by Florian Nücke · 10 years ago
  23. c9e441c By popular demand, floppy disks can now be dyed by crafting them together with the according dye. Closes #388. by Florian Nücke · 10 years ago
  24. f7540d4 Added option to allow robots to get a table representation of item stacks using the inventory controller upgrade. Off by default. Closes #385. by Florian Nücke · 10 years ago
  25. 45891ea Merge branch 'OC1.3-MC1.6.4' of github.com:MightyPirates/OpenComputers by Florian Nücke · 10 years ago
  26. 5e268af Added safety try-catch to machine loading code, to avoid crashes for unexpected states. by Florian Nücke · 10 years ago
  27. 7e7f1e8 Merge branch 'OC1.3-MC1.6.4' of github.com:MightyPirates/OpenComputers by Florian Nücke · 10 years ago
  28. d24907b Fixed keyboard behavior some. by Florian Nücke · 10 years ago
  29. a3bedd9 Merge branch 'OC1.3-MC1.6.4' of github.com:MightyPirates/OpenComputers by Florian Nücke · 10 years ago
  30. 139ffc9 Making sure paths used for file system data storage (hdds, floppies) are directories or don't exist by trying to delete them if they're files, instead of just giving up - since apparently these can appear in some obscure scenario that can't be reproduced anymore. by Florian Nücke · 10 years ago
  31. b8a998a Merge branch 'new-toys' by Florian Nücke · 10 years ago
  32. 4e8a48a Catching potential errors in __gc methods when persisting computers. by Florian Nücke · 10 years ago
  33. bf9de41 Fixed a potential (non-crashing) NPE. by Florian Nücke · 10 years ago
  34. 5274cb8 Corrected mistake in onConnect/onDisconnect examples in JDoc of Environment interface in API. by Florian Nücke · 10 years ago
  35. c124a65 Improved performance of component callbacks. by Florian Nücke · 10 years ago
  36. e03e633 Bumpitybump. by Florian Nücke · 10 years ago
  37. b9d1a37 Merge pull request #383 from gamax92/LuaJSucks by Florian Nücke · 10 years ago
  38. 972b125 Fixed 'screen.getAspectRatio' value being recomputed incorrectly. by Florian Nücke · 10 years ago
  39. 4095c0e Made native library loading less... special-case-laden. Just try each and every shipped library until one works. by Florian Nücke · 10 years ago
  40. 6b71206 Fixed derp in OpenIRC's /lua command. by Florian Nücke · 10 years ago
  41. cf51cd2 Just a little note by gamax92 · 10 years ago
  42. d38e08f fix txtToken, lexerror by gamax92 · 10 years ago
  43. ea4c3c7 Make two error messages more useful by gamax92 · 10 years ago
  44. 0f6a405 Why are there braces? by gamax92 · 10 years ago
  45. 87f6262 Error on invalid escape sequences by gamax92 · 10 years ago
  46. f2a9e3f Fix string.rep crashing by gamax92 · 10 years ago
  47. 39a03af Fixed file handles not being manually closed in process.load (but relying on __gc, which fails in LuaJ). by Florian Nücke · 10 years ago
  48. ab7cc5d Pleasedontbreakpleasedontbreakpleasedontbreak. by Florian Nücke · 10 years ago
  49. b4639cc Fixed Geolyzer docstring. Potential fix for config parse error. by Florian Nücke · 10 years ago
  50. caacec2 LuaJ 3 Final. I'm not sure this is a good idea, but nothing seems to break (immediately). by Florian Nücke · 10 years ago
  51. e8384b6 Fixed userdata not being properly unwrapped when passed to direct callbacks. by Florian Nücke · 10 years ago
  52. a9e3cd9 Made it so that robots can also send and receive wired network messages. by Florian Nücke · 10 years ago
  53. 26c4fa4 Made userdata delegate tostring to the object's toString method (i.e. `tostring(userdata)` == `Value.toString()`). by Florian Nücke · 10 years ago
  54. 4b4885b Fixed computers crashing when mods cause computers to pause (`context.pause(...)`) in a direct callback (`@Callback(direct = true)`). by Florian Nücke · 10 years ago
  55. a9efeb6 Added tractor beam upgrade (item magnet). by Florian Nücke · 10 years ago
  56. 39704f9 Merge pull request #376 from Sodiet/patch-3 by Florian Nücke · 10 years ago
  57. 6441ce9 Small variable name change by Kilobyte22 · 10 years ago
  58. d8ee287 Make io.read() support support not breaking by Kilobyte22 · 10 years ago
  59. 722f5d4 Update ru_RU.lang by Rostislav · 10 years ago
  60. 2aabea3 Update ru_RU.lang by Rostislav · 10 years ago
  61. 232f5fa Added motion sensor block. by Florian Nücke · 10 years ago
  62. 92080a5 Update en_US.lang by Vexatos · 10 years ago
  63. e12fcc8 Be consistent. (Updated de_DE.lang) by Vexatos · 10 years ago
  64. 7c5a8d9 Attempt at fixing an NPE, take two. by Florian Nücke · 10 years ago
  65. 0e5f320 Should fix a reported NPE in server racks. by Florian Nücke · 10 years ago
  66. fc16ceb Avoid potential assertion error. by Florian Nücke · 10 years ago
  67. e4ebcbb Merge branch 'patch-2' of https://github.com/istasi/OpenComputers by Florian Nücke · 10 years ago
  68. 3d6efb6 Merge https://github.com/gamax92/OpenComputers by Florian Nücke · 10 years ago
  69. 9c587bd Adds support for the environment variable _ by istasi · 10 years ago
  70. 495d083 Made LuaJ kernel error checking more robust. by Florian Nücke · 10 years ago
  71. 6616de2 Forgot an import by gamax92 · 10 years ago
  72. 6164a9f Fix some LuaJ bugs (Not tested for LuaJ 3) by gamax92 · 10 years ago
  73. 029027f Updated Mac natives. by Florian Nücke · 10 years ago
  74. 7a2e327 Added a null check in ItemCost comparison method to avoid potential NPEs for weird recipes. by Florian Nücke · 10 years ago
  75. 794f338 Little bit of cleanup and fixed case sensitivity detection being inverted. by Florian Nücke · 10 years ago
  76. d544f97 Fixed a stupid oversight by Kilobyte22 · 10 years ago
  77. e62895e Made FS support case insensitivety by Kilobyte22 · 10 years ago
  78. d2e0b22 Updated Eris, should get rid of the potential native crash when saving. by Florian Nücke · 10 years ago
  79. 7d80fbc Re-throwing UnsupportedOperationExceptions as Lua errors when thrown in callbacks (usually in OpenComponents' CC wrapper stuff). by Florian Nücke · 10 years ago
  80. 0c96d38 Fixed another userdata related persistence issue (discrepancy in callback name after load leading to userdata failing to be saved again). by Florian Nücke · 10 years ago
  81. ac25db2 Added missing userdata wrapping and removed debug prints. by Florian Nücke · 10 years ago
  82. a19c054 Changed option flag for ls to display file and dir count to an unused one and made it read like dir in Windows (which is what it's meant to mimic, after all). by Florian Nücke · 10 years ago
  83. e7c863a Merge https://github.com/Wuerfel21/OpenComputers by Florian Nücke · 10 years ago
  84. ce4316e Added another try-catch to the native lib version check in case rights settings get weird (reported on MCF). by Florian Nücke · 10 years ago
  85. da264e3 Switches can no longer loop on their own (i.e. they will ignore network messages they relayed themselves when they arrive on another side of the switch). by Florian Nücke · 10 years ago
  86. ce4786f Should fix #365. by Florian Nücke · 10 years ago
  87. 009e51b Prevent error loops in xpcall. by Florian Nücke · 10 years ago
  88. c4986ee Screw nextGaussian, using nextDouble for the random direction when dropping stuff from robots (and other inventories) now, makes for no... outliers, leading to extreme values. Closes #347. by Florian Nücke · 10 years ago
  89. 9f8d88a Removed forgotten debug println. *sigh* by Florian Nücke · 10 years ago
  90. ebac31b Eh? by Florian Nücke · 10 years ago
  91. e4eb4ae Trying to fix some initialization order hiccups... by Florian Nücke · 10 years ago
  92. 7296986 Added some noise to the geolyzer results. It'll still be able to tell air blocks with 100% accuracy, though. by Florian Nücke · 10 years ago
  93. d8da567 Added the concurrent open port limit to network cards I could have sworn I had added on day one -.- by Florian Nücke · 10 years ago
  94. e7cfe95 Fixed display glitch for robot power display when playing on servers. by Florian Nücke · 10 years ago
  95. ace242f More fewer AIOOBEs. by Florian Nücke · 10 years ago
  96. 3122942 Removed potentially problematic GC call from host side. by Florian Nücke · 10 years ago
  97. 12c1e74 Fixed buffered file system allowing creation of files with names that could not be flushed to the host file system. by Florian Nücke · 10 years ago
  98. b60bdb7 Should fix #362. by Florian Nücke · 10 years ago
  99. 2b801f2 Fixed damage handling for TC tools. by Florian Nücke · 10 years ago
  100. 6694455 Removed the config for the 'greeting' again, instead wrapped the functionality in a motd file that can be a script. Delete it to disable the greeting. by Florian Nücke · 10 years ago