forked from oferkv/phototonic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
2288 lines (1535 loc) · 63.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
commit 6fc85f96e081386c7d668f2db967f9c4c683852a (HEAD -> master, origin/master, origin/HEAD)
Author: Ofer Kashayov <[email protected]>
Date: Sat Nov 14 12:21:48 2015 +0200
Added better CLI arguments processing and option to select language from CLI
commit b59d703aa3958c4c11f878a3f6b74a262678bade
Author: Ofer Kashayov <[email protected]>
Date: Sat Nov 14 10:17:50 2015 +0200
Czech translation update and Arch packagebuild.
commit c3737334746d0bae2369b23d982ade5a981dcdd7
Author: Ofer Kashayov <[email protected]>
Date: Fri Nov 13 19:15:20 2015 +0200
Many changes, listed below:
- Changes to layout switching method, cleaned up messy code that toggles between viewer and thumbnails
- Fixed critical issue with tags, if exif data was missing, tags were not read correctly ebcause iptc data was ignored
- Added Negate option to reverse the tags filter actione
- Allowing now nested docks
- Enhancments to tags user experience
- Updated image tags icons
commit c37070e4a068570d34ece8de1e48aa0882c80c5b (tag: v1.7)
Author: Ofer Kashayov <[email protected]>
Date: Sun Nov 8 20:03:52 2015 +0200
Update Czech translation
commit 9b51c8857782a428c2c24d0685d09e986d08c3d2
Author: Ofer Kashayov <[email protected]>
Date: Sun Nov 8 19:55:16 2015 +0200
Fix zoom issues
commit 041b3605a69c514fbf7dd23d51b3f2d6134754c2
Author: Ofer Kashayov <[email protected]>
Date: Sun Nov 8 19:22:43 2015 +0200
Better image read error handling
commit 3a05fa31b12013e05967e86738180bee83306d37
Author: Ofer Kashayov <[email protected]>
Date: Sun Aug 30 22:08:52 2015 +0300
Updated translations
commit 1da9f25ca63040eca41765a7a06af146c4968553
Author: dglava <[email protected]>
Date: Sun Aug 30 19:49:20 2015 +0200
Remove useless lines
commit 904c43796bc94df1883bdc568d032edc50ecfb7d
Author: dglava <[email protected]>
Date: Sun Aug 30 19:08:58 2015 +0200
Updated bs, hr and sr translations
commit 1eb6636349468050787bb9232c8b26e36c0cd932
Author: SARL ENR 68 <[email protected]>
Date: Fri Aug 28 18:22:01 2015 +0200
Update French translation
- by Geiger David <[email protected]>
commit 3c36007cdb330b8ca77cbee3647fdc32dad9e93a
Author: Ofer Kashayov <[email protected]>
Date: Thu Aug 20 20:57:40 2015 +0300
Updated translations and change log
commit c38aeae79cff211b51d7bf2503483f7dbc9af413
Author: dglava <[email protected]>
Date: Mon Aug 17 17:41:29 2015 +0200
Added bs, hr and sr translations
commit affa7c3369f450701839b8f5bb3f37a1a83639a1
Author: Ofer Kashayov <[email protected]>
Date: Fri Aug 7 20:57:43 2015 +0300
Version adjust
commit e262112e5a4ee611f87bbb9bf5871655d069b49a
Author: Ofer Kashayov <[email protected]>
Date: Fri Aug 7 20:56:32 2015 +0300
Fixed colors manipulations for images with alpha channel and non animated GIF images
commit 4d4450dcebbcc6473a34c1163cd5ff73c2b0e1d1
Author: Ofer Kashayov <[email protected]>
Date: Fri Aug 7 14:41:16 2015 +0300
Minor fixes to image resize method
commit aed89a8fa6023a9ddd2e7d4cd94429100a755e53
Author: Ofer Kashayov <[email protected]>
Date: Fri Aug 7 12:12:55 2015 +0300
Added Negativity settings to colors dialog
commit a80cc079866c3435a65e79a95d4da717fa228712
Author: Ofer Kashayov <[email protected]>
Date: Wed Jul 15 22:16:13 2015 +0300
Fix issue with thumbs loading while changing preloading thumb pages amount settings.
commit ddc7c67fc61da688e4155ff1be97765474fc5c5c
Author: Ofer Kashayov <[email protected]>
Date: Mon Jul 13 22:55:15 2015 +0300
Set default button in some dialogs, fix tags disabling when interface disabled.
commit 7f60847c448946e9a83667ed36d1d87361c962a9
Author: Ofer Kashayov <[email protected]>
Date: Sat Jul 11 20:06:18 2015 +0300
Fix issue with crop size feedback
commit 2cc6e4ebc861930bd490d5bc303ff478ecfb3416
Author: Ofer Kashayov <[email protected]>
Date: Sat Jul 11 19:49:59 2015 +0300
Improvements to image feedback and multi tag loading
commit cce5a97883d13f31442e8488048ffee231328fab
Author: Ofer Kashayov <[email protected]>
Date: Sat Jul 11 18:00:10 2015 +0300
Image metadata cache implementation
commit ae6c6f80aed31cfa0a774acf1081522da5826762
Author: Ofer Kashayov <[email protected]>
Date: Fri Jul 10 15:18:29 2015 +0300
Following bug fixes:
Small fixes to image extensions
Fixed issue with thumb label appearing after rename when labers are not displayed
Remove debugging info
Now checking that not adding an image tag that already exists
commit 5d906772f61e8680d344f826028c6b6caeddb33c
Author: Ofer Kashayov <[email protected]>
Date: Mon Jul 6 22:01:08 2015 +0300
Added temporary debug to exiv orientation reading
commit c9427078ea5335a76e006c1924f50fbd2ef458a5
Author: Ofer Kashayov <[email protected]>
Date: Sat Jul 4 19:42:55 2015 +0300
Fix tag addition issue when no tags present
Update changelog
commit b95a6e735ed808e2fe4eae58cf0e81ae0c0916e4
Author: Ofer Kashayov <[email protected]>
Date: Sat Jul 4 13:46:29 2015 +0300
Improve tags usability and performance
Update to Czech translation
commit f1346c15e6e8129e39551e947d5ef4754842a246
Author: Ofer Kashayov <[email protected]>
Date: Sat Jun 27 19:50:39 2015 +0300
Update to Czech translation
commit 7530a1b15ce4c070c84525c795506821bba56ed1
Author: Ofer Kashayov <[email protected]>
Date: Sat Jun 27 19:31:48 2015 +0300
Fix selection of thumb after delete or move operations
Optimization to tags setting
Changes to default key mapping
commit 0f7884eaed130c4269b9522d3bd2628a89e24163
Author: Ofer Kashayov <[email protected]>
Date: Fri Jun 26 14:37:59 2015 +0300
Version adjust
commit dfa6eab7f31a32fef62b26ee28fa62fd8b1c2ac4
Author: Ofer Kashayov <[email protected]>
Date: Fri Jun 26 14:37:22 2015 +0300
Version adjust
commit 00c211c43c49e3d41daa4097d94569872b085a53 (tag: v1.6)
Author: Ofer Kashayov <[email protected]>
Date: Fri Jun 26 14:34:17 2015 +0300
Improvements to tags
commit 1d69510afda7dc4f3230638c1569ca072ad745a7
Author: Ofer Kashayov <[email protected]>
Date: Wed Jun 24 20:58:37 2015 +0300
Image tags feature
commit af88d533cddea2a498f8f44958be9f3101b370bc
Author: Krzysztof Pyrkosz <[email protected]>
Date: Sat May 2 12:04:43 2015 +0200
Update translation files, add phrase to polish translation
commit 7b9aacfccca2856e182a1447861fee80e806d941
Author: Ofer Kashayov <[email protected]>
Date: Fri May 1 14:14:50 2015 +0300
Minor fixes and version adjust
commit 2acf43f530b6d821b13f226e5295093156012e96
Author: everbot <[email protected]>
Date: Fri May 1 19:02:27 2015 +0930
Add setting for delete confirmation
commit 0d34714b9ffe500244ada1833749518b0dab0c61
Author: everbot <[email protected]>
Date: Fri May 1 16:01:09 2015 +0930
Allow deleting photo without confirmation
This works on both thumbnail view and Viewer
commit ebb264ea5f187e6aee09abfeedc9e2171bab2575
Author: Ofer Kashayov <[email protected]>
Date: Sat Apr 18 15:21:12 2015 +0300
don't processEvents in a loop, thanks to luebking.
commit ec6bf0c0dcbbd52a43f0f6f032291b4ceccde0df
Author: Thomas Lübking <[email protected]>
Date: Sun Mar 8 12:42:02 2015 +0100
support drag and drop of url mime
This allows to copy/move files into a filebrowser
or onto the desktop, mail attachments and whatnot
NOTICE:
there's a severe DnD bug in Qt 5.4.0 - it doesn't
work at all (regardless of this or any DnD implementation)
commit 029e9ad97cbff503a52098710647dd6d05bc0a03
Author: Ofer Kashayov <[email protected]>
Date: Sat Apr 18 14:39:47 2015 +0300
Adjust version
commit 03482cb75da00fb00dd5ea8607ebd8a3b77dd108
Author: Thomas Lübking <[email protected]>
Date: Sun Mar 8 14:06:35 2015 +0100
have a more sophisticated dircompleter
* can resolve ~/
* autotrails a / on completion
* use lazy childcount (interested in dirs only anyway)
commit 784aad5a9417371ad5ecba19e1929ccb357b25eb
Author: Ofer Kashayov <[email protected]>
Date: Sat Apr 18 12:39:45 2015 +0300
Update version
commit 833611395415e57ca04eea71d7a698e674a753fa
Author: Thomas Lübking <[email protected]>
Date: Sat Mar 7 17:10:28 2015 +0100
fix bookmark visibility handling
copy & paste stuff and forgotton safe
commit cb34cd8a82ef92b7ab165bfd302fa0ccfc8f88f8
Author: Ofer Kashayov <[email protected]>
Date: Sat Apr 18 10:54:13 2015 +0300
Fix invalid thumb refresh issue when deleting images in thumbviewer
commit 0c911e0ff6e7c4cfbc3c3e23b91c2e7a8e953a3e
Author: oferkv <[email protected]>
Date: Mon Mar 16 20:26:53 2015 +0200
Fix invalid cursor hiding in various dialogs while in full screen
commit 368a9e807b5a3d1acdc160347123d3641553643d
Author: daviddavid <[email protected]>
Date: Sun Mar 15 13:36:35 2015 +0100
Update French translation
- fix some typos.
- by Geiger David <[email protected]>
commit 84da2a61ffdcea0129d2839476b2934460bb7f99
Author: Peter Mattern <[email protected]>
Date: Wed Mar 11 22:14:06 2015 +0100
improvements regarding PKGBUILDs
commit 06e2f123ac1f8f368dcb4db641c05d92f69f966b
Author: oferkv <[email protected]>
Date: Sun Feb 8 20:02:36 2015 +0200
Sync version
commit 792c3f69696da17eaa5c48600f9bfc9409d62572
Author: Krzysztof Pyrkosz <[email protected]>
Date: Sat Feb 7 13:08:33 2015 +0100
Fixes #179: fix drive handling in FSModel
commit 70404e664fd3f04ed69181627cbadf12f9c37496
Author: Krzysztof Pyrkosz <[email protected]>
Date: Sat Feb 7 11:23:41 2015 +0100
Fixes #179: hide expansion mark on empty dirs
commit dfcf5230d22483903be5781aad0fcdfa8a2e4575
Author: oferkv <[email protected]>
Date: Fri Feb 6 16:08:20 2015 +0200
Fix version
commit 9649b8acd1c3ad333f02cef858c4cd293fef4c71
Author: oferkv <[email protected]>
Date: Fri Feb 6 16:07:11 2015 +0200
Update change log
commit a6ed57b18062df7395a17dab3bc6993835d03c4a
Author: oferkv <[email protected]>
Date: Fri Feb 6 15:52:47 2015 +0200
Fix version and sync repos
commit 2beb1df9c73564920880c5971de03a2c1da55e4b
Author: Krzysztof Pyrkosz <[email protected]>
Date: Wed Feb 4 22:50:44 2015 +0100
Delete action enhacments
Enable or disable delete action based on active widget and item
selection and make delete action work on bookmark tree.
commit c96bbe2bbbca02ce2f3459675c0590592a05174c
Author: Krzysztof Pyrkosz <[email protected]>
Date: Mon Feb 2 20:09:22 2015 +0100
Issue #173: Change Up to Go Up and fix space in German translation
commit 3600f4fa5800352055d9145b2b535e1d0828a7e8
Author: Jonathan Hooverman <[email protected]>
Date: Mon Feb 2 19:48:18 2015 +0100
Updated German translation
commit d77589838712d812e2aa1bff4d20a00031e78ad6
Author: Jonathan Hooverman <[email protected]>
Date: Mon Feb 2 18:52:46 2015 +0100
Updated German translation
commit 0221fd21da8825b5641be49dbae1cbf48132774a
Author: Krzysztof Pyrkosz <[email protected]>
Date: Mon Feb 2 04:22:22 2015 +0100
Issue #165: Import and delete old key bindings
commit 1080c59cdc8941e21153b4bd7c98c174500924fe
Author: Krzysztof Pyrkosz <[email protected]>
Date: Mon Feb 2 04:18:39 2015 +0100
Issue #165: Language neutral saving of key bindings
commit d455052b58e83ec061a8ce767524295453f523e2
Author: Krzysztof Pyrkosz <[email protected]>
Date: Sun Feb 1 23:52:21 2015 +0100
Include compiled translations
commit 3bf066f245d442d1930db328160c588a6dca4562
Author: Krzysztof Pyrkosz <[email protected]>
Date: Sun Feb 1 23:49:29 2015 +0100
Update translation files to reflect Ilya87 updates
commit 35f66071c56b128d17285e4644922a238f58bd4d
Author: oferkv <[email protected]>
Date: Mon Jan 12 21:13:53 2015 +0200
Fix invalid saving of bookmarks
commit d1cfef5ad0b6d550d8ea6e13d37aa754ce1e7aeb
Author: Ilya87 <[email protected]>
Date: Thu Dec 18 00:19:33 2014 +0300
Update Russian translation and fix %n image(s) for Rusians
commit 07ea48a5419ccf757be3032686ca6a8935f6acce
Author: oferkv <[email protected]>
Date: Sat Dec 13 20:11:17 2014 +0200
Update translation bins and version
commit 7dcc0e9b619cc4275e215c6d611f9bac6f706a96
Author: SARL ENR-68 <[email protected]>
Date: Sat Dec 13 16:13:18 2014 +0100
Update French translation (for new change)
- by Geiger David <[email protected]>
commit 309357a6e6d5d5f5ddb3b87fbdf0ad3f162b5556
Author: Jonathan Hooverman <[email protected]>
Date: Fri Dec 12 21:54:49 2014 +0100
Updated German translation
commit 28fab187ae9de3aed8ce06eaf60f2a36cceefed7
Author: Krzysztof Pyrkosz <[email protected]>
Date: Thu Dec 11 23:01:41 2014 +0100
#152 fix update: polish translation and ts files update
commit 10434505c9ffe1920ecba6f6072295338ccc8d94
Author: Krzysztof Pyrkosz <[email protected]>
Date: Thu Dec 11 22:47:01 2014 +0100
#152 fix update: add "find duplicate images" icon and titlebar text
commit 018d29d6306c87a6edfb3d5aff3680f928b56fd6
Author: Krzysztof Pyrkosz <[email protected]>
Date: Thu Dec 11 21:48:09 2014 +0100
#152 fix proposal: make find duplicates permanent
Fix issue #152 by making "Find duplicates" setting permanent.
Probably we should add some type of notification above Thumbs view.
Changing dir, including subfolders or refreshing unsets "Find
duplicates" option.
commit cd061335fd9898715ff53cfa3745d0d3502d725c
Author: Krzysztof Pyrkosz <[email protected]>
Date: Tue Dec 9 01:33:20 2014 +0100
Fix issue #150: I18n clean-ups
commit 17259d2aee87922cf9dd09fb5774a143673e4d52
Author: oferkv <[email protected]>
Date: Mon Dec 8 21:57:51 2014 +0200
Minor fix to thumbs bg image and version adjustment
commit 4fb55d0d707c435e46b388fa523e90e7c705ca99
Author: Krzysztof Pyrkosz <[email protected]>
Date: Mon Dec 8 00:04:12 2014 +0100
Issue #106: clear popup, clean up, translations
commit e715cd1e188a3315db8bee0d22a696f907055f93
Author: Krzysztof Pyrkosz <[email protected]>
Date: Sun Dec 7 01:43:12 2014 +0100
Fix issue #106: Keyboard shortcuts should be in a list and not a combo
commit 5fa5aafeadfdb28bbeb5956f7eb0ba5e2cc55dee
Author: krzyc <[email protected]>
Date: Fri Dec 5 11:45:31 2014 +0100
Allow translation of "General" in thumbview.cpp
commit b41ed98a56b38cba27cb97c12984c31db31ae63e
Author: oferkv <[email protected]>
Date: Sun Nov 23 20:09:23 2014 +0200
Add Change Log
commit 8a9534c6d7604e235b88242d762e2014a61deb34
Author: oferkv <[email protected]>
Date: Sun Nov 23 19:41:47 2014 +0200
Update translation bins and adjust version
commit 83ab836400e00e79d3b6973f553434916786ba3c
Author: oferkv <[email protected]>
Date: Sun Nov 23 19:38:37 2014 +0200
Update Czech translation
commit 0973e5b710fd3562e02240a77f3a98710fa2400e
Author: Jonathan Hooverman <[email protected]>
Date: Sat Nov 22 12:43:42 2014 +0100
Updated German translation
commit 98c3f6b68bfe791915662af0cb31388e015c6a46 (tag: v1.5)
Author: oferkv <[email protected]>
Date: Sat Nov 22 12:27:01 2014 +0200
Adjust version
commit b6deba27b54340e4d68419e56fcfa7544ad0e481
Author: Ilya87 <[email protected]>
Date: Sat Nov 22 12:06:29 2014 +0300
Update Russian translation for 1.5.0 release
commit 21bdee854578a41bf7549c928dab62d86a1f0fff
Author: SARL ENR-68 <[email protected]>
Date: Fri Nov 21 21:38:48 2014 +0100
Update French translation (for future 1.5.0 release)
- by Geiger David <[email protected]>
- by Rémi VERSCHELDE <[email protected]>
commit 5d468e680c793a30a0c48fa51c02d048913f5520
Author: oferkv <[email protected]>
Date: Fri Nov 21 21:51:54 2014 +0200
Update Polish translation
commit 100b713ae0f4d6af7c8af00bf68c497bb97b9ea5
Author: oferkv <[email protected]>
Date: Fri Nov 21 17:39:14 2014 +0200
Merge Gernam translation
commit b3f24f54771c5626d192a67d9588cbc59941f655
Author: Jonathan Hooverman <[email protected]>
Date: Fri Nov 21 15:17:52 2014 +0100
Updated German translation
commit 00ea1cbdd58bec20cb05f0ec5ed014cd176511db
Author: oferkv <[email protected]>
Date: Fri Nov 21 14:11:55 2014 +0200
Update Polish translation, Add no selection warning, Add paste to bookmarks popup.
commit 78c6c0594c8550f895ec545498cf871efe112786
Author: Ilya87 <[email protected]>
Date: Wed Nov 19 21:00:28 2014 +0300
Update Russian translation and image(s) fix
commit ad9dd8ab07e56d3e9436d18d01bea02f1f2bd9e3
Author: SARL ENR-68 <[email protected]>
Date: Tue Nov 18 21:28:13 2014 +0100
Update French translation (for future 1.5.0 release)
- by Geiger David <[email protected]>
commit e1272eec56d5ea95155969d409ef1093aeedef55
Author: oferkv <[email protected]>
Date: Tue Nov 18 20:28:14 2014 +0200
Update translation files
commit 94e104233a55471f7579145adf04bb2670355572
Author: oferkv <[email protected]>
Date: Tue Nov 18 20:26:12 2014 +0200
Adjust subversion
commit d5339c0e95ac9c5ea80878c263b71ffb1c4da2d7
Author: oferkv <[email protected]>
Date: Tue Nov 18 20:25:04 2014 +0200
Update infoview groups
commit 193d0ec64ddf234d8a332bd95dcf9d33684ee341
Author: SARL ENR-68 <[email protected]>
Date: Mon Nov 17 23:52:37 2014 +0100
Update French translation
- by Rémi VERSCHELDE <[email protected]>
- by Geiger David <[email protected]>
commit 461c315bd5490d89082105e0a2fdab30cdcb00c9
Author: oferkv <[email protected]>
Date: Sun Nov 16 20:19:54 2014 +0200
Fix cropping issues and add feedback to transformations
commit f6c4f6f1cdff06979bddc4449d27e77174e405ac
Author: oferkv <[email protected]>
Date: Sat Nov 15 22:07:15 2014 +0200
Cropping Dialog usage now oriented for permanent transform
commit 9229a7db3ac15fc14c86e60d35b750ae144d11ab
Author: oferkv <[email protected]>
Date: Sat Nov 15 18:54:23 2014 +0200
Added Color Balance and shortcut for Lock Transformations
commit 67bfc5d04ad8b26680b0f06285d97288de12a9e8
Author: oferkv <[email protected]>
Date: Sat Nov 15 14:52:50 2014 +0200
Reset Zoom and Original Size with Middle Mouse Button and Modifiers
commit 7c69cd494cceb7eb40e08c26a63b9ba919c109d2
Author: oferkv <[email protected]>
Date: Sat Nov 15 14:11:57 2014 +0200
Crop to selection implementation
commit 0b629c4bb664ed6d4d4bb5279d00cc6483301c69
Author: oferkv <[email protected]>
Date: Sat Nov 8 17:14:46 2014 +0200
Colors dialog enhancements
commit d85350a6e7fb7a0007ea698a046e0e3b7829fbca
Author: oferkv <[email protected]>
Date: Sat Nov 8 13:37:37 2014 +0200
Set thumbnails background image and fixes to Colors dialog
commit b6f2aa74801cde43708e39a83b51eaff41b31910
Author: oferkv <[email protected]>
Date: Fri Nov 7 20:29:36 2014 +0200
Enhancements to Copy and Move to dialogs
commit 58531c0c26b8e5ea7b9afdf0d8776454c350e0c8
Author: oferkv <[email protected]>
Date: Fri Nov 7 16:51:17 2014 +0200
Fix transformations lock inconsistencies
Reorganization of transformations
Enhancements to Crop and Colots dialogs
commit e1b75487ef779051495c98f06c48a8c01ccbcc2e
Author: oferkv <[email protected]>
Date: Fri Nov 7 15:15:06 2014 +0200
Version adjust
commit ebb97083fbaeff1061310b0479873e5bedea221e
Author: oferkv <[email protected]>
Date: Fri Nov 7 15:13:09 2014 +0200
Fix transform dialog cleanups and potential crash in resize dialog
commit 52af770bcd4fffc84419b62155353af305d9a0f4
Author: Jonathan Hooverman <[email protected]>
Date: Wed Nov 5 11:10:23 2014 +0100
Updated German translation
commit 8cb040119f253edf3467c6c50545e8d64388eab5
Author: oferkv <[email protected]>
Date: Mon Nov 3 20:31:54 2014 +0200
Add Focus to path bar and search bar shortcuts
commit 38e7fab5960ffce1e1c9d8cd4269a0d06064fd35
Author: oferkv <[email protected]>
Date: Mon Nov 3 19:42:41 2014 +0200
General maintenance
commit 360850204566f6ff048cb33418bbd0b464719775
Author: Jonathan Hooverman <[email protected]>
Date: Sun Nov 2 21:54:24 2014 +0100
Updated German translation
commit bd61d0063d9fab977da26ca5b6f4e0dbf46978dd
Author: SARL ENR-68 <[email protected]>
Date: Sun Nov 2 21:30:29 2014 +0100
Update French translation (for last change)
- by Rémi VERSCHELDE <[email protected]>
- by Geiger David <[email protected]>
commit 8a5475189aba8e17a760d82ce4e46d56104684c5
Author: Ilya87 <[email protected]>
Date: Sun Nov 2 04:47:15 2014 +0300
Update Russian translation and Find Duplicate translation fix
commit c1568901ce50018457cf30d951c3eb2aa95b256a
Author: oferkv <[email protected]>
Date: Sat Nov 1 17:45:18 2014 +0200
Added Find Duplicate Images feature
Fixed issue where Exif reading would crash in rare cases
commit 0d17361cc7ff2743ed26d8385838dfdec32c09e6
Author: oferkv <[email protected]>
Date: Fri Oct 31 23:29:58 2014 +0200
Fix docks resize issue when image toolbar visible in viewer
commit 89b1ad35215965f2383f3a2116db44c51a6680af
Author: oferkv <[email protected]>
Date: Fri Oct 31 22:31:05 2014 +0200
Fix image resize when viewer opened first time when image dock is invisible
commit 461483b7a7c4807a43a330693dd33c715eb464b8
Author: oferkv <[email protected]>
Date: Fri Oct 31 22:11:36 2014 +0200
Add bookmark when directory is dragged to an empty area in the bookmarks dock
commit 075c8e60ac68fd251b1beb7fe0e500f35c23d4f9
Author: oferkv <[email protected]>
Date: Fri Oct 31 17:31:19 2014 +0200
Fix sorting order when sorting by time and size
commit 0017946bf60b2289d3261226231362a461e22978
Author: oferkv <[email protected]>
Date: Fri Oct 31 16:17:06 2014 +0200
Update translation bins
commit c0be7b187814670457f4a36dce662831f774e640
Author: oferkv <[email protected]>
Date: Fri Oct 31 16:15:09 2014 +0200
Drag and drop thumbnails in to bookmark items
commit 42dd8c4a1eed9bfbf671003bc64316cbcb5f20b7
Author: SARL ENR-68 <[email protected]>
Date: Sun Oct 26 15:07:13 2014 +0100
Update French translation (for last change)
- by Geiger David <[email protected]>update
commit 147b76131f3bf1cac2f3b5789549584ab003ba3b
Author: oferkv <[email protected]>
Date: Sat Oct 25 23:43:37 2014 +0300
Fix issue with deleting bookmarks for deleted folders
commit d6d1c5ee886727eafa775932616ce4658efbc180
Author: oferkv <[email protected]>
Date: Sat Oct 25 23:21:26 2014 +0300
Unify docks and toolbars menu with application menu
commit 2fa39764fc73d9204e98452062cb25d697d0be14
Author: oferkv <[email protected]>
Date: Sat Oct 25 21:43:17 2014 +0300
Add Bookmarks feature
commit 8ee65e6c71216bc330e3b137853185e06bc8839f
Author: oferkv <[email protected]>
Date: Fri Oct 24 11:54:28 2014 +0300
Fix viewer and viewer toolbar default visibility
Updated translation binaries
commit 19430d4a6c6d6a4cad63a1f423dc7383762a0c80
Author: Jonathan Hooverman <[email protected]>
Date: Sat Oct 18 13:42:56 2014 +0200
Updated German translation
commit 2b734a6e0658377a0cf0e9ac8618f6fd4354cd28
Author: oferkv <[email protected]>
Date: Fri Oct 17 13:43:41 2014 +0300
Fix Compact thumbs flickering and blanking when closing image from CLI
commit 8d10589133a00403eded9754d49628f6f7a81e0b
Author: oferkv <[email protected]>
Date: Wed Oct 15 20:40:36 2014 +0300
Add image viewer toolbar
Update Czech translation
commit dccc29103eddab4d883d8f0774df5e7eca8cdb59
Author: oferkv <[email protected]>
Date: Tue Sep 23 20:58:28 2014 +0300
Update for Russian translation and translation binaries
commit 9faebe2d3d38ff7f9fc3ce2aacf812c95f96a41f
Author: Jonathan Hooverman <[email protected]>
Date: Sat Sep 20 15:09:14 2014 +0200
Updated German translation
commit 388b80bfe8349a28bf0b5e6c3c99143fbbb5e842 (tag: v1.4)
Author: oferkv <[email protected]>
Date: Tue Sep 16 19:19:31 2014 +0300
Change version scheme and update translation bins
commit fe50b44327c96adff6b525902acb6f46cbd4c51f
Author: SARL ENR-68 <[email protected]>
Date: Sun Sep 14 08:54:56 2014 +0200
Update French translation (for new change)
- by Geiger David <[email protected]>
commit 1e2cc3c496ea477216a0f1435943abd6c2b06a72
Author: oferkv <[email protected]>
Date: Sat Sep 13 15:32:12 2014 +0300
Consolidate feedback in viewer and other bug fixes
commit 2086522a7a25069635546ab7c6daae09e50d6cc0
Author: oferkv <[email protected]>
Date: Sat Sep 13 14:05:08 2014 +0300
Replace Manage action in favor of Open with action
commit b527c23e622f00ca32ddcec2be459a9e9fe7ee80
Author: oferkv <[email protected]>
Date: Sat Sep 13 09:41:52 2014 +0300
Fix versioning and clear preview when browsing to other folders
commit 2bdbeb1ed3b522ffefb15c5fca6cdf2f495753a4
Author: oferkv <[email protected]>
Date: Fri Sep 12 19:38:29 2014 +0300
Fix wrong image loading degradation from last commit
commit 2f552f3ced6e41a0b38af372a928f6fd39c0c05d
Author: oferkv <[email protected]>
Date: Fri Sep 12 19:35:26 2014 +0300
Fix invert selection slowness
commit 00ff2827ab01517deefc03e358cac3bf75b3ccb8
Author: oferkv <[email protected]>
Date: Fri Sep 12 19:05:09 2014 +0300
Add busy indicator
commit f06bc10cf651363154614b279ec4bc766809ac51
Author: oferkv <[email protected]>
Date: Fri Sep 12 15:29:24 2014 +0300
Fix degradation when opening image from file manager
commit b267c03dd86087653f24125972b05c77d323e5f1
Author: oferkv <[email protected]>
Date: Fri Sep 12 15:25:33 2014 +0300
Corrections for exiting from full screen mode flow
commit 190ce9630273f8ff62d4f8172e411567d6e8760e
Author: oferkv <[email protected]>
Date: Fri Sep 12 12:56:30 2014 +0300
Correct interface behavior when using transformation dialogs
commit c6b43de71be90306e405ce2981a17eb9395052a9
Author: oferkv <[email protected]>
Date: Tue Sep 9 22:53:57 2014 +0300
Fix mouse events on preview dock
Disable wrong actions in thumbs area
commit 3100eea7abe0f7aa3e08ba6d09b1deac62679707
Author: oferkv <[email protected]>
Date: Tue Sep 9 21:58:57 2014 +0300
Fix arrow keys not working in thumbnails area while preview is open
Fix thumbs refresh issue when closing image opened from file manager
commit a35dc7836f1b2c1b57b16c1abe15b9ca7d048aa5
Author: oferkv <[email protected]>
Date: Mon Sep 8 21:18:23 2014 +0300
Integration of imageViewer and Preview Dock
commit 2896de2ae0a51a2014057fd49051dc7034347994
Author: oferkv <[email protected]>
Date: Sun Sep 7 22:37:31 2014 +0300
Fixed crash when closing image in some cases.
Also fixed wrong image index when loading from CLI or file manager
commit 135c446ed46dc0fe01274ee91b79810b157427d8
Author: oferkv <[email protected]>
Date: Sat Sep 6 18:22:41 2014 +0300
Bug fixes to docks positions, rename in viewer and close image lag
commit 592a897c7ab0e44ac9c572874eb8ed4dac555db2
Author: oferkv <[email protected]>
Date: Fri Sep 5 20:27:26 2014 +0300
Add rename action to imageView
commit 6f5cd1ddb2a407db30b312ad74a42f66c9128db5
Author: oferkv <[email protected]>
Date: Fri Sep 5 18:52:04 2014 +0300
Fix performance issues when flipping between viewer and thumbnails
commit 39ea73fd9d3f7305a3476f72e1a2df2dc34b7bd0
Author: oferkv <[email protected]>
Date: Wed Sep 3 23:18:28 2014 +0300
Fix issues with Show Labels in Squarish mode
commit 2c86726051c14df60fded17712d66e728b0b7a4e
Author: oferkv <[email protected]>
Date: Wed Sep 3 21:47:39 2014 +0300
Fix delay when closing viewer
commit 05de6e1e1c20477fa8a3395742674a0a671aea6d
Author: oferkv <[email protected]>
Date: Wed Sep 3 19:44:52 2014 +0300
Fix folder focus issue when creating a new folder
commit 4aab106e0781cc99b1780f77412fc4c387260ea0
Author: oferkv <[email protected]>
Date: Sat Aug 30 11:33:58 2014 +0300
Open operation now toggles between image open/close as it should
commit 036bfeb54e63e33ddcbb06265d8abc5f1931a9af
Author: oferkv <[email protected]>
Date: Fri Aug 29 13:03:32 2014 +0300
Preview Dock menu and mouse events
commit db603b279cc44dded631fe68d188f38795de661f
Author: oferkv <[email protected]>
Date: Thu Aug 28 22:49:31 2014 +0300
Fix random slowness when closing image
commit 52e9d44b91274699f431938b351f3b3ff5b8701b
Author: oferkv <[email protected]>
Date: Wed Aug 27 23:20:00 2014 +0300
Updated translation binaries
commit 23c142544c47c7af9e13316b1cfb2589c58d5d9e
Author: oferkv <[email protected]>
Date: Wed Aug 27 23:17:20 2014 +0300
Preview Dock implementation part 2
commit 1ed3cf5b6138fa757a1c7c9c9a04840f0c2099cd
Author: SARL ENR-68 <[email protected]>
Date: Tue Aug 26 15:24:57 2014 +0200
Fix typo on French translation
commit c5c63c795df54abd1e431098a439b3d991074670
Author: SARL ENR-68 <[email protected]>
Date: Tue Aug 26 15:17:04 2014 +0200
Update French translation (for new change)
- by Geiger David <[email protected]>
commit 428a06d13679d8a6f41e2cfcf0269df48359878b
Author: Jonathan Hooverman <[email protected]>
Date: Mon Aug 25 19:19:20 2014 +0200
Updated German translation
commit 998444c23b7f6275b25ca71e865fd93877998419
Author: oferkv <[email protected]>
Date: Sun Aug 24 22:48:14 2014 +0300
Updates for Russian translation
commit 3d34a9dfe370baba02f9c72bf8289bb648baed1d
Author: oferkv <[email protected]>
Date: Sun Aug 24 22:37:24 2014 +0300
Preview Dock implementation part 1
commit 1ef7b6dc960c85a6d5c74ba73a6195268353f0a8
Author: SARL ENR-68 <[email protected]>
Date: Sun Aug 24 20:41:33 2014 +0200
Update French translation and fix missing space on Mainwindow
- update French translation.
- fix missing space between 'About' and 'Phototonic'.