-
Notifications
You must be signed in to change notification settings - Fork 5
/
ChangeLog
28700 lines (17980 loc) · 744 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
2010-09-03 18:30 mortenmacfly
svn6570: * updated wxPropGrid from to 1.4.14 to hopefully fix
issues reported here:
http://forums.codeblocks.org/index.php/topic,12362.msg88995.html#msg88995
2010-09-03 16:01 mortenmacfly
svn6568: * make loggers more bullet proof (missing part)
2010-09-03 15:59 mortenmacfly
svn6567: * make loggers more bullet proof
2010-08-30 16:37 biplab
svn6564: * Fixed: Build with wx-2.9.x.
2010-08-30 16:36 biplab
svn6563: * Added: Missing include header for std::sort(),
std::unique()
2010-08-28 18:26 afb
svn6557: - ldc needs linker flag duplicated, like dmd
2010-08-28 13:50 afb
svn6556: - codecompletion: add D icon for D keywords
2010-08-28 13:48 afb
svn6555: - add LDC to D console wizard
2010-08-28 13:41 afb
svn6554: * add LDC compiler, LLVM backend / D1 language / Tango
library
2010-08-28 13:36 afb
svn6553: * allow running DMD on all platforms
2010-08-27 13:15 jenslody
svn6550: * EditorTweaks plugin: i18n fix to avoid crash when
context-menu is shown; tiny fix for unix project-file
2010-08-26 19:16 mortenmacfly
svn6543: - NassiShneiderman plugin: i18l corrections and fixed
compile bug
2010-08-26 19:02 mortenmacfly
svn6540: * applied patch #3051: Fixed regex testbed dialog
fields - missing data (completes a previous commit)
2010-08-25 19:00 mortenmacfly
svn6536: - NassiShneiderman plugin: adding missing include
2010-08-25 17:38 killerbot
svn6535: - little fix to debian build file
2010-08-25 14:14 mortenmacfly
svn6532: * applied i18n patch for NassiShneiderman plugin thanks
Xaviou
2010-08-25 04:38 mortenmacfly
svn6529: - little translation fix for wxSmith
2010-08-24 22:08 afb
svn6528: - restore the splashscreen workaround for mac
2010-08-24 08:26 mortenmacfly
svn6525: * added missing portions in compilergcc of r6494 and
r6492
2010-08-23 05:54 mortenmacfly
svn6517: * applied patch #2949: AskAssocDialog closes
incorrectly when press ESC key
2010-08-23 05:51 mortenmacfly
svn6516: * applied patch #2871: Make double click open the
correct item in the TODO window
2010-08-23 05:49 mortenmacfly
svn6515: * applied patch #2929: Show the build time in the build
messages log pane
2010-08-23 05:47 mortenmacfly
svn6514: * applied patch #2942: Add option to control the smart
indent brace feature
2010-08-23 05:45 mortenmacfly
svn6513: * applied patch #2943: Respect the selected target
2010-08-22 12:13 mortenmacfly
svn6509: * bug-fix of crash for non-attached plugins (e.g.
disabled EditorTweaks), thanks oBFusCATed
2010-08-20 06:00 jenslody
svn6502: * fix another small isssue, that slipped in with commit
6498 and 6501 (workspace was always set as modified on first
load)
2010-08-19 19:14 jenslody
svn6501: * revert commit 6500 and (hopefully) finally fix the
issue introduced in r6498
2010-08-19 16:22 mortenmacfly
svn6500: * hot fix concerning bug introduced with r6498 until
probably a better solution is found
2010-08-19 07:06 mortenmacfly
svn6499: * debugger (cdb): added support for stepin / stepout
2010-08-19 07:00 mortenmacfly
svn6498: * applied (modified) patch #2879: Call SetProject()
only after workspace is opened
2010-08-19 06:16 mortenmacfly
svn6497: - tab removal, alignment corrections to improve
readability of code -> no code change
2010-08-19 06:03 mortenmacfly
svn6496: * ToDo plugin: allow CPP style comments
* ToDo plugin: handle types more correctly
* ToDo plugin: allow to select allowed types (as a filter)
2010-08-19 05:55 mortenmacfly
svn6495: - scripting: mark C::B patches explicitely in the code
2010-08-19 05:54 mortenmacfly
svn6494: * added some sanity checks when working with a compiler
pointer
* added some missing elements of patch #2894 (see r6492)
* cbprofiler: auto-select active build target for convenience
* wizards: use images with transparency (if supported by
platform)
- debugger: some sanity checks concerning wxTeeItems
2010-08-19 05:39 mortenmacfly
svn6493: * introduced (and used) some new SDK events:
EVT_EDITOR_SWITCHED, EVT_PROJECT_FILE_CHANGED,
EVT_CLEAN_PROJECT_STARTED, EVT_CLEAN_WORKSPACE_STARTED
* make the link to the build log file always use forward slashes
- some code-cleanup (remove obsolete commented portions)
2010-08-19 05:27 mortenmacfly
svn6492: * applied (modified) patch #2894: Set parent window of
cbMessageBox where possible This fixes "message boxes behind main
dialogs" under Unix/Linux
* applied blended colour to loggers to hopefully fix the colour
issues with the loggers under Linux with dark themes
2010-08-19 04:55 mortenmacfly
svn6491: * applied patch #2839: Select file from all projects in
the workspace
- some code clean-up (e.g. tagetting MSVC compilr?!)
2010-08-18 15:05 biplab
svn6490: * Non-pch build fix.
2010-08-18 12:01 afb
svn6489: - libwxpropgrid is already included in libcodeblocks
2010-08-18 07:40 afb
svn6488: - DoxyBlocks: fix typo in the dist list
2010-08-15 18:41 mortenmacfly
svn6484: - compiler: another trial to stop the posts of ignorant
people in the forums
2010-08-11 14:39 jenslody
svn6476: * another fix for the wxPropertyGridManager splitter
issue in wxSmith: see svn6405
2010-08-11 14:27 mortenmacfly
svn6475: * added TARGET_OUTPUT_FILENAME to macrosmanager
(partially applied patch #2937)
2010-08-11 14:18 mortenmacfly
svn6474: * applied patch #3045: Get rid of lexer_nassi.* files
* applied patch #3041: Adding wxFileName::IsFileWritable for
scripting
* applied patch #3040: Add CurrentSelection to the Macros
2010-08-11 13:33 jenslody
svn6473: * avoid crash of wxChartCtrl, if style contains
USE_GRID and no chart is added (default in wxSmith preview);
fix wrong casting of style, that can lead to a build error
2010-08-09 05:12 mortenmacfly
svn6465: * pumped TinyXML to 2.6.1 (plus some patches from
TinyXML SVN trunk) -> fixes some C++ inconsistencies
2010-08-08 16:55 killerbot
svn6463: * applied : Patch to make '--add-brackets / -j' option
available in astyle plugin
(http://forums.codeblocks.org/index.php/topic,13054.msg87865.html)
2010-08-03 18:53 mortenmacfly
svn6443: - corrected object output folder for NassiShneiderman
plugin under Unix
2010-08-02 20:24 jenslody
svn6441: * projectmanager: immediately change color of files in
projects tree, if compilation or linking is turned on or off;
restore selected node after rebuild of projects tree (see
http://forums.codeblocks.org/index.php/topic,12131.0.html for
details)
2010-08-02 06:25 mortenmacfly
svn6437: * cbProject: allow macro replacements for file path's,
too (sse wxFileName::GetFullPath instead of GetFullName)
2010-07-29 05:14 jenslody
svn6435: * (temporarily?) removed wxMediaCtrl from wxSmith,
because it breaks compilation on allmost all linux distributions
(see http://forums.codeblocks.org/index.php/topic,12977.0.html
for details )
2010-07-26 06:38 mortenmacfly
svn6425: * wxSmith: added missing images (icons) for new
controls
- wxSmith: corrected a spelling error
2010-07-26 04:57 biplab
svn6424: * Fixed: Build with wx-2.9.1
2010-07-26 04:55 biplab
svn6423: * Fixed: Deprecated function call with wx-2.9.1
2010-07-26 04:41 biplab
svn6422: * Fixed: Build with wx-2.9.1
2010-07-26 04:39 biplab
svn6421: * Fixed: Build with wx-2.9.1
2010-07-26 04:30 biplab
svn6420: * Fixed: Bug in Previous commit.
2010-07-26 04:24 biplab
svn6419: * Fixed: Build with wx-2.9+.
2010-07-25 19:37 mortenmacfly
svn6418: * build fixes to EditorTweaks and wxSmith related
projects under Unix
2010-07-25 19:15 mortenmacfly
svn6417: - NassiShneiderman plugin: add default path to boost
libs to compiler options (Unix)
2010-07-24 11:14 biplab
svn6416: * Fixed: Warning message.
2010-07-24 08:06 biplab
svn6415: * Avoid: "warning: unused parameter"
2010-07-23 18:59 mortenmacfly
svn6414: * wxSmith: Updated number of wxWidgets controls
supported by applying patch of Cryogen (Thanks!)
* wxSmith: Namely these are: wxAnimationCtrl, wxBitmalCombobox,
wxColourPicker, wxContextHelpButton,
* wxSmith: ...wxDialUpManager, wxDirPickerCtrl, wxFilePickerCtrl,
wxFindReplaceDialog, wxFontDialog, wxFontPickerCtrl,
* wxSmith: ...wxHtmlEasyPrinting, wxHyperLinkCtrl, wxListView,
wxMEdiaCtrl, wxMessageDialog, wxPageSetupDialog,
* wxSmith: ...wxPasswordEntryDialog, wxPrintDialog,
wxProgressDialog, wxRichTextCtrl, wxRichTextFormattingDlg,
* wxSmith: ...wxRichTextStyleOrganiserDialog, wxSearchCtrl,
wxSimpleHtmlListbox, wxTextEntryDialog, wxTreebook
2010-07-23 16:22 biplab
svn6413: * Fixed: [Bug #17318] Crash in Hex Editor
2010-07-21 05:32 mortenmacfly
svn6411: - minor update of project files for more consistency
and removal of warnings
2010-07-20 18:37 killerbot
svn6408: - build fix (build got broken in previous commit)
2010-07-20 15:46 biplab
svn6407: * Reference can not be NULL. Refer section 8.3.2 of
ISO/IEC 14882:2003(E) for more details.
2010-07-20 12:13 jenslody
svn6406: * save state and order of tabs in Logs and others (see
http://forums.codeblocks.org/index.php/topic,12554.msg85056.html#msg85056
and
http://forums.codeblocks.org/index.php/topic,12650.msg85657.html#msg85657)
2010-07-20 05:26 mortenmacfly
svn6405: * wxSmith: applied patch by Cryogen to fix wxPropGrid
issue with first column always being at min size
2010-07-15 14:52 mortenmacfly
svn6402: - avoid creation of profile info (gmon.out) for Doxygen
plugin
2010-07-14 17:29 killerbot
svn6400: - doxyblocks update
2010-07-09 16:33 killerbot
svn6386: * fix : EditorTweaks stealing regular shift-ins
functionality (aka ctrl-v / paste)
2010-07-08 19:04 killerbot
svn6385: - update to latest version of DoxyBlocks
2010-07-03 07:47 killerbot
svn6384: - fix to previous commit
2010-07-03 07:25 killerbot
svn6383: - non pch fixes (thanks Tim)
2010-07-03 07:17 killerbot
svn6382: - version
2010-07-03 07:16 killerbot
svn6381: - remove warning
2010-07-03 07:15 killerbot
svn6380: - minor change, and bring back the -Wall
2010-06-30 17:52 pecan
svn6379: BrowseTracker - 1.2.95 2010/06/30 - Ignore Editor line
1 activations in JumpTracker
2010-06-28 17:10 killerbot
svn6378: - by default no svg functionality (will raise to many
problems with people building CB and wx) on windows (maybe we
could add an extra target with the svg support ?)
2010-06-28 17:09 killerbot
svn6377: - remove warnings
2010-06-27 15:56 killerbot
svn6376: - updates
2010-06-27 14:57 killerbot
svn6375: * Added DoxyBlocks, EditorTweaks, NassiShneiderman and
Cscope plug-ins
2010-06-27 07:24 killerbot
svn6374: - remove warnings
2010-06-27 07:22 killerbot
svn6373: - remove warnings
2010-06-25 18:51 jenslody
svn6372: * fix a bug that prevents tab-position (top or bottom)
in message-pane from being restored
2010-06-22 13:27 pecan
svn6370: CodeSnippets - remove use of precompiled header in App
project
2010-06-21 19:35 killerbot
svn6369: - remove warnings
2010-06-21 19:34 killerbot
svn6368: - remove warnings
2010-06-21 19:34 killerbot
svn6367: - remove warnings
2010-06-21 19:33 killerbot
svn6366: - remove warnings
2010-06-20 20:35 jenslody
svn6365: * fix a bug that make project prebuild-steps be invoked
twice in workspace-build (see:
http://forums.codeblocks.org/index.php/topic,12774.msg86405.html#msg86405)
2010-06-13 10:57 killerbot
svn6354: - remove warnings
2010-06-13 07:13 killerbot
svn6353: - include fix
2010-06-12 20:33 killerbot
svn6352: - remove warnings
2010-06-12 18:50 killerbot
svn6351: - fix unix project file
2010-06-12 18:37 killerbot
svn6350: - remove warnings
2010-06-12 18:15 killerbot
svn6349: - remove some warnings
2010-06-12 18:03 killerbot
svn6348: - remove some warnings
2010-06-12 18:02 killerbot
svn6347: - remove some warnings
2010-06-12 10:46 killerbot
svn6346: - build fix
2010-06-11 08:45 jenslody
svn6342: * fix a bug when changing EOL-mode from editor
configuration dialog, see
http://forums.codeblocks.org/index.php/topic,12712.msg86084.html#msg86084
for details
2010-06-11 05:28 mortenmacfly
svn6341: - fixed Linux part of wxSmitAui project file
2010-06-10 17:31 jenslody
svn6340: * wxSmith-Aui: build fix
2010-06-10 10:55 mortenmacfly
svn6339: * partially merged debugger_branch into trunk:
* updated wxPropGrid from 1.2 to 1.4 version
* moved wxPropGrid from wxSmith to the core as DLL as it will 7
can be re-used
- modified build system, project files (needs some more work,
probably)
2010-06-08 12:44 afb
svn6336: * fix console only debugging (gdb tty) on wxMac
2010-06-05 19:59 afb
svn6333: * fix keybinder mappings on wxMac, as the Command key
was missing
(mapping for instance Find to just "f", rather than "Ctrl-f"...)
the Control key is very seldom used, but maps to "XCtrl-" if so.
doesn't affect other platforms, where wxACCEL_CMD == wxACCEL_CTRL
2010-06-05 12:39 biplab
svn6332: * Fixed: Broken make dist inside astyle folder.
2010-06-05 09:59 afb
svn6331: - make splash screen default to the size of the splash
image (the resize is broken on mac)
2010-06-05 09:22 afb
svn6330: * only use -lX11 on wxGTK, not on wxMSW/wxMac
2010-06-05 09:17 afb
svn6329: - add X11 CFLAGS/LIBS (like GTK2), for linking directly
with X
2010-06-03 04:34 mortenmacfly
svn6324: * pumped AStyle to 1.25
2010-06-03 04:27 mortenmacfly
svn6321: - fixed tiny build error introduced in r6312
2010-06-01 13:53 biplab
svn6316: * Fixed: [Bug #15438] Abbreviations problem with
doxygen comment
2010-06-01 13:28 biplab
svn6314: * Applied: [Patch #2990] fix linking of codesnippets
plugin
2010-06-01 13:19 mortenmacfly
svn6313: - fixed missing file in Makefile for wxscintilla
2010-06-01 12:45 mortenmacfly
svn6312: * pumped scintilla/wxScintilla to v2.1.2 (incl.
updating code generation script and regenerating code...
obviously)
- fixed some spelling/alignment mistakes
2010-06-01 12:13 mortenmacfly
svn6309: * applied patch #2902: Improvement in TabSwitcher
2010-06-01 11:21 mortenmacfly
svn6308: * applied patch #2849: Multiline S&R, (the return of
rickg22)
2010-05-31 09:18 jenslody
svn6297: * added missing format-file in debian/source,
thanks afb
2010-05-30 18:54 killerbot
svn6287: - fixed typo
2010-05-30 16:23 jenslody
svn6286: * Changed version of base-release to 10.05 in some
files;
added shell-script to download actual documentation from our
server;
added doc-packages to debian/control, added install and doc-base
files therefore;
added README.Debian;
updated some copyright-informations
2010-05-27 09:09 jenslody
svn6282: * fix for bug #16951 and #17068: Project properties
dialog too large, caused by wxTreectrl from libfinder-plugin
2010-05-25 05:00 mortenmacfly
svn6276: - fixed spelling mistake plattform -> platform
2010-05-19 09:59 mortenmacfly
svn6261: * prepared new logo
2010-05-15 08:54 biplab
svn6235: * Fixed: Typo in changelog of codeblocks.spec.in.
2010-05-14 18:19 mortenmacfly
svn6233: - introducing naming scheme for title
2010-05-12 14:12 biplab
svn6219: * Applied: [Patch #2977] PATCH for wxSmith, fixed the
min size preview bug.
2010-05-11 06:17 mortenmacfly
svn6218: * fixed possible crash candidate
2010-05-11 05:58 mortenmacfly
svn6217: - introducing naming scheme for logos
2010-05-08 08:17 killerbot
svn6216: - non pch build ifx
2010-05-07 15:21 biplab
svn6215: * Applied: [Patch #2969] to wxWidgets wizard.
2010-05-07 15:16 biplab
svn6214: * Applied: [Patch #2974] adjust path to scintilla in
"plugin::ScriptedWizard"
2010-05-05 14:12 mortenmacfly
svn6213: * CC: Fix a bug for ' extern "C++" ' (thanks Loaden)
2010-05-05 14:10 mortenmacfly
svn6212: - removed accidentally committed file
2010-05-05 14:09 mortenmacfly
svn6211: * CC: fix 'Tokenizer::FixArgument' bug: support skip
C++ comment (thanks Loaden)
2010-05-05 14:08 mortenmacfly
svn6210: * applied patch for wizard's default compiler error
(thanks Loaden)
2010-05-05 14:06 mortenmacfly
svn6209: * CC: bug fix for GetGCCCompilerDirs failed in
Archlinux (thanks Loaden)
2010-05-01 08:37 jenslody
svn6206: * fix for bug #17097 (Manager panel incorrect
behaviour), also changes the behaviour of logger tabs, they now
get toggled instead of closed, if close_on_all_tabs is active and
the close-button is clicked (fix the bug described here:
http://forums.codeblocks.org/index.php/topic,12450.0.html)
2010-04-22 07:28 mortenmacfly
svn6205: - start_here page: landed in 2010
2010-04-16 17:28 jenslody
svn6204: * fixed a typo in sqstdstring.cpp
2010-04-12 07:47 mortenmacfly
svn6203: * cc: applied patch by Loaden to fix VC header parsing
* cc: some code cleanup, additional debug messages
2010-04-06 05:38 jenslody
svn6202: * fixed a bug on linux: the list of plugins that should
be loaded in batch-build-mode was not saved
2010-04-04 08:21 killerbot
svn6201: - little date/timestamp fix
2010-03-30 18:07 killerbot
svn6198: - bracecompletion fix
2010-03-28 12:39 killerbot
svn6197: - applied path from GeO
2010-03-23 19:55 killerbot
svn6196: - applied patch 2954
2010-03-21 17:29 jenslody
svn6195: - Incremental-Search-plugin: cosmetical changes to
configuration-dialog as suggested by mariocup
2010-03-21 13:02 killerbot
svn6194: - CppCheck : add project include dirs to cppcheck
invocation
2010-03-16 16:18 biplab
svn6190: * Fixed: Compiler warning - "warning: 'dllimport'
attribute ignored"
2010-03-16 15:41 biplab
svn6189: * Build fix for SqPlus.
2010-03-11 22:21 killerbot
svn6188: - minor backslash -> forward slash fix
2010-03-07 21:51 killerbot
svn6187: * CppCheck plug-in : switch to input file list style of
the new cppcheck (1.41)
2010-03-03 20:29 pecan
svn6186: KeyBinder 1.0.49 2010/03/3
- Apply patch 2885 by techy
2010-02-28 16:17 biplab
svn6182: * Fixed: A bug in "Advanced Options" page of wxWidgets
Project wizard. (Thanks Hans Henrik for pointing this)
2010-02-26 11:07 jenslody
svn6181: - reduce build-warnings (and speed up compiling) on
linux, by (re-)enabling use of precompiled headers in the project
files of some contrib-plugins
2010-02-26 10:43 jenslody
svn6180: - non pch build fix
2010-02-25 21:47 pecan
svn6179: BrowseTracker 1.2.94 2010/02/25
- Apply patch 2886 by techy
2010-02-20 10:12 biplab
svn6178: * Fixed: rpm build issues.
2010-02-20 01:24 pecan
svn6177: BrowseTracker 1.2.93 2010/02/19
- Diable Ctrl-Left_Mouse key usage when user sets editor
multi-selection enabled.
2010-02-19 13:21 jenslody
svn6175: * contrib-plugins: fix execution working dir and (path
to) host application, so all plugins can be started and debugged
from within C::B
2010-02-18 15:44 biplab
svn6174: * Clean-up: svn propset
2010-02-18 15:35 biplab
svn6173: * Fixed: broken rpm build due to path change from
icons/gnome/* to icons/hicolor/*
2010-02-18 13:21 biplab
svn6171: * Updated: rpm spec file to use .tar.bz2 as source
tarball extension
2010-02-18 11:37 jenslody
svn6170: * fixed: Assertion with wxWidgets debug-build, due to
incorrect image size
2010-02-15 20:52 mariocupelli
svn6166: - correct typo
2010-02-15 15:29 biplab
svn6165: * Fixed: Assert failure with wx-debug build.
2010-02-15 13:07 biplab
svn6164: * Applied: [Patch #2926] Fix for closed bug #16808 -
codesnippets install/uninstall
2010-02-15 11:15 mortenmacfly
svn6163: * pumped (wx)scintilla to version 2.0.3 to resolve a
conflict with rectangular selections
- applied some API changes of scintilla to wxScintilla
2010-02-15 10:24 biplab
svn6162: * Applied: [Patch #2927] Fix for closed bug #16809 -
scriptedwizard install/uninstall
2010-02-15 04:08 biplab
svn6159: * Applied: [Patch #2907] Fixes ConsoleRunner build on
POSIX/SUS systems. (See
http://www.opengroup.org/onlinepubs/000095399/basedefs/sys/wait.h.html
- For WIFEXITED etc. macros)
2010-02-14 06:37 biplab
svn6157: * Applied: [Patch #2611] Make HexEditor plugin portable
(no C99)
2010-02-14 02:44 biplab
svn6156: * Removal of file from active project is now disabled
during compiling (either via 1) pressing "Delete" button or 2) by
clicking "Remove file from project" menu option)
2010-02-12 01:07 pecan
svn6155: CodeSnippets 1.3.120 2010/02/11
- Fix crash when double clicking previously opened snippet
- Copy fixes 5995 & 6000 from CB EditorManager to SEditormanager
2010-02-10 14:21 biplab
svn6154: * Clean-up: svn propset
2010-02-10 13:42 biplab
svn6153: * Fixed: [Bug #16808] codesnippets clean and uninstall
leaves file behind _correctly_
2010-02-10 13:40 biplab
svn6152: * Fixed: [Bug #16809] scriptedwizard clean and
uninstall leaves file behind _correctly_
2010-02-10 10:35 mortenmacfly
svn6151: * added SFML project wizard and template (applying
patch #2851)
2010-02-09 16:02 biplab
svn6150: * Cleanup: SVN propset, inconsistent line ending.
2010-02-09 16:00 biplab
svn6149: * Cleanup: SVN propset, inconsistent line ending.
2010-02-09 15:58 biplab
svn6148: * Cleanup: SVN propset, inconsistent line ending.
2010-02-09 15:56 biplab
svn6147: * Cleanup: SVN propset, inconsistent line ending.
2010-02-09 15:50 biplab
svn6146: * Fixed: [Bug #16808] codesnippets clean and uninstall
leaves file behind
2010-02-09 15:47 biplab
svn6145: * Fixed: [Bug #16809] scriptedwizard clean and
uninstall leaves file behind
2010-02-09 15:40 biplab
svn6144: * Cleanup: SVN propset.
2010-02-09 15:24 biplab
svn6143: * Cleanup: SVN propset.
2010-02-09 15:16 biplab
svn6142: * Cleanup: SVN propset.
2010-02-09 15:12 biplab
svn6141: * Cleanup: SVN propset.
2010-02-09 15:11 biplab
svn6140: * Cleanup: SVN propset.
2010-02-09 15:10 biplab
svn6139: * Cleanup: SVN propset.
2010-02-09 15:05 biplab
svn6138: * Cleanup: SVN propset.
2010-02-09 15:05 biplab
svn6137: * Cleanup: SVN propset, inconsistent line ending.
2010-02-07 19:27 jenslody
svn6136: * fix a drag and drop bug in wxScintilla: on linux only
copying was allowed, not moving of selected text
2010-02-05 13:02 jenslody
svn6135: * avoid crashes in wx-2.9, due to incorrect dimensions
of wxFlexGrid in editor-configuration dialog, see
http://forums.codeblocks.org/index.php/topic,11952.msg81411.html#msg81411
for details
2010-02-03 17:43 mortenmacfly
svn6134: * allow the "x" to close a tab to appear on all tabs
(via settings -> environment -> notebook)
* class wizard: handle "no implementation file" correctly.
* fixed wrong scope for "ReplaceInFiles" dialog
* applied patch #2882: call SetDesc() of the command-line parser
only once
* applied patch #2865: categorize source files regardless of
their capitalization
* applied patch #2869 to fix bug #16076: file manager: allow ANSI
builds to dump char* to file (no changes for unicode build)
* applied patch #2888: cosmetic fix of projectfile.cpp
2010-02-03 14:06 jenslody
svn6133: - wx-2.9 build fixes
2010-02-03 11:37 jenslody
svn6132: - removed not needed (double) header-guards , that
slipped in with last commit
2010-02-03 11:28 jenslody
svn6131: * subclassed wxAuiNotebook, to work around some
annoying issues:
C::B often crashed on linux when dragging tabs with composite
effects enabled,
Ctrl+Tab did not respect taborder after dragging tabs,
Ctrl+Tab did not wrap at the end or the beginning,
Ctrl+Tab jumped through all tabs, even if new tab groups have
been created,
the taborder could not be saved after reordering the tabs with
drag and drop;
see
http://forums.codeblocks.org/index.php/topic,11519.msg81378.html
for details
2010-02-02 10:15 mortenmacfly
svn6130: * add ACTIVE_EDITOR_LINE, ACTIVE_EDITOR_LINE_0,
ACTIVE_EDITOR_COLUMN, ACTIVE_EDITOR_COLUMN_0 macros pointing to
the current editor's line/column (one and zero based)
2010-02-02 09:43 mortenmacfly
svn6129: * do the same fix as r6128 for lib_finder and
codesnippets, too (they are affected, too)
2010-02-02 08:53 jenslody
svn6128: - wxSmith: fix possible crash on windows, due to
linking with tinyxml, what is already statically linked into
codeblocks-library
2010-01-31 11:51 mandrav