NEWS 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. This is a summary of the changes in KTIGCC since the first alpha release:
  2. CVS HEAD (2008-05-01):
  3. * Added a full changelog (generated from CVS logs).
  4. * Fixed stray indentation at the end of the line when autoclosing a curly brace
  5. as ENTER is pressed.
  6. * Ported to KDE 4.0.0.
  7. * Fixed highlighting update when moving a file to Header Files from another
  8. editable category. (The first character was read from the wrong buffer.)
  9. * Fixed extra newline incorrectly added each time a file is saved.
  10. * Don't hardcode ~/.kde for the KDE(4)HOME directory.
  11. * Fixed missing word wrap on the data variable reloc label in Program Options.
  12. * Fixed A68k items in the New menu being shown even when A68k is not installed.
  13. * Don't grab the keyboard globally (stealing key presses from other apps) in the
  14. Errors&Warnings pane, only override the Ctrl+C and Ctrl+Ins accelerators.
  15. * Fixed adding to the recent file list getting confused by changes to the list
  16. from other KTIGCC instances.
  17. * Fixed the wrong recent file getting opened when opening triggers save prompt.
  18. * Now using the builtin pucrunch support in the latest ld-tigcc instead of
  19. ttpack and ttbin2oth. This also adds support for outputting unwrapped binaries
  20. for compressed files.
  21. * Now using the new ld-tigcc switch --output-data-var to set the data variable
  22. file name on the computer instead of the old renaming hack.
  23. * Non-ASCII characters in on-calc file names are now passed to ld-tigcc in
  24. urlencoded form (more portable).
  25. * Ctrl+Return now works for "Open file at cursor" (not just Ctrl+Numpad Enter)
  26. * Now generating smaller syntax highlighting descriptions for mixes of
  27. case-sensitive and case-insensitive word lists (using new KatePart feature).
  28. * KTIGCC no longer installs into the $TIGCC prefix, instead a regular prefix is
  29. used. The default is /usr/local. It can be set by setting the $PREFIX
  30. environment variable or setting it in the qmake command line (e.g.
  31. qmake-qt4 PREFIX=/usr).
  32. * Fixed infinite loop when parsing user headers including each other for
  33. completion information.
  34. * Made the Errors and Warnings pane non-detachable.
  35. * Fixed the compilation with GCC 4.3.
  36. KTIGCC 1.06 (2006-11-25):
  37. * Added Anjuta 2 project, removed Anjuta 1 project.
  38. * Fixed missing layout in the Operating System tab of the Program Options
  39. dialog.
  40. * Fixed wrong length computations when writing to a file in UTF-8 or other
  41. multibyte charsets. (This broke debugging information for projects in a path
  42. containing non-ASCII characters.)
  43. * Added tas to the default Integer Arithmetic instructions.
  44. * Added xdef, globl, altmacro and noaltmacro to the default GNU as directives.
  45. * Ctrl+Tab/Ctrl+G now skips the project root and the categories.
  46. * When saving a project for the first time, if it is still named "Project1", a
  47. name based on the .tpr file name is now set (as in TIGCC IDE).
  48. * Disabled debugging and informational messages from libti*.
  49. KTIGCC 1.05 (2006-10-24):
  50. * Added missing -lkdeui to link line (needed for OS X).
  51. * Fixed RPM specfile dependency to work on FC6.
  52. KTIGCC 1.04 (2006-09-25):
  53. * Use explicit memset to zero the buffer in loadFileText because the C++ way
  54. doesn't seem to work on OS X.
  55. * Link all required KDE libraries explicitly instead of relying on the linker
  56. pulling them in (which the OS X linker doesn't do).
  57. * Use the .ui, .moc and .obj subdirectories on all platforms.
  58. * Don't try to set an rpath on OS X, it is neither supported nor needed.
  59. KTIGCC 1.03 (2006-09-17):
  60. * Don't show symbol info for reserved keywords even in the case of an exact
  61. match (fixes unhelpful prototype help for "asm").
  62. * Added workaround for rpmbuild 4.4.2 with tar 1.15.91 to make rpm target.
  63. KTIGCC 1.02 (2006-09-05):
  64. * Fixed inverted logic bug causing the Debug menu and toolbar buttons to get
  65. hidden during File/New/Project.
  66. * Fixed the Project Options dialog not reacting correctly to changing the target
  67. from a regular program to another target or the other way round.
  68. * Fixed detection of "??=" in source file splitting.
  69. * Fixed bug in source file splitting causing the float in x>=0. to get split.
  70. KTIGCC 1.01 (2006-08-21):
  71. * Find and Replace dialogs now remember history (but only for the current KTIGCC
  72. session).
  73. KTIGCC 1.00 (2006-08-20):
  74. * Added NEWS file containing the history information previously published in the
  75. changelog snippets on SourceForge.
  76. * Fixed moving files across file systems after compilation not working.
  77. * The RPM now associates .tpr files with KTIGCC in KDE and GNOME.
  78. KTIGCC 20060814 beta:
  79. Improvements:
  80. * Kate's automatic indentation (ENTER indents the new line
  81. the same as the old one) is now enabled.
  82. * The syntax highlighting descriptions are now
  83. automatically regenerated if they are missing or out of
  84. date.
  85. * Tab now reliably inserts a tab. Use Ctrl+I to indent the
  86. selection (or the current line). (The other Kate defaults
  87. were also changed to match TIGCC IDE more closely.)
  88. * Implemented coding template popups.
  89. * Implemented "Find symbol declaration".
  90. * Implemented Ctrl+Tab to switch between source files. As
  91. Ctrl+Tab is taken up by the default KDE shortcut
  92. settings, Ctrl+G can also be used.
  93. * Implemented completion on Ctrl+Space. As Ctrl+Space
  94. conflicts with X input methods, Ctrl+M can also be used.
  95. * Implemented prototype tooltips on opening a parenthesis.
  96. * Because of conflicts (Ctrl+F9 is reserved by KDE for
  97. virtual desktop switching, Ctrl+Alt+F9 and
  98. Shift+Ctrl+Alt+F9 by X.Org X11 for virtual console
  99. switching), F8 can now be used instead of Ctrl+F9. So F8
  100. is Make and Alt+F8 is Compile. The Ctrl+F9 and
  101. Ctrl+Alt+F9 combos are also supported if they reach
  102. KTIGCC.
  103. * Implemented the Shift+Ctrl+Alt+F9 (or Alt+Shift+F8, as
  104. per the above - note that you may have to press Alt first
  105. to get the combo recognized) combo (undocumented in TIGCC
  106. IDE) to switch transfer targets (TiEmu or real
  107. calculator) without going through the preferences.
  108. Bugfixes:
  109. * "New folder" wasn't always selecting the new folder for
  110. renaming. (Same for new files.)
  111. * Fixed file descriptor leak in loadFileText.
  112. * Opening the documentation could cause compilation and
  113. parsing (ctags) to lockup waiting for the external
  114. process (due to a conflict between Qt's and KDE's child
  115. process abstractions).
  116. Notes:
  117. * Debian (and derivate) users no longer need qt3-apps-dev
  118. to build KTIGCC.
  119. * The KTIGCC RPM now requires ktigcc-completion-data, which
  120. contains completion information for TIGCCLIB. KTIGCC
  121. itself will run without it, but warn you (and suggest
  122. either downloading it or generating it yourself from the
  123. documentation source code).
  124. KTIGCC 20060807 beta:
  125. Improvements:
  126. * Implemented customization of syntax highlighting.
  127. * The default projects directory (i.e. the directory the
  128. file dialogs are set to on startup) is now
  129. ~/tigcc-projects (where ~ stands for your home directory)
  130. instead of $TIGCC/projects (which is not writable out of
  131. the box for regular users in system-wide TIGCC setups).
  132. It is created on startup if it's not there.
  133. * The background color of list views and tree views is no
  134. longer hardcoded to white. (That was done to disable the
  135. alternating between 2 background colors, which is now
  136. disabled in a cleaner way.)
  137. Bugfixes:
  138. * KTIGCC now always adds a newline at the end of the
  139. temporary copies used for compiling, not just for C files
  140. (fixes warnings the Windows IDE filters out).
  141. * "Discard" in a save prompt no longer resets the
  142. "modified" flag, so if you don't actually close the
  143. file/project being prompted for (for example because
  144. you're just opening an out-of-project file rather than a
  145. project), you'll be prompted for saving again later.
  146. * "Save all" now saves out-of-project files only if they
  147. are actually modified (same as for in-project files).
  148. * Ctrl+C/Ctrl+Ins now work as expected when the error
  149. window is shown: They apply to the error window if it has
  150. the focus, and the main window otherwise.
  151. * KTIGCC now prompts for saving out-of-project source files
  152. before exiting.
  153. Note: The "Find symbol declaration" menu entry has been
  154. hidden because it is not implemented yet.
  155. KTIGCC 20060731 alpha:
  156. * TIGCC/*nix 0.96 Beta 7 r1 is now required. This allows
  157. KTIGCC to link compressed programs with an external data
  158. file only once. (It used to link them twice to work
  159. around a now-fixed ld-tigcc limitation.)
  160. * Implemented the following menu items:
  161. - Find / Open file at cursor
  162. - Help / News
  163. - the Tools menu
  164. * Fixed 2 path handling bugs:
  165. - files already having an absolute path were mishandled
  166. when saving a new project for the first time
  167. - file names passed on the command line were not
  168. converted to absolute paths, causing problems
  169. KTIGCC 20060723 alpha:
  170. KTIGCC now requires the 20060723 snapshot of libti* and
  171. TiEmu and makes use of its improvements. In particular:
  172. * faster transfers to TiEmu: sending to TiEmu now longer
  173. requires a harcoded 12-second wait. Instead, TiEmu now
  174. reports by itself whether the emulated calculator is ready
  175. or not. Thus, if TiEmu was already started, or if you have
  176. a fast computer and "restrict to actual speed" unchecked,
  177. the wait will be much less than 12 seconds.
  178. * the source code for linking has been simplified by using
  179. the new libticalcs2 APIs and dropping the compatibility
  180. workaround for the new libticables2 ticables_is_usb_enabled
  181. function.
  182. I have also fixed the test for qassistantclient.h to work
  183. on Debian and derivates.
  184. KTIGCC 20060720 alpha:
  185. * Implemented Find/Functions (both the dialog and the
  186. toolbar dropdown).
  187. * Exuberant Ctags (http://ctags.sourceforge.net) is now a
  188. runtime requirement, used to locate C prototypes and
  189. functions.
  190. * Pushbuttons for standard actions (OK, Cancel, Close) now
  191. show icons next to the text if KDE has been configured that
  192. way.
  193. * Fixed "use system icons" not to pad icons to 32x32.
  194. * "Use system icons" is now the default, this can be
  195. changed in the preferences.
  196. KTIGCC 20060717 alpha:
  197. Fixed bugs in compiling:
  198. * The hack to fix ld-tigcc's output so "Program Variable
  199. Name" is in the correct character set was always
  200. adding "main\" because it checked for / instead of \ as the
  201. path separator.
  202. * External data file support for compressed programs was
  203. completely broken.
  204. * Opening a modal dialog during compilation could crash
  205. KTIGCC.
  206. Fixed Remove on a directory to prompt for saving for all
  207. modified files in the directory. Pressing Del in the file
  208. tree is now equivalent to Remove.
  209. Implemented the Debug menu.
  210. libtifiles2 and libticalcs2 are now required too.
  211. KTIGCC 20060715 alpha:
  212. KTIGCC can now compile projects (compile sources into object files and link them
  213. into executables or static libraries, i.e. the Project menu is now complete).
  214. KDElibs 3.5.2 or higher are now required.
  215. KTIGCC 20060626 alpha:
  216. KTIGCC can now open source files not belonging to a project in detached source
  217. file windows.
  218. KTIGCC 20060622 alpha:
  219. This is the first snapshot of KTIGCC.