-
Notifications
You must be signed in to change notification settings - Fork 10
/
NEWS
1889 lines (1403 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
News in 43.0, 2022-09-20
------------------------
* Translation updates
News in 43.rc, 2022-09-03
-------------------------
* Use Meson's gnome.post_install() [!49]
* Translation updates
News in 43.beta, 2022-08-10
---------------------------
* Translation updates
News in 43.alpha, 2022-07-13
----------------------------
* Temporarily disable hardware accelerated rendering [#60]
* Fix build with newer versions of Meson [#59]
* Translation updates
News in 41.2, 2021-10-01
------------------------
* More appdata fixes
* Translation updates
News in 41.1, 2021-09-17
------------------------
* Appdata fixes
News in 41.0, 2021-09-17
------------------------
* Translation updates
News in 41.rc, 2021-09-04
-------------------------
* Translation updates
News in 41.beta, 2021-08-14
---------------------------
* Translation updates
* Fix build in sandboxed environments with no network
* Update list of translatable files [#47]
* Switch to gi-docgen to build the libdevhelp API reference
* Move the "Show side panel" action from the menu to the header bar [!36]
* Fix donation link in the appdata information [!39]
* Build against WebKitGTK 4.1 [!38]
* Build against GLib 2.70 [!40]
News in 41.alpha, 2021-07-09
----------------------------
* Translation updates
* Drop the dependency on AMTK
* Build fixes with newer versions of various dependencies
* Follow the HIG best practices for the main menu button
* Drop the old "simple" menu fallback
* Display find shortcuts in the Keyboard Shortcuts dialog [#27]
* Search for Devhelp files under `$datadir/doc` [#29]
* Set the User Agent for client-side detection [#28]
* Add a custom CSS to allow documentation generators to control the
rendering under Devhelp
News in 40.0, 2021-04-12
------------------------
* Translation updates.
News in 40.alpha, 2021-01-11
----------------------------
* New GNOME versioning scheme.
* Build: add plugin_emacs, plugin_gedit and plugin_vim options.
* Improve the Shortcuts window.
* Translation updates.
News in 3.38.1, 2020-11-20
--------------------------
* Translation updates.
News in 3.38.0, 2020-09-11
--------------------------
* Translation updates.
News in 3.37.1, 2020-05-29
--------------------------
* Enable WebKitGTK sandbox.
* Add more keyboard shortcuts to zoom actions.
* Improvements to the build system.
* Improvement to the Flatpak.
* Translation updates.
News in 3.36.2, 2020-04-25
--------------------------
* Fix RTL (right-to-left text locale) bug.
* Translation updates.
News in 3.36.1, 2020-03-26
--------------------------
* AppData: add <releases> tag for the Flatpak.
* Translation updates.
News in 3.36.0, 2020-03-05
--------------------------
* Translation updates.
News in 3.35.90, 2020-01-30
---------------------------
* Create page about professional services for Devhelp.
* A few improvements to the build system.
* Write more user documentation.
* Fix a minor bug with the Ctrl+F keyboard shortcut.
* Start to apply REUSE recommendations for copyright and license information.
https://reuse.software/
* Use a few new GLib APIs.
* Translation updates.
News in 3.34.0, 2019-09-09
--------------------------
* Enable back-forward swipe gesture in the HTML pages.
* Write more contributor docs.
* Translation updates.
News in 3.32.0, 2019-03-10
--------------------------
* GNOME goal “App menu retirement”:
https://gitlab.gnome.org/GNOME/Initiatives/issues/4
* GNOME goal “App Icon Redesign”:
https://gitlab.gnome.org/GNOME/Initiatives/issues/2
(yes Devhelp has a new icon now).
* A few minor and irrelevant improvements to the code.
* A pile of translation updates as usual.
News in 3.30.1, 2018-10-24
--------------------------
* Build: requires Meson >= 0.47.
* Translation updates.
News in 3.30.0, 2018-07-16
--------------------------
* A few small improvements.
* Translation updates.
News in 3.29.3, 2018-06-17
--------------------------
* Devhelp has moved to the GNOME GitLab instance. The bugzilla tickets have not
yet been migrated to the GitLab issues, so before filing a new issue on
GitLab, please search the bugzilla first. All links are available as usual
on:
https://wiki.gnome.org/Apps/Devhelp
* Finally write a HACKING file.
* Do not show a GtkInfoBar on error, use the WebKitWebView default
implementation to simplify the code.
* Code refactorings: from DhWindow extract DhNotebook, DhSearchBar and
bind_sidebar_and_notebook() function, and delegate more work to DhWebView.
* Make the following classes re-usable and move them to the libdevhelp:
DhWebView, DhTab, DhTabLabel, DhNotebook and DhSearchBar.
And move dh_window_bind_sidebar_and_notebook() to the libdevhelp.
* Flatpak: run Amtk and Devhelp unit tests after building those modules.
* Application icons: rename filenames to org.gnome.Devhelp.*, to simplify the
Flatpak manifest.
* Build system: fix the remaining places where the libdevhelp API/major version
was hardcoded, use the variable instead, to easily bump it in the future.
* Other small improvements.
* Translation updates.
News in 3.29.2, 2018-05-21
--------------------------
* A new, more flexible book management architecture in the libdevhelp:
- DhBookManager is now completely empty and entirely deprecated, the minimum
amount of API is kept to not break Anjuta. It has been replaced by a more
flexible infrastructure: DhProfile, DhSettings and DhBookList. If an
application uses only the default libdevhelp widgets it will still work fine
– even if the code of the application is not adapted – because in that case
it will use the default DhProfile, which contains the same content as how
DhBookManager was implemented.
- Whether a DhBook is enabled/selected is now decoupled from DhBook:
dh_book_get_enabled() and dh_book_set_enabled() have been removed, as well
as the DhBook::enabled and DhBook::disabled signals. For a book to be
enabled it now needs to be part of a DhBookList, which is more flexible
because there can be several different DhBookLists in parallel.
- Allow custom search paths to load DhBooks, with DhBookListDirectory.
* Port other Devhelp classes to DhProfile and DhBookList.
* Listen to external changes to the "books-disabled" GSettings key.
* Some code cleanup and minor bug fixes.
* Flatpak: convert manifest to YAML.
* Translation updates.
News in 3.29.1, 2018-04-15
--------------------------
* Switch build system from Autotools to Meson (and remove Autotools).
* Update the license from GPLv2+ to GPLv3+.
* Clear separation between the library and the app: move library to its own
directory (still in the same git repo), split some source files in two,
correctly handle GSettings in the library, and in the app use only really
public libdevhelp APIs.
* Add a profile infrastructure in the library, for example to have a generic
profile and a GNOME profile in the future.
* Overhaul preferences dialog implementation.
* Use the Amtk library to create the menus and the GtkShortcutsWindow. It
permits to avoid information duplication, and will permit to provide a
higher-level libdevhelp API.
* A few other small improvements.
* Translation updates.
News in 3.28.1, 2018-04-08
--------------------------
* AppData: update screenshots.
* Translation updates.
News in 3.28.0, 2018-03-10
--------------------------
* Improve default GSettings values.
* A few other small improvements.
* Translation updates.
===============
Version 3.27.90
===============
- Flatpak: see books installed on the host (usually installed by traditional
Linux distribution packages). The Flatpak needs to be built with the new
--enable-flatpak-build configure flag.
- Lots of code refactorings, fixing various bugs along the way. Have more
classes, but smaller: from DhKeywordModel extract DhSearchContext; from
DhWindow extract DhWebView, DhTab and DhTabLabel.
- All bugs in bugzilla fixed (only enhancement bugs remaining).
- Write more unit tests.
- Write first page of *user* documentation (in Mallard), to explain some
features of the search in the side panel.
- Fix and document a feature useful for integration with other developer tools:
filtering by book and page when doing a search, see the README.
- Improve error info bar (shown on top of the HTML page), use the TeplInfoBar
utility class, copied from the Tepl library.
Fixed bugs:
- #696905, press Escape to cancel search
- #790902, writes window state settings on each configure event
- #792068, Make it work with Flatpak
- #792443, Missing emacs/vim plugins in 3.27.2 tarball
Updated translations: de, fi, fur, hu, id, pl
Many thanks to all contributors: Balázs Úr, Fabio Tomat, Tim Sabsch,
Sébastien Wilmet, Mario Blättermann, Piotr Drąg, Kukuh Syafaat, Christian
Kirbach, Jiri Grönroos
==============
Version 3.27.2
==============
- Deprecate Devhelp index file format version 1 (with file extension *.devhelp
or *.devhelp.gz), print warning when loading such index files.
- Lots of code refactorings.
- Do not use deprecated GCompletion API, implement re-usable DhCompletion class
based on GSequence with an API better suited for Devhelp.
- Do not use deprecated GdkScreen API, use GdkMonitor.
- Use WebKit's new font size functionality.
- Increase number of maximum search results (100 -> 1000).
- Use the GtkSearchEntry::search-changed signal, adding a small delay to show
search results.
- Make right-click menu work in the WebKitWebView.
- Do not save/restore GtkWindows x/y positions.
- Improve application description and documentation.
- Some cleanup and file reorganisation in the git repository.
- Fix several bugs.
Fixed bugs:
- #606831, Devhelp applications lacks right-click context menu
- #668978, Add timeout to search entry.
- #784652, Searching "GFile" doesn't return an exact match (too many
results)
- #789862, dh-sidebar: Crashes when interacting with the GCompletion
- #790680, Start using WebKit's new font size functionality
- #791127, Assertion failed in DhBookManager
Updated translations: cs, sr
Many thanks to all contributors: Милош Поповић, Sébastien
Wilmet, Marek Černocký, Gabriel Ivascu
==============
Version 3.27.1
==============
- Lots of code refactorings.
- Write first unit test.
- DhLink: use a union inside the struct to use less memory.
- Improve API documentation.
- Some minor bug fixes.
- Translation updates.
==============
Version 3.26.1
==============
- Move New Tab button on the right side of the headerbar.
Updated translations: ca, ca@valencia, da, el, nb, nl
Many thanks to all contributors: Sébastien Wilmet, Ask Hjorth Larsen,
Efstathios Iosifidis, Nathan Follens, Kjartan Maraas, Xavi Ivars
==============
Version 3.26.0
==============
Updated translations: be, da, eu, fi, hu, it, ko, lt, lv, ne, pt_BR,
sk, tr
Many thanks to all contributors: Balázs Úr, Changwoo Ryu, Osman Karagöz,
Yuras Shumovich, Piotr Drąg, Milo Casagrande, Ask Hjorth Larsen, Inaki
Larranaga Murgoitio, Enrico Nicoletto, Rūdolfs Mazurs, Jiri Grönroos,
Dušan Kazik
===============
Version 3.25.91
===============
- Bump Libtool version.
Fixed bugs:
- #786008, Constant updating of window positions causing high CPU load
Fixed by adding a timeout to save the GSettings for the window state.
Updated translations: ca, gl, ne, pl, sr@latin, sr
Many thanks to all contributors: Fran Dieguez, Мирослав
Николић, Sébastien Wilmet, Pawan Chitrakar, Jordi Mas, Debarshi Ray
==============
Version 3.25.2
==============
- Move New Tab action as a button in the headerbar (it's no longer in the
hamburger menu).
- Refactorings in DhLink.
- Rename dh_free_resources() to dh_finalize().
Fixed bugs:
- #721082, a couple of scripts to add javadocs as Devhelp books
- #779386, Consider moving contents of "hamburger" menu elsewhere
- #783964, [PATCH] mouse forward/back buttons don't work
Updated translations: cs, de, es, fr, fur, id, kk, sl, sv, vi
Many thanks to all contributors: Fabio Tomat, Anders Jonsson, Sébastien
Wilmet, Mario Blättermann, Piotr Drąg, Kukuh Syafaat, Matej Urbančič,
Trần Ngọc Quân, Claude Paroz, Daniel Mustieles, Lubomir Rintel,
Baurzhan Muftakhidinov, Marek Cernocky
==============
Version 3.25.1
==============
- Book tree in the side panel: add context menu with Collapse All action.
- Update GUI when system fonts change.
- Lots of code clean-up and refactorings.
- Clean up the GSettings schema.
- Use GIO to load the index files.
- Several bug fixes in the parser.
- Build system:
- Disable -Werror by default.
- Use git.mk.
- Check for gsettings-desktop-schemas with pkg-config.
API:
- There has been some API breaks documented in the reference manual, but both
Anjuta and gnome-builder should still compile and work fine.
- Several fixes in the GTK-Doc comments and GObject Introspection annotations.
- Improve documentation, write class descriptions for public classes.
- DhBookManager is now a singleton.
- Deprecate dh_link_get_page_name().
- dh_init() now initializes the i18n.
- New function: dh_free_resources().
Fixed bugs:
- #761292, Book tree in sidebar: add right click -> collapse all
- #775175, Problems with back/forward buttons sensitivity
- #776596, devhelp --search sometimes doesn't jump to symbol
- #782511, Take advantage of Unicode
Updated translations: be, de, el, hu, id, pl
Many thanks to all contributors: Balázs Úr, Andika Triwidada, Tom
Tryfonidis, Yuras Shumovich, Sébastien Wilmet, Mario Blättermann, Piotr
Drąg, Kukuh Syafaat, Rico Tzschichholz
==============
Version 3.24.0
==============
Updated translations: lv
Many thanks to all contributors: Rūdolfs Mazurs
===============
Version 3.23.92
===============
Fixed bugs:
- #779378, devhelp 3.23.91 fails to build because of -Werror
- #779563, Add Flatpak build manifest
Updated translations: da, fr, gl, id, ko, lt, zh_TW
Many thanks to all contributors: Changwoo Ryu, Kukuh Syafaat, Fran Dieguez,
Sébastien Wilmet, Ask Hjorth Larsen, Aurimas Černius, Chao-Hsiung Liao,
Charles Monzat
===============
Version 3.23.91
===============
Fixed bugs:
- #763518, Add sidebar toggler to the menu
- #770785, Add GTK-Doc API reference and GObject Introspection support
- #771503, fix warning in finalize of sidebar
- #773900, Small build system update
- #774069, unable to build devhelp by jhbuild
- #775261, Make DhLanguage a GObject subclass
Updated translations: cs, de, es, eu, fi, fur, hr, hu, it, kk, nb, pl,
pt_BR, sk, sl, sr@latin, sr, sv
Many thanks to all contributors: Balázs Meskó, Мирослав
Николић, Corentin Noël, Mario Blättermann, Milo Casagrande, Kjartan
Maraas, Enrico Nicoletto, Balázs Úr, Piotr Drąg, Marek Černocký,
Christian Hergert, Fabio Tomat, Sébastien Wilmet, gogo, Matej Urbančič,
Michael Catanzaro, Fábio Nogueira, Anders Jonsson, Rafael Fontenelle,
Miguel Vaello Martínez, Inaki Larranaga Murgoitio, Daniel Mustieles,
Baurzhan Muftakhidinov, Jiri Grönroos, Dušan Kazik
==============
Version 3.22.0
==============
No changes.
===============
Version 3.21.92
===============
Fixed bugs:
- #771327, dh-window: do not disable javascript.
Updated translations: es, fur, pl
Many thanks to all contributors: Jeremy Bicha, Fabio Tomat, Mathieu
Duponchelle, Piotr Drąg
===============
Version 3.21.91
===============
Updated translations: en_GB, fi, pl, sl
Many thanks to all contributors: Matej Urbančič, Jiri Grönroos, David
King, Piotr Drąg
===============
Version 3.21.90
===============
Fixed bugs:
- #763942, Let Control+scroll change the zoom level
- #769606, 3 trivial commits
Updated translations: eu, id, it, nb, oc, pt, th
Many thanks to all contributors: Ernestas Kulik, Andika Triwidada, Sébastien
Wilmet, Piotr Drąg, Theppitak Karoonboonyanan, Inaki Larranaga Murgoitio,
Kjartan Maraas, Cédric Valmary, Milo Casagrande
==============
Version 3.20.0
==============
Updated translations: da, ru, sr
Many thanks to all contributors: Ask Hjorth Larsen, Марко Костић,
Yuri Myasoedov
===============
Version 3.19.92
===============
Updated translations: ca, cs, fi, fr, gl, he, ko, lt, oc, sr@latin,
sr, sv, zh_CN, zh_TW
Many thanks to all contributors: Changwoo Ryu, Chao-Hsiung Liao, Fran
Dieguez, Мирослав Николић, Guillaume Bernard, Marek
Černocký, Jordi Mas, Aurimas Černius, Anders Jonsson, Yosef Or Boczko,
Cédric Valmary, Jiri Grönroos, Mingye Wang (Arthur2e5), Sébastien Wilmet
===============
Version 3.19.90
===============
Fixed bugs:
- #645620, Mis-handling of external-URL <book base=> in .devhelp2
- #696904, each class name is listed twice
- #723135, Ctrl-K shortcut is not discoverable
- #741806, Add support for XF86Back/XF86Forward keys
- #743704, Add "Ctrl =" keyboard shortcut for zoom in
- #757177, Add keyboard shortcuts for switching tabs (Ctrl+PgUp/PgDn)
- #757877, Provide a shortcuts window
- #758141, Misc code enhancements
- #759691, Search problem: do not jump to the exact link if another link
with a longer name exists
- #759692, Search: a trailing space is sometimes added to the entry
- #761407, Add context to strings in the shortcut window
Updated translations: de, el, es, hu, lt, lv, pl, pt_BR, sk
Many thanks to all contributors: Balázs Meskó, Tom Tryfonidis, Rafael
Fontenelle, Sébastien Wilmet, Richard Hughes, Mario Blättermann, Piotr
Drąg, Aurimas Černius, Nirbheek Chauhan, Daniel Mustieles, Rūdolfs
Mazurs, Dušan Kazik
==============
Version 3.19.3
==============
Fixed bugs:
- #709658, gedit plugin: too many .plugin files (some generated, some
weird)
- #755872, Sometimes a page doesn't get opened
- #756341, Various code improvements and bug fixes
Updated translations: eu, pt, th, zh_CN
Many thanks to all contributors: Pedro Albuquerque, Sébastien Wilmet, Akom
Chotiphantawanon, Inaki Larranaga Murgoitio, YunQiang Su
==============
Version 3.18.1
==============
Updated translations: eo, sr@latin, sr
Many thanks to all contributors: Kristjan SCHMIDT, Милош
Поповић, Марко Костић
==============
Version 3.18.0
==============
Updated translations: da, de, fa, fi, it, ja, ko, lt, lv, pt_BR, sl,
tr
Many thanks to all contributors: Changwoo Ryu, Paul Seyfert, Muhammet Kara,
Rafael Fontenelle, Arash Mousavi, Milo Casagrande, Ask Hjorth Larsen, Matej
Urbančič, Aurimas Černius, Jiro Matsuzawa, Rūdolfs Mazurs, Jiri
Grönroos
===============
Version 3.17.91
===============
Fixed bugs:
- #704833, books sidebar shouldn't have type ahead find
- #727243, gedit plugin needs to be ported to new menu API
- #749797, Misc code improvements
- #751446, AppData file needs updating for new desktop file name
Updated translations: cs, el, es, fr, gl, he, hu, id, nb, pl, pt, sk,
sv, zh_TW
Many thanks to all contributors: Balázs Úr, Andika Triwidada, Alexandre
Franke, Fran Dieguez, Anders Jonsson, Richard Hughes, Piotr Drąg, Daniel
Mustieles, Pedro Albuquerque, Kjartan Maraas, Yosef Or Boczko, Marek
Černocký, Chao-Hsiung Liao, Dušan Kazik, Tom Tryfonidis
==============
Version 3.17.3
==============
Fixed bugs:
- #593267, devhelp manpage
- #728384, Make DBus-activatable
- #749452, Misc maintenance stuff
- #749797, Misc code improvements
Updated translations: oc, uk
Many thanks to all contributors: Sébastien Wilmet, Cédric Valmary,
Matthias Clasen, Colin Walters
==============
Version 3.16.1
==============
Fixed bugs:
- Update list of official developer documentation sites
- #747016, icon: provide a symbolic variant of the app icon
Many thanks to all contributors: Jakub Steiner, Alexandre Franke
==============
Version 3.16.0
==============
Fixed bugs:
- #746609, Fix warning when book cannot be read
Updated translations: bs
Many thanks to all contributors: Michael Catanzaro, Kalev Lember
===============
Version 3.15.92
===============
Fixed bugs:
- #746166, Disable some WebKit features we don't need
Updated translations: bs
Many thanks to all contributors: Michael Catanzaro, Samir Ribic, Sebastien
Lafargue
===============
Version 3.15.91
===============
Fixed bugs:
- #745256, Update font size automatically when Xft resolution changes
Updated translations: sv
Many thanks to all contributors: Mario Sanchez Prada, Anders Jonsson
===============
Version 3.15.90
===============
Fixed bugs:
- #728916, Can't find "_" in the results
- #741806, Added support for XF86Back/XF86Forward keys
- #742447, devhelp crashes with empty documentation file
- #742457, Typo in GSettings conversion file causes gsettings-data-convert
to crash
- #742687, DevHelpBookTree is wider when searching
Updated translations: fi, it, ja, sl, tr
Many thanks to all contributors: Muhammet Kara, Necdet Yücel, Timo Jyrinki,
Milo Casagrande, Jiri Horner, Matej Urbančič, Trinh Anh Ngoc, Jiro
Matsuzawa, Debarshi Ray, Aleksander Morgado
==============
Version 3.14.0
==============
Updated translations: da, de, sr@latin, sr, zh_CN
Many thanks to all contributors: Tong Hui, Kenneth Nielsen, Bernd Homuth,
Мирослав Николић
===============
Version 3.13.92
===============
Fixed bugs:
- #735252, libdevhelp: Fix .pc file requires when building with
webkit2gtk-4.0
Updated translations: fi, gl, hu, id, ko, lv, pl, ru, sv, zh_HK, zh_TW
Many thanks to all contributors: Balázs Úr, Ville-Pekka Vainio, Andika
Triwidada, Fran Diéguez, Changwoo Ryu, Yuri Myasoedov, Piotr Drąg,
Sebastian Rasmussen, Rūdolfs Mazurs, Chao-Hsiung Liao
===============
Version 3.13.90
===============
Fixed bugs:
- #734324, Build against webkit2gtk-4.0
Updated translations: as, ca, ca@valencia, cs, eu, fi, fr, lt, nb
Many thanks to all contributors: Gil Forcada, Lasse Liehu, Alexandre Franke,
Kalev Lember, Andre Klapper, ngoswami, Inaki Larranaga Murgoitio, Aurimas
Černius, Olav Vitters, Kjartan Maraas, Michael Catanzaro, Carles Ferrando,
Marek Černocký, Ignacio Casal Quinteiro
==============
Version 3.13.4
==============
Fixed bugs:
- #724098, center tab labels
- #724538, Use popver for the gear menu
- #727064, Use headerbar in the preference dialog
- #730445, Expand tabs in the pref dialog
- #730723, window: Allow Shift-Return to previous find
- #730772, Use the new support for RTL icons in GtkIconTheme
- #732897, Use view-context-menu-symbolic for the gear menu
Updated translations: ca, ca@valencia, el, es, he, pt_BR, sl
Many thanks to all contributors: MarMav, Carles Ferrando, Pau Iranzo,
chrysn, Damián Nohales, Matej Urbančič, Daniel Mustieles, Enrico
Nicoletto, Yosef Or Boczko
==============
Version 3.12.1
==============
Updated translation: eu
Many thanks to all contributors: Inaki Larranaga Murgoitio, Piotr Drąg
==============
Version 3.12.0
==============
Updated translations: da, id, pt, sl
Many thanks to all contributors: Duarte Loreto, Matej Urbančič, Andika
Triwidada, Ask H. Larsen
===============
Version 3.11.92
===============
Updated translations: fi, fr, ko, lv, pl, ru, sr@latin, sr, zh_CN
Many thanks to all contributors: Changwoo Ryu, Ville-Pekka Vainio, Мирослав
Николић, Paweł Żołnowski, Yuri Myasoedov, Wylmer Wang, Rūdolfs Mazurs
===============
Version 3.11.91
===============
Fixed bugs:
- #696573, search toggle buttons
- #723225, License text contains obsolete FSF postal address
- #723933, Don't assume we can always read BYTES_PER_READ
Updated translations: as, fi, gl, hu, it, lt, nb, pt_BR, uk, zh_HK,
zh_TW
Many thanks to all contributors: Balázs Úr, Jiri Grönroos, Daniel
Mustieles, William Jon McCann, Ignacio Casal Quinteiro, Rafael Ferreira,
ngoswami, Fran Diéguez, Milo Casagrande, Aurimas Černius, Kjartan Maraas,
Daniel Korostil, Chao-Hsiung Liao
==============
Version 3.11.4
==============
Fixed bugs:
- #712183, about devhelp, wrong URL
- #720167, App menu: standardize Help/About/Quit
- #720948, Add "sidebar" style class to the sidebar
Updated translations: ca, ca@valencia, cs, el, es, gl, he, it, pt_BR,
sl, zh_CN
Many thanks to all contributors: Gil Forcada, Dimitris Spingos, Carles
Ferrando, Rafael Ferreira, Ignacio Casal Quinteiro, Fran Diéguez, Milo
Casagrande, Matej Urbančič, Sphinx Jiang, Bastien Nocera, Daniel
Mustieles, Yosef Or Boczko, Michael Catanzaro, Marek Černocký, Piotr
Drąg, Pierre-Yves Luyten, Aleksander Morgado
==============
Version 3.10.2
==============
Updated translations: ca, ca@valencia, de, el
Many thanks to all contributors: Christian Kirbach, Efstathios Iosifidis,
Gil Forcada, Carles Ferrando
==============
Version 3.10.0
==============
Fixed bugs:
- #707490, [PATCH] Don't use AM_GNU_GETTEXT
Updated translations: as, be, da, fi, he, id, ja, ko, lv, ru, sk,
sr@latin, sr, th
Many thanks to all contributors: Changwoo Ryu, Ville-Pekka Vainio, Andika
Triwidada, Мирослав Николић, Ignacio Casal Quinteiro, Pavol
Klačanský, Ihar Hrachyshka, Ask H. Larsen, Theppitak Karoonboonyanan,
Nilamdyuti Goswami, Jiro Matsuzawa, Yosef Or Boczko, Rūdolfs Mazurs,
Kerrick Staley, Yuri Myasoedov
==============
Version 3.9.91
==============
Fixed bugs:
- #700588, Error regarding gsetting schema when gsettings-data-convert
starts
- #706498, Typo in the last devhelp´s POT File
Updated translations: cs, es, fr, gl, he, hu, it, lt, nb, pl, pt_BR,
sl, zh_HK, zh_TW
Many thanks to all contributors: Balázs Úr, Milo Casagrande, Kjartan
Maraas, Ignacio Casal Quinteiro, Fran Diéguez, Piotr Drąg, Matej
Urbančič, Aurimas Černius, Daniel Mustieles, Enrico Nicoletto, Marek
Černocký, Chao-Hsiung Liao, Yaron Shahrabani, Alexandre Franke
==============
Version 3.9.90
==============
Ignacio Casal Quinteiro ported devhelp to GtkHeaderBar, GtkSearchBar,
and more.
Fixed bugs:
- #700588, Error regarding gsetting schema when gsettings-data-convert
starts
Updated translations: it, lt, pt_BR, zh_HK, zh_TW
Many thanks to all contributors: Milo Casagrande, Ignacio Casal Quinteiro,
Rafael Ferreira, Piotr Drąg, Baptiste Mille-Mathias, Aurimas Černius,
Chao-Hsiung Liao
=============
Version 3.9.5
=============
Fixed bugs:
- #703609, Set button arrow icons according to locale's text direction
- #704752, Make window a template and other stuff
- #704805, The notebook in the preferences does not expand properly
Many thanks to all contributors: Garrett Regier, Ignacio Casal Quinteiro,
Piotr Drąg
=============
Version 3.9.4
=============
Fixed bugs:
- #665531, devhelp: change ShowSearchTab key to ctrl+K
- #695758, Ctrl+F/Ctrl+S don't focus the search entry
- #696922, Tabs should be reorderable
- #700430, .pc uses WEBKITGTK_PC_NAME which is no longer defined
Updated translations: cs, es, eu, gl, he, hu, ml, nb, ru, sl
Many thanks to all contributors: Balázs Úr, Kjartan Maraas, Carlos Garcia
Campos, Ignacio Casal Quinteiro, Fran Diéguez, Javier Jardón, Matej
Urbančič, Yuri Myasoedov, Daniel Mustieles, Yosef Or Boczko, Adam Dingle,
Marek Černocký, Arnel A. Borja, Yaron Shahrabani, Anish A, Aleksander
Morgado
=============
Version 3.8.2
=============
Fixed bugs:
- disconnect signals when preferences dialog is shutdown
Updated translations: ru
Many thanks to all contributors: Dmitriy S. Seregin, Aleksander Morgado
=============
Version 3.8.1
=============
Fixed bugs:
- #697026, font size is too small by default and don't match system font
size
- #697541, changing preferences crashes/fails after closing one of
multiple windows
Many thanks to all contributors: Carlos Garcia Campos, Ignacio Casal
Quinteiro, Aleksander Morgado
=============
Version 3.8.0
=============
Fixed bugs:
- #695455, gedit-plugin: Set loader to python3
- #696367, devhelp's gschema crashes gsettings tool
Updated translations: as, be, da, el, et, fa, fi, fr, hu, ko, pt_BR,
pt, tg
Many thanks to all contributors: Balázs Úr, Changwoo Ryu, Mattias
Põldaru, Dimitris Spingos, Alexandre Franke, Thomas Bechtold, Ville-Pekka
Vainio, Victor Ibragimov, Arash Mousavi, Ask H. Larsen, Ihar Hrachyshka,
Duarte Loreto, Nilamdyuti Goswami, Enrico Nicoletto, Jeremy Bicha,
Aleksander Morgado
==============
Version 3.7.91
==============
Fixed bugs:
- #569021, header links don't jump to correct point in text
- #600309, impossible or very cumbersome to navigate from keyboard
- #640567, Error shown when changing books/pages too fast
- #665531, devhelp: change ShowSearchTab key to ctrl+K
- #671907, Do not use custom marshallers
- #673320, Nodes in side tree should not expand on focus
- #693237, Syntax errors in the desktop file
Updated translations: ca, ca@valencia, cs, de, el, gl, it, lt, nb, nl,
pl, sl, sr@latin, sr, th, ug
Many thanks to all contributors: Gil Forcada, Gheyret Kenji, Kalev Lember,
Thomas Bechtold, Мирослав Николић, Matej Urbančič, Mario
Blättermann, Piotr Drąg, Theppitak Karoonboonyanan, Aurimas Černius, Fran
Diéguez, Kjartan Maraas, Javier Jardón, Carles Ferrando, Marek Černocký,
Milo Casagrande, Aleksander Morgado
=============
Version 3.7.5
=============
This release sees a revamp of the UI according to match GNOME 3 applications,
thanks to the work of Aleksander Morgado and Thomas Bechtold during the
developer experience hackfest in Brussels.
Fixed bugs: