1. 5c8d025 Fix remaining bugs with the CPC ROM version. by PulkoMandy · 12 months ago contiki-1.4
  2. 4001f52 Fix build for bitbox. by Adrien Destugues · 7 years ago
  3. a99ceeb Missing forward declarations in DSCs. by Adrien Destugues · 7 years ago
  4. 4786780 More missing const by Adrien Destugues · 7 years ago
  5. 69a6e72 Update to SDCC 3.6.0. by Adrien Destugues · 7 years ago
  6. a0c63ba Remove useless "initialized" stuff. by Adrien Destugues · 8 years ago
  7. 8f64605 Make everything in the DSCs const by PulkoMandy · 10 years ago
  8. 2464654 Reverse code to avoid SDCC bug. by PulkoMandy · 10 years ago
  9. e215c63 Make DSC files relocatable. by PulkoMandy · 10 years ago
  10. bcf4d09 Workaround SDCC bug. by PulkoMandy · 10 years ago
  11. 887cda7 Fix icon declarations. by PulkoMandy · 10 years ago
  12. eb45bf9 Workaround for SDCC bug. by PulkoMandy · 10 years ago
  13. 3e21390 Fix various mismatched prototypes and other compilation problems. by PulkoMandy · 10 years ago
  14. c615a2d fix up some network related troubles.fix up some network related troubles. by ryohji · 17 years ago
  15. 077c766 Just bumped up global version string from '1.2' to '1.3' as theese are likely the last changes in the contiki 1.x module anyway. by oliverschmidt · 18 years ago
  16. 6a165f1 Adjusted webserver source file list. by oliverschmidt · 18 years ago
  17. e43cb18 Don't make assumtions on the content of the textentry text buffer beyond the first '\0'. by oliverschmidt · 18 years ago
  18. a438e9d Added check to avoid closing dir twice (and improved macro usage consistency). by oliverschmidt · 18 years ago
  19. f37f149 Allow to override the macros EK_PROCESS, EK_EVENTHANDLER, EK_POLLHANDLER and EK_PROCESS_INIT in preparation of the upcoming Apple2 banking support. by oliverschmidt · 18 years ago
  20. 06b40b4 Removed the #ifdef around the htons in preparation of the upcoming Apple2 banking support. by oliverschmidt · 18 years ago
  21. a920953 Adjusted comment. by oliverschmidt · 18 years ago
  22. 0c64f87 Added optional 'Quit' menu entry and confirmation dialog activated by defining PROGRAM_HANDLER_CONF_QUIT_MENU to be 1. by oliverschmidt · 18 years ago
  23. 35514d5 With the change to always position the cursor at the end of the exsisting text on entering the textentry field edit state it became necessary to avoid initializing textentry fields with blanks insteads of zeros. by oliverschmidt · 19 years ago
  24. e6280c9 Ooops ;-) by oliverschmidt · 19 years ago
  25. 3c50b3f Discard word right in fromt of </script>, </style> and </select>. by oliverschmidt · 19 years ago
  26. 7eb2981 Changed the maximum length of a single word from 40 to match the page width. Browsers wider than 40 cols can now render longer words. Browsers smaller than 40 cols avoid display inconsistencies on long words (and save memory). Additionally simplified word truncation code. by oliverschmidt · 19 years ago
  27. 4173c6e Updated version and URL. by oliverschmidt · 19 years ago
  28. 2204083 Updated version. by oliverschmidt · 19 years ago
  29. 1df710f Added support reading back screen saver setting. by oliverschmidt · 19 years ago
  30. 124c3ee Renamed program_handler_screensaver to program_handler_setscreensaver. by oliverschmidt · 19 years ago
  31. 58d4eb2 On plaforms with (sub-)directory support it makes sense to seperate user file access (to be directed in to the current directory) from system file (.prg, .drv, ...) access (to be directed to the Contiki directory). by oliverschmidt · 19 years ago
  32. 3e2db00 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
  33. b57925b Fixed dependency. by oliverschmidt · 19 years ago
  34. 5e7c4b6 Applied the following changes: by oliverschmidt · 19 years ago
  35. 3dcae72 Added a new textentry input handler for using the textentry widget as checkbox replacement. The handler assumes that the widget is one char wide and long. The space bar toggles the checkmark (and 'X' / 'x' sets it to be consistent with standard textentry widgets). by oliverschmidt · 19 years ago
  36. ed605d1 Made use of the new cmdline textentry input handler. This both reduces code size and improves user experience: by oliverschmidt · 19 years ago
  37. fc721b9 Added a new textentry input handler for using the textentry widget as a commandline like in the shell and irc app. On CH_ENTER it just notifies its parent but doesn't quit the edit state nor switches the focus to the next widget. by oliverschmidt · 19 years ago
  38. f9750b5 Made Cc: actually work. by oliverschmidt · 19 years ago
  39. 69cbdb3 Added dns support. by oliverschmidt · 19 years ago
  40. 639f75d Provide some feedback to the smtp app. by oliverschmidt · 19 years ago
  41. 4e06155 Reset the cursor positions as well, not only the text. by oliverschmidt · 19 years ago
  42. cd6c30b 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
  43. a1eb725 Converted email app to use a multiline textentry widget instead of a textedit widget. by oliverschmidt · 19 years ago
  44. 1263500 Added support for CC: and change message parameter to match the content of a mltiline textentry widget. by oliverschmidt · 19 years ago
  45. 1f615e4 Converted email app to use a multiline textentry widget instead of a textedit widget. by oliverschmidt · 19 years ago
  46. e96e07a Set the cursor to the end of the current line on entering the edit state of a multiline textentry widget. by oliverschmidt · 19 years ago
  47. 1151124 Delegating the behaviour of a text entry widget on entering the edit state to its keyboard input function has two benefits: by oliverschmidt · 19 years ago
  48. f28743b Move cursor always to the end of a text entry widget on entering the edit state instead of remembering the cursor position from the last edit because by oliverschmidt · 19 years ago
  49. acdf6e9 Improved multiline textentry drawing. by oliverschmidt · 19 years ago
  50. 6c6adaf Re-Introduced multiline textentry widget. by oliverschmidt · 19 years ago
  51. 0096f6a Introduced user-extensable textentry input handling. by oliverschmidt · 19 years ago
  52. 6307bff Reduced codesize by replacing if/else constructs with boolean parameters. by oliverschmidt · 19 years ago
  53. 85155c6 Added "cc: ". (It's intentionally not "Cc: " because RFC822 defines it this way). by oliverschmidt · 19 years ago
  54. 72da830 Replaced strange memset(..., ' ', ...) with typical memset(..., 0, ...) by oliverschmidt · 19 years ago
  55. ef13b02 Set focus to the url entry widget after successfull download of a full page because it is most likely that the user wants to enter a new url now or wants to navigate through the html form widgets (and the url entry widget is the perfect starting point for doing so). by oliverschmidt · 19 years ago
  56. 33bf936 Added redraw of widget loosing the focus (here: window title) by oliverschmidt · 19 years ago
  57. d2f04de Serveral minor changes: by oliverschmidt · 19 years ago
  58. b590c10 Move cursor always to the end of a text entry widget on entering the edit state instead of remembering the cursor position from the last edit because by oliverschmidt · 19 years ago
  59. c47e510 - Commented out Upload UI as there's no such functionality. by oliverschmidt · 19 years ago
  60. 02949e1 Made use of shell_start. by oliverschmidt · 19 years ago
  61. b86b065 Added initial CTK_WIDGET_FOCUS where applicable. by oliverschmidt · 19 years ago
  62. 616fa12 Made shell app except uppercase commands as there are platforms generally lacking lowercase support. by oliverschmidt · 19 years ago
  63. d89bc67 Renamed the Contiki app define SHELL to SHELL_ to avoid conflicts with the SHELL env variable. by oliverschmidt · 19 years ago
  64. 8e1e1dd Renamed global icon varables to avoid linker probs when linking several app descriptions into the Contiki kernel. by oliverschmidt · 19 years ago
  65. 098c780 Moved the directory app description files into the generic folder where the app itself already was located. by oliverschmidt · 19 years ago
  66. a47cab6 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
  67. cb117db Added more app defines to Makefile.common. by oliverschmidt · 19 years ago
  68. 1f28e9b Replaced all duplicate app defines contained in Makefile.common with references to that file. by oliverschmidt · 19 years ago
  69. 266e585 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
  70. 19c1876 Added missing include for sprintf(). by oliverschmidt · 19 years ago
  71. be6e4dc Prefilled port with 23 and fixed several bugs: by oliverschmidt · 19 years ago
  72. ca9101d CTK_TEXTENTRY_CLEAR() already includes memset(). by oliverschmidt · 19 years ago
  73. 3cf20b2 Include O_TRUNC in CFS_WRITE to make sure that i.e. uncompleted re-downloads are identifyable. by oliverschmidt · 19 years ago
  74. 2caed81 Added example for PT_SPAWN() by adamdunkels · 19 years ago
  75. a5f1e79 Fixed bugs in some examples, removed out-commented code by adamdunkels · 19 years ago
  76. 5703bfd Reordered definitions to make meaning clearer by adamdunkels · 19 years ago
  77. 7fdf5f5 The most recent cc65 snapshot supports bgcolor, bodercolor and textcolor to be implemented as macros. In order to avoid warnings if these macros expand to constants their usages have to be casted to void if their return value isn't used. BTW: Ullrich added the same casts to cc65-internal usages of these functions/macros. by oliverschmidt · 19 years ago
  78. 7b9025d Fixed window border drawing code for CTK_CONF_WINDOWMOVE being 0. by oliverschmidt · 19 years ago
  79. 30d048a Omit the ctk_icon if CTK_CONF_ICONS is 0. by oliverschmidt · 19 years ago
  80. a40eac5 Allow program descriptions to omit the ctk_icon completely if CTK_CONF_ICONS is 0. by oliverschmidt · 19 years ago
  81. d104058 Introduced a new parameter for ctk_draw_window() that indicates if drawing the window borders is required. by oliverschmidt · 19 years ago
  82. adf27db Introduced a new parameter for ctk_draw_window() that indicates if drawing the window borders is required. by oliverschmidt · 19 years ago
  83. 2b1582b Optimized menu drawing code. Now the code by oliverschmidt · 19 years ago
  84. 1f7f652 Added PT_YIELD() function for yielding from a protothread, fixed a bug in the PT_SPAWN() macro, rewrote PT_WAIT_THREAD() to look more sensible, removed unnecessary linebreaks in macro definitions by adamdunkels · 19 years ago
  85. a771362 Bugfix: now bails out from POLL_REQUEST call if the TCP connection is unable to accept the poll by adamdunkels · 19 years ago
  86. bf5bffe Improved web browser usability by setting the focus to the [down] button when "stopped" (but not when "done"). Fortunately this doesn't increase the memory used as I removed an obsolete focus setting somewhere else. by oliverschmidt · 19 years ago
  87. 01e9d1e Made processes window two chars wider to have more chars for service names (and made killprocnum textentry field non-scroll). by oliverschmidt · 19 years ago
  88. 82fcc77 Removed compiler warning about icmp_input label being defined when UIP_PINGADDRCONF was not used by adamdunkels · 19 years ago
  89. 0dd56df Added UIP_APPDATA_SIZE macro that holds the available buffer size for user data by adamdunkels · 19 years ago
  90. 823e855 Changed the name of webserver_log and webserver_log_file to httpd_log and httpd_log_file in order to make httpd independent of webserver.c by adamdunkels · 19 years ago
  91. cfc4340 Fixed typo by adamdunkels · 19 years ago
  92. b8adcdf Rewrote scrip to not use the Unix find command by adamdunkels · 19 years ago
  93. 36d49be Fixed minor typo by adamdunkels · 19 years ago
  94. 3335cd9 Added uIP call for polling an application without triggering any timer by adamdunkels · 19 years ago
  95. f29d888 Rewrote the dynamic output support. Instead of using separate "script" by adamdunkels · 19 years ago
  96. 2e91181 Defined UIP_RECEIVE_WINDOW explicitly as 'unsigned int' constant to avoid promotion to 'long'. by oliverschmidt · 19 years ago
  97. 3742087 Make use of the UIP_TCPIP_HLEN define where it applies. by oliverschmidt · 19 years ago
  98. a900bff Change regarding the socket->psock renaming. by oliverschmidt · 19 years ago
  99. 7cd06bb According to Adam the contents of the uip_buf are never assumed to be valid accross events boundaries. The same holds true for file open-read/write-close cycles (at least for module loading and config file i/o). by oliverschmidt · 19 years ago
  100. 442bdc8 Updated documentation by adamdunkels · 19 years ago