-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathChangeLog
2442 lines (1781 loc) · 73.8 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
2024-03-20 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/Resizer.m:
use getPixel/setPixel to handle also 16bpp and non-planar images.
A bit slower, but more portable code since it relies on
NSBitmapImageRep.
2022-12-22 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/ImageViewer.h
* Inspector/ContentViewers/ImageViewer/ImageViewer.m:
Cleanup checking of image consistency, remove lastPath.
If the image isn't the current one, don't show it invalid:
we suppose another resizer task is running in the background.
2022-12-21 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
Try to handle failure of resized image better.
2022-10-06 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
* Inspector/ContentViewers/ImageViewer/Resizer.m
store Image Path and get it back from the resizer and compare if it is current
2022-10-06 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/AppViewer/AppViewer.m
* Inspector/ContentViewers/FolderViewer/FolderViewer.m
* Inspector/ContentViewers/IBViewViewer/IBViewViewer.m
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
* Inspector/ContentViewers/NSColorViewer/NSColorViewer.m
* Inspector/ContentViewers/NSRTFViewer/NSRTFViewer.m
* Inspector/ContentViewers/NSTIFFViewer/NSTIFFViewer.m
* Inspector/ContentViewers/PdfViewer/PdfViewer.m
* Inspector/ContentViewers/RtfViewer/RtfViewer.m
* Inspector/ContentViewers/SoundViewer/SoundViewer.m
* Inspector/ContentViewersProtocol.h
* Inspector/Contents.m
remove displayLastPath and simplify, it was forced to NO anyway.
2022-07-12 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNIcon.h
* FSNode/FSNIcon.m
* FSNode/FSNIconsView.m
* GWorkspace/FileViewer/GWViewerIconsPath.m
remove index from FSNIconNameEditor, unused.
2022-07-11 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserMatrix.[h,m]:
mouseFlags has to be NSUInteger coming from NSEvent modifierFlags.
2022-06-29 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserColumn.m
* FSNode/FSNBrowserColumn.h
Switch index to NSInteger
2022-06-29 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserColumn.m
Cleanup of selection code, use proper NSInteger for Matrix access
2021-10-12 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNIcon.h
* FSNode/FSNIcon.m
If modern style is selected, draw the frame with a subtle alpha
channel.
2021-09-10 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Preferences/DesktopPref.m
* GWorkspace/TShelf/TShelfIcon.h
* GWorkspace/TShelf/TShelfIcon.m
* GWorkspace/TShelf/TShelfIconsView.h
* GWorkspace/TShelf/TShelfIconsView.m
* GWorkspace/TShelf/TShelfView.h
* GWorkspace/TShelf/TShelfView.m
* GWorkspace/TShelf/TShelfWin.h
* GWorkspace/TShelf/TShelfWin.m:
Also Tabbed Shelf shall respect single-click launch.
2021-09-09 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Desktop/Dock/Dock.h
* GWorkspace/Desktop/Dock/Dock.m
* GWorkspace/Desktop/Dock/DockIcon.h
* GWorkspace/Desktop/Dock/DockIcon.m
* GWorkspace/Desktop/GWDesktopManager.h
* GWorkspace/Desktop/GWDesktopManager.m
* GWorkspace/Preferences/DesktopPref.h
* GWorkspace/Preferences/DesktopPref.m
* GWorkspace/Resources/English.lproj/DesktopPref.gorm
* GWorkspace/Resources/English.lproj/Localizable.strings
* GWorkspace/Resources/French.lproj/Localizable.strings
* GWorkspace/Resources/German.lproj/Localizable.strings
* GWorkspace/Resources/Italian.lproj/Localizable.strings:
Add single-click launch preference and apply it to the Dock.
2021-09-09 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNIcon.h
* FSNode/FSNIcon.m
* FSNode/FSNTextCell.m
* GWorkspace/Desktop/GWDesktopIcon.m
Allow the background od an Icon Label to be drawn and have Desktop Icons use this.
2021-05-21 Riccardo Mottola <rm@gnu.org>
* configure
* configure.ac
substitute CC, CPP, CXX variables so subprojects pick them up
2021-05-08 Riccardo Mottola <rm@gnu.org>
* Inspector/Tools.h
* Inspector/Tools.h
In findApplicationsForPaths return now early and a BOOL for success or failure finding applications. Use this return in activateForPaths to cleanup tool list if none were found and use this to enable tool display for directories.
2021-01-31 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/AppViewer/AppViewer.m
Cleanup code and fix display of extensions without a valid icons.
2020-10-29 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/ImageViewer.h
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
* Inspector/ContentViewers/ImageViewer/Resizer.h
* Inspector/ContentViewers/ImageViewer/Resizer.m
* Inspector/ContentViewersProtocol.h
Extract ImageViewerProtocol, make ImageViewer adopt it, set the Proxy in the resizer explicitely and avoid using a serverConnection variable.
2020-03-11 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Thumbnailer/ImageThumbnailer/ImageThumbnailer.m
Update Scaling code to Bilinear from PRICE.
2020-01-31 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/Resizer.m
Update Scaling code to Bilinear from PRICE.
2018-12-08 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNode.m
Do not set mount type because of file system type, just rely now on mounting/unmounting of volumes
2018-11-19 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Desktop/GWDesktopView.m (showMountedVolumes)
Improve handling of added and removed volumes.
2018-08-01 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRepIcons.m
Fix inconsistent condition for [volumes containsObject: nodepath]
* GWorkspace/Desktop/GWDesktopManager.h
* GWorkspace/Desktop/GWDesktopManager.m
Track mounted volumes by checking additions/removals instead of modification of mount points.
2018-07-06 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/AppViewer/AppViewer.m
Do not lookup the icon for empty names, reset icon if none is found.
2018-03-13 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Resources/Japanese.lproj/Localizable.strings
Add Japanese locale by Chubei Nakagawa
2018-01-25 Riccardo Mottola <rm@gnu.org>
* GWMetadata/gmds/mdextractor/mdextractor.m
* Tools/fswatcher/fswatcher-inotify.m
* Tools/fswatcher/fswatcher.m
Clean up unused is_daemon static var.
2018-01-24 Riccardo Mottola <rm@gnu.org>
* GWMetadata/MDFinder/MDFinder.h
* GWMetadata/MDFinder/MDFinder.m
Fix warnings: make NSMenuItem follow protocol.
* Operation/FileOpInfo.m
Fix string format warning.
* GWMetadata/gmds/mdextractor/mdextractor.m
Return correct object in case of exception!
* GWorkspace/TShelf/TShelfView.m
Minor cleanup and compare pointer against nil and not NO.
2018-01-17 Riccardo Mottola <rm@gnu.org>
* Tools/ddbd/ddbd.m
Fix allocated class type.
2018-01-17 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Finder/Finder.m
Fix allocated class type.
2018-01-11 Riccardo Mottola <rm@gnu.org>
* FSNode/configure
* FSNode/configure.ac
Remove sub-folder configures and merge into top-level
* GWorkspace/configure.ac
* GWorkspace/configure
Remove sub-folder configures and merge into top-level
2016-06-07 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/ImageViewer.h
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
Do not watch for the connection dieing, we suppose it stable being local now.
2016-06-01 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
* Inspector/ContentViewers/ImageViewer/Resizer.m
Pass data directly without Archiving/Unarchiving.
2016-06-01 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/ImageViewer.h
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
* Inspector/ContentViewers/ImageViewer/Resizer.h
* Inspector/ContentViewers/ImageViewer/Resizer.m
Use DO and connections to communicate to thread.
2016-06-01 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/ImageViewer.h
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
* Inspector/ContentViewers/ImageViewer/Resizer.m
Partially revert, but fix and complete using a class instead of a separate Task, Rename Resizer to ImageResizer to avid class name clash.
2016-04-28 Riccardo Mottola <rm@gnu.org>
* GWorkspace/GWorkspace.m
Make disk mount available also without an active desktop.
2016-04-21 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Thumbnailer/ImageThumbnailer/ImageThumbnailer.m
* Inspector/ContentViewers/ImageViewer/resizer/Resizer.m
Generate thumbnail and preview only from the first available Bitmap representation: this means for multipage tiffs that the first page is used. Works around unidentified issues in certain setups where images failed to display. A better solution might be needed in the future in GUI itself.
2016-04-13 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRepIcons.m
Use different cache keys for icons and icons with link badge. Remove fail-over case which should not happen and Log a warning instead.
2016-04-12 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Desktop/Dock/Dock.m
Use numeric search to sort icons index array.
* FSNode/Resources/Images/HardDisk.tiff
New icon by Bertrand
2016-04-07 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.m
Cleanup and use NSUInteger
* FSNode/FSNBrowser.m
* FSNode/FSNBrowserCell.m
* FSNode/FSNBrowserColumn.m
* FSNode/FSNIcon.m
* FSNode/FSNIconsView.m
* FSNode/FSNListView.m
* FSNode/FSNPathComponentsViewer.m
* FSNode/FSNodeRep.h
* FSNode/FSNodeRep.m
* GWorkspace/Desktop/GWDesktopView.m
* GWorkspace/FileViewer/GWViewerIconsPath.m
* GWorkspace/FileViewer/GWViewerShelf.m
* GWorkspace/History/History.
Refactor heighOfFont to heightOfFont
2016-04-06 17:41-EDT Gregory John Casamento <greg.casamento@gmail.com>
* GWorkspace/GWorkspace.m: Add exception handler when loading
help file. Still print out issue, but do not crash and end
up in an inconsistent state.
2016-03-24 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Finder/Modules/FModuleAnnotations/FModuleAnnotations.m
* GWorkspace/Finder/Modules/FModuleContents/FModuleContents.m
* GWorkspace/Finder/Modules/FModuleCrDate/FModuleCrDate.m
* GWorkspace/Finder/Modules/FModuleKind/FModuleKind.m
* GWorkspace/Finder/Modules/FModuleModDate/FModuleModDate.m
* GWorkspace/Finder/Modules/FModuleName/FModuleName.m
* GWorkspace/Finder/Modules/FModuleOwner/FModuleOwner.m
* GWorkspace/Finder/Modules/FModuleSize/FModuleSize.m
* GWorkspace/Finder/Modules/FinderModulesProtocol.h
use NSInteger and NSComparisonResult instead of int.
* Tools/searchtool/searchtool.m
Clean up code and make it more robust.
2016-03-23 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Desktop/GWDesktopManager.m
Enable thumbnail generation also for the desktop
2016-03-22 Riccardo Mottola <rm@gnu.org>
* GWorkspace/GWorkspace.h
* GWorkspace/GWorkspace.m
Fix NSInteger vs. int
2016-03-15 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Preferences/DesktopPref.m
Fix column vs. row selection.
2016-03-10 Riccardo Mottola <rm@gnu.org>
* Inspector/aclocal.m4 (AC_CHECK_PDFKIT)
Fix redundant []
* Inspector/configure.ac
Inherit CC and CXX compiler settings.
2016-03-10 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRepIcons.m (iconOfSize: forNode:)
Traverse links to get thumbnails inside linked folders, mark direct symlinked folders and images with a link icon.
2016-03-10 Wolfgang Lux <wolfgang.lux@gmail.com>
* Inspector/aclocal.m4 (AC_CHECK_PDFKIT):
Fix linking argument order in configure test.
2016-03-07 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNode.m
Localize the node name only if it is a directory.
2016-03-02 Riccardo Mottola <rm@gnu.org>
* Inspector/Attributes.m
Use FSNode's name, not just the last path component.
* FSNode/FSNode.m
Localize the name of the node (perhaps this should be done selectively?).
2016-03-02 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNFunctions.m
Do not retain a string constant.
2016-02-26 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Desktop/Dock/DockIcon.m
* GWorkspace/Desktop/GWDesktopManager.h
* GWorkspace/Desktop/GWDesktopManager.m
* GWorkspace/Desktop/GWDesktopView.h
* GWorkspace/Desktop/GWDesktopView.m
Implement unlock methods and use them when unmounting fails.
2016-02-23 Riccardo Mottola <rm@gnu.org>
* GWorkspace/GWorkspace.m
Quit Recycler.app when activating desktop.
2016-02-22 Riccardo Mottola <rm@gnu.org>
* GWorkspace/GWorkspace.m
Allow disk checking also without desktop.
2016-02-22 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Fiend/FiendLeaf.m
* GWorkspace/GWorkspace.m
* GWorkspace/WorkspaceApplication.m
* Recycler/Recycler.m
Update tag of performFileOperation from int to NSInteger as per current API.
2016-02-17 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewersManager.m
Listen to NSWorkspaceDidMountNotification and NSWorkspaceDidUnmountNotification and update FSNodeRep accordingly.
2016-02-17 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.m
* GWorkspace/GWorkspace.m
Self initialize FSNodeRep with removable medias and don't go through GWorkspace which used a non-API method.
2016-02-16 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.h
* FSNode/FSNodeRep.m
Delete custom mountNewRemovableMedia implementation.
2016-02-15 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.h
* FSNode/FSNodeRep.m
Delete mountedRemovableMedia custom implementation.
2016-02-13 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.m
Delete unmountAndEjectDeviceAtPath custom implementation and use AppKit's one.
2016-02-12 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.h
* FSNode/FSNodeRep.m
Remove mountedLocalVolumePaths already implemented in NSWorkspace.
* GWorkspace/Dialogs/RunExternalController.h
* GWorkspace/Dialogs/RunExternalController.m
Localize panel labels and titles.
* GWorkspace/Resources/English.lproj/RunExternal.gorm
Make labels larger.
2016-02-12 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.h
* FSNode/FSNodeRep.m
Remove getFileSystemInfoForPath of category already implemented in class.
2016-02-10 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Preferences/HiddenFilesPref.m
Localize panel title.
2016-02-10 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Preferences/HiddenFilesPref.m
Clean up types as well as certain key localizations.
2016-02-02 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Finder/Modules/FModuleSize/FModuleSize.m
Fix spelling error.
2016-01-27 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Resources/English.lproj/Finder.gorm
* Workspace/Finder/Finder.m
Fix "recursive" button translation.
2016-01-26 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Preferences/BrowserViewerPref.m
Fix key to match correct spelling.
2016-01-20 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowser.m
* FSNode/FSNFunctions.h
* FSNode/FSNFunctions.m
* FSNode/FSNIconsView.m
* FSNode/FSNListView.m
* GWorkspace/FileViewer/GWViewerIconsPath.m
Group controlTextDidEndEditing in FSFunctions in utility functions and use bundle-localized strings, use these functions in all places.
2016-01-18 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNListView.m
* GWMetadata/MDKit/MDKWindow.m
* GWorkspace/Desktop/Dock/Dock.m
* GWorkspace/Finder/Finder.m
* GWorkspace/Finder/LiveSearch/LSFEditor.m
indexOfObjectIdenticalTo returns a NSUInteger
2016-01-18 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowser.m
* FSNode/FSNIconsView.m
* FSNode/FSNListView.m
* FSNode/FSNode.m
Localizations inside the Framework
2016-01-18 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Desktop/GWDesktopView.m
Fix reading of defaults.
2016-01-18 Riccardo Mottola <rm@gnu.org>
* FSNode/ExtendedInfo/Role/ExtInfoRole.m
* FSNode/ExtendedInfo/Role/GNUmakefile.in
Localizations inside the Bundle.
* FSNode/FSNListView.m
* FSNode/FSNodeRep.m
* FSNode/GNUmakefile.in
Localizations inside the Framework
2016-01-16 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.m
Listen to GSThemeDidActivateNotification to detect a theme change and refetch all cached icons.
2016-01-14 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Preferences/DesktopPref.h
* GWorkspace/Preferences/DesktopPref.m
* GWorkspace/Resources/English.lproj/DesktopPref.gorm
* GWorkspace/Resources/English.lproj/Localizable.strings
* GWorkspace/Resources/French.lproj/Localizable.strings
* GWorkspace/Resources/German.lproj/Localizable.strings
* GWorkspace/Resources/Italian.lproj/Localizable.strings
Improve translation of Desktop Preference, move items, add strings.
2016-01-11 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Thumbnailer/GWThumbnailer.m (makeThumbnailForPath)
Use actual pixel dimensions and not size, or resolutions different than 72dpi will make wrong thumbnails.
2016-01-07 Riccardo Mottola <rm@gnu.org>
* Inspector/Attributes.m
* GWorkspace/Resources/English.lproj/Localizable.strings
* GWorkspace/Resources/French.lproj/Localizable.strings
* GWorkspace/Resources/German.lproj/Localizable.string
Localize Owner strong to Owner_short
2016-01-05 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewersManager.m
count loops to NSUInteger
2016-01-01 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.h
* FSNode/FSNodeRep.m
Make nc ivar local instead.
2015-12-04 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Thumbnailer/GWThumbnailer.h
* GWorkspace/Thumbnailer/GWThumbnailer.m
removeThumbnails, makeThumbnails: execute work in separate thread. Add pathsInProcessing to keep track of which paths are in process and do not allow to make/remove thumbnails on them.
2015-12-04 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Thumbnailer/GWThumbnailer.h
* GWorkspace/Thumbnailer/GWThumbnailer.m (writeDictToFile)
Lock critical section.
2015-12-03 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.h
* FSNode/FSNodeRep.m
* FSNode/FSNodeRepIcons.m
Remove unused workspace icon.
2015-12-03 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNIcon.m
* FSNode/FSNPathComponentsViewer.m
Use NSBrowserCell image for branch image, so that it uses the current theme.
* GWorkspace/GWorkspace.m
* GWorkspace/Thumbnailer/GWThumbnailer.m
In the icon changed notification, pass in side the info object only the actually created/deleted icons: do not put an empty object with the missing ones. Saves space in the info object.
2015-12-02 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Thumbnailer/GWThumbnailer.h
* GWorkspace/Thumbnailer/GWThumbnailer.m
Factor out writing thumbnail dictionary in a common method.
2015-12-02 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Thumbnailer/GWThumbnailer.h
* GWorkspace/Thumbnailer/GWThumbnailer.m
* GWorkspace/FileViewer/GWViewer.m
Make the thumbnailer a (releasable) singleton and instantiate it through sharedThumbnailer. It may be released, but if it exists, it is a singleton.
2015-11-19 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.m
Use constants for common images from GNUstep, do not provide those icons.
2015-11-18 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.m
Use pathForImageResource: instead of pathForResource
2015-11-07 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Thumbnailer/GWThumbnailer.h
* GWorkspace/Thumbnailer/GWThumbnailer.m
Define maximum icon size to 64.
* GWorkspace/Thumbnailer/ImageThumbnailer/GNUmakefile.preamble
* GWorkspace/Thumbnailer/ImageThumbnailer/ImageThumbnailer.h
* GWorkspace/Thumbnailer/ImageThumbnailer/ImageThumbnailer.m
Cleanup header import and protocol redefinition.
2015-11-06 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewer.m
* GWorkspace/Thumbnailer/GWThumbnailer.h
* GWorkspace/Thumbnailer/GWThumbnailer.m
Simplify parameters for direct call.
2015-11-06 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewer.h
* GWorkspace/FileViewer/GWViewer.m
* GWorkspace/Thumbnailer/GWThumbnailer.h
* GWorkspace/Thumbnailer/GWThumbnailer.m
Call makre and remove thumbnails directly and not in a service,
remove the corresponding service and just instantiate the class.
2015-11-05 Riccardo Mottola <rm@gnu.org>
* Tools/thumbnailer
* GWorkspace/Thumbnailer
Moved thumbnailer from Tools to GWorkspace.
2015-11-02 Riccardo Mottola <rm@gnu.org>
* GWorkspace/GWorkspace.m
Add 64px icons, remove 44
015-10-22 Riccardo Mottola <rm@gnu.org>
* Tools/thumbnailer/ImageThumbnailer/ImageThumbnailer.m
Fix resize nearest neigbour algorithm by adapting PRICE's scale one. The code had problems with different bytes per samples and alpha, which are now preserved.
2015-10-16 Riccardo Mottola <rm@gnu.org>
* Inspector/ContentViewers/ImageViewer/resizer/Resizer.m
Fix resize nearest neigbour algorithm by adapting PRICE's scale one. The code had problems with different bytes per samples and alpha, which are now preserved.
2015-10-15 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNIconsView.m
Use fabsf() with float argument
2015-10-12 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewersManager.m (viewerForNode)
* GWorkspace/GWorkspace.m
Remove unnused parameter closeOldViewer (was always nil)
2015-10-12 Riccardo Mottola <rm@gnu.org>
* Operation/Operation.m
Remove unused variable.
* GWorkspace/FileViewer/GWViewersManager.m
Fix warnings of NO vs. nil
2015-09-16 Riccardo Mottola <rm@gnu.org>
* GWorkspace/GWorkspace.m
* GWorkspace/config.h.in
* GWorkspace/configure
* GWorkspace/configure.ac
Add check for sys/resource.h
2015-05-26 Riccardo Mottola <rm@gnu.org>
* Operation/Operation.m
* Operation/Resources/English.lproj/Localizable.strings
Verify and protect certain directories from file operations.
2015-05-26 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewer.m
Regenerate and propagate selection on windows key change, even if it did not change inside the viewer.
2015-05-26 Riccardo Mottola <rm@gnu.org>
* Tools/fswatcher/fswatcher-inotify.h
* Tools/fswatcher/fswatcher-inotify.m
Cleanup and implement --auto and --daemon like fswatcher.m
2015-05-26 Riccardo Mottola <rm@gnu.org>
* Tools/fswatcher/fswatcher-inotify.h
Use linux inotify, as suggested by Adrian Bunk
* Tools/fswatcher/local_inotify.h
* Tools/fswatcher/local_inotify_syscalls.h
Deleted local copy
2015-05-12 Riccardo Mottola <rm@gnu.org>
* configure.ac
pick up gnustep make configured CC, CPP, CXX and check they are consistent with how make was configured
* configure
regenerated
2014-12-30 Riccardo Mottola <rm@gnu.org>
* Recycler/main.m
* GWorkspace/GWorkspace.m
Fix warnings: update code to use id<NSMenuItem> and not NSMenuItem*
2014-12-29 Riccardo Mottola <rm@gnu.org>
* Operation/Operation.m (rectForFileOpWindow)
Fix off-by-one array access, return NSZeroRect immediately if no other operations are running.
2014-11-16 Riccardo Mottola <rm@gnu.org>
* Operation/FileOpInfo.m
Set root object to nil, fixes memory leak of FileOpInfo itself.
2014-09-22 Riccardo Mottola <rm@gnu.org>
* Operation/FileOpInfo.h
* Operation/FileOpInfo.m
Cleanup.
2014-09-22 Riccardo Mottola <rm@gnu.org>
* Operation/FileOpInfo.h
* Operation/FileOpInfo.m
Fix memory leak on pause, allow stopping of operation also when paused.
2014-10-21 Riccardo Mottola <rm@gnu.org>
* Operation/FileOpInfo.h
Match protocol to actual class, making endOperation synchronous.
* Operation/FileOpInfo.m
Cleanup NSConnectionDidDieNotification when thread exits, other clean ups.
2014-10-13 18:58-EDT Gregory John Casamento <greg.casamento@gmail.com>
* Operation/FileOpInfo.m: Set executor to nil when thread
exits.
2014-09-10 Riccardo Mottola <rm@gnu.org>
* Operation/FileOpInfo.m
Extend thread fix to Trash, move, link, duplicate.
2014-09-10 Riccardo Mottola <rm@gnu.org>
* Operation/FileOpInfo.h
* Operation/FileOpInfo.m
Store information about operation and processed file in the caller, re-detach the operation executor thread when resuming from pause. Fix doCopy pause/resume this way.
2014-07-01 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowser.m
* FSNode/FSNIconsView.m
* FSNode/FSNListView.m
* FSNode/FSNode.m
* GWorkspace/Desktop/Dock/DockIcon.m
* GWorkspace/Desktop/GWDesktopView.m
* GWorkspace/FileViewer/GWViewer.m
* GWorkspace/FileViewer/GWViewerShelf.m
* GWorkspace/Finder/Finder.m
* GWorkspace/Finder/LiveSearch/LSFolder.m
* GWorkspace/Finder/SearchResults/SearchResults.m
* GWorkspace/GWorkspace.m
* GWorkspace/Preferences/OperationPrefs.m
* GWorkspace/WorkspaceApplication.m
* Operation/FileOpInfo.m
* Operation/Operation.m
* Recycler/RecyclerIcon.m
* Tools/ddbd/ddbd.m
Replaced operation constant values with their true NSWorkspace*Operation constants
2014-04-30 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNIcon.m
Try to guess the best of [NSHost names] and not just name.
2013-12-18 Riccardo Mottola <rm@gnu.org>
* Recycler/RecyclerIcon.m
Uniform with code from DockIcon so that also the standard Recycler may finally unmount volumes!
2013-12-12 Riccardo Mottola <rm@gnu.org>
* GWorkspace/GWorkspace.h
* GWorkspace/GWorkspace.m
* GWorkspace/FileViewer/GWViewer.m
* GWorkspace/FileViewer/GWViewersManager.m
* GWMetadata/MDKit/MDKWindow.m
Use specific MAX_FILES_TO_OPEN_DIALOG instead of OPEN_MAX, which is the maximum number of open files
2013-12-12 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNodeRep.m (mountedVolumes)
use setmntent() and _PATH_MOUNTED to retrieve mounted volumes
2013-12-01 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserCell.m
Optimize drawing code, calculate dot clipping there and not inside the
clipping methods.
2013-11-26 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserCell.h
* FSNode/FSNBrowserCell.m
Reinstantiate special infoFont, but only as local variable and not ivar.
2013-11-25 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserCell.h
* FSNode/FSNBrowserCell.m
* FSNode/FSNTextCell.h
* FSNode/FSNTextCell.m
Clean up IMP caching, cleaner names and instance variables instead of statics.
2013-11-25 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserCell.m
use fontAttr only inside (cutTitle:toFitWidth:) and remove it as a static-initialized variable.
* FSNode/FSNTextCell.h
* FSNode/FSNTextCell.m
Remove unused dtslenght.
2013-11-25 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserCell.h
* FSNode/FSNBrowserCell.m
Do not use a separate infoFont, but just NSCell's font.
2013-11-24 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* Apps_wrapper, add wrapper for opennx
2013-11-20 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserCell.m
Remove unused dtslenght.
2013-11-09 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowser.h
* FSNode/FSNBrowser.m
* FSNode/FSNIconsView.h
* FSNode/FSNIconsView.m
* FSNode/FSNListView.h
* FSNode/FSNListView.m
* FSNode/FSNodeRep.h
* GWorkspace/Desktop/GWDesktopView.m
* GWorkspace/GWorkspace.h
* GWorkspace/GWorkspace.m
* Operation/Operation.h
* Operation/Operation.m
* Recycler/Recycler.h
* Recycler/Recycler.m
* Recycler/RecyclerView.h
* Recycler/RecyclerView.m
Rename Cutted to Cut.
2013-11-08 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowser.m
* FSNode/FSNIconsView.m
* FSNode/FSNListView.m
* GWorkspace/FileViewer/GWViewerIconsPath.m
controlTextDidEndEditing: do not check for write permission: you can change a filename without!
2013-11-08 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewerIconsPath.m (controlTextDidEndEditing)
Call updateNameEditor instead of just stopRepNameEditing to make control editable again after the error alert.
2013-11-01 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNBrowserCell.m
* GWMetadata/MDKit/MDKResultsCategory.m
* GWMetadata/MDKit/MDKWindow.m
* GWorkspace/FileViewer/GWViewer.m
* GWorkspace/Finder/Finder.m
* GWorkspace/Finder/LiveSearch/LSFolder.m
* GWorkspace/Finder/SearchResults/SearchResults.m
* GWorkspace/TShelf/TShelfIcon.m
* Inspector/Annotations.m
* Inspector/Attributes.m
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
* Inspector/Contents.m
* Operation/FileOpInfo.m
Revert horrible PRIuPTR and change to unsinged long cast style.
2013-10-30 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewer.h
* GWorkspace/FileViewer/GWViewer.m
* GWorkspace/FileViewer/GWViewersManager.h
* GWorkspace/FileViewer/GWViewersManager.m
* GWorkspace/GWorkspace.m
Change browser type to an enumerated type from String and update menus accordingly.
2013-10-27 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewer.m
Optimize by changing the selection only if it really changed.
2013-10-25 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewer.m
No not set first responder explicitely, let GUI handle that.
(fixes infinite loop in panels while renaming files)
2013-10-20: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* GWMetadata/MDFinder/MDFinder.[h|m]
* GWMetadata/Preferences/StartAppWin.[h|m]
* GWorkspace/Dialogs/StartAppWin.[h|m]
* Inspector/ContentViewers/SoundViewer/SoundViewer.m
* Recycler/Dialogs/StartAppWin.[h|m]
NSProgressIndicator uses doubles, so GWorkspace
should use doubles too
* FSNode/FSNBrowserCell.m
* FSNode/FSNIcon.m
* GWMetadata/MDKit/MDKQuery.m
* GWMetadata/MDKit/MDKResultsCategory.m
* GWMetadata/MDKit/MDKWindow.m
* GWMetadata/gmds/mdextractor/Extractors/HtmlExtractor/HtmlExtractor.m
* GWorkspace/FileViewer/GWViewer.m
* GWorkspace/FileViewer/GWViewersManager.m
* GWorkspace/Finder/Finder.m
* GWorkspace/Finder/LiveSearch/LSFolder.m
* GWorkspace/Finder/SearchResults/SearchResults.m
* GWorkspace/GWFunctions.m
* GWorkspace/TShelf/TShelfIcon.m
* Inspector/Annotations.m
* Inspector/Attributes.m
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
* Inspector/Contents.m
* Inspector/Functions.m
* Inspector/TimeDateView.m
* Operation/FileOpInfo.m
* Tools/ddbd/DDBMDStorage.m
fix warnings emitted by clang, mostly format strings
2013-10-18 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Finder/SearchResults/SearchResults.h
* GWorkspace/Finder/SearchResults/SearchResults.m
* Inspector/ContentViewers/ImageViewer/ImageViewer.h
* Inspector/ContentViewers/ImageViewer/ImageViewer.m
Update types to NSUInteger and NSTimeInterval
2013-09-25 Riccardo Mottola <rm@gnu.org>
* Tools/thumbnailer/main.m
* Tools/lsfupdater/lsfupdater.m
* Tools/fswatcher/fswatcher.m
* Inspector/Functions.m
Warning fixes.
2013-09-17 Riccardo Mottola <rm@gnu.org>
* GWorkspace/GWorkspace.m
Change [isa class] to [self class]
2013-09-12 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Desktop/GWDesktopManager.m
Do not propagate file change notification to desktop or dock if they are not active.
2013-09-11 Riccardo Mottola <rm@gnu.org>
* Operation/Operation.h
* Operation/Operation.m
operation reference updated to NSUInteger and others.
2013-08-27 Riccardo Mottola <rm@gnu.org>
* FSNode/FSNFunctions.m
* FSNode/FSNode.m
Fix warning and call from sizeDescription sizeDescription() avoiding code duplication. Remove sign info useless with an unsigned parameter.
2013-08-24 Riccardo Mottola <rm@gnu.org>
* GWorkspace/FileViewer/GWViewer.h
* GWorkspace/FileViewer/GWViewer.m
* GWorkspace/FileViewer/GWViewersManager.h
* GWorkspace/FileViewer/GWViewersManager.m
* GWorkspace/GWorkspace.m
Change key assignment and management for Viewers, set it on creation of a new viewer and store it inside the viewer-array and not separately.
2013-04-22 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Preferences/BrowserViewerPref.h
* GWorkspace/Preferences/BrowserViewerPref.m
* GWorkspace/Resources/English.lproj/BrowserViewerPref.gorm
Clean up Browser preferences code and allow a max. width of 362.
2013-04-14 Riccardo Mottola <rm@gnu.org>
* GWorkspace/Resources/English.lproj/Help/SViewer.rtfd
* GWorkspace/FileViewer/GWSpatialViewer.h