NEWS 8.1 KB

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