-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3092 lines (1959 loc) · 91.1 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-01-16 23:33 kevinkofler
* INSTALL: Add dbus-qt3 to the requirements for the RPM.
2009-01-16 23:25 kevinkofler
* ktigcc.pro, fedora/ktigcc-1.09-assistant-qt4.diff[DEAD],
fedora/ktigcc.spec[DEAD]: Remove Fedora RPM specfile - now
maintained on svn.calcforge.org. Remove "make rpm" target.
2009-01-16 23:01 kevinkofler
* ktigcc.cpp, fedora/ktigcc.spec: Bump version to 1.10. Bump
copyright years.
2009-01-16 22:52 kevinkofler
* NEWS: Summarize changes since 1.09.
2009-01-16 22:02 kevinkofler
* INSTALL: Update RPM installation instructions. Remove outdated
claim that KDE 4 is "not even alpha" yet.
2009-01-02 03:11 kevinkofler
* mainform.ui.h: Fix typo causing invalid array access when
renaming data variable.
2009-01-02 02:57 kevinkofler
* tpr.cpp: Remove bogus semicolon after minams_param macro to fix
else if chain.
2008-06-06 01:03 kevinkofler
* fedora/: ktigcc-1.09-assistant-qt4.diff, ktigcc.spec: Fedora RPM:
Fix Qt 4 Assistant patch not to crash if ~/.config/Trolltech
doesn't exist yet.
2008-05-01 17:37 kevinkofler
* fedora/: ktigcc-1.09-assistant-qt4.diff, ktigcc.spec: Fedora RPM
specfile: Don't BuildRequire qt-devel explicitly. Patch to
support and prefer Qt 4 Assistant. Require qt4-assistant instead
of qt-devel. Fix wrong header file included in callbacks.cpp
(breaks with GCC 4.3).
2008-05-01 17:33 kevinkofler
* NEWS, callbacks.cpp: #include <cstring> instead of <cstdlib> for
std::memset (fixes build with g++ 4.3).
2008-01-13 08:32 kevinkofler
* fedora/ktigcc.spec: Fedora RPM specfile: Bump Release for rebuild
for tilibs soname bumps. Specify GPL version in License tag.
BR/Require kdelibs3/kdebase3 instead of kdelibs/kdebase.
2007-12-09 10:03 roms
* configure: Fix wrapper script to work if /bin/sh is not bash.
2007-10-09 22:22 kevinkofler
* ChangeLog: KTIGCC 1.09 release.
2007-10-09 01:34 kevinkofler
* ktigcc.cpp, fedora/ktigcc.spec: Bump version to 1.09.
2007-10-09 01:30 kevinkofler
* NEWS, completion.cpp: Fix infinite loop when parsing user headers
including each other for completion information.
2007-09-01 23:36 kevinkofler
* fedora/ktigcc.spec: Bump specfile Release for rebuild for tilibs
soname bumps.
2007-07-09 12:39 kevinkofler
* INSTALL: Update RPM installation instructions.
2007-07-09 12:23 kevinkofler
* ChangeLog: KTIGCC 1.08 release.
2007-07-09 06:04 kevinkofler
* NEWS, configure, ktigcc.pro, fedora/ktigcc.spec: Allow setting
CXXFLAGS on the qmake command line. Don't install KTIGCC into
$TIGCC anymore, instead use $PREFIX (can also be set on the qmake
command line). Handle ./configure --prefix=foo. Drop obsolete
TAR_OPTIONS=--wildcards workaround.
2007-07-02 14:07 kevinkofler
* NEWS, preferences.cpp: Drop genAllCaseVariants hack, use new
"insensitive" attribute for the "keyword" tag instead.
2007-07-02 13:19 kevinkofler
* INSTALL, NEWS, ktigcc.cpp, fedora/ktigcc.spec: Bump minimum
required KDE version to 3.5.7. Actually check the version at
compile time and runtime.
2007-07-02 12:18 kevinkofler
* NEWS, tpr.cpp, tpr.h: Fix extra newline incorrectly added each
time a file is saved.
2007-07-02 11:57 kevinkofler
* NEWS, mainform.ui.h, srcfilewin.ui.h: Make Ctrl+Return work for
"Open file at cursor".
2007-07-02 11:23 kevinkofler
* fedora/ktigcc.spec, ktigcc.cpp: Bump version to 1.08.
2007-04-30 10:57 kevinkofler
* fedora/ktigcc.spec: Use standard icon name for the mimetype icon
symlink. Add compatibility symlink with the legacy name with the
gnome-mime- prefix.
2007-04-03 10:40 kevinkofler
* ChangeLog: KTIGCC 1.07 release.
2007-04-03 10:13 kevinkofler
* NEWS, mainform.ui.h: Store name of recent file to open before
calling savePrompt() (fixes the wrong recent file getting opened
when opening triggers save prompt).
2007-04-03 10:01 kevinkofler
* NEWS, mainform.ui.h: Fix adding to the recent file list getting
confused by changes to the list from other KTIGCC instances.
2007-04-03 09:20 kevinkofler
* NEWS, errorlist.ui, errorlist.ui.h: Don't grab the keyboard
globally (stealing key presses from other apps) in the
Errors&Warnings pane, only override the Ctrl+C and Ctrl+Ins
accelerators.
2007-04-02 04:05 kevinkofler
* NEWS, mainform.ui.h: Fix A68k items in the New menu being shown
even when A68k is not installed.
2007-03-08 09:59 kevinkofler
* INSTALL: Fix installation instructions:
* The RPM doesn't require desktop-file-utils anymore since 1.00.
* Fix yum command to include kdebase (which pulls in kdelibs and
qt).
2007-03-03 21:47 kevinkofler
* NEWS, programoptions.ui: Fix missing word wrap on the data
variable reloc label in Program Options.
2007-03-02 01:33 kevinkofler
* NEWS, preferences.cpp: Don't hardcode ~/.kde for localkdedir
(KDEHOME).
2007-02-26 05:34 kevinkofler
* NEWS, mainform.ui.h: Fix highlighting update when moving a file
to Header Files from another editable category. (The first character
was read from the wrong buffer.)
2007-01-29 10:26 kevinkofler
* NEWS, mainform.ui.h, srcfilewin.ui.h: Fix stray indentation at
the end of the line when autoclosing a curly brace as ENTER is
pressed.
2007-01-29 10:02 kevinkofler
* fedora/ktigcc.spec, ktigcc.cpp: Bump version to 1.07. Bump
copyright years.
2006-12-03 08:38 kevinkofler
* ChangeLog, NEWS, ktigcc.pro: Add a full changelog (generated from
CVS logs).
2006-12-01 00:14 kevinkofler
* .cdtproject, .cvsignore, .project,
.settings/org.eclipse.cdt.core.prefs,
.settings/org.eclipse.core.resources.prefs,
.settings/org.eclipse.core.runtime.prefs: Import Eclipse CDT
project.
2006-11-30 21:52 kevinkofler
* .cvsignore: Add .tm_project2.cache to .cvsignore, sort entries
per tool creating them.
2006-11-30 21:48 kevinkofler
* .cvsignore: Add .cvsignore file.
2006-11-25 17:39 kevinkofler
* INSTALL: Add ktigcc-completion-data*.noarch.rpm to the rpm lines.
2006-11-25 17:36 kevinkofler
* INSTALL: Update INSTALL section about installing from RPMs.
2006-11-25 17:22 kevinkofler
* NEWS, ktigcc.cpp: Disable debugging and informational messages
from libti*.
2006-11-25 17:07 kevinkofler
* ktigcc.cpp, fedora/ktigcc.spec: Bump version to 1.06.
2006-11-23 02:29 kevinkofler
* NEWS, mainform.ui.h: When saving a project for the first time, if
it is still named "Project1", set a name based on the .tpr file
name (as in TIGCC IDE).
2006-11-21 22:55 kevinkofler
* NEWS, mainform.ui.h: Ctrl+Tab/Ctrl+G now skips the project root
and the categories.
2006-11-21 21:35 kevinkofler
* NEWS, preferences.cpp: Add tas to default Integer Arithmetic
instructions. Add xdef, globl, altmacro and noaltmacro to
default GNU as directives.
2006-11-21 18:54 kevinkofler
* preferences.cpp: Fix typo in comment.
2006-11-21 18:37 kevinkofler
* NEWS, tpr.cpp: Fix wrong length computations when writing to a
file in UTF-8 or other multibyte charsets.
2006-11-16 10:28 kevinkofler
* NEWS, programoptions.ui: Fix missing layout in the Operating
System tab of the Program Options dialog.
2006-10-24 17:51 kevinkofler
* KTIGCC.prj[DEAD], NEWS, ktigcc.pro: Actually install Anjuta 2
project. Remove Anjuta 1 project.
2006-10-24 17:25 kevinkofler
* NEWS, ktigcc.cpp, fedora/ktigcc.spec: Bump version to 1.05. RPM
specfile: Require qt-devel instead of /usr/bin/assistant to fix
installation on FC6.
2006-10-24 17:17 kevinkofler
* KTIGCC.anjuta: Add Anjuta 2 project.
2006-10-08 03:54 kevinkofler
* NEWS, ktigcc.pro: Add missing -lkdeui to link line (needed for OS
X).
2006-09-25 12:26 kevinkofler
* NEWS, ktigcc.cpp, fedora/ktigcc.spec: Bump version to 1.04.
2006-09-23 05:46 kevinkofler
* NEWS, ktigcc.pro: Link all required KDE libraries explicitly
instead of relying on the linker pulling them in (which the OS X
linker doesn't do). Use the .ui, .moc and .obj subdirectories on
all platforms. Don't try to set an rpath on OS X, it is neither
supported nor needed.
2006-09-23 04:59 kevinkofler
* tpr.cpp: Use explicit memset to zero the buffer because the C++
way doesn't seem to work on OS X.
2006-09-17 06:56 kevinkofler
* NEWS, ktigcc.pro: Add workaround for rpmbuild 4.4.2 with tar
1.15.91 to make rpm target.
2006-09-17 06:05 kevinkofler
* NEWS, completion.cpp, ktigcc.cpp, fedora/ktigcc.spec: Bump
version to 1.03. Don't show symbol info for reserved keywords
even in the case of an exact match (fixes unhelpful prototype
help for "asm").
2006-09-05 08:08 kevinkofler
* NEWS, tpr.cpp: Fix bug in source file splitting causing the float
in x>=0. to get split.
2006-09-05 07:58 kevinkofler
* NEWS, tpr.cpp: Fix detection of "??=" in source file splitting.
2006-09-05 06:13 kevinkofler
* projectoptions.ui: Revert unasked-for geometry change.
2006-09-05 06:11 kevinkofler
* NEWS, projectoptions.ui: Fix the Project Options dialog not
reacting correctly to changing the target from a regular program
to another target or the other way round.
2006-09-05 06:03 kevinkofler
* NEWS, mainform.ui.h: Fix inverted logic bug causing the Debug
menu and toolbar buttons to get hidden during File/New/Project.
2006-09-04 03:41 kevinkofler
* ktigcc.cpp, fedora/ktigcc.spec: Bump version to 1.02.
2006-08-21 12:50 kevinkofler
* fedora/ktigcc.spec: Actually bump specfile version.
2006-08-21 12:48 kevinkofler
* NEWS, ktigcc.cpp, ktigcc.h, mainform.ui.h, srcfilewin.ui.h,
fedora/ktigcc.spec: Bump version to 1.01. Find and Replace
dialogs now remember history (but only for the current KTIGCC
session).
2006-08-20 06:14 kevinkofler
* NEWS: Update NEWS for 1.00.
2006-08-20 02:38 kevinkofler
* fedora/ktigcc.spec: RPM specfile: Drop date from version and bump
to 1.00. Don't use macros to define nvr.
2006-08-18 04:06 kevinkofler
* NEWS, fedora/ktigcc.spec: RPM specfile: Install both 16x16 and
32x32 versions of the icon. Associate *.tpr with KTIGCC (in both
KDE and GNOME). Don't require desktop-file-utils for post and
postun (not needed in FC5+).
2006-08-17 18:55 kevinkofler
* KTIGCC.prj, NEWS, mainform.ui.h, tpr.cpp, tpr.h: Fix moving files
across file systems after compilation not working.
2006-08-17 18:22 kevinkofler
* NEWS, ktigcc.pro: Add NEWS file containing the history
information previously published in the changelog snippets on
SourceForge.
2006-08-14 16:19 kevinkofler
* preferencesdlg.ui.h: Remember the directory used for include/c
during completion information parsing.
2006-08-14 14:44 kevinkofler
* completion.cpp: Implement approximate matching for prototype
hints.
2006-08-14 13:43 kevinkofler
* mainform.ui.h: Remove unneeded duplicate lines.
2006-08-14 13:36 kevinkofler
* mainform.ui, mainform.ui.h: Allow using F8 instead of Ctrl+F9.
2006-08-14 12:07 kevinkofler
* INSTALL: Add short (2 sentences) installation instructions for
ktigcc-completion-data.
2006-08-14 12:04 kevinkofler
* INSTALL: Mention ktigcc-completion-data in INSTALL.
2006-08-14 11:59 kevinkofler
* completion.cpp: Make sure we find the correct popup in my popup
detection hack.
2006-08-14 11:50 kevinkofler
* completion.cpp: Allow whitespace between the identifier and the
parenthesis.
2006-08-14 10:47 kevinkofler
* completion.cpp, completion.h, mainform.ui.h, srcfilewin.ui.h:
Implement argument hint popups.
2006-08-13 17:18 kevinkofler
* fedora/ktigcc.spec: Require ktigcc-completion-data in the RPM
specfile.
2006-08-13 17:11 kevinkofler
* completion.cpp: Warn if no TIGCCLIB completion data is available
and offer download link.
2006-08-13 15:45 kevinkofler
* completion.cpp: Remove comments from all the definition, not just
the left side. There's no room for them.
2006-08-13 15:31 kevinkofler
* completion.cpp: Fix parsing of enums from .hsf files.
2006-08-13 14:54 kevinkofler
* completion.cpp: Remove duplicate (i.e. all fields match)
completion entries when sorting the list for display.
2006-08-13 14:47 kevinkofler
* completion.cpp: Follow .ref links during .hsf parsing.
2006-08-13 14:27 kevinkofler
* completion.cpp: Handle empty "[Description]" lines.
2006-08-13 13:45 kevinkofler
* assistant.cpp: Try sending SIGTERM (KProcess::kill()) before
resorting to SIGKILL (KProcess::~KProcess()).
2006-08-13 13:21 kevinkofler
* INSTALL, KTIGCC.prj, assistant.cpp, assistant.h, ktigcc.h,
ktigcc.pro, mainform.ui.h, programoptions.ui.h, srcfilewin.ui.h:
Implement my own AssistantClient using KDE classes (KProcIO,
KExtendedSocket) because QAssistantClient uses QProcess which
conflicts with KProcess (fixes lockups while waiting for a
process to complete). This also means Debian users no longer
need qt3-apps-dev to build KTIGCC.
2006-08-13 09:15 kevinkofler
* completion.cpp, parsing.cpp, parsing.h: Parse .hsf files for
system header completion info.
2006-08-13 08:29 kevinkofler
* tpr.cpp: Fix file descriptor leak in loadFileText.
2006-08-13 06:35 kevinkofler
* mainform.ui.h: Enable "Find symbol declaration" and completion
for Quill files, to be consistent with external source files.
(They are useful mainly in the C section these files can have.)
2006-08-13 06:29 kevinkofler
* mainform.ui.h, srcfilewin.ui.h: The completion parser expects to
operate on a C (or Quill) file, so ignore Ctrl+Space/Ctrl+M for
assembly files.
2006-08-13 05:08 kevinkofler
* completion.cpp, completion.h: Intercept the completion popup
being closed without Kate telling us anything.
2006-08-13 03:55 kevinkofler
* mainform.ui: Revert an unasked-for property change Qt Designer
took on its own to make.
2006-08-13 03:39 kevinkofler
* completion.cpp, completion.h, mainform.ui, mainform.ui.h,
srcfilewin.ui, srcfilewin.ui.h: Implement completion on
Ctrl+Space (or Ctrl+M).
2006-08-13 02:01 kevinkofler
* mainform.ui.h: Oops, Ctrl+E is already taken, use Ctrl+G instead.
2006-08-13 01:05 kevinkofler
* mainform.ui.h: Implement Ctrl+Tab/Ctrl+E (switches to the next
file, there are 2 combos because Ctrl+Tab is taken by default
under KDE) and Shift+Ctrl+Alt+F9 (undocumented, switches link
target, or would if it worked - on Linux/X11, way too many key
combos are reserved by the system).
2006-08-12 23:55 kevinkofler
* preferencesdlg.ui: Add keyboard accelerators to
Preferences/Coding.
2006-08-12 03:19 kevinkofler
* preferencesdlg.ui.h: Set wait cursor while generating completion
info from system headers so the user knows KTIGCC is busy.
2006-08-12 02:45 kevinkofler
* completion.cpp, completion.h, mainform.ui.h, parsing.cpp,
preferencesdlg.ui.h: Implement loading/saving system header
completion info. Fix asmspec removal regex. Remove spaces
before , and ) in signatures produced by ctags.
2006-08-12 01:18 kevinkofler
* completion.cpp: Apply the same recursion fixes (recurse over
system headers, avoid infinite recursion) as in findSymbolInFile
in completionEntriesForFile.
2006-08-12 01:05 kevinkofler
* completion.cpp, completion.h, parsing.cpp, preferencesdlg.ui,
preferencesdlg.ui.h: Generate completion info from system headers
(not help system sources yet, also no loading/saving yet).
2006-08-11 17:43 kevinkofler
* mainform.ui.h: Fix warnings from recent g++ about -1 being passed
where an unsigned number is expected (reported by Romain
Liévin).
2006-08-11 00:31 kevinkofler
* mainform.ui.h, preferencesdlg.ui.h: Fix "New folder" not always
selecting the folder for renaming (another instance of the
KListView bug already worked around in the Preferences dialog,
clean that workaround up a bit while I am at it).
2006-08-11 00:19 kevinkofler
* parsing.cpp: Prepare parseFileCompletion for system header
parsing.
2006-08-11 00:02 kevinkofler
* completion.h, mainform.ui, mainform.ui.h, srcfilewin.ui,
srcfilewin.ui.h: Implement "Find symbol declaration" (currently
does not search system headers).
2006-08-10 23:15 kevinkofler
* mainform.ui, mainform.ui.h: Implement openHeader helper function
for "Find symbol declaration".
2006-08-10 22:45 kevinkofler
* completion.cpp, completion.h: Implement recursive routines to
find a symbol and to collect completion information in a file and
all the headers it includes.
2006-08-10 18:51 kevinkofler
* mainform.ui, mainform.ui.h, srcfilewin.ui.h: Mark completion data
dirty if the file was changed.
2006-08-10 18:26 kevinkofler
* completion.h, ktigcc.h, mainform.ui.h, parsing.cpp,
srcfilewin.ui.h: Clean up setTextSafe (needed for the coming
change to invalidate completion info on changes).
2006-08-10 18:00 kevinkofler
* completion.cpp, completion.h, mainform.ui, mainform.ui.h,
parsing.cpp, parsing.h: Implement function to parse a source file
for completion info. Implement function to get a file's contents
given its in-project path.
2006-08-09 09:48 kevinkofler
* KTIGCC.prj, completion.cpp, completion.h, ktigcc.pro,
mainform.ui.h, srcfilewin.ui.h: Implement template popups
(Ctrl+J).
2006-08-09 07:09 kevinkofler
* preferences.cpp: Change (int)0 to 0 and (int)0x1000020 to
0x1000020u (because it is actually unsigned). Should be purely
cosmetical.
2006-08-09 07:06 kevinkofler
* ktigcc.cpp, preferences.cpp: Tab now reliably inserts a tab. Use
Ctrl+I to indent the selection. (Also set other Kate defaults to
match TIGCC IDE more closely.)
2006-08-09 05:49 kevinkofler
* preferences.cpp: Enable auto-indent (=> syntax highlighting
description version 1.01). Regenerate syntax highlighting
descriptions if they are missing or out of date.
2006-08-09 03:48 kevinkofler
* preferences.cpp, preferences.h, preferencesdlg.ui,
preferencesdlg.ui.h: Implement customizable list of templates.
Can't actually be used yet though.
2006-08-07 09:25 kevinkofler
* preferences.cpp: Fix missing mkdir_multi.
2006-08-07 03:51 kevinkofler
* fedora/ktigcc.spec: Bump RPM version from 0.0.date (alpha) to
0.80.date (beta).
2006-08-07 03:04 kevinkofler
* mainform.ui, mainform.ui.h, srcfilewin.ui: Temporarily hide
unimplemented "Find symbol declaration" so I can release a beta
without non-working menu items.
2006-08-07 02:58 kevinkofler
* srcfilewin.ui: Where did that geometry property for the
SourceFileWindow toolbar suddenly come from? Remove it again.
2006-08-07 02:53 kevinkofler
* mainform.ui.h, srcfilewin.ui, srcfilewin.ui.h: Prompt for saving
out-of-project source files before exiting.
2006-08-07 00:37 kevinkofler
* KTIGCC.prj, errorlist.ui, errorlist.ui.h, mainform.ui,
mainform.ui.h: Fix Ctrl+C/Ctrl+Ins conflict between main window
and error list. (Now works as expected: They apply to the error
window if it has the focus, and the main window otherwise.)
2006-08-06 22:11 kevinkofler
* errorlist.ui, mainform.ui, mainform.ui.h, preferencesdlg.ui,
preferencesdlg.ui.h: Don't hardcode background color of
KListViews to white, set alternateColor to QColor() instead.
2006-08-06 21:27 kevinkofler
* preferences.cpp: "Switchable" only switches to other styles with
the same ending.
2006-08-06 20:56 kevinkofler
* preferences.cpp: Delete spaces at end of line.
2006-08-06 20:44 kevinkofler
* callbacks.cpp: Fix typo. (Doesn't really matter in practice.)
2006-08-06 08:40 kevinkofler
* customstyle.ui, preferencesdlg.ui.h: Delete unused "newSlot()"
slot. Set parent of SelectStyle dialog in
editDialog_styleButton_clicked() to editDialog.
2006-08-06 08:33 kevinkofler
* customstyle.ui, preferencesdlg.ui, preferencesdlg.ui.h: Finish
syntax highlighting customization.
2006-08-06 06:23 kevinkofler
* preferencesdlg.ui.h: Implement "New Style" and "New List" buttons
in syntax highlighting customization.
2006-08-06 04:33 kevinkofler
* KTIGCC.prj, colorlistitem.h, ktigcc.pro, preferencesdlg.ui.h,
selectcolors.ui, selectcolors.ui.h: Implement setting colors of
parentheses.
2006-08-06 03:31 kevinkofler
* preferencesdlg.ui, preferencesdlg.ui.h: Use clicked() instead of
pressed() (which does not do what you may think it does),
obviating the need for the setDown(FALSE) hack.
2006-08-06 03:23 kevinkofler
* KTIGCC.prj, preferences.cpp, preferencesdlg.ui.h,
selectcolors.ui, selectcolors.ui.h, selectstyle.ui,
selectstyle.ui.h: Fix spelling of "strikeOut" in generated XML
files (Kate wants the O capitalized). Implement style and color
setting for numbers and symbols and style setting for
parentheses.
2006-08-06 02:22 kevinkofler
* mainform.ui.h: Remove redundant braces again.
2006-08-06 02:20 kevinkofler
* mainform.ui.h: Add another crude hack to fix reloading the
highlighting in the case where there is exactly one Kate view
open.
2006-08-06 01:00 kevinkofler
* mainform.ui.h, srcfilewin.ui.h: Revise hack to update syntax
highlighting settings in filePreferences.
2006-08-06 00:25 kevinkofler
* preferences.cpp, preferences.h, preferencesdlg.ui.h: Implement
syntax highlighting reset.
2006-08-05 22:32 kevinkofler
* mainform.ui.h, preferences.h, preferencesdlg.ui,
preferencesdlg.ui.h, srcfile.h, srcfilewin.ui.h: Allow disabling
syntax highlighting from the preferences.
2006-08-05 09:42 kevinkofler
* mainform.ui.h, preferences.cpp, preferences.h, preferencesdlg.ui,
preferencesdlg.ui.h, srcfilewin.ui.h: Start implementing syntax
highlighting preferences: * language drop down * tree view,
renaming, Delete key * re-highlight all Kate views after changing
the preferences
2006-08-05 02:14 kevinkofler
* KTIGCC.prj, customstyle.ui, ktigcc.pro, preferencesdlg.ui,
selectcolors.ui, selectstyle.ui, wordlist.ui: Design dialogs for
syntax highlighting customization.
2006-08-04 22:49 kevinkofler
* mainform.ui.h: Set the default project directory to
~/tigcc-projects instead of $TIGCC/projects (which doesn't make
much sense for the usual case of a system-wide TIGCC install).
2006-08-04 07:26 kevinkofler
* preferences.cpp: Add '#' to the additionalDeliminator (sic) list.
2006-08-04 03:24 kevinkofler
* gnuasm68k.xml[DEAD], ktigcc.pro, masm68k.xml[DEAD],
fedora/ktigcc.spec: Remove no longer needed Kate ASM syntax
descriptions.
2006-08-04 03:19 kevinkofler
* mainform.ui.h: Use the autogenerated syntax highlighting
descriptions instead of the C one from Kate resp. the ASM ones by
Spectras. Don't allow opening out-of-project A68k or Quill
source files if support for A68k resp. Quill is not installed.
2006-08-04 03:01 kevinkofler
* preferences.cpp: Change number detection so assembly numbers
(immediates, A68k hex numbers) get detected properly.
2006-08-04 02:13 kevinkofler
* preferences.cpp: Generate itemDatas section, giving complete
syntax highlighting descriptions.
2006-08-04 01:38 kevinkofler
* preferences.cpp: Special case space as ending,
2006-08-04 01:19 kevinkofler
* preferences.cpp: Generate contexts for custom styles.
2006-08-04 00:35 kevinkofler
* preferences.cpp: Generate contexts for parenthesis levels.
2006-08-04 00:09 kevinkofler
* ktigcc.cpp, preferences.cpp: Remove Joey's old skeleton for an
XML syntax file generator, it was really broken beyond repair.
Start XML syntax file generator. The resulting files are not
usable yet.
2006-08-03 21:04 kevinkofler
* preferences.cpp, preferences.h: Reorganize syntax preferences
code a bit to prepare for XML syntax description generation.
defaultSynHighlight is now exported and saves syntax preferences.
2006-08-03 03:52 kevinkofler
* preferences.h: Replace tabs with spaces.
2006-08-03 03:49 kevinkofler
* preferences.cpp, preferences.h: Added missing lineStartOnly flag.
2006-08-03 03:13 kevinkofler
* preferences.cpp: Implement saving syntax highlighting settings.
Fix wrong separators in word lists.
2006-08-03 02:41 kevinkofler
* preferences.cpp, preferences.h: Load syntax highlighting settings
from the config file. Use QStringList instead of QString for the
word lists.
2006-08-03 00:15 kevinkofler
* tpr.cpp: Properly handle calculator characters which use 2 UTF-16
codepoints during source file splitting.
2006-08-02 04:11 kevinkofler
* preferences.cpp, preferences.h: Clean up use of data types in the
syntax highlighting setting structures.
2006-08-01 07:57 kevinkofler
* mainform.ui.h: Only save external source files in fileSave if
they have been modified.
2006-08-01 07:47 kevinkofler
* mainform.ui.h, srcfilewin.ui.h: Don't clear modified flags on
"Discard" in save prompts. If the Open command is actually used
to open an external file, not a project, "Discard" is often used
just to get rid of the save prompts, and ending up with the file
not getting saved later can be irritating.
2006-07-31 21:53 kevinkofler
* tpr.cpp: Unconditionally add the newline to the temp source file
when compiling, don't do it just for C files. (Headers and GNU
assembly files need the newline just as well, and TIGCC IDE
filters the warning afterwards for header files.)
2006-07-31 08:13 kevinkofler
* mainform.ui.h: Implement toolsMenu_activated.
2006-07-31 07:25 kevinkofler
* mainform.ui, mainform.ui.h: Update Tools menu.
2006-07-31 06:00 kevinkofler
* toolprops.ui, toolprops.ui.h: Implement browse button for
ToolProperties.
2006-07-31 05:53 kevinkofler
* mainform.ui.h: Remember tools across executions.
2006-07-31 05:34 kevinkofler
* toolprops.ui, toolprops.ui.h, toolsdlg.ui.h: Implement
ToolProperties.
2006-07-31 04:50 kevinkofler
* KTIGCC.prj, ktigcc.h, mainform.ui.h, toolprops.ui,
toolprops.ui.h, toolsdlg.ui, toolsdlg.ui.h: Implement ToolsDialog
(but needs ToolProperties to be of use).
2006-07-31 01:20 kevinkofler
* KTIGCC.prj, ktigcc.pro, toolprops.ui, toolsdlg.ui: Design
Configure Tools and Tool Properties dialogs.
2006-07-30 07:25 kevinkofler
* mainform.ui.h, tpr.cpp: Use --outputbin-main-only (ld-tigcc
switch) instead of linking twice for compressed programs with an
external data file. TIGCC 0.96 Beta 7 r1 required.
2006-07-30 07:07 kevinkofler
* ktigcc.cpp, fedora/ktigcc.spec: Bump TIGCC requirement in the RPM
specfile. Update TIGCC copyright date.
2006-07-28 12:03 kevinkofler
* mainform.ui.h: Convert file name passed on the command line to an
absolute path.
2006-07-27 23:33 kevinkofler
* mainform.ui.h: Fix saving a new project mishandling files already
having an absolute path.
2006-07-26 07:33 kevinkofler
* newsdlg.ui.h: Fix proxy server page title getting translated
while everything else doesn't. Detect missing proxy
configuration module (no kdebase) and show error.
2006-07-26 06:17 kevinkofler
* images/ktigcc.png: Set binary flag on ktigcc.png
2006-07-26 06:13 kevinkofler
* KTIGCC.prj, ktigcc.pro, mainform.ui.h, srcfilewin.ui.h,
fedora/ktigcc.spec, images/ktigcc.png: Add small version of TIGCC
IDE icon. Use it for the .desktop file in the RPM and for the
task bar.
2006-07-26 04:04 kevinkofler
* mainform.ui.h, newsdlg.ui.h, preferences.cpp: Save modified
preferences to file right away. Always treat newsheadlines.txt
as UTF-8.
2006-07-26 03:42 kevinkofler
* newsdlg.ui.h: Finish Help/News.
2006-07-26 02:01 kevinkofler
* mainform.ui.h, newsdlg.ui, newsdlg.ui.h: Implement "Download
headlines on startup" preference, News dialog Refresh and Visit
buttons. (But no actual news downloading yet.)
2006-07-26 01:42 kevinkofler
* INSTALL, KTIGCC.prj, ktigcc.pro, mainform.ui.h, newsdlg.ui,
newsdlg.ui.h, fedora/ktigcc.spec: Start implementing Help/News.
kdebase required to display proxy settings.
2006-07-25 09:48 kevinkofler
* mainform.ui, mainform.ui.h, srcfilewin.ui.h: Implement Find/Open
file at cursor.
2006-07-25 08:24 kevinkofler
* mainform.ui.h: Enable Find/Open file at cursor and Find/Find
symbol declaration for editable files (not implemented yet
though).
2006-07-25 08:12 kevinkofler
* ktigcc.h, mainform.ui.h, preferences.cpp, preferencesdlg.ui.h:
Cache result of ticables_is_usb_enabled so the check isn't run
over and over again.
2006-07-23 21:14 kevinkofler
* mainform.ui.h: Use the new ticalcs_probe function (simplifies
probing code).
2006-07-23 20:55 kevinkofler
* callbacks.cpp, mainform.ui.h: Update callback code for new
libticalcs2 progress report interface. Increase timeout for
links with real calculators.
2006-07-23 20:39 kevinkofler
* ktigcc.pro: Require libticalcs2 0.2.4 (from 20060723 snapshot).
2006-07-23 20:19 kevinkofler
* mainform.ui.h: Remove arbitrary waits (no longer needed with
current TiEmu).
2006-07-23 20:06 kevinkofler
* fedora/ktigcc.spec: RPM specfile: Use libti*-devel instead of
libti* in BuildRequires. BuildRequire libti* 20060723.
2006-07-23 20:02 kevinkofler
* ktigcc.pro, preferences.cpp, preferencesdlg.ui.h: Require latest
libticables2 (0.1.3 from 20060723 snapshot), drop compatibility
code.