-
Notifications
You must be signed in to change notification settings - Fork 77
/
ChangeLog
42366 lines (21522 loc) · 826 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-09-26 Christian Wehling
* L10n:de: help_ch_Tools_Assistant: The "Loan Repayment Calculator" (HEAD -> stable, origin/stable, origin/HEAD)
2024-09-23 Frank H. Ellenberger
* Merge PR #341 into stable
2024-09-22 John Ralls
* Update github CI actions versions.
2024-07-06 John Ralls
* ChangeLog and NEWS for 5.8.
2024-04-28 Christian Wehling
* de:manual:ch_Business: german translation of section 'Employee'
2024-08-15 John Ralls
* Remove extraneous and incorrect DESTDIR variable.
2024-08-14 John Ralls
* Bug 799394 - Error creating directory "/usr/share/doc/HTML"
2024-07-06 John Ralls
* Release Documentation for GnuCash 5.8 (HEAD -> stable, origin/stable, origin/HEAD)
2024-07-06 Frank H. Ellenberger
* de:manual:Transactions: gnucash-fallback.css aktualisiert
2024-06-29 John Ralls
* Release Documentation for GnuCash 5.7 (tag: 5.7, jralls/stable)
2024-03-24 Christian Wehling
* L10n:de: manual, ch_Business: section 'Vendor'
2024-04-23 Christian Wehling
* L10n:de: manual, ch_Business: section 'Customer', improvements
2024-04-23 Christian Wehling
* L10n:de: manual, ch_Business: section 'Setup', improvements
2024-05-05 Frank H. Ellenberger
* Merge CWehli's PR #339 into stable
2024-05-04 Christian Wehling
* docbook: Improve entity untranslated
2024-04-29 Christian Wehling
* gnc-struct: change entity and section id's for 'employee-voucher'
2024-04-29 Christian Wehling
* All: manual, ch_Business: Harmonize section IDs.
2024-04-29 Christian Wehling
* All: manual, ch_Business, Change id=“busnss-emplyedit”...
2024-04-30 Christian Wehling
* docbook: use entitiy for url-wiki
2024-04-28 Christian Wehling
* Revert "All: Improve entity untranslated"
2024-04-25 Frank H. Ellenberger
* de, pt: Update &untranslated-*; to &untranslated;
2024-04-24 Frank H. Ellenberger
* All: Improve entity untranslated
2024-04-22 Frank H. Ellenberger
* C: Manual: Getting Help: resolve ambiguities
2024-04-20 Frank H. Ellenberger
* de: Handbuch: ergänze Leerzeichen, löse Mehrdeutigkeiten auf
2024-04-20 Frank H. Ellenberger
* Merge cwehli's PR #335 into stable
2022-12-13 Christian Wehling
* L10n:de: manual, ch_Business: section 'Customer'
2024-02-25 Christian Wehling
* L10n:de: manual, ch_Business: section 'Setup'
2024-04-19 xuxinhang
* zh: translate xsl/l10n.xml
2024-04-17 xuxinhang
* Guide(zh): fix xml validity error
2024-04-15 xuxinhang
* Guide(zh): Change the translation for the item "captial gain".
2024-04-14 xuxinhang
* Guide(zh): Improve translation of "borrower" and "lender" for ch_loans.docbook
2024-04-15 xuxinhang
* Guide(zh): Tentative translation for ch_invest.docbook
2024-02-25 Christian Wehling
* L10n:de manual, ch_Customize: Add more explanation about using images in invoices.
2024-03-28 Christian Wehling
* docbook: additional entities for business menuitems
2024-02-26 Christian Wehling
* docbook: gnc-gui-C: fix spelling
2024-03-07 Frank H. Ellenberger
* Remove an unwanted linebreak from comment
2024-02-17 John Ralls
* Bug 799237 - Dead Link (HEAD -> stable, origin/stable, origin/HEAD)
2024-01-16 Frank H. Ellenberger
* Fix a typo in last commit
2024-01-16 Frank H. Ellenberger
* C, de:Manual:Finance-Quote: Note about Expected Time Commitment
2024-01-16 Frank H. Ellenberger
* C, de:Manual:Finance-Quote: Tip about 'gnc-fq-update: Command not found'
2023-07-29 Christian Wehling
* docbook: gnc-gui-de: Improve accelerator of menuitems
2024-01-14 Frank H. Ellenberger
* Link https://wiki.gnucash.org/wiki/Documentation_Translation#The_Procedure in recent gnc-gui-*.dtd files
2024-01-13 Frank H. Ellenberger
* Replace *dquote entities by <quote> tags
2024-01-13 Frank H. Ellenberger
* C:Manual:Tools:Unify main section titles and other minor improvements
2024-01-08 Frank H. Ellenberger
* Unify filename extension
2024-01-07 Frank H. Ellenberger
* C:Manual:CSV Import: show icons
2024-01-02 Christian Wehling
* L10n:de: manual: Run adjust-dpi.sh
2024-01-02 Christian Wehling
* L10n:de: manual: Delete unnecessary blanks in the inline element <emphasis>.
2023-04-16 Christian Wehling
* L10n:de: manual: ch_Tools, section 'find business items'
2024-01-01 Christian Wehling
* L10n:de: manual: ch_Tools, section 'find transactions'
2024-01-01 Christian Wehling
* xmlformat: Apply changes at the element 'screeninfo'
2023-07-30 Christian Wehling
* xmlformat.conf: new element 'screeninfo' with no entry- and no exit-break
2023-12-15 Frank H. Ellenberger
* EBICS: for business customers (HEAD -> stable, origin/stable, origin/HEAD)
2023-12-14 Frank H. Ellenberger
* Cleanup of table attribute valign
2023-12-13 Frank H. Ellenberger
* Merge remote-tracking branch 'cwehli/de_Business_GUI' into stable
2023-01-28 Christian Wehling
* L10N:de: ch_GUIMenus.xml, Business: Chapter redesigned ...
2023-11-26 Christian Wehling
* docbook: gnc-gui-*: Rename the scheduled edit/new/delete menus
2023-11-17 Christian Wehling
* docbook: additional entities for business GUI-elements
2023-09-12 Frank H. Ellenberger
* zh: fix dtd (HEAD -> stable, origin/stable, origin/HEAD)
2023-09-12 Frank H. Ellenberger
* Merge PR #328 'translation-zh' into stable
2023-09-11 John Ralls
* Replace list(POP_FRONT) with older iteration technique
2023-09-01 Christian Wehling
* L10n:de: manual: ch_Tools, section 'find transactions'
2023-09-09 Christian Wehling
* L10n:de: manual ch_GUIMenus: Adjust the translation of 'Account Register' at the title
2023-09-09 xuxinhang
* Guide(zh): Further translation for ch_oview
2023-09-09 xuxinhang
* Guide(zh): Primary translation of ch_capgain
2023-09-09 xuxinhang
* Guide(zh): translate gnc-gui-zh.dtd
2023-09-04 John Ralls
* Bug 799074 - Incorrect note re cash page in stock-txn-assistant
2023-09-03 xuxinhang
* Guide(zh): Fix svg file font name to suppress fop warnings.
2023-09-02 xuxinhang
* Guide(zh): Primary translation for ch_loans
2023-09-02 xuxinhang
* Guide(zh): Improve translation for ch_txns
2023-09-02 xuxinhang
* Guide(zh): Improve translation.
2023-09-02 xuxinhang
* Guide(zh): Sync changes from C/guide
2023-09-01 Frank H. Ellenberger
* zh/guide: Change all occurrences of the entity 'maint' to 'stable
2023-08-07 Christian Wehling
* L10n:de: manual: ch_Tools, section 'find transactions', further improvements
2023-08-07 Christian Wehling
* L10n:de: Einfügen von Bindestrichen
2023-08-23 Frank H. Ellenberger
* Use &url-docs-gh;
2023-08-23 Geert Janssens
* Lower cmake requirement again to cater for our slightly outdated build server
2023-08-20 Frank H. Ellenberger
* Update git branches for API docs
2023-08-20 Frank H. Ellenberger
* Merge PR #323 - 'translation-zh' into stable
2023-08-18 Geert Janssens
* Bump minimum cmake version to 3.16
2023-08-17 Geert Janssens
* Fix race condition in creating symlinks
2023-08-15 Frank H. Ellenberger
* de/guide//oview: merge updated list element from c
2023-08-15 Frank H. Ellenberger
* C/guide/oview: replace "&vers-stable;" by "≥ 3.0" to avoid gap in the list
2023-08-10 xuxinhang
* Add language-specific XSLT files into dist.
2023-04-13 Christian Wehling
* L10n:de: manual: ch_Tools, section 'find transactions'
2023-08-04 xuxinhang
* Refactor the build system feature for adding customized xslt files.
2023-08-04 xuxinhang
* Translate-Zh: translate basics_AccountRelationships.svg/.png
2023-08-01 John Ralls
* Update actions/checkout to v3 in all actions.
2023-08-01 John Ralls
* Run nightly-build action nightly (jralls/stable)
2023-07-30 John Ralls
* Add nightly-build github workflow.
2023-07-28 Christian Wehling
* Guide (C), appendixd: remove whitespace from guimenuitem
2023-07-23 Christian Wehling
* Manual (C,de), F::Q: Add a note that 'gnc-fq-*' has been replaced
2023-07-23 Christian Wehling
* Manual (C,de): Replace obsolet 'gnc-fq-*' with 'gnucash-cli --quotes *'
2023-07-23 Christian Wehling
* Guide (C,de,ru): Repair broken links from 'help' to 'manual'
2023-07-23 Christian Wehling
* Guide (C,de), ch_invest: Remove section 'Finance::Quote install'
2023-07-28 Frank H. Ellenberger
* Manual (C, de) Update F::Q screens to 1.57
2023-07-27 Frank H. Ellenberger
* L10n:de: Update both titlepages to C
2023-07-25 Lord Catzorz
* Update ch_oview.xml - Fix typo "are are"
2023-07-23 Frank H. Ellenberger
* Use &url-docs-release; because the builds on code are still V4
2023-07-22 Christian Wehling
* F::Q, Unify the sect1-ID's
2023-04-11 Christian Wehling
* Improve documentation for gnucash-cli
2023-04-10 Christian Wehling
* L10n:de: Update docu for integrating price quotes into gnucash-cli
2023-04-11 Christian Wehling
* docbook: entities for GUI-struct-elements of MAC-Applications
2023-07-22 xuxinhang
* Translation-Zh: Primary text translation for guide/ch_cbooks and guide/ch_expenses
2023-07-21 xuxinhang
* Translation-Zh: Primary text translation for guide/ch_cc
2023-05-14 Christian Wehling
* Remove action='simul' from keycombo because it is the default value for action.
2023-07-21 xuxinhang
* Translation-Zh: use the accurate tag to wrap the short for the account name.
2023-07-15 xuxinhang
* Fix the missing font for Chinese characters in <keycap>.
2023-07-08 xuxinhang
* zh-translation: typo & polish 语言修改润色
2023-07-08 xuxinhang
* Customize Zh XLSTs for localized typeset rules & CHM encoding.
2023-07-08 xuxinhang
* Add Chinese fonts and fop.conf.in for PDF build
2023-07-08 xuxinhang
* Translate the Part 1 of the guide.
2023-07-21 Frank H. Ellenberger
* Merge PR #321 'cwehli/docbook' into stable again (update)
2023-07-21 Frank H. Ellenberger
* gnucash-fallback-310.css got dropped in 4.0. Replace link.
2023-06-09 Christian Wehling
* docbook: Change all occurrences of the entity 'maint' to 'stable
2023-06-09 Christian Wehling
* docbook: Change all occurrences of the entity 'maint' to 'stable
2023-05-01 Christian Wehling
* xmlformat of all xml-docs, both guide and manual and all languages
2023-07-13 Christian Wehling
* xmlformat.conf: further improvements
2023-05-01 Christian Wehling
* fix malformed xml
2023-05-01 Christian Wehling
* Adaptation of the xml-formatting example to the changed doc structure
2023-07-18 Frank H. Ellenberger
* Fix an imroper use of <keycap>
2023-07-10 Frank H. Ellenberger
* Merge remote-tracking branch 'cwehli/de_guide_Business' into stable
2023-02-11 Christian Wehling
* L10N:de: guide, Business Features: according Bug 777318
2022-12-29 John Ralls
* Fix the Windows FQ installer entity for master branch. (HEAD -> master, origin/master, origin/HEAD)
2022-12-18 John Ralls
* Merge branch 'maint'
2022-10-20 Geert Janssens
* Merge branch 'maint'
2022-10-19 Geert Janssens
* Merge branch 'gc-help2gc-manual'
2022-10-17 John Ralls
* Quotes info example with sorted & formatted source list.
2022-10-16 John Ralls
* Update documentation for integrating price quotes into gnucash-cli.
2022-10-13 Geert Janssens
* Restructure source directories from doc/lang to lang/doc
2022-08-25 Geert Janssens
* Remove 'gnucash-' prefix from examples in README
2022-08-21 Geert Janssens
* Remove redundant 'gnucash-' from target names
2022-08-21 Geert Janssens
* Help Manual - rename all output formats from gnucash-help to gnucash-manual
2022-09-29 Frank H. Ellenberger
* Merge branch 'maint'
2022-09-25 John Ralls
* Merge branch 'maint'
2022-08-24 Frank H. Ellenberger
* Merge branch 'maint'
2022-08-21 Geert Janssens
* Update document names in it.po, the it translation guidelines and README
2022-08-21 Geert Janssens
* Fix typo in build script
2022-08-21 Geert Janssens
* Fix build error introduced in most recent merge
2022-08-19 Geert Janssens
* Fix a few commented out references to old document names
2022-08-19 Geert Janssens
* Merge branch 'maint'
2022-08-15 Geert Janssens
* Replace ghelp: links in the source documents themselves with help: links to refer to our new documentation locations
2022-08-15 Geert Janssens
* Rename all GHelp related parameters and variables to XdgHelp
2022-08-15 Geert Janssens
* Rename GHelp to XdgHelp - step 1
2019-09-07 Geert Janssens
* Update ghelp target to install docs according to the xdg help specification
2022-08-12 Geert Janssens
* Merge branch 'maint'
2022-06-25 John Ralls
* Merge branch 'maint'
2022-06-25 John Ralls
* Merge branch 'maint'
2022-03-27 John Ralls
* Merge branch 'maint'
2021-12-19 John Ralls
* Merge branch 'maint'
2021-09-26 John Ralls
* Merge branch 'maint'
2021-06-26 John Ralls
* Merge branch 'maint'
2021-01-30 Frank H. Ellenberger
* Merge branch 'maint'
2020-12-29 John Ralls
* Merge branch 'maint'
2020-12-27 John Ralls
* Merge branch 'maint'
2020-07-25 John Ralls
* Merge branch 'maint'
2020-07-07 John Ralls
* Set master branch number to 4.900 after merging master over maint.
2022-06-25 John Ralls
* Release Documentation for GnuCash 4.11 (tag: 4.11)
2022-06-25 Frank H. Ellenberger
* L10N:de:Manual: Review imagesize (partial)
2022-06-25 Frank H. Ellenberger
* Simplify '></imagedata>' to '/>'
2022-06-25 Frank H. Ellenberger
* Drop redundant attribute format="PNG"
2022-06-25 Frank H. Ellenberger
* L10N:de:Manuual: Tools fix image size
2022-06-25 Frank H. Ellenberger
* Merge PR #253 into maint
2022-06-25 Frank H. Ellenberger
* Merge remote-tracking branch 'cwehli/de_help_FQ' into maint
2022-06-25 Frank H. Ellenberger
* L10N:de: Security Editor, Layout hotfix: disable table
2022-06-25 Frank H. Ellenberger
* Merge PR #260 into maint
2022-06-25 Frank H. Ellenberger
* Minor improvements on PR #264
2022-02-13 Christian Wehling
* L10N:de: manual ch_Tools_Assistant: The "Security Editor"
2022-04-30 Christian Wehling
* L10n:de: manual ch_Tools_Assistant: The "Close Book"
2022-06-24 Frank H. Ellenberger
* Postprocessing of PR #250: Replace hardcoded URLs by entities
2022-06-24 Frank H. Ellenberger
* Merge PR #250 into maint
2022-06-24 Frank H. Ellenberger
* Allow crosslinking the released or draft version
2022-06-23 Christian Wehling
* manual ch_Finance_Quote: fix typo
2022-01-24 Christian Wehling
* [Bug 798414] How do I resize my register columns?
2022-06-23 Frank H. Ellenberger
* Merge remote-tracking branch 'cwehli/de_help_Tools_Intro' into maint
2022-02-09 Christian Wehling
* L10n:de: help_ch_Tools_Assistant: The "Price Editor"
2022-05-25 Christian Wehling
* L10n:de: manual ch_Tools_Assistant: Intro
2022-01-11 Christian Wehling
* F::Q Description of installing Perl
2022-06-13 Frank H. Ellenberger
* Merge PR #243 into maint
2021-09-28 Christian Wehling
* L10n:de ch_Account-Actions: Weiterentwicklung mit neuen Abschnitten
2022-06-13 Christian Wehling
* L10N:de: dtd-docbook: gnc-gui-de.dtd, menu items
2022-06-12 Christian Wehling
* Change gnc-local-$LANG into gnc-gui-$LANG in all files.
2022-06-09 Christian Wehling
* dtd-docbook: Separation of the declaration of entities of the GUI
2022-06-09 Frank H. Ellenberger
* Merge PR #268 into maint
2022-06-08 Geert Janssens
* Add tests related to images and figures
2022-06-08 Geert Janssens
* Require same cmake version as gnucash program
2022-06-06 Christian Wehling
* L10N:de: Optimize some pictures and adjust the dpi
2022-06-02 Frank H. Ellenberger
* L10N:Pt:Guide:Fix image declarations: use figure & title, fix width
2022-05-29 Frank H. Ellenberger
* L10N:pt: Guide figures cleanup
2022-05-30 Christian Wehling
* FO formatting, Added parameter to PdfTarget...
2022-05-30 John Ralls
* [SQL Backends] Clarify footnote about required additional packages.
2022-05-28 Geert Janssens
* Fix path to find svg files
2022-05-27 Frank H. Ellenberger
* Merge PR #246 into maint
2022-05-22 Christian Wehling
* dtd-docbook: bugfixing
2022-04-24 Christian Wehling
* dtd-docbook: Added an explanation of the syntax and corrected some previous entries.
2022-04-18 Christian Wehling
* dtd-docbook: further work to simplify the translation of menu items
2022-05-02 Frank H. Ellenberger
* Merge PR #249 into maint
2022-04-17 Frank H. Ellenberger
* Merge PR #258
2022-04-11 Frank H. Ellenberger
* Merge remote-tracking branch 'cwehli/maint' into maint
2022-04-02 Christian Wehling
* gitignore: Cleanup
2022-03-29 Christian Wehling
* gnc-docbookx.dtd, Optimize links to Selinger's docs
2022-03-28 John Ralls
* Re-release documentation for GnuCash 4.10 (tag: 4.10.1)
2022-03-28 Frank H. Ellenberger
* Reenable other languages than pt in Guide
2021-12-18 Christian Wehling
* dtd-docbook: add more translatable GUI elements (menuitems)
2022-03-26 John Ralls
* Release Documentation for GnuCash 4.10 (tag: 4.10-superseded-by-4.10.1, tag: 4.10)
2022-02-03 goodvibes2
* Update Preferences documentation to match current state
2022-02-09 goodvibes2
* Fix 2 "[WARN] FOUserAgent - Destination: Unresolved ID reference"
2022-02-06 goodvibes2
* Bug 797678 New Append checkbox in Generic Import Transaction Matcher
2022-02-03 goodvibes2
* Updates to Gen Imp Tran Matcher other than for new Append checkbox
2022-03-26 John Ralls
* Merge Christian Wehli's 'dtd-update' into maint.
2022-02-13 Christian Wehling
* Adjusted entity for image width in gnc-docbookx.dtd and ...
2022-03-11 John Ralls
* Find dialog: Add missing criterion rows to the table.
2022-03-11 John Ralls
* Find dialog: Explain more clearly what is searched.
2022-03-11 John Ralls
* Find dialog: Correct the type of tab in which the results are presented.
2022-03-11 John Ralls
* Find Transactions is a dialog, not an assistant.
2022-03-10 John Ralls
* Add missing Find fields to table and put them in the right order.
2022-03-10 John Ralls
* Memo isn't a transaction field, Notes is.
2022-03-10 John Ralls
* Merge Pedro Albuquerque's 'guide_pt' into maint.
2021-12-28 pmraps
* pt_PT translation and figures update
2021-12-27 Pedro Albuquerque
* Update .gitignore
2022-01-11 pmraps
* pt_PT guide first test build
2021-12-27 pmraps
* pt_PT translation and figures update
2021-12-27 pmraps
* pt_PT translation and figures update
2021-12-26 pmraps
* pt_PT translations and figures update
2021-12-26 pmraps
* pt_PT adjust figures dpi
2021-12-21 pmraps
* pt_PT translations and figures update
2022-01-21 Moritz Münch
* minor typos, phrasing issues
2022-01-10 Christian Wehling
* F::Q Link to IRC channel inserted as entity
2022-01-08 Christian Wehling
* F::Q Even more improvements
2022-01-09 Christian Wehling
* FO formatting, Added parameter to PdfTarget...
2022-01-07 Frank H. Ellenberger
* Remove country codes from lang attribute and other minor formalities
2021-12-18 John Ralls
* Release Docs for GnuCash 4.9 (tag: 4.9)
2021-12-18 Frank H. Ellenberger
* Merge PR #242 into maint
2021-12-18 Christian Wehling
* F::Q - further improvements
2021-12-18 Frank H. Ellenberger
* Merge PR #233 into maint
2021-09-25 Christian Wehling
* L10N:de: Entfernen von spacing="compact" aus allen *list-Elementen
2021-10-03 Christian Wehling
* L10n:de GUIMenus, weitere Verbesserungen
2021-08-04 Frank H. Ellenberger
* Guide:C: Add a directory with datafiles for faster regeneration of images
2021-09-27 Christian Wehling
* Chapter "Online-Quotes" created.
2021-11-29 Frank H. Ellenberger
* Merge PR #232 into maint
2021-11-29 Frank H. Ellenberger
* Merge PR #219 into maint which is the English translation of PR #178
2021-11-29 Frank H. Ellenberger
* Remove several Autotools remains
2021-11-29 Frank H. Ellenberger
* Drop CI
2021-10-04 Geert Janssens
* Merge branch 'rm-HACKING' of https://github.com/usamimikamen-sk/gnucash-docs into maint
2021-10-03 Geert Janssens
* Add ghelp to the default target
2021-10-02 TANIGUCHI Yasuaki
* Removed the information of HACKING file from README.
2021-09-28 John Ralls
* Release Documentation for Gnucash 4.8 (tag: 4.8)
2021-09-28 Christian Wehling
* Bug 797950 Reconcilation docs don't mention automatic ...
2021-09-25 Christian Wehling
* L10N:de: Optimieren der Bildelemente
2021-09-22 TANIGUCHI Yasuaki
* Bug 797622 - Using ninja for gnucash-docs under jhbuild results in failure