forked from Gnucash/gnucash-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
41738 lines (21208 loc) · 813 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
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
2021-09-26 TANIGUCHI Yasuaki
* Remove unused or outdated files. * gnucash-docs.spec.in * CMakeNotes.txt * HACKING
2021-09-25 TANIGUCHI Yasuaki
* Remove ScrollKeeper's OMF file.
2021-09-22 TANIGUCHI Yasuaki
* Remove autotools.
2021-09-25 John Ralls
* Fix misaligned copy/paste (tag: 4.7)
2021-09-25 John Ralls
* Release Documentation for GnuCash 4.7
2021-09-25 Frank H. Ellenberger
* Merge PR_#226 into maint
2021-09-25 TANIGUCHI Yasuaki
* Workaround patch for install gnc-locale-${lang}.dtd for CMake. This patch is for PR #207.
2021-08-31 TANIGUCHI Yasuaki
* Add WayBack Machine information for HTML Help Workshop download.
2021-08-24 TANIGUCHI Yasuaki
* Update README and other files.
2021-09-24 Frank H. Ellenberger
* Minor fix on PR #184
2021-09-24 Frank H. Ellenberger
* Merge PR_#184 into maint
2021-06-25 Christian Wehling
* L10N:de: Übersetzung von Help_ch_Customize.xml
2021-09-24 TANIGUCHI Yasuaki
* Replace COPYING file from GPL 3 to GPL 2.
2021-09-23 TANIGUCHI Yasuaki
* Apply dtd-locale to help/de/Help_para-assist-intro.xml.
2021-08-20 TANIGUCHI Yasuaki
* Add ENTITY(s) prefix guisubmenu, guimenuitem, and guilabel as gsm, gmi, and gl, respectively.
2021-08-22 TANIGUCHI Yasuaki
* Move untranslated entity messages from gnc-docbookx.dtd to each locale file.
2021-08-20 TANIGUCHI Yasuaki
* Make DTD ENTITY(s) translatable. See docbook/README. Bug 798273 - Consider a entity import system like in docbook-xsl
2021-08-04 Frank H. Ellenberger
* Guide:C:Currency: update images Part 1
2021-09-22 Geert Janssens
* Fix license file
2021-09-22 Frank H. Ellenberger
* Merge branch 'PR_#198' into maint
2021-09-22 Frank H. Ellenberger
* Merge branch 'PR_#197' into maint
2021-09-22 Geert Janssens
* Add license file to git tracking
2021-09-21 Geert Janssens
* Install license files COPYING and COPYING-DOCS
2021-09-19 Frank H. Ellenberger
* Help/de: Crop Export screenshots
2021-06-26 Christian Wehling
* L10N:de: Beschreibung der Ex- und Import-Assistenten der Kontenstruktur
2021-09-18 Frank H. Ellenberger
* Merge branch 'PR_#192' into maint
2021-09-11 Christian Wehling
* Remove some unresolved ID reference from Help-Files
2021-09-09 Frank H. Ellenberger
* Drop travis-ci in favour of github worflows
2021-09-09 Frank H. Ellenberger
* Shrink .gitignore to autotools inserts
2021-09-09 Frank H. Ellenberger
* Merge branch 'PR_#213' into maint
2021-09-09 Frank H. Ellenberger
* Remove obsolete appendixesalso from italian guide
2021-09-09 Frank H. Ellenberger
* Merge branch 'PR_#210' into maint
2021-09-05 Frank H. Ellenberger
* Guide/C: Note on fieldnames in CSV import
2021-08-24 TANIGUCHI Yasuaki
* * {guide,help}/*/.gitignore were deleted completely.
2021-08-22 TANIGUCHI Yasuaki
* Remove obsolete appendix B about FAQ from guide.
2021-08-22 TANIGUCHI Yasuaki
* Remove obsolete appendix C about VAT from guide.
2021-08-04 TANIGUCHI Yasuaki
* Add a comment for translators.
2021-07-20 TANIGUCHI Yasuaki
* Unify words and account names. Fix minor typos and tags. Add commas to the numbers. Add some tags. Fix according to the review comments.
2021-08-04 TANIGUCHI Yasuaki
* Change the system order of procedure. &lin;, &mac;, &win;
2021-08-04 TANIGUCHI Yasuaki
* Fix comment below: https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r680355097
2021-08-04 TANIGUCHI Yasuaki
* Fix comment below: - https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r680359545
2021-08-04 TANIGUCHI Yasuaki
* Fix comments below: - https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r680356731 - https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r680358015 - https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r680359138
2021-08-04 TANIGUCHI Yasuaki
* Fix comment below: https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r680356197
2021-08-04 TANIGUCHI Yasuaki
* Fix comments bellow: - https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r682260218 - https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r680355097
2021-07-20 TANIGUCHI Yasuaki
* Change a paragraph to itemizedlist to make translation easier. Change a hardcoded numbered list to docbook numbered list. Replace starting balance with opening balance. Fix typos and minor mistakes. Fix RewordMiles account name. Change CoA to Chart of Accounts Unify currency expression like 12,345 USD for foreign currencies. Normailze account names. Change one of the note because English sentenses are too difficult. Change the date format like Jan. 2, 2020. Replace Price Editor with Price Database. Change +ve and -ve to positive and negative, respectively. Fix according to the pull request comment.
2021-07-31 TANIGUCHI Yasuaki
* Fix comment https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r676279712
2021-07-31 TANIGUCHI Yasuaki
* Fix comment https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r680092489 and https://github.com/Gnucash/gnucash-docs/pull/192#discussion_r676052158a
2021-07-16 TANIGUCHI Yasuaki
* Fix typos. Change some itemizelist to variablelist. Remove extra spaces within inline tags for translation. Modify tags to make translation easier. Replace Finance::Quote with &app-fq;. Fix according to the comment https://github.com/Gnucash/gnucash-docs/pull/192 Added a space between a word and a tag. Replace misused acronyms with guilabels. Add spaces between words and tags to avoid word concatenation. Change German word Strg to English word Ctrl. Add replaceable tag, see https://github.com/Gnucash/gnucash-docs/pull/190#discussion_r671407584
2021-07-23 Frank H. Ellenberger
* Improve last commit (Guide:txns): Change in GTK3
2021-07-23 Frank H. Ellenberger
* Merge branch 'PR_#196' into maint
2021-07-20 Frank H. Ellenberger
* Merge PR #195 into maint
2021-07-20 Frank H. Ellenberger
* Merge PR #194 into maint
2021-07-20 Frank H. Ellenberger
* Merge PR #193 into maint
2021-07-18 TANIGUCHI Yasuaki
* Minor fix.
2021-07-17 TANIGUCHI Yasuaki
* Add replaceable tag, see https://github.com/Gnucash/gnucash-docs/pull/190#discussion_r671407584
2021-07-17 TANIGUCHI Yasuaki
* More markups.
2021-07-17 TANIGUCHI Yasuaki
* Add markups.
2021-07-17 TANIGUCHI Yasuaki
* Fix typos.
2021-07-17 TANIGUCHI Yasuaki
* Fix typos.
2021-07-16 TANIGUCHI Yasuaki
* Add spaces between words and tags to avoid word concatenation. Change German word Strg to English word Ctrl.
2021-07-16 TANIGUCHI Yasuaki
* Add spaces between words and tags to avoid word concatenation. Change German word Strg to English word Ctrl.
2021-07-15 TANIGUCHI Yasuaki
* Replace misused acronyms with guilabels.
2021-07-16 TANIGUCHI Yasuaki
* Added a space between a word and a tag.
2021-07-16 Frank H. Ellenberger
* Merge PR #189 into maint
2021-07-14 TANIGUCHI Yasuaki
* Add entities for Apache OpenOffice, LibreOffice, and a GnuCash file fin.c. Replace hardcorded Office Suite and path of fin.c with the entities. Replace k(thousand) with 000. Add commas into the numbers over 1,000 except user's input. Change Terminology's list from itemizedlist to variablelist. Move Car loan section before personal loan section. Fix some typos.
2021-07-16 Frank H. Ellenberger
* Move Overview before Basics
2021-07-16 Frank H. Ellenberger
* Merge PR #186 into maint
2021-07-15 TANIGUCHI Yasuaki
* Change parts name (Bug 788912 - "Part III. Managing Business Finances" is misleading)
2021-07-12 Frank H. Ellenberger
* Python Bindings: link examples in API docs
2021-07-14 Frank H. Ellenberger
* Mark guides import chapter as outdated
2021-07-14 TANIGUCHI Yasuaki
* Replace hardcoded part names with xlinks.
2021-07-14 TANIGUCHI Yasuaki
* Replace starting balance with opening balance. Add comma to the numbers over 1000.
2021-07-11 Frank H. Ellenberger
* Bug 798236 - Remove comment about swapped A/P & A/R terminology
2021-06-05 Frank H. Ellenberger
* Minor improvements in C and de Help Tips on alphavantage
2021-07-08 Frank H. Ellenberger
* L10N:de:Help: Image optimization (again)
2021-07-08 Frank H. Ellenberger
* L10N:de:Help: Main-window-callouts.png Registerkarte -> Reiter
2021-07-06 Frank H. Ellenberger
* L10N:de:Help: Verbessere Titel von GUI-Menus
2021-07-05 Frank H. Ellenberger
* Bug 798226 postprocessing: xmlformat
2021-07-05 TANIGUCHI Yasuaki
* Bug 798226 - minor mistakes in Tutorial and Concepts guide 2
2021-07-01 Christian Wehling
* L10n:de: Optimize the pic
2021-06-30 Frank H. Ellenberger
* L10N:de: Tip des Tages: Gleiche Reihenfolge in Bild und Beschreibung
2021-06-29 Christian Wehling
* L10N:de: de/Help_ch_Customize.xml Bildschirmfotos...
2021-06-26 John Ralls
* Release Documentation for GnuCash 4.6 (tag: 4.6)
2021-06-26 Frank H. Ellenberger
* Merge PR #179 into maint
2021-06-26 Christian Wehling
* L10N:de: Entfernen eines xref-Tags auf ein Screenshot- Objekt
2021-06-26 Frank H. Ellenberger
* postprocessing of xmlformat and Bug 798217: spacing
2021-06-26 Christian Wehling
* L10N:de: Beschreibung des Abgleichvorgangs für den Kontotyp...
2021-06-26 Frank H. Ellenberger
* Guide Overview: Update language statistics
2021-06-26 Frank H. Ellenberger
* minor fix on our xmlfomat
2021-06-26 Christian Wehling
* L10N:de: Noch einige Fehler mit ... korrigiert
2021-06-26 Frank H. Ellenberger
* Bug 798217 - minor mistakes in Tutorial and Concepts guide
2021-06-26 Frank H. Ellenberger
* Merge branch 'OS' into maint
2021-06-25 Frank H. Ellenberger
* Replace different writings of macos, linux … by entities
2021-06-25 Christian Wehling
* L10N:de: Noch einige Fehler korrigiert ...
2021-06-25 Frank H. Ellenberger
* Merge PR #174 into maint
2021-06-25 Frank H. Ellenberger
* L10N:de: Help GUIMenus - remove spourious ";"
2021-06-24 Christian Wehling
* L10N:de: Immmr mehr Verbesserung von Help_ch_GUIMenus.xml
2021-06-20 Christian Wehling
* L10N:de: Weitere Verbesserung von Help_ch_Account-Actions.xml und in
2021-06-24 Frank H. Ellenberger
* Merge PR_#173 into maint
2021-06-16 Christian Wehling
* L10N:de: Noch mehr Verbesserung von Help_ch_GUIMenus.xml
2021-06-05 Christian Wehling
* L10N:de: Übersetzung von Help_ch_Transactions.xml
2021-06-22 Frank H. Ellenberger
* Help/C: Image optimization
2021-06-22 Frank H. Ellenberger
* Help/C:update srccredit for Main-window-callouts
2021-06-22 Frank H. Ellenberger
* Update help/C/figures/Main-window-callouts + helper files
2021-06-22 Frank H. Ellenberger
* New help/de/figures/Main-window-callouts + helper files
2021-06-22 Frank H. Ellenberger
* Add ENTITY vers-last-2 for reference of major changes
2021-06-21 Frank H. Ellenberger
* Fix typo in splash.png name
2021-06-21 Frank H. Ellenberger
* Help/C: Insert Display Welcome Dialog Again?
2021-06-21 Frank H. Ellenberger
* Add 4 screenshots to help/{C|de}/figures, run optipng
2021-06-21 Frank H. Ellenberger
* Fix Help/C syntax, broken in last commit
2021-06-20 Frank H. Ellenberger
* Link new screens completely in C and partially in de
2021-06-20 Frank H. Ellenberger
* Add 3 screenshots to help/{C|de}/figures, run optipng
2021-06-20 Frank H. Ellenberger
* Remove unused images from our help/*/figures
2021-06-20 Frank H. Ellenberger
* workflows: separate HTML for faster results
2021-06-19 Frank H. Ellenberger
* Add distchech to workflows
2021-06-19 Frank H. Ellenberger
* Make calibre optional in cmake
2021-06-18 Frank H. Ellenberger
* New typo in README
2021-06-18 Frank H. Ellenberger
* Typo: Not Moby Dick
2021-06-18 Frank H. Ellenberger
* First github ci
2021-06-13 Christian Wehling
* L10N:de: Weitere Verbesserung von Help_ch_GUIMenus.xml
2021-05-31 Christian Wehling
* L10N:de: Weitere Verbesserung von Help_ch_Account-Actions.xml
2021-06-06 Thomas Kriegel
* L10N:de: Translation of ch_budgets & ch_dep
2021-06-07 Frank H. Ellenberger
* Merge branch 'PR_#168' into maint
2021-06-05 Frank H. Ellenberger
* Help: link Setup for Online Transactions in C, de
2021-05-31 Frank H. Ellenberger
* Help: Replace most <literallayout> by <screen>
2021-05-31 Frank H. Ellenberger
* Help pt: Add missing xmlns:xi parameters
2021-04-28 Christian Wehling
* L10N:de: Übersetzung von Help_ch_Account-Actions.xml
2021-05-29 Igor L. Vicente
* Fixes reference to Help Manual
2021-05-23 Frank H. Ellenberger
* Merge PR #166 into maint - except its merge
2021-05-19 Frank H. Ellenberger
* Replace most <literallayout> by <screen> for all LANG <> it
2021-05-22 Thomas
* L10N:de: Typo
2021-05-22 Thomas
* L10N:de: Typo
2021-05-22 Thomas
* L10N:de: Typo
2021-05-22 Thomas
* L10N:de: Typo
2021-05-22 Thomas
* Update ch_invest.xml
2021-05-22 Thomas
* L10N:de: Contributor ergänzt
2021-05-19 Frank H. Ellenberger
* L10N:de: guide ch_currency.xml: fix indentation
2021-05-19 Frank H. Ellenberger
* Merge PR #159 into maint
2021-05-19 Frank H. Ellenberger
* Merge PR #165 into maint
2021-05-19 Frank H. Ellenberger
* Merge PR #161 into maint
2021-05-19 Frank H. Ellenberger
* Merge PR #160 into maint
2021-05-19 Frank H. Ellenberger
* Merge PR #163 into maint
2021-05-19 Frank H. Ellenberger
* Merge PR #162 into maint
2021-05-19 Frank H. Ellenberger
* Merge PR #164 into maint
2021-05-18 Thomas
* L10N:de: ch_reports Typo
2021-05-18 Thomas
* L10N:de: Updatei ch_loans Typo
2021-05-18 Thomas
* L10N:de: ch_txns Typo
2021-05-18 Thomas
* L10N:de: ch_basics.xml Typo
2021-05-18 Thomas
* L10N:de: ch_oview.xml Typo
2021-05-18 Thomas
* L10N:de: gnucash-guide.xml Typo
2021-05-18 Thomas
* L10N:de: glossary Typo
2021-05-18 Thomas
* L10N:de: ch_bus_ap.xml Typo
2021-05-18 Thomas
* L10N:de: ch_bus_ar.xml Typo
2021-05-18 Thomas
* L10N:de: ch_bus_setup.xml Typo
2021-05-18 Thomas
* L10N:de: ch_bus_intro.xml Typo
2021-05-18 Thomas
* L10N:de: ch_currency.xml Typo
2021-05-18 Thomas
* L10N:de: ch_capgain Typo