-
Notifications
You must be signed in to change notification settings - Fork 20
/
ChangeLog
11294 lines (8734 loc) · 436 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
2023-01-15 Gregory John Casamento <[email protected]>
* ANNOUNCE
* Documentation/news.texi
* GormCore/GormFilePrefsManager.m
* GormInfo.plist
* NEWS
* Version: Release 1.3.1
2022-11-10 Gregory John Casamento <[email protected]>
* GormCore/GormDocument.h: Add declaration for new method and
improve documentation.
* GormCore/GormDocument.m: Add new method openEditorForObject:
withParentObject: add logic to exclude NSCell sublcasses from
appearing in the toplevel editor. NSCells are a special class
since they are not views, so they don't need the editor to
highlight them in the way a subview does.
2022-03-29 Gregory John Casamento <[email protected]>
* Plugins/Xib/GormXibWrapperLoader.m: Use new version
of custom class dictionary.
2022-03-26 Gregory John Casamento <[email protected]>
* GormCore/GormClassEditor.m: Add coercion to (id) to silence
warning.
* GormCore/GormDocument.m: Add editor when editing a class
with a cell. This will allow Gorm to bring up an inspector.
2021-10-19 Gregory John Casamento <[email protected]>
* GormCore/GormNSSplitViewInspector.m: Correct crash happening
in GormNSSplitViewInspector.
2021-07-22 Gregory John Casamento <[email protected]>
* GormCore/GormDocument.m: -[GormDocument awakeWithContext:]
establish connection properly and catch the case where an object
might be connected to terminate and redirect it to the
deferredEndTesting: method.
2021-05-15 Gregory John Casamento <[email protected]>
* English.lproj/Gorm.rtfd/TXT.rtf: Add help file
* GNUmakefile: Copy help file.
* GormCore/GormClassEditor.m
* GormCore/GormClassManager.m
* GormCore/GormConnectionInspector.m: Code cleanup.
* GormCore/GormDocument.h: Declaration of setFontMenu:/fontMenu
* GormCore/GormDocument.m: Add setFontMenu:/fontMenu methods.
Add outlet connector so that font menu us connected to the font
manager when the model is loaded.
* GormInfo.plist: Update version
* Palettes/0Menus/MenusPalette.m: Use auto variable to hold
the NSFontManager singleton.
2021-05-09 Gregory John Casamento <[email protected]>
* GormCore/GormClassManager.m: Code cleanup
* GormCore/GormDocument.m: Code cleanup
* GormCore/GormPrivate.m: Code cleanup
* GormCore/GormWrapperLoader.m: Code cleanup.
* GormLib/IBDocuments.h: Add some GS specific methods to the
protocol.
* Gorm.m: Remove unneeded ivar.
* Plugins/Nib/GormNibWrapperLoader.m: Code cleanup.
* Plugins/Xib/GormXibWrapperLoader.m: Add code to handle connections.
* Resources/ClassInformation.plist: Add missing classes to
this plist.
2021-05-09 Gregory John Casamento <[email protected]>
* ANNOUNCE
* Documentation/news.texi
* GormCore/GormFilePrefsManager.m
* GormInfo.plist
* NEWS
* Version: Release 1.2.28
2021-04-22 Gregory John Casamento <[email protected]>
* GormCore/GormScrollViewEditor.m
* GormCore/GormViewWithContentViewEditor.m
* Palettes/2Controls/GormMatrixAttributesInspector.m:
Fixes for issue #11 in Gorm. NSMatrix should now be selectable
after the first click. Previously it was selecting the button after
the first selection.
2021-03-27 Gregory John Casamento <[email protected]>
* English.lproj/Gorm.gorm/data.classes: Add action on class.
* GormCore/GormGenericEditor.h: Add declaration
* GormCore/GormViewWithContentViewEditor.h:
* GormCore/GormViewWithContentViewEditor.m: Add implementation of
groupSelectionInMatrix method.
* Gorm.m: Add groupSelectionInMatrix: IBAction.
2020-04-17 14:45-EDT Gregory John Casamento <[email protected]>
* ANNOUNCE
* Documentation/news.texi
* GormInfo.plist
* NEWS
* Version: 1.2.26
2020-04-14 Riccardo Mottola <[email protected]>
* Palettes/2Controls/GormProgressIndicatorAttributesInspector.m
Cast to NSProgressIndicator so correct isVertical method is choosen by
compiler. Add check before casting.
2020-03-29 Fred Kiefer <[email protected]>
* GormCore/GormDocument.m: Remove NSNibConnector duplicating code
in gui. Use [-attachObjects:toParent:] and [-detachObjects:] more often.
2020-01-10 Sergii Stoian <[email protected]>
* Palettes/2Controls/ControlsPalette.gorm,
* Palettes/2Controls/GormNSFormInspector.gorm: update stepper size.
* Palettes/2Controls/GormMatrixAttributesInspector.h,
* Palettes/2Controls/GormMatrixAttributesInspector.m
(_displayObject:resize): move object refresh code here. Use it where
it's appropriate.
* Palettes/2Controls/GormNSMatrixInspector.gorm: separate dimensions
form into 2 for rows and columns; add steppers again.
* Palettes/2Controls/GormButtonEditor.m
(gormTitleRectForFrame:inView:): initialize `titleRect` to supress
compiler warning.
* Palettes/2Controls/GormMatrixAttributesInspector.m: ehnanced
redrawing of object after dimension changes.
* Palettes/2Controls/GormNSBoxInspector.gorm: ticks to offset sliders
were added; "Stop on ticks only" set.
2020-01-09 Sergii Stoian <[email protected]>
* Palettes/2Controls/GormMatrixAttributesInspector.m: use ok: on
editing finish of textfields objects.
* Palettes/2Controls/GormMatrixAttributesInspector.m:(ok:): update window
content view on object's dimensions changes.
* Palettes/2Controls/GormButtonAttributesInspector.m (ok:): removed unused
code.
* Palettes/2Controls/GormNSButtonInspector.gorm/objects.gorm:
added missed "Disclosure Round" bezel type to popup button.
* Palettes/2Controls/GormButtonAttributesInspector.m
(buttonTypeForObject:): use NSMomentaryPushInButton for "Momentary Push" type.
(rever:): use tag to select button type.
2020-01-08 Sergii Stoian <[email protected]>
* Palettes/2Controls/GormButtonAttributesInspector.m:
fixed "Momentary Light" button type value.
* Palettes/2Controls/GormMatrixAttributesInspector.m (ok:): preserve tag
and title of cells on "Match Prototype" button click.
* Palettes/3Containers/GormTableViewAttributesInspector.m: apply changes
only after editing has end.
2020-01-06 Sergii Stoian <[email protected]>
* Gorm.m: Inspector's shortcuts now work across the application.
2020-01-05 Sergii Stoian <[email protected]>
* Palettes/3Containers/GormNSTableViewInspector.gorm:
tiny fix of inspector position.
* Palettes/4Data/GormNSDateFormatterInspector.gorm,
* Palettes/4Data/GormNSNumberFormatterInspector.gorm:
fixed size and positions of UI elements.
* Palettes/2Controls/ControlsPalette.m (willInspectObject:):
create "Prototype" mode only if selected object's prototype exists.
* Palettes/2Controls/GormMatrixAttributesInspector.m (ok:):
fixed "Match Prototype" action - make cells as copy of prototype,
select first cell.
* GormCore/GormInspectorsManager.m (setCurrentInspector:): get width
from Inspector's minSize when new minSize is about to be set.
* Palettes/2Controls/GormMatrixAttributesInspector.m (revert:):
update object in prototype matrix.
* Palettes/2Controls/GormMatrixAttributesInspector.m (ok:): implemented
"Match Prototype" button action - recreates object's cells.
* Palettes/2Controls/GormButtonAttributesInspector.m (ok:),
* Palettes/2Controls/GormButtonAttributesInspector.m (revert:): adopt
methods to be usable for objects with prototype. This inspector can be
called in "Prototype" mode.
* Palettes/2Controls/ControlsPalette.m: implement adding "Prototype"
mode to Inspector's popup button for objects with prototype available
(mainly NSMatrix).
* Palettes/2Controls/GormNSMatrixInspector.gorm: reestablish connection
to action for "Match Prototype" button.
* Palettes/2Controls/GormNSButtonInspector.gorm: set enabled and not
selected state "Bordered" button.
2020-01-04 Sergii Stoian <[email protected]>
* English.lproj/GormConnectionInspector.gorm: fixed window size to prevent
inspector panel resizing while switching from the other standard-sized
inspectors.
* Palettes/4Data/GormNSComboBoxInspector.gorm: fixed sizes and positions
of elements.
* GormCore/GormInspectorsManager.m (setCurrentInspector:): increase
height of inspector panel frame if inspector taller then previous;
set minimum size accordingly.
* Palettes/2Controls/GormNSMatrixInspector.gorm: made inspector content taller
to look better and as a test case for change in GorInspectorManager.
2019-12-27 Sergii Stoian <[email protected]>
* GormCore/GormConnectionInspector.m (ok:): return on problem with making
connection, don't mark document as edited; update "Outlets" browser after
makeing changes to connections - updates "connected" image on selected
outlet.
* Palettes/2Controls/GormNSBoxInspector.gorm,
* Palettes/2Controls/GormNSButtonInspector.gorm,
* Palettes/2Controls/GormNSCellInspector.gorm,
* Palettes/2Controls/GormNSColorWellInspector.gorm,
* Palettes/2Controls/GormNSMatrixInspector.gorm,
* Palettes/2Controls/GormNSPopUpButtonInspector.gorm,
* Palettes/2Controls/GormNSProgressIndicatorInspector.gorm,
* Palettes/2Controls/GormNSSliderInspector.gorm,
* Palettes/2Controls/GormNSStepperInspector.gorm,
* Palettes/2Controls/GormNSTextFieldInspector.gorm:
sizing and positions fixes.
2019-12-27 Sergii Stoian <[email protected]>
* Palettes/2Controls/GormNSFormInspector.gorm:
sizes and positions cleanup and fix.
* Palettes/3Containers/GormNSBrowserInspector.gorm:
fixed initial first responder.
* Palettes/1Windows/GormNSWindowSizeInspector.gorm:
fixed initial first responder.
* Palettes/1Windows/GormDrawerAttributesInspector.gorm:
fixed autosizing.
* English.lproj/GormObjectInspector.gorm: fixed initial first responder
setting.
* English.lproj/GormScrollViewAttributesInspector.gorm: fixed default
background color.
* English.lproj/GormConnectionInspector.gorm: fixed initial first
responder setting.
* English.lproj/GormClassInspector.gorm,
* English.lproj/GormClassPanel.gorm,
* English.lproj/GormScrollViewAttributesInspector.gorm,
* English.lproj/GormSetName.gorm,
* English.lproj/GormSoundInspector.gorm,
* Palettes/4Data/GormNSImageViewInspector.gorm,
* Palettes/4Data/GormNSTextViewInspector.gorm: sizing and positioning
fixes.
* Palettes/3Containers/GormNSTableColumnInspector.gorm: fixed textfields
height.
* GormCore/GormConnectionInspector.m: use custom cell class for "Outlets"
browser to draw dimple image on connected outlets.
* Palettes/3Containers/GormNSTableColumnSizeInspector.gorm: adjust sizing
and position of elements.
* Palettes/3Containers/GormTableColumnSizeInspector.m: apply changes only
after editing has end.
* Palettes/3Containers/inspectors.m: added missed method to return table
column sizer class.
2019-12-26 Sergii Stoian <[email protected]>
* Palettes/3Containers/GormNSTableViewInspector.gorm: fxed sizing and
positioning; rearrange inspector elements.
* Palettes/3Containers/GormNSTableColumnInspector.gorm: fxed sizing and
positioning; rearrange inspector elements.
* Palettes/3Containers/GormNSBrowserInspector.gorm/objects.gorm: fixed
vertical offset of option butttons.
* Palettes/3Containers/GormBrowserAttributesInspector.m (ok:): reduce
number of digits of fraction part to 2.
* Palettes/3Containers/GormNSBrowserInspector.gorm: fixed sizing and
postioning; remove delegate from textfields - attribute is set only after
user finished editing (pressed Return or Tab key).
* Palettes/1Windows:
Window Attributes Inspecor:
- Fixed size, postion and autosizing of elements.
- "Autosave Name" form was moved into "Window Size Inspector".
- "Minwindow Icon Name": removed clear button, form converted into
texfield.
Window Size Inspector:
- "Size" form was splitted into 2 forms to place them horizontally.
- "Size" group was renamed into "Frame".
- "Autosave Name" form was added and converted into textfield.
- Fixed size, postion and autosizing of elements.
NOTE: "Autosave Name" field is not saved into model file - is not encoded?
* Palettes/2Controls/GotmNSBoxInspector.gorm: minor fixes.
* Palettes/2Controls/GormButtonInspector.gorm: recreate broken "Type"
popup button.
* Palettes/2Controls/GormButtonAttributesInspector.m (ok:): set "Key:"
textfield value to after selecting popup button items.
2019-12-23 Sergii Stoian <[email protected]>
* Palettes/2Controls/GormNSBoxInspector.gorm: adjust size and positions
of elements.
* Menu Item Inspector: changed size and positions of UI elements;
redesigned key equivalent selection - user can specify either character
in text field or special(function) key from popup button; added check for
length of key equivalent - only 1 character length allowed.
* Palettes/2Controls: return code for NSPopUpButton adding
programmatically into palette.
2019-12-23 Sergii Stoian <[email protected]>
* Palettes/2Controls/ControlsPalette.gorm: adjust some controls position
slightly.
* Palettes/0Menus/GormMenuAttributesInspector.gorm: fixed positioning
and autosizing.
* English.lproj/GormConnectionInspector.gorm: adjust splitview height
after last change.
* GormCore/GormInspectorsManager.m (setCurrentInspector:): do not
resize inspector panel on inspector change.
* Fixed guideline on/off menu item handling after rearrangement.
* GormCore/GormPalettesManager.m (resizeWithOldSuperviewSize:): new
method. Fixes correct placement of palette view on panel resize.
(init): disable auroresizing of dragView.
* GormCore/GormPalettesManager.m (loadPalette): commented out code that
leads to issues with scrolling (although, code supposed to fix issues
with scrolling :().
* GormCore/GormPalettesManager.m (init): autohide scroller of selection
ScrollView.
* Palettes/3Containers/ContainersPalette.m: fixed typo.
* Palette Panel: set window title from original window title of selected
palette; window titles were added/fixed for palettes.
* GormCore/GormPalettesManager.m (init): made dragView is not
autoresizable to omit problems with palettes visibility.
* Palettes/4Data/DataPalette.m (finishInstantiate): ScrollView was made
not resizable; move controls in right column slightly to the right.
* Palettes/2Controls/ControlsPalette.m (finishInstantiate) do not add
popup button - it's already in model file of palette.
* Controls Palette: minor fixes to controls position and size.
* Menus Palette: adjust position of menu image centered in dragged view.
* GormPalettesManager: palettes selection icons now display selection
with white color of selected icon background; removed arrows from
scroller; icons are replaced to make selection color visible.
2019-12-21 Sergii Stoian <[email protected]>
* Rearrangement of main menu items:
- "Layout" renamed into "Format";
- "Font" submenu was added into "Format";
- "Group" and "Page Layout" were moved into "Format";
- shortcuts 'p' and 'i' were removed from "Palletes..." and
"Inspector..." because it's standard shortcuts for "Italic" and "Print"
menu actions;
* ViewSizeInspector: fixed size, position and autosizing properties.
* CustomClassInspector: fixed size, position and autosizing properties.
* ConnectionInspector: removed horizontal scroller from "Outlets" browser;
adjusted split view frame.
* DummyInspector: change text to "Not Applicable" and font size to 18.
* CustomClassInspector: autosizing fixes.
* ImageInspector: use MSImageView from palette instead of CustomView;
autosizing fixes.
* ControlsPalette: rearrange controls.
* PalettePanel: fixed size and autosize attributes (model file is not
used yet).
* ObjectInspector: fixed size, position, autosize
* NSSplitViewInspector: fixed size, position, autosize; refuse first
responder on matrix cells.
2019-07-26 Fred Kiefer <[email protected]>
* Add .gitignore.
* GormCode/GormViewWithContentViewEditor.m: Correct return type of
compare function.
* Palettes/2Controls/GormFormAttributesInspector.m,
* Palettes/2Controls/GormMatrixAttributesInspector.m: Add missing include.
* GormCore/GormInspectorsManager.m: Disable menu update during
bulk change.
2019-02-07 02:15-EDT Gregory John Casamento <[email protected]>
* ANNOUNCE
* Documentation/news.texi
* GormInfo.plist
* NEWS
* Version: 1.2.24
2019-01-25 Fred Kiefer <[email protected]>
* GormCore/GormDocument.m: Fix wrong string type in David Chisnall
fix for the new libobjc.
2015-11-05 20:40-EST Gregory John Casamento <[email protected]>
* GormCore/GormWindowTemplate.m: in baseWindowClass return
GormNSPanel if _windowClass is NSPanel. This should probably
use GormPalettesManager substituteClasses at some point, but
for now this is a workable solution.
2015-05-20 06:19-EDT Gregory John Casamento <[email protected]>
* ANNOUNCE
* NEWS
* Version: 1.2.22
2015-05-20 06:16-EDT Gregory John Casamento <[email protected]>
* ChangeLog
* Documentation/news.texi
* English.lproj/GormPrefGeneral.gorm
* GormCore/GormFilePrefsManager.m
* GormInfo.plist
* GormPrefs/GormGeneralPref.m
* Plugins/Gorm/GormGormWrapperLoader.m: Remove calls to repairFile:
as some of the logic in it is outdated and could cause issues with
perfectly good gorm files. Disabling pending further development.
* Version
2015-05-11 Gregory John Casamento <[email protected]
* GormLib/IBObjectAdditions.m: Removed canSubstituteForClass:
dummy implementation. The reason for this is because some objc
runtime implementations do not smash categories the same and
do not allow replacement of class methods. For this reason
it was failing on some operating systems. Fixes bug#45040.
2015-04-17 Riccardo Mottola <[email protected]>
* Palettes/3Containers/GormTabViewAttributesInspector.m
* Palettes/3Containers/GormBrowserAttributesInspector.m
* GormCore/GormFilePrefsManager.m
Use cast to larger type for string formatting to allow
compilation on Solaris.
2015-03-02 00:04-EST Gregory John Casamento <[email protected]>
* GormObjCHeaderParser/NSScanner+OCHeaderParser.m
* GormObjCHeaderParser/OCHeaderParser.m: Fix for crash seen after
last commit.
2015-03-02 00:04-EST Gregory John Casamento <[email protected]>
* GormObjCHeaderParser/OCHeaderParser.m: Add _stripRedundantStatements
method which eliminates excess empty statements from the code which
could confuse the parser.
2015-02-22 21:21-EST Gregory John Casamento <[email protected]>
* English.lproj/GormPreferences.gorm: Removed from pulldown menu
* English.lproj/GormPrefGuideline.gorm: Added colorwell and
connections.
* GormPrefs/GNUmakefile: Removed classes.
* GormPrefs/GormColorsPref.h
* GormPrefs/GormColorsPref.m: Removed.
* GormPrefs/GormGuidelinePref.h
* GormPrefs/GormGuidelinePref.m: Added color well...
* GormPrefs/GormPrefController.m: Removed view from case statement
2014-10-28 03:08-EDT Gregory John Casamento <[email protected]>
* English.lproj/Gorm.gorm: Change connection to point to
new selectAll:
* GormCore/GormWrapperLoader.m: Fix for bug #42782
* Gorm.m: Add select all method.
2014-08-31 Fred Kiefer <[email protected]>
* GormCore/GormDocument.m: Rewrite fix for bug #39072 to stop
leaking memory.
2014-07-21 Fred Kiefer <[email protected]>
* GormCore/GormImage.m: Fix the init issue for the second
method as well. Small cleanup.
2014-05-31 10:58-EDT Gregory John Casamento <[email protected]>
* GormCore/GormDocumentController.h: add declaration of
openDocumentForContentsOfURL:
* GormCore/GormDocumentController.m: add implementation of
openDocumentForContentsOfURL:
* GormCore/GormDocument.m: Add implementation of revertContentsOfURL:..
Fix bug#28644
2014-05-30 Sebastian Reitenbach <[email protected]>
* Palettes/2Controls/GormColorWellAttributesInspector.h
fix typo in header guard
* Palettes/2Controls/GormFormAttributesInspector.m
fix some format string warnings
2014-05-28 Riccardo Mottola <[email protected]>
* GormCore/GormClassInspector.m
* GormCore/GormClassManager.m
* GormCore/GormFilePrefsManager.m
* GormCore/GormInspectorsManager.m
Explicitely cast NSIntegers to avoid warning and problems.
2014-05-27 03:26-EDT Gregory John Casamento <[email protected]>
* GormCore/GormInspectorsManager.m
* Palettes/2Controls/GormMatrixAttributesInspector.h
* Palettes/2Controls/GormMatrixAttributesInspector.m
* Palettes/2Controls/GormNSMatrixInspector.gorm: Fix for bug #28646.
2014-05-27 03:15-EDT Gregory John Casamento <[email protected]>
* GormCore/GormDocument.m: Fix bug #39072: add retain to prevent
segmentation fault when renaming object in document view.
2014-05-26 19:25-EDT Gregory John Casamento <[email protected]>
* GormObjCHeaderParser/OCIVarDecl.m
* GormObjCHeaderParser/OCIVar.m: Fix for bug#30837.
2014-05-26 18:32-EDT Gregory John Casamento <[email protected]>
* Palettes/2Controls/GormFormAttributesInspector.h
* Palettes/2Controls/GormFormAttributesInspector.m
* Palettes/2Controls/GormNSFormInspector.gorm: Accept patch on
bug#38477 by Sergei Golovin. Allows user to modify the
number of items in an NSForm using the inspector.
2014-01-19 Fred Kiefer <[email protected]>
* Palettes/2Controls/GormButtonAttributesInspector.h: Use NSButton
instead of the non-existign NSSwitch.
* GormCore/GormViewKnobs.m: Replace DPS calls. Only realloc
rect lists if needed.
* Plugins/Gorm/GormGormWrapperBuilder.m,
* Palettes/2Controls/GormPopUpButtonAttributesInspector.m,
* Palettes/2Controls/GormButtonEditor.m: Remove compiler warnings.
2014-01-19 Fred Kiefer <[email protected]>
* GormCore/GormResourceManager.m,
* GormCore/GormResource.m,
* GormCore/GormOutlineView.m,
* GormCore/GormObjectEditor.m,
* GormCore/GormClassManager.m: Remove compiler warnings.
2014-01-19 Fred Kiefer <[email protected]>
* GormInfo.plist: Don't claim to be able to write XIB files.
2013-12-31 Fred Kiefer <[email protected]>
* GormCore/GormResourceManager.m (-resourcePasteboardTypes): Add
IBMenuPboardType to work around menus not being draggable.
2013-11-04 10:03-EST Gregory John Casamento <[email protected]>
* GormCore/GormBoxEditor.m
* GormCore/GormClassEditor.m
* GormCore/GormClassInspector.m
* GormCore/GormClassManager.m
* GormCore/GormControlEditor.m
* GormCore/GormCustomView.m
* GormCore/GormDocument.m
* GormCore/GormDocumentWindow.m
* GormCore/GormFilePrefsManager.h
* GormCore/GormFilePrefsManager.m
* GormCore/GormFunctions.h
* GormCore/GormFunctions.m
* GormCore/GormInspectorsManager.m
* GormCore/GormInternalViewEditor.m
* GormCore/GormMatrixEditor.h
* GormCore/GormMatrixEditor.m
* GormCore/GormNSPanel.h
* GormCore/GormNSPanel.m
* GormCore/GormNSWindow.h
* GormCore/GormNSWindow.m
* GormCore/GormObjectEditor.m
* GormCore/GormObjectInspector.m
* GormCore/GormOutlineView.m
* GormCore/GormPrivate.h
* GormCore/GormPrivate.m
* GormCore/GormResourceEditor.m
* GormCore/GormResourceManager.m
* GormCore/GormSoundView.m
* GormCore/GormSplitViewEditor.m
* GormCore/GormStandaloneViewEditor.m
* GormCore/GormViewEditor.m
* GormCore/GormViewKnobs.m
* GormCore/GormViewWithContentViewEditor.m
* GormCore/GormViewWithSubviewsEditor.m: int -> NSInteger transition.
2013-10-26 Fred Kiefer <[email protected]>
* Plugins/Nib/GormNibWrapperBuilder.m (-initWithDocument:):
Don't store nil values in maps.
2013-10-26 Riccardo Mottola <[email protected]>
* Plugins/Nib/GormNibWrapperBuilder.m
Write warnings of respectively the proper nil object.
2013-10-19 Sebastian Reitenbach <[email protected]>
* GormCore/GormClassEditor.m
* GormCore/GormFilePrefsManager.m
* Palettes/3Containers/GormBrowserAttributesInspector.m
* Palettes/3Containers/GormTabViewAttributesInspector.m
fix format strings
2013-10-14 Eric Wasylishen <[email protected]>
* Palettes/2Controls/GormNSMatrixInspector.gorm:
* Palettes/2Controls/GormNSSliderInspector.gorm:
* Palettes/2Controls/GormNSBoxInspector.gorm:
* Palettes/2Controls/GormNSTextFieldInspector.gorm:
* Palettes/2Controls/GormNSPopUpButtonInspector.gorm:
* Palettes/2Controls/GormNSButtonInspector.gorm:
* Palettes/2Controls/ControlsPalette.gorm:
* Palettes/2Controls/GormNSFormInspector.gorm:
* Palettes/2Controls/GormNSCellInspector.gorm:
* Palettes/0Menus/GormMenuAttributesInspector.gorm:
* Palettes/3Containers/GormNSTableColumnSizeInspector.gorm:
* Palettes/3Containers/GormTabViewInspector.gorm:
* Palettes/3Containers/GormNSTableViewInspector.gorm:
* Palettes/3Containers/GormNSBrowserInspector.gorm:
* Palettes/1Windows/GormNSWindowSizeInspector.gorm:
* Palettes/1Windows/GormNSWindowInspector.gorm:
* Palettes/4Data/GormNSComboBoxInspector.gorm:
* Palettes/4Data/GormNSImageViewInspector.gorm:
* Palettes/4Data/GormNSTextViewInspector.gorm:
Turn off "Draws Background" on NSMatrix and NSForms; there's no need
to draw backgrounds and it may look bad with themes.
2013-07-03 Niels Grewe <[email protected]>
* InterfaceBuilder/InterfaceBuilder.h: Fix incorrect header inclusion guard.
2013-06-05 Riccardo Mottola <[email protected]>
* GormCore/GormSetNameController.h
* GormCore/GormSetNameController.m
Make runModal return NSInteger
2013-05-26: Sebastian Reitenbach <[email protected]>
* Palettes/3Containers/GormNSOutlineView.m
* GormCore/GormMatrixEditor.m
* GormCore/GormClassEditor.m
some int -> NSInteger and float -> CGFloat transitions
spotted by libobjc2 runtime in debug mode
2013-04-14 13:19-EDT Gregory John Casamento <[email protected]>
* ANNOUNCE
* Documentation/news.texi
* GormInfo.plist
* NEWS
* Version: 1.2.20
2013-03-06 01:44-EST Gregory John Casamento <[email protected]>
* GormCore/GormViewEditor.m: -handleNotification: touch document
when text editing is completed.
Fixes for bug #28643.
2013-03-06 00:05-EST Gregory John Casamento <[email protected]>
* GormCore/GormDocument.m: Touch document when aligning views in
-alignSelectedObjects:.
* Palettes/4Data/DataPalette.m: -depositViewResourceFromPasteboard:..
touch document when adding formatter.
* Palettes/4Data/GormDateFormatterAttributesInspector.m
* Palettes/4Data/GormNumberFormatterAttributesInspector.m:
-ok: touch document when changing formatter.
Fixes for bug #28643.
2013-03-05 20:23-EST Gregory John Casamento <[email protected]>
* GormCore/GormInternalViewEditor.m: touch document when font is
changed in changeFont:
2013-02-25 15:07-EST Gregory John Casamento <[email protected]>
* GormCore/GormWindowEditor.m: Second try to fix the previous
issue.
2013-02-25 04:14-EST Gregory John Casamento <[email protected]>
* GormCore/GormWindowEditor.m: Check the _firstResponder on
the window to see if it is the same as the _initialFirstResponder.
If it is, set it to nil as well in -unsetInitialFirstResponder:.
2013-02-23 Sebastian Reitenbach <[email protected]>
* GormCore/GormObjectEditor.h
* GormCore/GormObjectEditor.m
* GormCore/GormPalettesManager.m
* GormCore/GormSplitViewEditor.m
* GormCore/GormViewEditor.m
* GormCore/GormViewWithSubviewsEditor.m
* GormCore/GormWindowEditor.m
* Palettes/0Menus/GormMenuEditor.m
* Palettes/3Containers/GormTableViewEditor.m
* Palettes/4Data/GormTextViewEditor.m
* adapt to -gui changes for DnD
2013-02-16 20:10-EST Gregory John Casamento <[email protected]>
* GormCore/GormViewEditor.m: -editedObjectFrameDidChange:
alter code so that allViews under the editor are collected
and set to not post notifications. This change prevents
a notification/setFrame cycle which was occurring when
certain controls were added as subviews to NSTabView or
NSBox.
2013-01-26 20:42-EST Gregory John Casamento <[email protected]>
* GormCore/GormDocument.m: Corrected issue with adding cells to
object tree so that the can be properly addressed in connections.
Change to -attachObject:toParent:.
2013-01-13 17:45-EST Gregory John Casamento <[email protected]>
* GormCore/GormViewSizeInspector.m: Correct bug#30886: Gorm should
change the document to edited when changing resize attributes.
2013-01-13 16:57-EST Gregory John Casamento <[email protected]>
* Palettes/2Controls/GormColorWellAttributesInspector.m: NSColorWell
inspector was showing inverted settings after the last change.
Corrected this in -ok: and -revert: bug#32827
2012-12-12 12:33-EST Gregory John Casamento <[email protected]>
* GormCore/GormViewEditor.m: Prevent recursive frame/bounds
notifications when resizing a view.
* Plugins/Nib/GormNibWrapperLoader.m: Preliminary changes to support
reading nibs as files instead of packages.
2012-07-25 22:29-EDT Gregory John Casamento <[email protected]>
* GormCore/GormDocument.m: Apply patch suggested by Sebastian.
This appears to correct an issue seen by Sergey causing an out of
memory error.
2012-07-12: Sebastian Reitenbach <[email protected]>
* GormLib/IBObjectAdditions.m
* revert change from 2012-04-20, to fix Connection Inspector
on at least a couple of *BSD
2012-06-19 00:44-EDT Gregory John Casamento <[email protected]>
* ANNOUNCE
* Documentation/news.texi
* GormCore/GormDocument.m
* GormCore/GormFilePrefsManager.m
* GormCore/GormObjectEditor.m
* GormCore/GormViewEditor.m
* GormCore/GormViewWindow.m
* GormInfo.plist
* NEWS
* Version: 1.2.18
2012-05-01 23:25-EDT Gregory John Casamento <[email protected]>
* GormCore/GormDocument.m
* GormCore/GormFilePrefsManager.m
* GormCore/GormStandaloneViewEditor.m
* GormCore/GormViewWithContentViewEditor.m
* GormCore/GormWindowTemplate.m
* Palettes/0Menus/GormMenuEditor.m
* Palettes/0Menus/MenusPalette.m: Eliminate as many of the remaining
warnings in the code as possible.
2012-04-20 18:53-EDT Gregory John Casamento <[email protected]>
* GormCore/GormResourceEditor.m: Correct compiler warnings.
2012-04-20 12:16-EDT Gregory John Casamento <[email protected]>
* Palettes/2Controls/GormNSPopUpButton.h
* Palettes/2Controls/GormNSPopUpButton.m: Added new files for
Gorm subclass of NSPopUpButton.
2012-04-20 12:03-EDT Gregory John Casamento <[email protected]>
* GormCore/GormCustomView.m
* GormCore/GormFilesOwner.m
* GormCore/GormFunctions.m
* GormObjCHeaderParser/OCHeaderParser.m
* Palettes/2Controls/ControlsPalette.m
* Palettes/2Controls/GNUmakefile
* Palettes/2Controls/GormPopUpButtonEditor.m
* Palettes/3Containers/GormNSBrowser.m
* Palettes/4Data/GormImageViewAttributesInspector.m: Correct
compiler warnings found by clang.
2012-04-20 10:34-EDT Gregory John Casamento <[email protected]>
* GormLib/IBObjectAdditions.m
* GormObjCHeaderParser/OCClass.m
* GormObjCHeaderParser/OCHeaderParser.m
* GormObjCHeaderParser/OCIVarDecl.m
* GormObjCHeaderParser/OCIVar.m
* GormObjCHeaderParser/OCMethod.m
* GormObjCHeaderParser/ParserFunctions.m: Fix compiler warnings
when building with clang.
2012-04-20 02:11-EDT Gregory John Casamento <[email protected]>
* GormCore/GormClassInspector.m
* GormCore/GormClassManager.m
* GormCore/GormDocument.m
* GormCore/GormGenericEditor.m
* GormCore/GormObjectInspector.m
* GormCore/GormOutlineView.m
* GormCore/GormPrivate.h
* GormCore/GormPrivate.m
* Palettes/0Menus/GormMenuEditor.m
* Palettes/1Windows/GormDrawerAttributesInspector.m
* Palettes/3Containers/GormTableColumnAttributesInspector.m
* Palettes/3Containers/GormTableViewEditor.m
* Palettes/4Data/DataPalette.m
* Palettes/4Data/GormNumberFormatterAttributesInspector.m: Change int/unsigned int to NSInteger
and NSUInteger to address 64-bit issues. Patch by
Sebastian Reitenbach <[email protected]>
* Plugins/Gorm/GormGormWrapperLoader.m
* Plugins/Nib/GormNibWrapperBuilder.m
* Plugins/Nib/GormNibWrapperLoader.m
* Plugins/Xib/GormXibWrapperLoader.m: Clean up warnings found by clang.
2012-04-05 14:38-EDT Gregory John Casamento <[email protected]>
* GormCore/GormMatrixEditor.m: Change modifier to Ctrl+Shift since
these two keys are never remapped and Alt does not always exist
on european and some US keyboards. This change should address
bug#36096.
2012-03-17 German A. Arias <[email protected]>
* Gorm.m: Added method -applicationShouldTerminateAfterLastWindowClosed:
to avoid terminate Gorm when the user close the last window but have
documents minimized at taskbar.
2012-02-19 18:58-EST Gregory John Casamento <[email protected]>
* Version
* GormInfo.plist
* GormCore/GormFilePrefsManager.m: Update version information.
2012-02-15 17:59-EST Gregory John Casamento <[email protected]>
* GormCore/GormPrivate.m: Remove poseAs: override. Fix for
compilation with ObjC2.0 compilers.
* Palettes/3Containers/GormNSTableColumnInspector.gorm:
Correction for tableView column identifiers. Delegate
wasn't connected.
2012-02-06 02:02-EST Gregory John Casamento <[email protected]>
* Version: 1.2.16
* GormInfo.plist
* Documentation/news.texi: Update version and documentation.
2012-02-06 02:02-EST Gregory John Casamento <[email protected]>
* GormCore/GormClassInspector.m
* GormCore/GormCustomClassInspector.h
* GormCore/GormFilesOwner.m
* GormCore/GormOutlineView.m
2012-01-15 Eric Wasylishen <[email protected]>
* English.lproj/GormClassInspector.gorm: Re-save with the
last change, so the outlet/action table data cells are
editable.
2012-01-15 Eric Wasylishen <[email protected]>
* Palettes/3Containers/GormTableColumnAttributesInspector.m:
Set editable state of the data cell to match editable state
of the column. (NSTableView now refuses to edit non-editable
data cells in editable columns.)
2012-01-15 Eric Wasylishen <[email protected]>
* Palettes/3Containers/GormTabViewAttributesInspector.m:
Add retain/release so tab view item isn't deallocated while
being moved from one position to another.
2011-11-28 Gregory John Casamento <[email protected]>
* Palettes/0Menus/GormMenuAttributesInspector.m
* Palettes/0Menus/GormMenuInspectors.m: Correction for
bug #33457, title change should now cause document
to be modified.
2011-10-29 Gregory John Casamento <[email protected]>
* Plugins/Xib/GormXibWrapperLoader.m
* Plugins/Nib/GormNibWrapperLoader.m: Include GormWindowTemplate
from GormCore instead of locally.
* Plugins/Nib/GormWindowTemplate.h
* Plugins/Nib/GormWindowTemplate.m: Move to GormCore.
* Plugins/Nib/GNUmakefile: Remove GormWindowTemplate from here.
* GormCore/GNUmakefile: Add GormWindowTemplate.[hm] here.
2011-11-04 Eric Wasylishen <[email protected]>
* GormCore/GormFunctions.m: change float to CGFloat to match
change in gui of -[NSColor getRed:green:blue:alpha:] method
2011-11-03 Fred Kiefer <[email protected]>
* Plugins/Xib/GormXibWrapperLoader.h,
* Plugins/Xib/GormXibWrapperLoader.m: Get XIB files to be loaded.
2011-10-29 Gregory John Casamento <[email protected]>
* Palettes/3Containers/GormTableColumnAttributesInspector.h:
Add sortMatrix and sortOrder to class for inspector.
* Palettes/3Containers/GormTableColumnAttributesInspector.m:
Add logic to ok:/revert: to handle sort descriptors.
* Palettes/3Containers/GormTableColumnAttributesInspector.gorm:
Add fields and popupbutton for sortKey, sortSelector and sortOrder
removed previous changes and moved them over to these classes since
they didn't belong in the NSTableView inspector.
2011-10-26 Gregory John Casamento <[email protected]>
* Palettes/3Containers/GormTableViewAttributesInspector.h:
Add sortMatrix and sortOrder to class for inspector.
* Palettes/3Containers/GormTableViewAttributesInspector.m:
Add logic to ok:/revert: to handle sort descriptors.
* Palettes/3Containers/GormNSTableViewInspector.gorm:
Add form and popupbutton for sortMatrix and sortOrder
2011-10-25 Fred Kiefer <[email protected]>
* Palettes/0Menu/GormMenuEditor.m: Protect against the menu parent
being a popup button cell.
* Plugins/Xib/GormXibWrapperLoader.m: Move additional methods into
gui and correct handling of file owner.
2011-09-15 Fred Kiefer <[email protected]>
* GormCore/GormPrivate.h ([NSDateFormatter +initialize],
[NSNumberFormatter +initialize]): Remove these dangerours methods.
* Palettes/4Data/DataPalette.m: Move +initialize method into
DataPalette and retain the static objects.
* Palettes/4Data/GormNumberFormatterAttributesInspector.m: Clean
up compiler warnings.
2011-09-15 Fred Kiefer <[email protected]>
* Palettes/0Menu/GormMenuEditor.m: Change becomeMainWindow call
to makeMainWindow.
Patch by Matt Rice <[email protected]>
2011-05-17 20:43-EDT Gregory John Casamento <[email protected]>
* GormCore/GormStandaloneViewEditor.h:
* GormCore/GormStandaloneViewEditor.m: Improve support for standalone
views. Correct issue with ungrouping. Correct issues with editing
subviews in a standalone view.
* GormCore/GormViewSizeInspector.m: Remove code which
made standalone views uneditable in the size inspector.
2011-05-17 17:32-EDT Gregory John Casamento <[email protected]>
* GormLib/COPYING.LIB: Update license text for files.
* GormLib/IBApplicationAdditions.h
* GormLib/IBApplicationAdditions.m
* GormLib/IBCellAdditions.h
* GormLib/IBCellProtocol.h
* GormLib/IBConnectors.h
* GormLib/IBConnectors.m
* GormLib/IBDefines.h
* GormLib/IBDocuments.h
* GormLib/IBDocuments.m
* GormLib/IBEditors.h
* GormLib/IBEditors.m
* GormLib/IBInspector.h
* GormLib/IBInspector.m
* GormLib/IBInspectorManager.h
* GormLib/IBInspectorManager.m
* GormLib/IBInspectorMode.h
* GormLib/IBInspectorMode.m
* GormLib/IBObjectAdditions.h
* GormLib/IBObjectAdditions.m
* GormLib/IBObjectProtocol.h
* GormLib/IBPalette.h
* GormLib/IBPalette.m
* GormLib/IBPlugin.h
* GormLib/IBPlugin.m
* GormLib/IBProjectFiles.h
* GormLib/IBProjects.h
* GormLib/IBResourceManager.h
* GormLib/IBResourceManager.m
* GormLib/IBSystem.h
* GormLib/IBViewAdditions.h
* GormLib/IBViewProtocol.h
* GormLib/IBViewResourceDragging.h
* GormLib/InterfaceBuilder.h
2011-05-17 17:32-EDT Gregory John Casamento <[email protected]>
* Plugins/Xib/GormXibWrapperLoader.m: Various fixes for XIB
loading.
* English.lproj/GormDocument.gorm: Fix button title.
2011-04-28 14:44-EDT Gregory John Casamento <[email protected]>
* Plugins/Xib/GormXibWrapperLoader.m: Correct compilation errors
and warnings in Xib loading code. Correct loading code so that
Xib file partially loads.