-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathNEWS
2259 lines (1897 loc) · 57.3 KB
/
NEWS
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
47.0 - 2024-09-21
46.0 - 2024-03-23
Fixes:
* Use screenshots from gitlab (#176)
* Better colors for search highlight (#94)
* Fix readonly plugin enable with note already open (#179)
* Fix infinite loop when searching for available title in sync conflict (#181)
* Wrap long message labels
Translations:
* Added translations:
- Georgian (ka)
* Updated translations:
- Czech (cs)
- Chinese (China) (zh_CN)
- German (de)
- Hindi (hi)
- Hungarian (hu)
- Russian (ru)
- Slovenian (sl)
- Spanish (es)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
* Updated manual translations:
- Hungarian (hu)
Translations:
* Updated translations:
- Danish (da)
* Updated manual translations:
- Lithuanian (lt)
46.rc - 2024-03-17
New Features:
* Added UI for changing color scheme
* Updated manual
Translations:
* Updated translations:
- Czech (cs)
- German (de)
- Lithuanian (lt)
- Russian (ru)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
* Updated manual translations:
- Russian (ru)
- Ukrainian (uk)
46.beta - 2024-03-11
New Features:
* Removed note list context menu
* Open all selected notes in current window on Enter
* Open all selected notes in a signle new window on Ctrl+Enter
* New desing for search controls in note tab
* Updated manual
* Added setting for selecting color scheme
Fixes:
* Fix warning in console when synchronization dialog is opened (#161)
Translations:
* Updated translations:
- Czech (cs)
- German (de)
- Hungarian (hu)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
* Updated manual translations:
- Ukrainian (uk)
46.alpha - 2024-01-29
New Features:
* Notes list uses new GtkColumnView
* New redesigned view for notebooks
* New dependency: libadwaita 1.0 or higher (#135)
* Update appdata to newer format
Fixes:
* Fix GTK requirement: 4.10 or higher
* Fix error to console when opening Preferences (#164)
* Fix undo
* Fix search when empty
* Fix search box not having focus on first activation
* Handle year change for showing date (#170)
* Use libadwaita accent colors for highlight (#33)
Translations:
* Updated translations:
- Chinese (China) (zh_CN)
- Czech (cs)
- Danish (da)
- German (de)
- Romanian (ro)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
* Updated manual translations:
- Russian (ru)
45.0 - 2023-09-25
Translations:
* Updated manual translations:
- Lithuanian (lt)
- Ukrainian (uk)
45.rc - 2023-09-17
Fixes:
* Update manual section for TOC plugin
Translations:
* Updated translations:
- Czech (cs)
* Updated manual translations:
- Polish (pl)
- Russian (ru)
45.beta - 2023-09-10
Fixes:
* Fix crash when showing synchronization conflict dialog
* Fix gvfs synchronization setup when using Google Drive
* Update manual screenshots
Translations:
* Updated translations:
- Chinese (China) (zh_CN)
- Dutch (nl)
- Portuguese (pt)
- Turkish (tr)
* Updated manual translations:
- Polish (pl)
- Ukrainian (uk)
45.alpha - 2023-07-30
New Features:
* Updated dependency: Glibmm 2.74
* Updated dependency: Gtkmm 4.0
* Removed dependency: GSpell
* Limit tab max width and add tab scroll (#153)
* Use highlight color that is readable in both light and dark modes (#33)
Fixes:
* Fix occasional crash when renaming link
Translations:
* Updated translations:
- Basque (eu)
- Brazilian Portuguese (pt_BR)
- French (fr)
- German (de)
- Hungarian (hu)
- Indonesian (id)
- Lithuanian (lt)
- Polish (pl)
- Portuguese (pt)
- Russian (ru)
- Serbian (sr)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
* Updated manual translations:
- Polish (pl)
- Russian (ru)
- Swedish (sv)
- Ukrainian (uk)
44.0 - 2023-03-13
New Features:
* Open notes in tab next to current and move to previous on close
Fixes:
* Fix meson a deprecation warning
* Fix notebook deletion (#141)
* Determine timezone offset dynamically, so the server misconfig does not matter (#139)
* Fix crash when opening link (#45)
* Make Ctrl+W close current tab (#146)
* Fix noteoftheday not deleting unmodified notes
Translations:
* Added translations:
- Interlingue (ie)
* Updated translations:
- Basque (eu)
- Brazilian Portuguese (pt_BR)
- Dutch (nl)
- German (de)
- Hungarian (hu)
- Lithuanian (lt)
- Polish (pl)
- Portuguese (pt)
- Russian (ru)
- Serbian (sr)
- Slovenian (sl)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
* Updated manual translations:
- German (de)
43.0 - 2022-10-05
Same as 43.rc.
43.rc - 2022-09-26
New Features:
* Make delete button visually destructive in confirmation dialog (#120)
Fixes:
* Fix png icons renamed as svg (#136)
Translations:
* Updated translations:
- Chinese (China) (zh_CN)
- Danish (da)
- Swedish (sv)
43.beta - 2022-09-11
New Features:
* Minimum required Meson version now is 0.59
* Set focus on current page when popover is closed
* Integrate search to header bar (#122)
Fixes:
* Fix Ctrl+comma not working as listed in shortcuts window
Translations:
* Updated translations:
- Catalan (ca)
- Hungarian (hu)
- Turkish (tr)
43.alpha - 2022-08-19
New Features:
* Add shortcuts for switching tabs in main window (#124)
* Add shortcut to open shortcuts window (#123)
* Update README
Translations:
* Updated translations:
- Basque (eu)
- Brazilian Portuguese (pt_BR)
- Chinese (China) (zh_CN)
- Danish (da)
- German (de)
- Indonesian (id)
- Lithuanian (lt)
- Polish (pl)
- Russian (ru)
- Serbian (sr)
- Swedish (sv)
- Ukrainian (uk)
* Updated manual translations:
- Indonesian (id)
42.0 - 2022-03-27
Translations:
* Updated translations:
- Dutch (nl)
* Updated manual translations:
- Czech (cs)
42.beta - 2022/03/13
Fixes:
* Fix build using meson 0.61.0
* Manual updates and fixes
* Fix wrong selection after backgrounding
* Show help for --background option (#118)
Translations:
* Updated translations:
- Basque (eu)
- Brazilian Portuguese (pt_BR)
- Chinese (zh_CN)
- Czech (cs)
- Hungarian (hu)
- Japanese (ja)
- Lithuanian (lt)
- Romanian (ro)
- Russian (ru)
- Serbian (sr)
- Spanish (es)
- Swedish (sv)
- Turkish (tr)
* Updated manual translations:
- Lithuanian (lt)
- Polish (pl)
- Russian (ru)
- Ukrainian (uk)
- Spanish (es)
- Swedish (sv)
42.alpha - 2021/12/30
New Features:
* Main UI now uses tabs to open notes
Fixes:
* Fix duplicate condition in SyncManager (#111)
* Rename lefover Add-in to plugin in manual (#113)
* Fix date formatting when second is single digit (#115)
* Fix excessive saves due to rogue marks
* Fix search box focus when very first search in window is in note (#108)
Translations:
* Updated translations:
- Danish (da)
- German (de)
- Japanese (ja)
- Occitan (oc)
- Polish (pl)
- Serbian (sr)
- Swedish (sv)
- Ukrainian (uk)
* Added Catalan manual (ca)
* Updated Danish manual (da)
* Updated Polish manual (pl)
* Updated Spanish manual (es)
* Updated Swedish manual (sv)
* Updated Ukrainian manual (uk)
41.0 - 2021/09/26
Fixes:
* Fix size and add more screenshots to appdata
Translations:
* Updated translations:
- Chinese (China) (zh_CN)
- Czech (cs)
- Hungarian (hu)
- Romanian (ro)
- Serbian (sr)
41.beta - 2021/09/06
Fixes:
* Fix a bunch of outdated URLs and instructions
* Fix metadata license tag
Translations:
* Updated translations:
- Lithuanian (lt)
- Spanish (es)
* Added Indonesian manual
* Updated Lithuanian manual
41.alpha - 2021/07/16
New Features:
* Build system changed to meson
* Plugins now stored in plugins folder instead of addins
Fixes:
* Fix synchronization when files are larger than 64k (#50)
* Stopped using lots of Glib and Gtk deprecations
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Catalan (ca)
- Chinese (China) (zh_CN)
- Danish (da)
- Indonesian (id)
- Polish (pl)
- Romanian (ro)
- Ukrainian (uk)
- Serbian (sr)
- Spanish (es)
- Swedish (sv)
* Added Dutch translation (nl)
* Updated Lithuanian manual (lt)
* Updated Polish manual (pl)
* Updated Ukrainian manual (uk)
* Updated Swedish manual (sv)
40.0 - 2021/03/26
Translations:
* Updated translations:
- Basque (eu)
- Catalan (ca)
- Czech (cs)
- Indonesian (id)
- Italian (it)
* Updated Lithuanian manual (lt)
* Updated Polish manual (pl)
* Updated Swedish manual (sv)
40.rc - 2021/03/13
New Features:
* Use reverse-domain convention for naming desktop and search provider files
* Refactor D-Bus support to reuse the connection established by GtkApplication
* Update AppData file format
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Indonesian (id)
- Lithuanian (lt)
- Polish (pl)
- Serbian (sr)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
40.beta - 2021/02/21
New Features:
* Add accelerator Ctrl+D for insert timestamp
* WebDAV sync no longer uses wdfs
Fixes:
* Make insert timestamp plugin work again
* Fix crash when synchronizing immediately after configuring
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Catalan (ca)
- Lithuanian (lt)
- Polish (pl)
- Romanian (ro)
- Serbian (sr)
- Spanish (es)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
40.alpha - 2021/01/10
New Features:
* Change shortcut for find first/next to Ctrl-G/Ctrl-Shitf-G
* Change icons and remove labels from find next/previous
Fixes:
* --search will raise existing search window or open a new one (issue #21)
* Fix opening of context menu (issue #16)
* Fix newly enabled addin not working for opened notes (PR #11)
* Fix find previous match
* Fix changing sorting not always works
* Fix GTK criticals upon exiting the application (issue #43)
* Fix few memory leaks
Translations:
* Updated Czech manual (cs)
* Updated Swedish manual (sv)
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Catalan (ca)
- Czech (cs)
- German (de)
- Indonesian (id)
- Japanese (ja)
- Polish (pl)
- Swedish (sv)
- Turkish (tr)
- Ukrainian (uk)
3.38.0 - 2020/09/19
Fixes:
* Fix occasional crash when closing
* Note rename optimisation
* Fix autolinking when renaming note with no links to it
* Fix logic inversion for unfiled notes
* Fix invalid Mallard markup in manual
* Allow selecting local sync folder directly in drop down (fixes issue 41)
Translations:
* Added Ukrainian manual (uk)
* Updated Slovenian manual (sl)
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Catalan (ca)
- Galician (gl)
- Hungarian (hu)
- Indonesian (id)
- Italian (it)
- Japanese (ja)
- Korean (ko)
- Lithuanian (lt)
- Polish (pl)
- Spanish (es)
- Tamil (ta)
- Turkish (tr)
- Ukrainian (uk)
3.37.0 - 2020/04/18
New Features:
* Use $XDG_CURRENT_DESKTOP for client side decoration
* Minor synchronization performance improvements
Fixes:
* Fix crash in case of exception when creating manifest during synchronization
* Fix synchronization lock file expiration
* Make tests cleanup created temp files
Translations:
* Added translations:
- Finnish (fi)
* Updated translations:
- Chinese (zh_CN)
- Indonesian (id)
- Japanese (ja)
- Spanish (es)
- Polish (pl)
- Ukrainian (uk)
3.35.0 - 2020/02/23
New Features:
* Added manual for Online Folder synchronization
* Lowered gspell requirement to 1.6
* Required C++ standard is now C++14
* Added 64-bit version D-Bus functions GetNoteCreateDateUnix and GeNoteChangeDateUnix
Fixes:
* Fix possible crash when removing tags
Translations:
* Updated translations:
- Basque (eu)
- Brazilian Portuguese (pt_BR)
- French (fr)
- Hungarian (hu)
- Indonesian (id)
- Japanese (ja)
- Polish (pl)
- Spanish (es)
- Swedish (sv)
- Turkish (tr)
* Updated Lithuanian manual (lt)
* Updated Spanish manual (es)
3.34.0 - 2019/09/21
New Features:
* Add OARS and update appdata
* Use GSpell instead of GtkSpell for spellchecking
Translations:
* Updated translations:
- Basque (eu)
- Brazilian Portuguese (pt_BR)
- Hungarian (hu)
- Indonesian (id)
- Italian (it)
- Lithuanian (lt)
- Polish (pl)
- Serbian (sr)
- Spanish (es)
- Swedish (sv)
- Turkish (tr)
* Updated Czech manual (cs)
3.33.0 - 2019/05/12
New Features:
* Manual updates
* Add Online Folder synchronization plugin
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Catalan (ca)
- German (de)
- Hungarian (hu)
- Indonesian (id)
- Lithuanian (lt)
- Polish (pl)
* Updated Lithuanian manual (lt)
* Updated Polish manual (pl)
* Updated Swedish manual (sv)
3.32.0 - 2019/03/17
Translations:
* Updated translations:
- Catalan (ca)
- Czech (cs)
- Hungarian (hu)
- Italian (it)
- Serbian (sr)
* Updated Swedish manual (sv)
3.31.0 - 2018/11/24
New Features:
* Added new automated tests
* Removed App menu, refactored actions menu
Translations:
* Updated translations:
- Polish (pl)
- Indonesian (id)
3.30.0 - 2019/09/16
New Features:
* Added new automated tests
* Removed a bunch of unused localized manual images
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Catalan (ca)
- Czech (cs)
- German (de)
- Hungarian (hu)
- Indonesian (id)
- Latvian (lv)
- Spanish (es)
- Swedish (se)
- Turkish (tr)
* Updated Polish manual (pl)
* Updated Spanish manual (es)
3.28.0 - 2018/03/18
New Features:
* Client side decoration by default supported on Ubuntu and Pop! sessions
* Install appdata metadata to new non-deprecated location (#792795)
Fixes:
* Manual validation fixes
* Fix gettext-domain in GSettings schema
* Do not show empty actions menu (#789750)
* Fix some shortcuts, that are added by context menu (#792859)
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- Danish (da)
- German (de)
- Hungarian (hu)
- Indonesian (id)
- Lithuanian (lt)
- Polish (pl)
- Serbian (sr, sr@latin)
- Spanish (es)
- Swedish (sv)
* Updated Slovenian manual (sl)
* Updated Spanish manual (es)
3.26.0 - 2017/09/18
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Hungarian (hu)
- Italian (it)
- Lithuanian (lt)
* Updated Czech manual (cs)
* Updated Lithuanian manual (lt)
3.25.0 - 2017/08/30
New Features:
* Removed Shadow from SearchView (#783610)
* Formatting and actions menus redesigned
Fixes:
* Fix possible crash when deleting a notebook (#701846)
Translations:
* Updated translations:
- Czech (cs)
- Esperanto (eo)
- German (de)
- Indonesian (id)
- Polish (pl)
- Serbian (sr, sr@latin)
- Spanish (es)
* Updated Swedish manual (sv)
3.24.0 - "If at first you do succeed, try to hide your astonishment" - 2017/03/27
Fixes:
* Left align items in popovers and increase vertical spacing (#778823)
* Fix --background option
* Make D-Bus APIs for opening notes respect new window setting (#778871)
* Change default for window to not autosize (#778822)
* Fix no icon for Gnote windows in some WMs (#762001)
* Use icon for Create Note button (#704116)
* Fix crash in search
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- Danish (da)
- German (de)
- Hungarian (hu)
- Indonesian (id)
- Italian (it)
- Lithuanian (lt)
- Polish (pl)
- Swedish (sv)
- Turkish (tr)
3.23.0 - 2017/02/26
New Features:
* New optional dependency: UnitTest++ (required only for running gnote tests)
* Removed dependency: boost (all of it)
* Gnote now internally uses Unicode strings for all data
Fixes:
* Fix indentation sometimes getting is lost after restart (#773630)
* Use %1 style placeholders instead of %1% in translatable strings (#774262)
* Make app menu item ordering consistent with GNOME (#772009)
* Use open-menu-symbolic icon for menu (#775320)
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- Danish (da)
- French (fr)
- Indonesian (id)
- Italian (it)
- Polish (pl)
- Serbian (sr, sr@latin)
- Spanish (es)
- Swedish (sv)
* Updated Swedish manual (sv)
3.22.0 - "Good artists copy, great artists steal. -- Pablo Picasso" - 2016/09/25
Translations:
* Updated translations:
- German (de)
- Serbian (sr, sr@latin)
- Lithuanian (lt)
3.21.1 - 2016/09/18
New Features:
* Shell search provider will search only in note titles (#765894)
* Change accelerator for Back button to <Ctrl>,
Fixes:
* Fix build against Glibmm 2.21 (#770541)
* Fix memory leak in TrieTree (#770056)
Translations:
* Updated translations:
- Catalan (ca)
- Czech (cs)
- Hungarian (hu)
- Polish (pl)
- Serbian (sr, sr@latin)
- Spanish (es)
- Swedish (sv)
* Updated Hungarian manual (hu)
3.21.0 - 2016/08/20
New Features:
* GTK+ 3.20 is required
* Undo will now undo last user action as single unit (#747202)
* Added shortcuts window
* Added <Ctrl>Left accelerator to go from note to main window
Fixes:
* Enter key will find next match when searching in note (#700624)
* Fixed formatting buttons when selection is mixed formatting (#702248)
* Fixed crash on first run when data migration is required (#765791)
* Fixed disabling application plugins
* Fixed Windows size shrinking when switching from/to note (#764464)
* Fixed tab key activating search, while it shouldn't (#767834)
* Escape will close search when search entry has focus
* Make --search always show main window in search mode (#769906)
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- German (de)
- Hungarian (hu)
- Indonesian (id)
- Lithuanian (lt)
- Polish (pl)
- Portuguese (pt)
- Spanish (es)
- Swedish (sv)
3.20.0 - Easter is comming - 2016/03/26
New Features:
* Text menu now uses popover
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- German (de)
- Hungarian (hu)
- Italian (it)
- Lithuanian (lt)
- Polish (pl)
- Serbian (sr, sr@latin)
- Spanish (es)
- Swedish (sv)
- Turkish (tr)
* Updated Greek manual (el)
3.19.0 - 2016/01/31
New Features:
* GTK+ 3.16 is required
* Gtkmm 3.18 is required
* C++11 is required
* configure option --with-x11-support was removed
* Use popover for gear menu
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- German (de)
- Greek (el)
- Italian (it)
- Lithuanian (lt)
- Polish (pl)
- Serbian (sr, sr@latin)
- Spanish (es)
3.18.0 - "Life sucks, but death doesn't put out at all..." - 2015/09/27
New Features:
* Allow closing window via Ctrl+Q (#755399)
Translations:
* Updated translations:
- Indonesian (id)
- Lithuanian (lt)
- Portuguese (pt)
3.17.1 - 2015/09/13
New Features:
* Handle ircs URLs (#754940)
Translations:
* Updated translations:
- Polish (pl)
* Updated German manual (de)
3.17.0 - 2015/07/12
New Features:
* Allow to configure, when client side decorations are used (#748121)
* Drop dependency on gnome-common
* Ident selected lines on tab (#632457)
Fixes:
* Do not lose identation on first item when double identing (#749658)
* Fix crash when DESKTOP_SESSION environment variable is not set (#752024)
* Fix crash when quiting (#751427)
Translations:
* New translations:
- Occitan (oc)
* Updated translations:
- Catalan (ca)
- Czech (cs)
- Hungarian (hu)
- Polish (pl)
- Spanish (es)
- Swedish (sv)
* Updated Spanish manual (es)
* Ipdated German manual (de)
3.16.0 - "If you continually give you will continually have" - 2015/03/29
New Features:
* Updated manual
Translations:
* New translations:
- Bosnian (bs)
- Slovak (sk)
* Updated translations:
- Swedish (sv)
* Updated manuals:
- Czech (cs)
- Lithuanian (lt)
- Spanish (es)
- Swedish (sv)
3.15.1 - 2015/03/07
New Features:
* Manual updates
Fixes:
* Updated boost.m4 (#745160)
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
3.15.0 - 2015/02/16
New Features:
* Remove status icon
* Remove builtin key binding
* Move notebook selection from toolbar to action menu
Fixes:
* Manual fixes (#700422)
* TOC copyright notice fixes (#737918)
* Fix some typos
* Fix crash when disabling note actions (#742657)
* Fix toolbar in note view
Translations:
* Updated translations:
- Basque (eu)
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- Hungarian (hu)
- Kannada (kn)
- Lithuanian (lt)
- Polish (pl)
- Serbian (sr, sr@latin)
- Turkish (tr)
* Updated Czech manual (cs)
* Updated Spanish manual (es)
3.14.0 - "System is only as robust as its least reliable component" - 2014/09/26
New Features:
* Increase the default size of note window
* Add option to autosize note window (#709699)
Fixes:
* Optimize auto-linking (#729832)
* Fix link action not always sensitive when text is selected
* Timeout when started as shell search provider (#736472)
* Fix bullet not removed on delete key
* Fix removing bullet on enter at the start of bulleted line (#702018)
Translations:
* Added translations:
- Basque (eu)
* Updated translations:
- Assamese (as)
- Bengali (India) (bn_IN)
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- German (de)
- Gujarati (gu)
- Hindi (hi)
- Indonesian (id)
- Kannada (kn)
- Lithuanian (lt)
- Marathi (mr)
- Polish (pl)
- Spanish (es)
- Tamil (ta)
- Telugu (te)
* Added Hungarian manual (hu)
* Updated Lithuanian manual
3.13.0 - 2014/05/01
New Features:
* Header bar rework
* Add configure option for C++11 (--with-cxx11-support)
Fixes:
* Fix build using C++11 incompatible compiler (#727077)
Translations:
* Updated translations:
- Brazilian Portuguese (pt_BR)
- Czech (cs)
- Lithuanian (lt)