-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommitLog
5908 lines (4037 loc) · 299 KB
/
commitLog
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
intial commit
------------------------------------------------------------------------
r1495 | tbreina | 2012-06-04 15:00:09 -0400 (Mon, 04 Jun 2012) | 2 lines
Removed extraneous ShowMessage
Updated some bitmap graphic file names.
------------------------------------------------------------------------
r1494 | tbreina | 2012-06-04 14:45:18 -0400 (Mon, 04 Jun 2012) | 2 lines
Re-enabled code- completion form release on exit.
------------------------------------------------------------------------
r1493 | tbreina | 2012-06-04 14:41:51 -0400 (Mon, 04 Jun 2012) | 6 lines
Updated VistaAltFixUnit code with Marc Durdin's re-write. The old AltFix code caused a random crash on exiting the IDE. For some reason, TWndProc was still called AFTER the window had closed and caused a invalid pointer access.
I've also corrected (?) the bitmap file name for the form icon. It was previously set to 'Self_' component name, but referred to as parent + component name XPM in the code.
Finally, string format default changed from wxT() to _() which can handle the German characters.
------------------------------------------------------------------------
r1492 | tbreina | 2012-05-10 13:31:23 -0400 (Thu, 10 May 2012) | 2 lines
Update -c configuration code.
------------------------------------------------------------------------
r1491 | tbreina | 2012-04-29 18:43:20 -0400 (Sun, 29 Apr 2012) | 1 line
Debugger parser update from Robert Wall for unicode strings.
------------------------------------------------------------------------
r1490 | tbreina | 2012-04-13 13:35:12 -0400 (Fri, 13 Apr 2012) | 1 line
Random bug that occurs when we try to focus a synedit text that is not enabled.
------------------------------------------------------------------------
r1489 | tbreina | 2012-04-08 17:11:02 -0400 (Sun, 08 Apr 2012) | 2 lines
StrToFloat failed on some locales because the decimal and thousand separators are different. For example, european locales use a comma as the decimal separator. I've added a StrToFloatInternational function which tries the standard StrToFloat and, if it fails, switches the thousands and decimal separators and tries again.
------------------------------------------------------------------------
r1488 | tbreina | 2012-03-28 14:56:35 -0400 (Wed, 28 Mar 2012) | 1 line
7.4.2.542 Release / 7.4.2.61 wxdsgn
------------------------------------------------------------------------
r1487 | tbreina | 2012-03-27 16:40:32 -0400 (Tue, 27 Mar 2012) | 2 lines
Fixed code completion listbox. Now you can add new files and folders without removing the old ones in the cache.
Also, horizontal scrollbar now shows up as necessary in listbox.
------------------------------------------------------------------------
r1486 | tbreina | 2012-03-26 23:55:29 -0400 (Mon, 26 Mar 2012) | 4 lines
Changed CodeComplForm destructor to Release
Added if-then to make sure foldername wasn't greater than size of the buffer
Changed logic for cache wildcard so that only header files are added to the cache.
Re-labeled "Loading cache..." to "Parsing files..." which is more accurate.
------------------------------------------------------------------------
r1485 | tbreina | 2012-03-23 23:28:15 -0400 (Fri, 23 Mar 2012) | 4 lines
Trying to solve Robert's ReadFile problem in TCodeParser.Load. I'm checking the return size of strLen to make sure it's correct. Otherwise, it will show a message of its size.
Also, I've put the FreeAndNil for CodeComplForm at the end of the TCodeCompletion.Destroy since the fCompletionStatementList and fFullCompletionStatementLists point to the CodeCompletionForm's TListBox and think need to be free and niled before the form.
------------------------------------------------------------------------
r1484 | tbreina | 2012-03-20 13:52:16 -0400 (Tue, 20 Mar 2012) | 4 lines
Code beautifier.
Some commenting of CodeCompletion.pas
Pretty close to 7.4.2 release.
------------------------------------------------------------------------
r1483 | tbreina | 2012-03-20 01:02:37 -0400 (Tue, 20 Mar 2012) | 3 lines
Reverted explicitly free'ing the CodeComplForm in the TCodeCompletion destructor to get rid of a destructor bug.
Final changes made to replace hardcoded MAX_TOKEN_SIZE with the maximum buffer size of the file line being tokenized. Hopefully, we won't be ableto generate any more buffer overruns.
------------------------------------------------------------------------
r1482 | tbreina | 2012-03-19 16:53:07 -0400 (Mon, 19 Mar 2012) | 2 lines
First attempt to fix MAX_TOKEN_SIZE bug that seems to be causing the random parser faults. This still needs to be generalized since we also compare the string to MAX_TOKEN_SIZE (Can this code be dropped??)
------------------------------------------------------------------------
r1481 | tbreina | 2012-03-18 23:02:47 -0400 (Sun, 18 Mar 2012) | 1 line
Still a work in progress.Trying to clean up the Parser and code completion code. When destroying the TList pointers, it is best to dispose and delete from the last entry downto the first (rather than from first to last) to avoid the memory move needed, This code is still buggy.
------------------------------------------------------------------------
r1480 | tbreina | 2012-02-26 23:39:36 -0500 (Sun, 26 Feb 2012) | 2 lines
Code completion cache window now fills again with the cached filenames. Clicking on filename in cache listbox will show hint with full pathname of file.
------------------------------------------------------------------------
r1479 | tbreina | 2012-02-26 19:10:31 -0500 (Sun, 26 Feb 2012) | 2 lines
Fix for compiler progress form progress bar. New RmExe for makfile was confusing things. Added 'del /Q' to if-then
Fix for wxdsgn bpl compatibility.
------------------------------------------------------------------------
r1478 | tbreina | 2012-02-26 17:27:53 -0500 (Sun, 26 Feb 2012) | 2 lines
Fixed delete current profile. Now it correctly reverts to profile 0 after deletion.
Fixed all of the compiler warnings and hints about unused variables. Should compile cleanly now.
------------------------------------------------------------------------
r1477 | tbreina | 2012-02-23 16:39:49 -0500 (Thu, 23 Feb 2012) | 2 lines
Debugger execution now checks if debug flag was added in compiler profile and asks if the user wants to add it.
------------------------------------------------------------------------
r1476 | tbreina | 2012-02-20 19:22:55 -0500 (Mon, 20 Feb 2012) | 4 lines
Directory for gcc lib changed.
Manifest RM makefile line updated for Visual C++
Fix for remove unit in class browser.
------------------------------------------------------------------------
r1475 | tbreina | 2012-02-20 15:58:51 -0500 (Mon, 20 Feb 2012) | 2 lines
Remove CP.exe. Not needed for devpak_batchmaker
------------------------------------------------------------------------
r1474 | tbreina | 2012-02-20 15:57:38 -0500 (Mon, 20 Feb 2012) | 1 line
Updated devpak_batchmaker. Using Windows command shell CHOICE rather than CP.exe
------------------------------------------------------------------------
r1473 | tbreina | 2012-02-20 15:23:37 -0500 (Mon, 20 Feb 2012) | 1 line
Updated devpak batchmaker templates
------------------------------------------------------------------------
r1472 | tbreina | 2012-02-20 15:11:29 -0500 (Mon, 20 Feb 2012) | 1 line
Updated devpak batchmaker templates
------------------------------------------------------------------------
r1471 | tbreina | 2012-02-19 23:40:25 -0500 (Sun, 19 Feb 2012) | 1 line
More templates
------------------------------------------------------------------------
r1470 | tbreina | 2012-02-19 23:33:25 -0500 (Sun, 19 Feb 2012) | 2 lines
More template fixes
------------------------------------------------------------------------
r1469 | tbreina | 2012-02-19 23:28:00 -0500 (Sun, 19 Feb 2012) | 1 line
Update to templates for 7.4.2
------------------------------------------------------------------------
r1468 | tbreina | 2012-02-18 23:55:49 -0500 (Sat, 18 Feb 2012) | 3 lines
Now getting the correct directories for MS VC 2010 on Windows 7.
Toggle command doesn't de-activate when non-project file is closed.
------------------------------------------------------------------------
r1467 | tbreina | 2012-02-18 20:19:08 -0500 (Sat, 18 Feb 2012) | 2 lines
Updated templates to use MS VC 2010
------------------------------------------------------------------------
r1466 | tbreina | 2012-02-12 00:44:10 -0500 (Sun, 12 Feb 2012) | 2 lines
Fix for writing registry settings on Windows >= Vista. UAC permissions prevent the Windows registry from being written without elevation to admin. I've added a function that checks to see if the IDE was run "as admin". If not, then registry can only be read not written.
------------------------------------------------------------------------
r1465 | tbreina | 2012-02-11 22:21:54 -0500 (Sat, 11 Feb 2012) | 1 line
debugger fix for passing text into integer field for LoadAllWatches
------------------------------------------------------------------------
r1464 | tbreina | 2012-02-11 20:00:10 -0500 (Sat, 11 Feb 2012) | 2 lines
Fix for XPM generation. Check to see if Images subdirectory exists and create it if not. Otherwise, XPM file won't save.
------------------------------------------------------------------------
r1463 | tbreina | 2012-02-11 19:24:05 -0500 (Sat, 11 Feb 2012) | 1 line
Code beautifier
------------------------------------------------------------------------
r1462 | tbreina | 2012-02-10 16:56:42 -0500 (Fri, 10 Feb 2012) | 3 lines
Code beautifier
Some protection for FreeAndNil attempts in Destructor
------------------------------------------------------------------------
r1461 | tbreina | 2012-01-28 21:55:41 -0500 (Sat, 28 Jan 2012) | 1 line
Updating templates and devpak batchmaker
------------------------------------------------------------------------
r1460 | tbreina | 2012-01-28 21:22:24 -0500 (Sat, 28 Jan 2012) | 1 line
Updating NSIS installer
------------------------------------------------------------------------
r1459 | tbreina | 2012-01-28 01:18:08 -0500 (Sat, 28 Jan 2012) | 2 lines
Missed l in wxscintilla linker option
------------------------------------------------------------------------
r1458 | tbreina | 2012-01-28 00:59:12 -0500 (Sat, 28 Jan 2012) | 1 line
Detects TDM-GCC MinGW installation path and uses that for directories.
------------------------------------------------------------------------
r1457 | tbreina | 2012-01-28 00:52:06 -0500 (Sat, 28 Jan 2012) | 1 line
Updated templates and batchmaker
------------------------------------------------------------------------
r1456 | tbreina | 2012-01-28 00:51:26 -0500 (Sat, 28 Jan 2012) | 1 line
Updated templates
------------------------------------------------------------------------
r1455 | tbreina | 2012-01-25 17:06:21 -0500 (Wed, 25 Jan 2012) | 2 lines
Remove all extraneous include paths
Change Destroy to Free on several components.
------------------------------------------------------------------------
r1454 | tbreina | 2012-01-23 16:08:12 -0500 (Mon, 23 Jan 2012) | 1 line
Update to HTML help pages for debugger
------------------------------------------------------------------------
r1453 | tbreina | 2012-01-23 16:07:26 -0500 (Mon, 23 Jan 2012) | 1 line
Update to HTML help pages for debugger
------------------------------------------------------------------------
r1452 | tbreina | 2012-01-22 23:19:25 -0500 (Sun, 22 Jan 2012) | 1 line
Less verbosity in debugging multithreaded apps.
------------------------------------------------------------------------
r1451 | tbreina | 2012-01-22 23:17:49 -0500 (Sun, 22 Jan 2012) | 1 line
HTML helpfile updates for multithreaded debugger
------------------------------------------------------------------------
r1450 | tbreina | 2012-01-22 23:16:11 -0500 (Sun, 22 Jan 2012) | 1 line
HTML helpfile updates for multithreaded debugger
------------------------------------------------------------------------
r1449 | tbreina | 2012-01-22 22:59:15 -0500 (Sun, 22 Jan 2012) | 1 line
HTML helpfile updates for multithreaded debugger
------------------------------------------------------------------------
r1448 | tbreina | 2012-01-21 19:43:08 -0500 (Sat, 21 Jan 2012) | 1 line
Fixing seg fault in multithreaded debugger.pas
------------------------------------------------------------------------
r1447 | tbreina | 2012-01-16 21:52:14 -0500 (Mon, 16 Jan 2012) | 2 lines
More updates to debugger for multiple threads. (Robert)
------------------------------------------------------------------------
r1446 | tbreina | 2012-01-09 23:59:26 -0500 (Mon, 09 Jan 2012) | 3 lines
debugger updates for multi-threaded apps courtesy of Robert Wall
added strtointdef to protect against bad string to int conversions
------------------------------------------------------------------------
r1445 | tbreina | 2012-01-09 14:13:33 -0500 (Mon, 09 Jan 2012) | 2 lines
Removed some showmessage. Updated wxMenu code generation.
------------------------------------------------------------------------
r1444 | tbreina | 2011-12-28 22:37:17 -0500 (Wed, 28 Dec 2011) | 2 lines
Fix for synedit crash when closing multiple windows.
------------------------------------------------------------------------
r1443 | tbreina | 2011-12-26 20:48:00 -0500 (Mon, 26 Dec 2011) | 1 line
New project window bug fix??
------------------------------------------------------------------------
r1442 | tbreina | 2011-12-11 19:34:51 -0500 (Sun, 11 Dec 2011) | 2 lines
Updating devpak batchmaker
------------------------------------------------------------------------
r1441 | tbreina | 2011-12-11 18:17:01 -0500 (Sun, 11 Dec 2011) | 2 lines
Add keywords "updater" and "installer" to PackMan so that it will elevate permissions when run on Windows with UAC.
------------------------------------------------------------------------
r1440 | tbreina | 2011-12-11 17:41:26 -0500 (Sun, 11 Dec 2011) | 1 line
NSIS updates for 7.4.1
------------------------------------------------------------------------
r1439 | tbreina | 2011-12-10 22:23:15 -0500 (Sat, 10 Dec 2011) | 4 lines
Bug fix #3456175
Bug fix #3455309
Bug fix #343172
I think this also fixes #3434169 and 3434166
------------------------------------------------------------------------
r1438 | tbreina | 2011-12-07 14:21:38 -0500 (Wed, 07 Dec 2011) | 1 line
Editor help update from Robert Wall
------------------------------------------------------------------------
r1437 | tbreina | 2011-12-07 14:17:12 -0500 (Wed, 07 Dec 2011) | 1 line
Update to editor help file from Robert Wall
------------------------------------------------------------------------
r1436 | tbreina | 2011-12-01 12:37:16 -0500 (Thu, 01 Dec 2011) | 4 lines
Execute and Debug menus are now disabled until file is loaded/opened.
Also, kludge fix for sizer parent name when child is sizer within a notebook page.
------------------------------------------------------------------------
r1435 | tbreina | 2011-11-16 15:18:23 -0500 (Wed, 16 Nov 2011) | 1 line
Hungarian language update courtesy of Nyilas MISY
------------------------------------------------------------------------
r1434 | tbreina | 2011-11-06 15:48:47 -0500 (Sun, 06 Nov 2011) | 1 line
Devpak updated for help
------------------------------------------------------------------------
r1433 | tbreina | 2011-11-06 15:47:30 -0500 (Sun, 06 Nov 2011) | 1 line
New HTML help file
------------------------------------------------------------------------
r1432 | tbreina | 2011-11-06 15:41:32 -0500 (Sun, 06 Nov 2011) | 1 line
New debugger help files courtesy of Robert Wall.
------------------------------------------------------------------------
r1431 | tbreina | 2011-10-31 13:04:27 -0400 (Mon, 31 Oct 2011) | 1 line
Updated debugger message dialog when seg fault is detected. Now reads "Ok", "Ignore", "Abort" instead of "Yes", "No", "Abort".
------------------------------------------------------------------------
r1430 | tbreina | 2011-10-28 15:05:35 -0400 (Fri, 28 Oct 2011) | 2 lines
Check Syntax option correction for gcc ?
------------------------------------------------------------------------
r1429 | tbreina | 2011-10-27 22:12:08 -0400 (Thu, 27 Oct 2011) | 2 lines
Mirror url was incorrect.
------------------------------------------------------------------------
r1428 | tbreina | 2011-10-20 23:12:19 -0400 (Thu, 20 Oct 2011) | 1 line
More NSIS installer stuff. Lets just fall back when no internet connection is detected.
------------------------------------------------------------------------
r1427 | tbreina | 2011-10-20 22:56:07 -0400 (Thu, 20 Oct 2011) | 1 line
NSIS cleanup of if-then for internet
------------------------------------------------------------------------
r1426 | tbreina | 2011-10-20 22:45:34 -0400 (Thu, 20 Oct 2011) | 1 line
NSIS installer now checks webupdate.conf on server to determine if we need to grab the latest devpak.
------------------------------------------------------------------------
r1425 | tbreina | 2011-10-19 14:46:16 -0400 (Wed, 19 Oct 2011) | 2 lines
Packman now detects environment variables like %PATH%, %ALLUSERSPROFILE%, and %APPDATA%.
------------------------------------------------------------------------
r1424 | tbreina | 2011-10-17 13:32:21 -0400 (Mon, 17 Oct 2011) | 2 lines
NSIS installer update. Using inetc instead of NSISDL to download devpaks from sourceforge since new sourceforge FRS server re-directs to mirror url. Inetc can handle mirrors (even resumes download on connection error!!) but NSISDL cannot.
------------------------------------------------------------------------
r1423 | ninjanl | 2011-10-15 12:44:05 -0400 (Sat, 15 Oct 2011) | 1 line
User dependent settings
------------------------------------------------------------------------
r1422 | ninjanl | 2011-10-15 11:43:02 -0400 (Sat, 15 Oct 2011) | 1 line
------------------------------------------------------------------------
r1421 | ninjanl | 2011-10-15 11:40:37 -0400 (Sat, 15 Oct 2011) | 1 line
------------------------------------------------------------------------
r1420 | tbreina | 2011-10-14 23:14:52 -0400 (Fri, 14 Oct 2011) | 1 line
7.4.0.77 release
------------------------------------------------------------------------
r1419 | tbreina | 2011-10-14 14:11:14 -0400 (Fri, 14 Oct 2011) | 2 lines
More VC2010 updates. Now getting the correct SDK directories.
------------------------------------------------------------------------
r1418 | tbreina | 2011-10-14 13:31:26 -0400 (Fri, 14 Oct 2011) | 1 line
Commits for devpak batchmaker VC2010
------------------------------------------------------------------------
r1417 | tbreina | 2011-10-13 16:36:42 -0400 (Thu, 13 Oct 2011) | 1 line
NSIS installer update for 7.4
------------------------------------------------------------------------
r1416 | tbreina | 2011-10-13 15:22:32 -0400 (Thu, 13 Oct 2011) | 1 line
Adding comments to wxtreectrl.pas
------------------------------------------------------------------------
r1415 | tbreina | 2011-10-11 17:25:49 -0400 (Tue, 11 Oct 2011) | 1 line
wxTreeCtrl editor now produces correct c++/wxWidgets code!!!
------------------------------------------------------------------------
r1414 | tbreina | 2011-10-10 15:53:33 -0400 (Mon, 10 Oct 2011) | 2 lines
wxTreeCtrl now has a working editor, however the generated C++/wxWidgets code needs work. Having trouble figuring out best way auto-code for subitems.
------------------------------------------------------------------------
r1413 | tbreina | 2011-10-01 22:37:06 -0400 (Sat, 01 Oct 2011) | 2 lines
More work on wxSizer code. More tests for null pointer referencing.
------------------------------------------------------------------------
r1412 | tbreina | 2011-10-01 16:12:27 -0400 (Sat, 01 Oct 2011) | 2 lines
Bug fix for #2695519. Sizers were always referring to 'this->' as the parent rather than actually determining what the parent name was.
------------------------------------------------------------------------
r1411 | tbreina | 2011-09-30 16:31:03 -0400 (Fri, 30 Sep 2011) | 2 lines
Possible fix for bug 2971134. Accessing null pointers?
------------------------------------------------------------------------
r1410 | tbreina | 2011-09-30 15:26:31 -0400 (Fri, 30 Sep 2011) | 4 lines
Fixed bug 2968705. We weren't hijacking the delete key in the form designer. So when the user hit delete in the designer, it would delete the wxWidget component, but was not updating the property inspector. Note that the delete option in the designer menu was executing the proper code. I've added code to hijack the delete key and pass it as if the user clicked on delete from the designer menu.
The graphic image editor is still having spotty creation of the XPM. Still needs work to trigger.
------------------------------------------------------------------------
r1409 | tbreina | 2011-09-29 15:48:30 -0400 (Thu, 29 Sep 2011) | 1 line
Sort of fix for bug report #2813179
------------------------------------------------------------------------
r1408 | tbreina | 2011-09-29 14:50:38 -0400 (Thu, 29 Sep 2011) | 1 line
Fix for bug 3020853 (wxNB_FIXEDWIDTH in wxNotebook)
------------------------------------------------------------------------
r1407 | tbreina | 2011-09-28 13:23:30 -0400 (Wed, 28 Sep 2011) | 2 lines
Fix for bug report #2945060. Surround with can now be undone.
------------------------------------------------------------------------
r1406 | tbreina | 2011-09-28 12:08:06 -0400 (Wed, 28 Sep 2011) | 2 lines
Cleaned up command line code with paramString. Also, working on surround with undo.
------------------------------------------------------------------------
r1405 | tbreina | 2011-09-27 17:13:26 -0400 (Tue, 27 Sep 2011) | 1 line
More fixes for command line bug
------------------------------------------------------------------------
r1404 | tbreina | 2011-09-27 12:45:55 -0400 (Tue, 27 Sep 2011) | 3 lines
Fix for command line bug #3057427 (Arnaud Amiel)
------------------------------------------------------------------------
r1403 | tbreina | 2011-09-21 23:33:09 -0400 (Wed, 21 Sep 2011) | 1 line
Fix for seg fault recognition
------------------------------------------------------------------------
r1402 | tbreina | 2011-09-21 13:59:46 -0400 (Wed, 21 Sep 2011) | 1 line
Force IsArray to be false just to be sure.
------------------------------------------------------------------------
r1401 | tbreina | 2011-09-20 21:48:27 -0400 (Tue, 20 Sep 2011) | 1 line
Update to editor bug. Courtesy of Robert Wall.
------------------------------------------------------------------------
r1399 | tbreina | 2011-09-17 00:15:51 -0400 (Sat, 17 Sep 2011) | 2 lines
wxWidgets spin controls now can't go negative.
Default 2.9.2 for wxWidgets spin values
------------------------------------------------------------------------
r1398 | tbreina | 2011-09-11 20:03:27 -0400 (Sun, 11 Sep 2011) | 3 lines
Changed for debugger interface. Backtrace now works.
Protected for some seg faults due to fDebugger object being deleted before exit.
wxWidgets GUI now can be set for individual compiler types (so user can have compiler type 1 be wxWidgets 2.9.2 and compiler type 2 be wxWidgets 2.8.10).
------------------------------------------------------------------------
r1397 | ninjanl | 2011-06-25 05:29:20 -0400 (Sat, 25 Jun 2011) | 1 line
Replaces "static char *" with "static const char *" in xpm generation, removes a warning using recent gcc compilers.
------------------------------------------------------------------------
r1396 | tbreina | 2011-06-21 16:10:30 -0400 (Tue, 21 Jun 2011) | 2 lines
Fixed crash when debugger output written during IDE close.
------------------------------------------------------------------------
r1395 | tbreina | 2011-06-19 18:06:08 -0400 (Sun, 19 Jun 2011) | 2 lines
More modification for filename path in debugger breakpoints.
------------------------------------------------------------------------
r1394 | tbreina | 2011-06-19 17:09:38 -0400 (Sun, 19 Jun 2011) | 2 lines
Fixed breakpoint delete problem. Filenames were being saved as fully-qualified paths. Have added ExtractFileName to make sure that GDB correctly identifies the source files.
------------------------------------------------------------------------
r1393 | tbreina | 2011-06-16 23:33:15 -0400 (Thu, 16 Jun 2011) | 1 line
Corrected breakpoint numbers.
------------------------------------------------------------------------
r1392 | tbreina | 2011-06-14 22:55:42 -0400 (Tue, 14 Jun 2011) | 1 line
More updates for watch variables in debugger
------------------------------------------------------------------------
r1391 | tbreina | 2011-06-13 12:39:58 -0400 (Mon, 13 Jun 2011) | 1 line
fixed watch bug in debugger
------------------------------------------------------------------------
r1390 | tbreina | 2011-06-11 23:06:27 -0400 (Sat, 11 Jun 2011) | 2 lines
Removing possibly redundant or unnecessary code from debugger. Replaced redundant procedure bodies with Asserts just in case they are actually needed.
------------------------------------------------------------------------
r1389 | tbreina | 2011-06-08 19:51:59 -0400 (Wed, 08 Jun 2011) | 1 line
Removed old CPU form references.
------------------------------------------------------------------------
r1388 | tbreina | 2011-06-08 19:48:06 -0400 (Wed, 08 Jun 2011) | 1 line
Committing forms for CPU debugger
------------------------------------------------------------------------
r1387 | tbreina | 2011-06-08 19:45:21 -0400 (Wed, 08 Jun 2011) | 4 lines
New CPU window stuff for debugger.
Fixes for memory display.
Fixes for watch variables.
------------------------------------------------------------------------
r1386 | tbreina | 2011-06-04 16:43:01 -0400 (Sat, 04 Jun 2011) | 2 lines
Fixed memory display window bug.
------------------------------------------------------------------------
r1385 | tbreina | 2011-06-04 01:12:05 -0400 (Sat, 04 Jun 2011) | 2 lines
Memory display addition.
Fix for watch vars in debug mode.
------------------------------------------------------------------------
r1384 | tbreina | 2011-05-30 23:09:37 -0400 (Mon, 30 May 2011) | 1 line
Watchpoint fix.
------------------------------------------------------------------------
r1383 | tbreina | 2011-05-10 23:49:41 -0400 (Tue, 10 May 2011) | 3 lines
Fixed the right click menu for watch list
Added new debugger code for ReadThread pipes
------------------------------------------------------------------------
r1382 | tbreina | 2011-05-08 22:37:08 -0400 (Sun, 08 May 2011) | 1 line
More updates to watches. Added popup window code for Watch window in IDE.
------------------------------------------------------------------------
r1381 | tbreina | 2011-05-08 12:14:22 -0400 (Sun, 08 May 2011) | 2 lines
More Watch changes for debugger courtesy of Robert Wall
------------------------------------------------------------------------
r1380 | tbreina | 2011-05-07 22:52:29 -0400 (Sat, 07 May 2011) | 1 line
Initial changes for Watch variables in debugger.
------------------------------------------------------------------------
r1379 | tbreina | 2011-03-31 20:20:30 -0400 (Thu, 31 Mar 2011) | 2 lines
Changed wxTL_ALIGN_LEFT flag to simply wxALIGN_LEFT. Apparently, wxTreeListCtrl docs are incorrect.
------------------------------------------------------------------------
r1378 | tbreina | 2011-03-30 22:57:09 -0400 (Wed, 30 Mar 2011) | 1 line
Added update feature to list view editor.
------------------------------------------------------------------------
r1377 | tbreina | 2011-03-30 22:24:11 -0400 (Wed, 30 Mar 2011) | 1 line
Fixed alignment flag strings for wxtreelistctrl.pas
------------------------------------------------------------------------
r1376 | tbreina | 2011-03-29 19:51:57 -0400 (Tue, 29 Mar 2011) | 2 lines
Fix for wxTreeListCtrl. Parameters were switched without switching %d and %s. Led to a runtime error.
------------------------------------------------------------------------
r1375 | tbreina | 2011-03-28 23:05:13 -0400 (Mon, 28 Mar 2011) | 1 line
Correcting wxTreeListCtrl per Noel
------------------------------------------------------------------------
r1374 | tbreina | 2011-03-28 00:14:08 -0400 (Mon, 28 Mar 2011) | 1 line
More template updates for gcc.
------------------------------------------------------------------------
r1373 | tbreina | 2011-03-27 20:42:43 -0400 (Sun, 27 Mar 2011) | 1 line
Moved templates to common devpak.
------------------------------------------------------------------------
r1372 | tbreina | 2011-03-27 20:38:39 -0400 (Sun, 27 Mar 2011) | 1 line
Moved templates to common devpak.
------------------------------------------------------------------------
r1371 | tbreina | 2011-03-27 20:37:14 -0400 (Sun, 27 Mar 2011) | 1 line
Moved templates to common devpak.
------------------------------------------------------------------------
r1370 | tbreina | 2011-03-27 20:34:50 -0400 (Sun, 27 Mar 2011) | 1 line
Update of templates
------------------------------------------------------------------------
r1369 | tbreina | 2011-03-26 23:04:10 -0400 (Sat, 26 Mar 2011) | 1 line
Templates update
------------------------------------------------------------------------
r1368 | tbreina | 2011-03-26 22:39:12 -0400 (Sat, 26 Mar 2011) | 2 lines
DevPak maker changes for 2.9.1
------------------------------------------------------------------------
r1367 | tbreina | 2011-03-26 20:38:17 -0400 (Sat, 26 Mar 2011) | 1 line
More updates to templates
------------------------------------------------------------------------
r1366 | tbreina | 2011-03-26 20:25:39 -0400 (Sat, 26 Mar 2011) | 1 line
New templates for wxWidgets 2.9.1 with unicode
------------------------------------------------------------------------
r1365 | tbreina | 2011-02-26 22:30:48 -0500 (Sat, 26 Feb 2011) | 3 lines
Fix for bitmap include header's not working for XPM files (Mal)
Fix for reverse creation order of components
Initial commit for backtrace and watchpoints in debugger.pas
------------------------------------------------------------------------
r1364 | tbreina | 2011-02-07 13:22:23 -0500 (Mon, 07 Feb 2011) | 1 line
Added local variables and threads output.
------------------------------------------------------------------------
r1363 | tbreina | 2011-01-22 18:40:03 -0500 (Sat, 22 Jan 2011) | 1 line
GDBidq constant updated
------------------------------------------------------------------------
r1362 | tbreina | 2011-01-22 15:09:06 -0500 (Sat, 22 Jan 2011) | 1 line
Debugger update. Needed Startup := False added. Otherwise, multiple runs of debugger would generate error.
------------------------------------------------------------------------
r1361 | tbreina | 2011-01-22 14:38:43 -0500 (Sat, 22 Jan 2011) | 4 lines
More debugger updates from Robert to attempt to terminate process by debugger.pas
Update from Mal encapsulating wxBitmap file names for use in UNICODE.
------------------------------------------------------------------------
r1360 | tbreina | 2011-01-22 12:19:05 -0500 (Sat, 22 Jan 2011) | 2 lines
Removed JvVCL5Utils line for compatibility with latest JVCL.
------------------------------------------------------------------------
r1359 | tbreina | 2011-01-19 21:57:23 -0500 (Wed, 19 Jan 2011) | 1 line
Updated German language version per bug report 3082152
------------------------------------------------------------------------
r1358 | tbreina | 2011-01-09 21:55:44 -0500 (Sun, 09 Jan 2011) | 1 line
Removing Reader.Terminates for Robert's testing.
------------------------------------------------------------------------
r1357 | tbreina | 2011-01-07 19:19:56 -0500 (Fri, 07 Jan 2011) | 1 line
Debugger exiting still not working well.
------------------------------------------------------------------------
r1356 | tbreina | 2011-01-04 00:26:06 -0500 (Tue, 04 Jan 2011) | 1 line
Breakpoints now highlight with gdb execution.
------------------------------------------------------------------------
r1355 | tbreina | 2011-01-02 22:17:15 -0500 (Sun, 02 Jan 2011) | 1 line
Update to add UNICODE flag.
------------------------------------------------------------------------
r1354 | tbreina | 2011-01-02 22:00:15 -0500 (Sun, 02 Jan 2011) | 1 line
Added trigger to highlight breakpoint in IDE when debugger pauses.
------------------------------------------------------------------------
r1353 | tbreina | 2010-12-29 23:22:49 -0500 (Wed, 29 Dec 2010) | 2 lines
Updating all files using JEDI code beautifier.
------------------------------------------------------------------------
r1352 | tbreina | 2010-12-29 23:13:45 -0500 (Wed, 29 Dec 2010) | 2 lines
Formatting and SVN keyword Id
------------------------------------------------------------------------
r1351 | tbreina | 2010-12-29 12:39:50 -0500 (Wed, 29 Dec 2010) | 1 line
More source beautification for debugger.pas
------------------------------------------------------------------------
r1350 | tbreina | 2010-12-28 23:26:33 -0500 (Tue, 28 Dec 2010) | 3 lines
Made virtual functions for TDebugger FirstParse, WriteToPipe, Attach, and Exit. This makes it unnecessary to do the type cast TGDBDebugger(MainForm.fDebugger). Much more elegant solution.
Still need to connect debugger output to IDE controls.
------------------------------------------------------------------------
r1349 | tbreina | 2010-12-25 22:24:34 -0500 (Sat, 25 Dec 2010) | 3 lines
Abstracting TGDBDebugger call to method FirstParse and AddToDisplay. Not sure if this is wise, but it does work and will allow other compilers to be activated again.
------------------------------------------------------------------------
r1348 | tbreina | 2010-12-25 21:56:19 -0500 (Sat, 25 Dec 2010) | 1 line
Initial working version of Robert Wall's new debugger code. I've had to hack things to deactivate all debuggers except GDB. However, I'm not sure we actually support the other debuggers (code is stale). Will still need work to grab local variables and highlight breakpoints when they are reached.
------------------------------------------------------------------------
r1347 | tbreina | 2010-12-07 22:25:38 -0500 (Tue, 07 Dec 2010) | 2 lines
Committing a Broken version of debugger (sorry). These are Robert's changes, but I seem to be missing something in the thread handling. Apparently, a handle isn't being generated in the process thread for the debugger. Am hoping that Robert can look through the code to detect the error. -Tony
------------------------------------------------------------------------
r1346 | tbreina | 2010-10-24 23:05:59 -0400 (Sun, 24 Oct 2010) | 1 line
Get version number from program executable.
------------------------------------------------------------------------
r1345 | tbreina | 2010-10-24 22:25:21 -0400 (Sun, 24 Oct 2010) | 2 lines
Robert Wall's updates to get gdb MI working in the debugger code. Hopefully, using MI will improve our debugger capabilities.
------------------------------------------------------------------------
r1344 | tbreina | 2010-05-16 22:44:06 -0400 (Sun, 16 May 2010) | 1 line
Bug fix #2989190 - Added wxTE_NO_VSCROLL to memo control styles.
------------------------------------------------------------------------
r1343 | tbreina | 2010-05-16 22:31:24 -0400 (Sun, 16 May 2010) | 4 lines
Bug fix for 2991978. Statusbar not clearing when file closed.
Possible fix for code completion crash reported by hackish. Added line to check if fText is valid before doing a refresh.
------------------------------------------------------------------------
r1342 | tbreina | 2010-05-16 00:51:46 -0400 (Sun, 16 May 2010) | 3 lines
Added backend and validator options for wxMediaCtrl
Fixed bug 3001662 - Wrong event type for wxFilePickerCtrl OnFileChanged.
------------------------------------------------------------------------
r1341 | tbreina | 2010-05-04 22:12:36 -0400 (Tue, 04 May 2010) | 1 line
Removing the code folding stuff. It proved too buggy. The basic problem was that the underlying code folding that was added to SynEdit was buggy. Found that the Mystix editor (which used that SynEdit version) had problems with cut/paste/undo. Our testing showed that things got pasted out of order (even line numbers were mis-ordered).
------------------------------------------------------------------------
r1340 | tbreina | 2010-04-01 13:05:01 -0400 (Thu, 01 Apr 2010) | 2 lines
Rescan for folded regions after delete, cut, or paste.
------------------------------------------------------------------------
r1339 | tbreina | 2010-03-25 13:50:15 -0400 (Thu, 25 Mar 2010) | 2 lines
Code folding collapsed/uncollapsed region data now saved in .dev file. User should be able to get same folded regions whenever a project is reloaded.
------------------------------------------------------------------------
r1338 | tbreina | 2010-03-24 15:48:48 -0400 (Wed, 24 Mar 2010) | 2 lines
Code folding now remembers last folded state. Still need lots of testings. It probably will fail at some point.
------------------------------------------------------------------------
r1337 | tbreina | 2010-03-20 21:59:46 -0400 (Sat, 20 Mar 2010) | 2 lines
Code folding now saves correctly when regions are collapsed.
------------------------------------------------------------------------
r1336 | tbreina | 2010-03-18 23:03:52 -0400 (Thu, 18 Mar 2010) | 4 lines
Code folding added. This will unfold all folded text whenever the code is regenerated by the form designer. Plan is to make a list of the folded regions, unfold all, change the source code as needed, and refold based on the list.
NOTE: You'll need the SynEdit update for these changes to work. I merged SynEdit 2.0.6 with the code folding changes made by Piotr in the Dev-C++ CVS.
------------------------------------------------------------------------
r1335 | buildere | 2010-03-03 21:15:07 -0500 (Wed, 03 Mar 2010) | 1 line
Fix for error when compiling wxdsgn.dpk
------------------------------------------------------------------------
r1334 | tbreina | 2010-02-26 22:58:24 -0500 (Fri, 26 Feb 2010) | 1 line
Fix for the persistent lock on executables. I think we were forgetting to free TDevExecutor which kept a lock on the compiled executable until the IDE exited. Explicitly calling Free seems to allow the executable to be deleted outside of the IDE.
------------------------------------------------------------------------
r1333 | tbreina | 2010-02-25 23:17:35 -0500 (Thu, 25 Feb 2010) | 4 lines
Bug # 1746321 - Menu bitmaps weren't updating properly. Bug was that we were generating two XPM files per menu item that had different names. Corrected that so the menu bitmap file name for XPM file is {Filename}{Menu Item ID}_XPM.xpm.
Still need to get the menu item bitmaps to accept native graphic formats.
------------------------------------------------------------------------
r1332 | tbreina | 2010-02-24 23:14:28 -0500 (Wed, 24 Feb 2010) | 2 lines
Bug #2905552 - Splash screen shows up in Windows taskbar.
------------------------------------------------------------------------
r1331 | tbreina | 2010-02-24 22:46:11 -0500 (Wed, 24 Feb 2010) | 3 lines
Bug# 2923932 - Screen not refreshed when paste scrolls. Added refresh command after paste code.
Bug# 2912640 - "asm" in commented block breaks syntax highlighting. I've corrected the break by modifying the regex parser. It fixes the immediate bug, but I'm not convinced that the IDE is properly formatting the assembler code. Might have to revisit this problem.
------------------------------------------------------------------------
r1330 | tbreina | 2010-02-23 16:27:42 -0500 (Tue, 23 Feb 2010) | 1 line
Corrected "remove all breakpoints" menu item to be disabled/enabled like its menu group. it will auto-disable option when no text in editor.
------------------------------------------------------------------------
r1329 | tbreina | 2010-02-20 23:28:18 -0500 (Sat, 20 Feb 2010) | 2 lines
Added debug menu option to remove all active breakpoints.
------------------------------------------------------------------------
r1328 | tbreina | 2010-02-18 23:37:01 -0500 (Thu, 18 Feb 2010) | 2 lines
Fix for 120 DPI fonts.
------------------------------------------------------------------------
r1327 | tbreina | 2010-02-14 13:28:08 -0500 (Sun, 14 Feb 2010) | 1 line
Corrected misspelling in English language file. (thanks esteban)
------------------------------------------------------------------------
r1326 | tbreina | 2010-02-13 19:45:00 -0500 (Sat, 13 Feb 2010) | 1 line
Updated English language files per suggestions of Robert
------------------------------------------------------------------------
r1325 | tbreina | 2010-02-13 19:36:19 -0500 (Sat, 13 Feb 2010) | 3 lines
Add more KeepFormat/PreserveFormat properties in attempt to keep GenerateXPM from firing when user wants to maintain original graphics format.
Re-worded tick box in ReplaceFrm per suggestion of Robert.
------------------------------------------------------------------------
r1324 | tbreina | 2010-02-12 18:51:07 -0500 (Fri, 12 Feb 2010) | 7 lines
7.3.1.2
Bug# 2929399 Debugger menu updated with "Finish" button. This will pass the gdb command "finish" to the debugger. The actual command sent is saved to devcpp.ini and can be hijacked if the user wants to mod this to a custom debugger command.
Bug #2945056 - Corrected menu bar when returning from full screen. I need to test this on a multi-monitor system, but don't have one.
Bug #2946053 - Added PNG extension to GetExtension for bitmaps.
------------------------------------------------------------------------
r1323 | tbreina | 2010-01-31 20:44:18 -0500 (Sun, 31 Jan 2010) | 4 lines
7.3.0.8
Fix for bug 2929387 - debugger was not working for DLLs. one problem was that our DLL template had a linker switch that stripped the symbols from the DLL (--no-export-all-symbols). The more important fix was adding the command 'set breakpoint pending on' to gdb.
Thanks to Robert Wall for the fixes.
------------------------------------------------------------------------
r1322 | tbreina | 2010-01-30 00:55:50 -0500 (Sat, 30 Jan 2010) | 1 line
7.3.0.7
------------------------------------------------------------------------
r1321 | tbreina | 2010-01-25 22:59:34 -0500 (Mon, 25 Jan 2010) | 1 line
Updated string sizes for -c bug
------------------------------------------------------------------------
r1320 | tbreina | 2010-01-25 22:53:10 -0500 (Mon, 25 Jan 2010) | 1 line
Help update for code completion
------------------------------------------------------------------------
r1319 | tbreina | 2010-01-25 22:47:46 -0500 (Mon, 25 Jan 2010) | 1 line
code completion help update - semi auto complete
------------------------------------------------------------------------
r1318 | tbreina | 2010-01-17 16:10:31 -0500 (Sun, 17 Jan 2010) | 1 line
Czech language update
------------------------------------------------------------------------
r1317 | tbreina | 2010-01-16 17:24:38 -0500 (Sat, 16 Jan 2010) | 1 line
Updated more language files
------------------------------------------------------------------------
r1316 | tbreina | 2010-01-16 17:14:17 -0500 (Sat, 16 Jan 2010) | 1 line
Update Bulgarian language
------------------------------------------------------------------------
r1315 | tbreina | 2010-01-10 23:51:17 -0500 (Sun, 10 Jan 2010) | 3 lines
7.3.0.6 - Implementing native graphics file support from branch. Users will be able to keep their bitmaps in the native format (e.g. JPG, GIF, ICO) instead of having to convert to XPM. Needs testing plus I don't think I've implemented it for the menu item bitmaps.
------------------------------------------------------------------------
r1314 | tbreina | 2010-01-09 00:48:17 -0500 (Sat, 09 Jan 2010) | 1 line
Fixed wxColour bug. Don't include wxT() around CUS
------------------------------------------------------------------------
r1313 | tbreina | 2010-01-07 23:01:39 -0500 (Thu, 07 Jan 2010) | 1 line
Updated installer to include start menu shortcut for updater.exe
------------------------------------------------------------------------
r1312 | tbreina | 2010-01-07 22:40:58 -0500 (Thu, 07 Jan 2010) | 1 line
Update Italian language file
------------------------------------------------------------------------
r1311 | tbreina | 2010-01-07 22:32:03 -0500 (Thu, 07 Jan 2010) | 4 lines
beta 7.3.0.3
Fix for bug #2831622, 2925171, 2924280
Possible fix for form text out of bounds for different DPI fonts (just set forms to no scaling).
------------------------------------------------------------------------
r1310 | tbreina | 2009-12-27 23:18:41 -0500 (Sun, 27 Dec 2009) | 3 lines
Updated version. I'm removing the extra sub-point version stuff (so 7.3.0.2 will be displayed on the executable properties, but 7.3 will display in the GUI).
------------------------------------------------------------------------
r1309 | tbreina | 2009-12-27 23:14:58 -0500 (Sun, 27 Dec 2009) | 4 lines
beta 7.3.0.2
fix for bug#2912639 "close" doesn't update app bar title
fix for bug#1686013 can't debug console apps - solution seems to be to add gdb command "set new-console on". not sure how this will affect non-console apps. may need to only send the command with console apps
fix for bug#2916170 - crash on using debugger caused by deleting non-existent output. now check that output window has data before trying to delete.
------------------------------------------------------------------------
r1308 | tbreina | 2009-12-18 22:37:05 -0500 (Fri, 18 Dec 2009) | 1 line
Reverted debugger.pas changes
------------------------------------------------------------------------
r1307 | jcd123 | 2009-12-18 20:20:16 -0500 (Fri, 18 Dec 2009) | 2 lines
Corrected an error in ClassBrowser.pas when dragged onto a form surface caused '"Control " has no parent window"' .
Corrections made to debugger.pas solved the error caused the debugger did not work properly .
------------------------------------------------------------------------
r1306 | buildere | 2009-12-17 14:29:47 -0500 (Thu, 17 Dec 2009) | 1 line
Fixed CloseAllButThis tab behavior.
------------------------------------------------------------------------
r1305 | tbreina | 2009-12-17 13:31:23 -0500 (Thu, 17 Dec 2009) | 1 line
Recommitted Esteban's changes.
------------------------------------------------------------------------
r1304 | tbreina | 2009-12-17 13:16:34 -0500 (Thu, 17 Dec 2009) | 1 line
Committing debugger and Wine/Linux branch fixes to SVN HEAD.
------------------------------------------------------------------------
r1303 | tbreina | 2009-12-16 18:59:46 -0500 (Wed, 16 Dec 2009) | 3 lines
Commit for debugger fixes.
I've moved the Reader.Resume earlier. I think on older machines, the gdb createprocess is delayed and the debugger start commands are sent before gdb actually is ready for input.
------------------------------------------------------------------------
r1302 | buildere | 2009-12-16 14:59:42 -0500 (Wed, 16 Dec 2009) | 1 line
Enabled taskbar context menu for Windows versions under Vista.
------------------------------------------------------------------------
r1301 | tbreina | 2009-11-27 13:45:14 -0500 (Fri, 27 Nov 2009) | 1 line
Portugese language update by ptDev
------------------------------------------------------------------------
r1298 | tbreina | 2009-11-03 15:29:40 -0500 (Tue, 03 Nov 2009) | 1 line
Fixes for bug tracker 2889403, 2884874, 2889398.
------------------------------------------------------------------------
r1296 | tbreina | 2009-10-20 22:08:10 -0400 (Tue, 20 Oct 2009) | 1 line
Bumped to version 7.2.0.2
------------------------------------------------------------------------
r1295 | tbreina | 2009-10-20 19:29:05 -0400 (Tue, 20 Oct 2009) | 4 lines
Added no tooltip to default settings.
Removed 7.0 from the About box. Now it just lists the build number (e.g. 7.1.1.1).
------------------------------------------------------------------------
r1294 | tbreina | 2009-10-20 18:03:17 -0400 (Tue, 20 Oct 2009) | 1 line
Added Environment option to suppress ToolTips. This should get rid of those annoying yellow boxes that occasionally persist.
------------------------------------------------------------------------
r1293 | buildere | 2009-10-04 00:02:16 -0400 (Sun, 04 Oct 2009) | 1 line
Fixed problems with bottom message tabs, when no wxdsgn plugin is used. Fixed wxWidgets paths when plugin is enabled after using the IDE without the designer.
------------------------------------------------------------------------
r1292 | tbreina | 2009-09-22 18:45:34 -0400 (Tue, 22 Sep 2009) | 4 lines
Quiet mode (silent install without GUI windows) works now, but needs to remove existing devpak).
A few more Doxygen formatting.
------------------------------------------------------------------------
r1291 | tbreina | 2009-09-21 20:23:34 -0400 (Mon, 21 Sep 2009) | 2 lines
French and Hungarian language updates
------------------------------------------------------------------------
r1290 | tbreina | 2009-09-16 19:58:56 -0400 (Wed, 16 Sep 2009) | 2 lines
Fixed strange case where license/readme file was also used as a file to install. This would result in duplicate entries in the entry file (which screws up removing the devpak). Fix was to keep track of which files were installed and not to duplicate them in the list.
------------------------------------------------------------------------
r1289 | tbreina | 2009-09-16 16:11:29 -0400 (Wed, 16 Sep 2009) | 1 line
Keywords id
------------------------------------------------------------------------
r1288 | tbreina | 2009-09-16 16:08:16 -0400 (Wed, 16 Sep 2009) | 1 line
Small formatting changes.
------------------------------------------------------------------------
r1287 | tbreina | 2009-09-16 16:02:41 -0400 (Wed, 16 Sep 2009) | 1 line
Added $Id$ indentifier to SVN keywords
------------------------------------------------------------------------
r1286 | tbreina | 2009-09-16 15:56:34 -0400 (Wed, 16 Sep 2009) | 2 lines
First attempt at Doxygenation
------------------------------------------------------------------------
r1285 | tbreina | 2009-09-16 15:28:11 -0400 (Wed, 16 Sep 2009) | 1 line
Update template skeleton code for Doxygen identifiers
------------------------------------------------------------------------
r1284 | tbreina | 2009-09-01 22:07:34 -0400 (Tue, 01 Sep 2009) | 2 lines
Reverted Class Browser fix. It seemed to screw up cache building.
------------------------------------------------------------------------
r1283 | tbreina | 2009-09-01 14:30:47 -0400 (Tue, 01 Sep 2009) | 1 line
Small change to install dialog. wxDev-C++ instead of wxdevcpp
------------------------------------------------------------------------
r1282 | tbreina | 2009-09-01 14:26:16 -0400 (Tue, 01 Sep 2009) | 3 lines
wxWidgets templates now use $(WXLIBNAME) instead of hardcoded wxmsw28.
This should be last change for 7.0 release.
------------------------------------------------------------------------