1. dbd44a1 Don't make assumptions on the content of the textentry text buffer beyond the first '\0'. by oliverschmidt · 18 years ago
  2. 5b22976 Renamed program_handler_screensaver to program_handler_setscreensaver. by oliverschmidt · 19 years ago
  3. 1fffe35 Improved plasma description textmap - or at least made it different from the ssfire one. by oliverschmidt · 19 years ago
  4. b04f65f - Replaced constants with macros as they produce both smaller and faster code. by oliverschmidt · 19 years ago
  5. 60720ec - Moved inline assembly into seperate function to allow the optimizer to act on the drawing code. by oliverschmidt · 19 years ago
  6. 6d6364f Fixed last bugs to make the C64 targets c64 and programs work again. by oliverschmidt · 19 years ago
  7. ca7f2ee Seperated LOADER_LOAD_DSC/LOADER_UNLOAD_DSC from LOADER_LOAD/LOADER_UNLOAD as the later is only used by the directory app. This saves 20 bytes of resident code space. by oliverschmidt · 19 years ago
  8. 35f7a08 Fixed return type. by oliverschmidt · 19 years ago
  9. e8bd0a8 Moved save-driveunit.S into lib to keep it from being deleted by the 'clean' target on case-insensitive filesystems (like Win32). by oliverschmidt · 19 years ago
  10. 1ba481f Renamed loader-arch-dsc.S to loader-arch-module-dsc.S. by oliverschmidt · 19 years ago
  11. 2f2e2ff Replaced wrapper function with macro (and improved thus consistency). by oliverschmidt · 19 years ago
  12. e5a7b9d Every line in a multiline textentry widget is supposed to have an addtional zero termination so take that into account when computing line offsets. by oliverschmidt · 19 years ago
  13. 6a7513a Improved multiline textentry drawing. by oliverschmidt · 19 years ago
  14. 6b0c26f The classic Makefile.depend approach is to be replaced by dynamic dependendy management based on cc65's --create-dep. by oliverschmidt · 19 years ago
  15. 099f47c Renamed CFLAGSCOMMON to CFLAGSCC65. by oliverschmidt · 19 years ago
  16. 505de31 Moved D64 image creation target from cc65 Makefile to C64 Makefile. by oliverschmidt · 19 years ago
  17. 15388d6 Improved compatibility of C64 build with recent cc65 snapshots. by oliverschmidt · 19 years ago
  18. 8c69e24 Renamed the Contiki app define SHELL to SHELL_ to avoid conflicts with the SHELL env variable. by oliverschmidt · 19 years ago
  19. 3b551df Renamed global icon variables to avoid linker probs when linking several app descriptions into the Contiki kernel. by oliverschmidt · 19 years ago
  20. cc12aba Moved the shell app into the generic folder as it builds and runs on every target with full cfs support. by oliverschmidt · 19 years ago
  21. 19a4039 Added more app defines to Makefile.common. by oliverschmidt · 19 years ago
  22. bfe3f3e Replaced all duplicate app defines contained in Makefile.common with references to that file. by oliverschmidt · 19 years ago
  23. 9d58ba1 Added new contiki/Makefile.common to contain common defines. As an initial step moved the exsisting app defines from Makefile.cc65 over here. by oliverschmidt · 19 years ago
  24. aaaef94 Renamed contiki-cc65/Makefile.common to contiki-cc65/Makefile.cc65 by oliverschmidt · 19 years ago
  25. e350e0a Omit the ctk_icon if CTK_CONF_ICONS is 0. by oliverschmidt · 19 years ago
  26. 83b8327 Removed unnecessary return which made it into the binary because of the disabled cc65 optimizations in conjunction with inline assembly. by oliverschmidt · 19 years ago
  27. 8401606 Fixed window border drawing code for CTK_CONF_WINDOWMOVE being 0. by oliverschmidt · 19 years ago
  28. f10f67b Omit the ctk_icon if CTK_CONF_ICONS is 0. by oliverschmidt · 19 years ago
  29. 58d1458 Replaced the OUI of IBM with the OUI of Standard Microsystems. by oliverschmidt · 19 years ago
  30. c8bfc02 Fixed driver bug I introduced recently. by oliverschmidt · 19 years ago
  31. 4c59cb0 Introduced a new parameter for ctk_draw_window() that indicates if drawing the window borders is required. by oliverschmidt · 19 years ago
  32. e245c9c Made the lan91c96 drivers use the uip MAC address instead of a compiled in constant (like the cs8900a drivers). by oliverschmidt · 19 years ago
  33. ff8cd80 Use the same loop algorithms in the lan91c96 driver as they are used in the cs8900a drivers with the benefit of: by oliverschmidt · 19 years ago
  34. fcdbaec Avoid unnecessary modification of uip_len in the cs8900a drivers. by oliverschmidt · 19 years ago
  35. d790588 Removed unnecessary ptr1 spilling from the cs8900a drivers. by oliverschmidt · 19 years ago
  36. 6b786ba Made the lan91c96 driver compliant with the cc65 doc ("the compiler does only allow regular 6502 opcodes to be used with the inline assembler"). by oliverschmidt · 19 years ago
  37. 3c3aed4 Adjusted lan91c96 driver to the predominant coding style. by oliverschmidt · 19 years ago
  38. 815f57e Made the cs8900a drivers compliant with the cc65 doc ("the compiler does only allow regular 6502 opcodes to be used with the inline assembler"). by oliverschmidt · 19 years ago
  39. 4affe76 Make use of the UIP_TCPIP_HLEN define where it applies. by oliverschmidt · 19 years ago
  40. 467ca4c Change regarding the socket->psock renaming. by oliverschmidt · 19 years ago
  41. 660eae8 Made maximum number of program descriptors supported by the program-handler app configurable. by oliverschmidt · 19 years ago
  42. 9d2b0c2 In agreement with with Adam I do this "blind commit" which means that I don't know if this code really works or even assembles. However a only slightly different code was successfully tested on an Apple2 - thanks to Glenn. by oliverschmidt · 19 years ago
  43. 2093e0e Replaced the OUI of IBM with the OUI of Cirrus Logic. by oliverschmidt · 19 years ago
  44. b470326 Removed (after checking back with Adam Dunkels) the compile-time optimizations for UIP_BUFSIZE < 256 for all targets but the msp430 which actually is configured to have a smaller buffer. by oliverschmidt · 19 years ago
  45. 2142947 Removed (after checking back with Adam Dunkels) the compile-time optimizations for UIP_BUFSIZE < 256 for all targets but the msp430 which actually is configured to have a smaller buffer. by oliverschmidt · 19 years ago
  46. 6dd844a Added visual feedback for a moving window by drawing all widgets focused. This seems to be intuitive as the focus of attention is the whole window (thus all widgets). by oliverschmidt · 19 years ago
  47. 58df4a7 Renamed simpletelnet.prg to telnet.prg due to Apple2 ProDOS8 filename length restrictions. by oliverschmidt · 19 years ago
  48. 9a28e74 Made email compose window size compile-time configurable. by oliverschmidt · 19 years ago
  49. 9d6993d Reduced settings to reduce memory usage by adamdunkels · 20 years ago
  50. 4c4f2fc Added dhcp.dsc by adamdunkels · 20 years ago
  51. 2d0143e Updated dependancies by adamdunkels · 20 years ago
  52. 23c1813 Added cgterm.dsc by adamdunkels · 20 years ago
  53. a172cb8 Helpful text on how to return from terminal view added by adamdunkels · 20 years ago
  54. 93cf57c DSC file for the cgterm application by adamdunkels · 20 years ago
  55. 7e4f665 Added C64 DIO initialization by adamdunkels · 20 years ago
  56. 19bfea0 Added ETH64 packet dumper driver by adamdunkels · 20 years ago
  57. 3d97c2e Renamed ETH64 driver from the cryptic lan91c96.drv to eth64.drv by adamdunkels · 20 years ago
  58. 7d5eb20 Moved to contiki-cc65 module by adamdunkels · 20 years ago
  59. a6bef20 ETH64 driver with packet dumping by adamdunkels · 20 years ago
  60. 642ee78 Added optional use of C64 KERNAL disk routines by adamdunkels · 20 years ago
  61. 9ab9d7f Increased buffer size for DHCP client to work by adamdunkels · 20 years ago
  62. 01af291 ETH64 driver is now called eth64.drv instead of the crypting lan91c96.drv by adamdunkels · 20 years ago
  63. a96489a Removed left over test code by adamdunkels · 20 years ago
  64. a4dad04 Added drive unit number save module by adamdunkels · 20 years ago
  65. 840ba81 Makefile and main() function that makes a stand-alone IRC/DHCP binary by adamdunkels · 20 years ago
  66. b9c8388 Renamed init function to the correct name, added dumping by adamdunkels · 20 years ago
  67. 7010ad5 Renamed init function to the correct name by adamdunkels · 20 years ago
  68. f50e458 Added UDP checksum calculation function by adamdunkels · 20 years ago
  69. 886e41a tcpdump TFE driver by adamdunkels · 20 years ago
  70. 24b8329 Made Ethernet MAC address configured from uip_ethaddr instead of #defined constants in driver code by adamdunkels · 20 years ago
  71. a766bf4 Updated menu drawing behaviour to actually use configured menu colors, bugfix: icon name could sometimes be drawn one char too wide by adamdunkels · 20 years ago
  72. a42a54d Increased buffer size for DHCP client to work, added UDP checksum configuration option by adamdunkels · 20 years ago
  73. a292235 Moved broken drive unit save code into working module constructor by adamdunkels · 20 years ago
  74. 600a86c Module constructor that saves drive number by adamdunkels · 20 years ago
  75. 548e35d Added DHCP client, device drivers with dumping functionality by adamdunkels · 20 years ago
  76. a047ba1 Network device driver that also dumps packets to a log window by adamdunkels · 20 years ago
  77. fb13fb2 Bugfix: Ethernet address is now set correctly, added handling of EK_EVENT_REPLACE event which is posted when a device driver is to be replaced by adamdunkels · 20 years ago
  78. 2f63b3a Telnet-like program for accessing C64 Internet BBSes by adamdunkels · 20 years ago
  79. fd5d2e5 Bugfix: configuration file could not be written because CFS driver was reset before file was written, CBM KERNAL does not allow overwriting of files by adamdunkels · 20 years ago
  80. 2387025 Bugfix: CFS driver now written correctly to config.cfg file by adamdunkels · 20 years ago
  81. 0c40f32 Version string color now has better colors by adamdunkels · 20 years ago
  82. 7c3bef9 Bugfix: cfs_open flag was not passed to kernal open routine by adamdunkels · 20 years ago
  83. 0fbced4 Added initialization of Ethernet MAC address by adamdunkels · 20 years ago
  84. c7fd5ea Added homepage URL by adamdunkels · 20 years ago
  85. 16eebcc Removed unused file by adamdunkels · 20 years ago
  86. 38fb350 Added copyright license header by adamdunkels · 20 years ago
  87. b5bc5e1 Reduced configuration to almost unusable in order to be able to at least load the web browser by adamdunkels · 20 years ago
  88. fb24dff Removed obsolete advertising clause by adamdunkels · 20 years ago
  89. d9e3afe Added C64 disk I/O initialization by adamdunkels · 20 years ago
  90. 367a8b4 Added welcome dialog program by adamdunkels · 20 years ago
  91. 0ec151b Added support for configuration and loading of CFS drivers by adamdunkels · 20 years ago
  92. a6c5244 Added redraw when service is reloaded by adamdunkels · 20 years ago
  93. 727d483 Changed default color theme to gray by adamdunkels · 20 years ago
  94. dea725c Fixed bug which caused problems when reloading the service, made screen size compile time constant by adamdunkels · 20 years ago
  95. b3cb9c2 Added exomizer target to allow creating compressed contiki kernel binary by adamdunkels · 20 years ago
  96. 4f7b6f2 Changed startup order to make process ids be increasing in process listing by adamdunkels · 20 years ago
  97. f829332 Added loading of welcome application after initialization is completed by adamdunkels · 20 years ago
  98. 15567f0 Dialog displaying a welcome message by adamdunkels · 20 years ago
  99. b45ffa1 Moved from ctk/ to conf/ directory by adamdunkels · 20 years ago
  100. bdf3744 Loading 80 column driver by default by adamdunkels · 20 years ago