forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2022
4608 lines (2304 loc) · 101 KB
/
ChangeLog.2022
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-12-31 Geert Janssens
* Generate the gresource xml file based on a list of resources
2022-12-31 Kaligula
* Translation update by Kaligula <[email protected]> using Weblate
2022-12-31 Geert Janssens
* Use relative paths to ui files
2022-12-31 Geert Janssens
* Some whitespace fixes
2022-12-31 Geert Janssens
* Keep ui files for optional modules within the module
2022-12-30 John Ralls
* Merge Bob Fewell's 'bug798673' into master.
2022-12-30 John Ralls
* Merge Bob Fewell's 'bug403979' into master.
2022-12-30 John Ralls
* Merge Bob Fewell's 'bug769256' into master.
2022-12-30 John Ralls
* Change all ... to … in files added by mainwin2.
2022-12-30 John Ralls
* Merge Bob Fewell's 'mainwin2' into master.
2022-12-30 John Ralls
* Merge Bob Fewell's 'reg-desc' into master.
2022-12-24 Christopher Lam
* [gnc-optiondb] add some more renamed options
2022-12-24 Christopher Lam
* [investment-lots] tidier cons instead of append
2022-12-24 Christopher Lam
* [investment-lots] use higher order functions, instead of lambdas
2022-12-24 Christopher Lam
* [investment-lots] more succinctly add chart and table
2022-12-24 Christopher Lam
* [investment-lots] ST/LT grouping option enables LT gain option
2022-12-24 Christopher Lam
* [investment-lots] delete-trailing-whitespace
2022-12-23 John Ralls
* Replace ... with … in all translatable strings.
2022-12-23 John Ralls
* Fix some unknown symbol warnings in reports.
2022-12-23 John Ralls
* Merge Brad McBride's Investment Lots Report into master.
2022-12-23 John Ralls
* Update investment lots report to new options API. (invst-lots)
2022-11-13 mcbridebt
* Add investment-lots.scm report
2022-12-23 John Ralls
* Merge John Ralls's c++options reprise into master.
2022-12-23 John Ralls
* [c++options] Convert remaining reports and tests to new API. (jralls/c++options)
2022-12-22 John Ralls
* Convert non-trep-based report tests to new API
2022-12-23 John Ralls
* [c++options] Convert trep-engine, trep-based-reports, and tests to new API
2022-12-22 John Ralls
* # This is a combination of 2 commits. # This is the 1st commit message:
2022-08-01 John Ralls
* [options] Update stylesheets to use new API.
2022-08-01 John Ralls
* [options] Update documentation to reflect C++ options.
2022-12-22 John Ralls
* Convert report core and html to new options API.
2022-08-26 John Ralls
* [options] Provide gnc:register-multichoice-callback-option.
2022-12-22 John Ralls
* Defer calling the bl::format::str()'s c-str() until point of use.
2022-12-20 aleksej0R
* Translation update by aleksej0R <[email protected]> using Weblate
2022-10-24 Geert Janssens
* A few minor c++ tweaks regarding variables
2022-10-24 Geert Janssens
* Drop help message for gtk options
2022-10-24 Geert Janssens
* Replace string literal 'gnucash' with PROJECT_NAME parameter where it makes sense
2022-10-20 Geert Janssens
* Change remaining references to 'help' into 'manual'
2022-12-19 John Ralls
* Merge branch 'maint'
2022-12-18 Christopher Lam
* [assistant-stock-transaction] handle sign reversal outside create_split
2022-12-17 John Ralls
* Release GnuCash 4.13 (tag: 4.13)
2022-12-17 John Ralls
* [register] Don't usleep on Apple or Win32.
2022-12-17 John Ralls
* [import] Don't leak returns of g_utf8_normalize.
2022-12-17 John Ralls
* Merge weblate translations into maint.
2022-12-17 帅是我2
* Translation update by 帅是我2 <[email protected]> using Weblate
2022-12-17 YOSHINO Yoshihito
* Translation update by YOSHINO Yoshihito <[email protected]> using Weblate
2022-12-17 John Ralls
* [import matcher] Don't normalize text when appending descriptions or notes.
2022-12-17 John Ralls
* [register] Delay post-ime reset of the selection.
2022-12-17 Christopher Lam
* [options.scm] typo fix - no commas needed in guile
2022-12-16 Robert Fewell
* Change the balance limit icon if both limits are zero
2022-12-17 Geert Janssens
* Bug 798694 - Cursor in the wrong place after pasting with auto-completion
2022-12-17 YOSHINO Yoshihito
* Translation update by YOSHINO Yoshihito <[email protected]> using Weblate
2022-12-16 John Ralls
* Bug 798657 - Import Summary language is wrong
2022-12-16 Geert Janssens
* Make boost::locale::gettext use the proper locale
2022-12-13 Robert Fewell
* Add some tests for the account functions
2022-12-13 Robert Fewell
* Allow the balances of sub accounts to be used in limits
2022-12-13 Robert Fewell
* Use new tree view function to display icon in COA
2022-12-13 Robert Fewell
* Add account balance test functions to gnc-ui-balance
2022-12-13 Robert Fewell
* Add new function to gnc-tree-view to display icon column
2022-12-13 Robert Fewell
* Add entry to dialog-account to set account balance limits
2022-12-13 John Ralls
* Bug 798680 - Not able to match a reverse transaction of a...
2022-12-13 John Ralls
* [ofx import] Propose parent account unless last account is right commodity. (jralls/bug798681)
2022-12-13 John Ralls
* [ofx import] Make automatic account creation work.
2022-12-12 John Ralls
* [ofx import] Fix the parentage of the select account windows.
2022-12-10 John Ralls
* Bug 798681 - Previously imported investment income transactions may not be filtered.
2022-12-10 John Ralls
* [ofx import] Don't set online-id on income accounts.
2022-12-08 John Ralls
* [ofx import] Extract functions from ofx_proc_transaction_cb.
2022-12-08 John Ralls
* [ofx import] Typedef OfxTransactionData.
2022-12-10 John Ralls
* [import matcher] Make related functions adjacent
2022-12-13 John Ralls
* [import backend] Extract function hash_account_online_ids.
2022-12-12 John Ralls
* Bug 798664 - Result of 'gnucash --nofile' is marked dirty
2022-12-11 John Ralls
* Undo unintended change in Bug 798679 commit.
2022-12-11 John Ralls
* [aqb] Restore compilation checks for AQBanking 6.4
2022-12-11 John Ralls
* Bug 798679 - Fullwidth characters cannot be pasted as-is in register fields
2022-12-10 YOSHINO Yoshihito
* Translation update by YOSHINO Yoshihito <[email protected]> using Weblate
2022-12-09 Robert Fewell
* Add some functions that would allow adding a balance limit to accounts
2022-12-05 Milo Ivir
* Translation update by Milo Ivir <[email protected]> using Weblate
2022-12-05 Christopher Lam
* [account-piecharts] drill-down piechart: tree-depth is at most 6
2022-12-04 John Ralls
* Fix missing trailing quote on project-id-version.
2022-12-04 John Ralls
* Merge potfile for 4.13 String Freesw.
2022-11-25 Robert Fewell
* Bug 403979 - Balance column shows only low order digits when too narrow
2022-11-30 Simon Arlott
* Translation update by Simon Arlott <[email protected]> using Weblate
2022-11-29 Robert Fewell
* Bug 798653 - Schedule Calendar event description pop up window does not track mouse position
2022-11-29 Geert Janssens
* Bug 798672 - Preferences are not saved nor loaded, ERROR <GLib-GIO> g_settings_new_full: assertion 'schema != NULL' failed
2022-11-27 Christopher Lam
* Reports: add missing modules
2022-11-27 Christopher Lam
* Merge branch 'maint'
2022-11-27 Christopher Lam
* Bug 798669 - Multicolumn Balance Sheet not printing exchange rates
2022-11-25 Vesna Micajkova
* Translation update by Vesna Micajkova <[email protected]> using Weblate
2022-11-25 John Ralls
* Merge Marco Scardovi's QofFakeQuery fix into maint.
2022-11-24 Marco Scardovi
* Fix test
2022-11-24 Robert Fewell
* Bug 798545 - Crash when updating document link on vendor bill
2022-11-24 Robert Fewell
* Bug 760274 - The Statusbar "forgets" when register doesn't have focus
2022-11-24 Robert Fewell
* Add missing gtk_tree_path_free to gnucash-item-list.c
2022-11-24 Robert Fewell
* Add missing gtk_tree_path_free to gnc-plugin-budget.c
2022-11-23 Christopher Lam
* Merge branch 'maint-budget' into maint #1468
2022-11-20 Kaligula
* Translation update by Kaligula <[email protected]> using Weblate
2022-11-20 Christopher Lam
* [assistant-stock-transaction] from Bug 798004 cash to offset fee
2022-11-20 Christopher Lam
* [ifrs-report] From Bug 798004 allow Cr cash to offset Dr fee
2022-11-19 Kaligula
* Translation update by Kaligula <[email protected]> using Weblate
2022-11-18 Christopher Lam
* [gnc-budget] gnc_budget_get_account_period_note returns a const
2022-11-18 Christopher Lam
* [gnc-budget] use operator[] instead of find() and insert()
2022-11-18 Frank H. Ellenberger
* Merge branch PR #1465 into maint
2022-11-17 Vesna Micajkova
* Translation update by Vesna Micajkova <[email protected]> using Weblate
2022-11-15 Vesna Micajkova
* Translation update by Vesna Micajkova <[email protected]> using Weblate
2022-11-15 Christopher Lam
* Merge branch 'maint'
2022-11-14 luz paz
* Fix typos and whitespace in test
2022-11-13 Kaligula
* Translation update by Kaligula <[email protected]> using Weblate
2022-11-12 Kaligula
* Translation update by Kaligula <[email protected]> using Weblate
2022-11-12 Vesna Micajkova
* Translation update by Vesna Micajkova <[email protected]> using Weblate
2022-11-11 Robert Fewell
* Change the size for the dialog account commodity
2022-10-10 Robert Fewell
* Bug769256 - Change New Account Dialog
2022-11-10 Christopher Lam
* gtk_tree_model_get will allocate char* which must be g_freed.
2022-11-08 Frank H. Ellenberger
* L10N: Prepare macedonian (mk)
2022-11-07 Christopher Lam
* [import-main-matcher] bug: test str from the string hash provided
2022-11-05 Robert Fewell
* Remove surplus function recnWindow_add_widget
2022-11-05 Robert Fewell
* Remove gnc-reconcile-window-ui.xml
2022-11-05 Robert Fewell
* Reimplement macOS menubar for reconcile window
2022-11-05 Robert Fewell
* Remove depreciated GtkUIManager and friends from Reconcile window
2022-11-06 Robert Fewell
* Fix missing g_free for the main window 'res_name'.
2022-11-06 Robert Fewell
* Refactor the adding of the tooltips to the report menu items
2022-11-06 Robert Fewell
* Need to free the GncMainWindowActionData
2022-11-05 Robert Fewell
* Move gnc_plugin_page_get_simple_action_group in source file.
2022-11-05 Robert Fewell
* Remove all references to 'page-uri' for plugin pages
2022-11-05 Robert Fewell
* Add a couple of changes dealing with GtKBuilder object
2022-11-05 Robert Fewell
* Add a couple of descriptions to plugin functions
2022-11-05 Robert Fewell
* Remove some unused variables
2022-11-04 Robert Fewell
* Fix the file print menu item
2022-11-04 Robert Fewell
* Update some function descriptions
2022-11-02 Robert Fewell
* Remove actions_name from plugin page as not required.
2022-11-02 Robert Fewell
* Remove tracking GtkAccelGroup from plugin page as not required
2022-11-02 Robert Fewell
* Fix missing menu tooltips in the register
2022-11-02 Robert Fewell
* Fix updating of the menu for invoice, bill and expense
2022-11-02 Robert Fewell
* Fix updating of the menu for the configuration items
2022-10-31 Robert Fewell
* Add some main window function descriptions
2022-10-31 Robert Fewell
* Rename gnc_main_window_update_menu
2022-10-31 Robert Fewell
* Remove a couple of unused functions
2022-10-31 Robert Fewell
* Rename gnc_main_window_menu_item_vis_by_action
2022-10-31 Robert Fewell
* Add function description for gnc_main_window_menu_find_menu_item
2022-10-31 Robert Fewell
* Rename main window toolbar function.
2022-10-31 Robert Fewell
* Use the added defines for the g_menu_item_set_attribute function
2022-10-31 Robert Fewell
* Update the menu and tool utils
2022-10-28 Robert Fewell
* Use GtkApplicationWindow as basis for GncMainWindow
2022-10-28 Robert Fewell
* Remove the hash table merged_actions_table
2022-10-28 Robert Fewell
* Fix the binding of the extra business items when gnucash started with --nofile
2022-10-28 Robert Fewell
* Hide the Transaction and Schedule menus at Window setup
2022-10-28 Robert Fewell
* Fix accelerator keys for multiple windows.
2022-10-28 Robert Fewell
* Changes to window menu entries
2022-10-28 Robert Fewell
* Main window changes for mac's
2022-10-28 Robert Fewell
* Setup redirection of menu bar tooltips
2022-10-28 Robert Fewell
* Setup redirection of tool bar tooltips
2022-10-28 Robert Fewell
* Remove all references to GncDisplayItem
2022-10-28 Robert Fewell
* Remove function gnc_main_window_all_ui_set_sensitive
2022-10-28 Robert Fewell
* Remove gnc_main_window_actions_updated from gnc_main_window
2022-10-28 Robert Fewell
* Misc changes to remove references to GtkUIManger
2022-10-28 Robert Fewell
* Remove some more GtkUIManager functions from gnc-main-window
2022-10-28 Robert Fewell
* Remove some GtkUIManger functions
2022-10-28 Robert Fewell
* Fix creating a new file
2022-10-28 Robert Fewell
* Fix binding extra business tool bar item to preference setting
2022-10-28 Robert Fewell
* Redfine gnc_plugin_update_actions
2022-10-28 Robert Fewell
* Fix visibility of StockAssistant
2022-10-28 Robert Fewell
* Fix displaying of the extra menu
2022-10-28 Robert Fewell
* Fix Edit/Assign payment in business plugin
2022-10-30 Robert Fewell
* Remove remaining old ...ui.xml files
2022-10-28 Robert Fewell
* Replace gnc_plugin_page_get/create_action_group
2022-10-28 Robert Fewell
* Change all references to plugin_class->actionsb
2022-10-28 Robert Fewell
* Replace gnc_plugin_update_actions
2022-10-28 Robert Fewell
* Remove last bits of gtk toggle actions
2022-10-28 Robert Fewell
* Remove setup for important actions
2022-10-28 Robert Fewell
* Change to use short labels in toolbar
2022-10-28 Robert Fewell
* Changes for embedded window and sx dialog
2022-10-28 Robert Fewell
* Changes for report plugin pages
2022-10-31 Christopher Lam
* [gtest-qofevent.cpp] comprehensive tests for qofevent
2022-10-29 Christopher Lam
* [budget-feature] move unset_feature call to gnc_budget_gui_delete_budget
2022-10-31 Christopher Lam
* [test-qofbook] add tests for unknown features
2022-10-30 Robert Fewell
* Changes for Aqbanking plugin
2022-10-28 Robert Fewell
* Changes for business invoice pages
2022-10-28 Robert Fewell
* Changes for business owner pages
2022-10-28 Robert Fewell
* Changes for business pages
2022-10-30 Robert Fewell
* Changes for sx plugin pages
2022-10-28 Robert Fewell
* Changes for budget plugin pages
2022-10-28 Robert Fewell
* Changes for register plugin pages
2022-10-28 Robert Fewell
* Changes for account plugin pages
2022-10-28 Robert Fewell
* Start of changes to load main window menu items on page focus
2022-10-28 Robert Fewell
* Menu changes for cut/copy and paste
2022-10-28 Robert Fewell
* Update for the file/window/tab radio buttons
2022-10-30 Robert Fewell
* Add similar changes to the rest of the plugins
2022-10-28 Robert Fewell
* Add gnc-plugin-basic-commands menu items
2022-10-28 Robert Fewell
* Initial change to add default plugin menu items
2022-10-28 Robert Fewell
* Initial changes for the main window
2022-10-30 Robert Fewell
* Change GtkGroupAction and GtkActions
2022-10-28 Robert Fewell
* Add a couple of util functions to find items in the menu bar and toolbar
2022-10-28 Robert Fewell
* Initial change to plugin page source files
2022-10-30 Robert Fewell
* Initial change to plugin source files
2022-10-28 Robert Fewell
* Initial change to allow change of GtkAction to GAction
2022-10-29 John Ralls
* Bug 798640 - Segfault when running saved report
2022-10-29 John Ralls
* Merge John Ralls's 'aqb-file-import' into master.
2022-10-28 John Ralls
* Replace G_MODULE_EXPORT with static.
2022-10-11 John Ralls
* Implement AQBanking import selection dialog directly in Gtk.
2022-10-22 John Ralls
* Accomplish Doxygen-doc FIXME for gnc_ab_maketrans.
2022-10-22 John Ralls
* Refactor gnc_file_aqbanking_import.
2022-10-18 John Ralls
* Update macOS dependencies tarball to support AQBanking version update.
2022-10-03 John Ralls
* [AQB] Require AQBanking 6.4.0 and Gwenhywfar 5.8.0.
2022-10-29 Christopher Lam
* Merge branch 'maint'
2022-10-29 Christopher Lam
* Merge branch 'maint'
2022-10-29 Christopher Lam
* Merge branch 'maint'
2022-10-29 Christopher Lam
* [test-qofbook.c] add test for gnc_features_set_unused
2021-12-02 Christopher Lam
* [gnc-features.cpp] backport gnc_features_set_unused from master
2021-12-02 Christopher Lam
* [qofbook.cpp] backport qof_book_unset_feature from master
2022-10-28 John Ralls
* Merge John Ralls's 'Bug798614' into maint.
2022-10-28 John Ralls
* Bug 798649 - Crash when closing Edit Style Sheets dialog while...
2022-10-28 Christopher Lam
* [qofbook.cpp] deprecate qof_book_get_features
2022-10-25 Christopher Lam
* [gnc-features.cpp] convert to cpp
2022-10-26 Christopher Lam
* [test-qofbook] basic features test
2022-10-25 Frank H. Ellenberger
* po/README: Remove relics from ancient context forms
2022-10-23 이정희
* Translation update by 이정희 <[email protected]> using Weblate
2022-10-23 Christopher Lam
* [gnc-plugin-page-sx-list] don't disable Edit/Delete at startup
2022-10-23 Christopher Lam
* [test-ifrs-cost-basis] amend tests to accommodate extra column
2022-10-23 Christopher Lam
* [ifrs-cost-basis] compare register vs calculated capgain per transaction
2022-10-20 John Ralls
* Update macOS CI dependencies for master branch.
2022-08-21 Geert Janssens
* Update documentation invocation to use gnucash-manual instead of gnucash-help
2022-10-18 John Ralls
* Accomodate WebKit package version update to webkit2gtk-4.1.
2022-10-18 Christopher Lam
* xxxgtk_textview_get_text returns a char* which must be freed, redux
2022-10-17 Milo Ivir
* Translation update by Milo Ivir <[email protected]> using Weblate
2022-10-17 Abdul Quddos (AQN)
* Translation update by Abdul Quddos (AQN) <[email protected]> using Weblate
2022-10-18 Christopher Lam
* xxxgtk_textview_get_text returns a char* which must be freed
2022-10-17 John Ralls
* [price-quotes] Sort and format source list.
2022-10-17 John Ralls
* [price-quotes] Enable gnucash-cli to retrieve preferences on macOS.
2022-10-08 Christopher Lam
* [assistant-stock-transaction] input positive capgains for Credit income acct
2022-10-14 John Ralls
* [price-quotes] Fix setting alphavantage API key.
2022-10-14 John Ralls
* Merge branch 'price-quotes-cpp'
2022-10-13 John Ralls
* [price-quotes] Handle short error strings from finance-quote-wrapper.
2022-10-13 John Ralls
* [price quotes] Pass short errors to gnc-quotes.
2022-10-13 John Ralls
* [price-quotes] Date::Manip is no longer required.
2022-10-13 John Ralls
* [price-quotes] Remove m_ready and usable() from GncQuoteSource.
2022-10-13 John Ralls
* [price-quotes] Throw instead of returning if there aren't any commodities to quote.
2022-10-13 John Ralls
* [price-quotes] Remove F::Q version format check.
2022-10-13 John Ralls
* [price-quotes] General typo fixes and code cleanup.
2022-10-13 John Ralls
* [price-quotes] Use c++ syntax for PricesDialog decl.
2022-10-13 John Ralls
* [price-quotes] Rename Gnucash::quotes_info to Gnucash::check_finance_quote.
2022-10-13 John Ralls
* [price-quotes] Fix version retrieval.
2022-10-13 John Ralls
* [price-quotes] Reformat test quote response strings to one line per quote.
2022-10-12 Philippe Lamare
* Translation update by Philippe Lamare <[email protected]> using Weblate
2022-10-10 Pablo Fernandez
* Translation update by Pablo Fernandez <[email protected]> using Weblate
2022-10-10 Guille Lopez
* Translation update by Guille Lopez <[email protected]> using Weblate
2022-10-11 John Ralls
* Instrument failure to set the account when creating a split.
2022-10-10 Robert Fewell
* Add a function to combocell to set the search behaviour
2022-10-10 Robert Fewell
* Change the Register description layout cell type.
2022-10-10 Robert Fewell
* Change Register popup width
2022-10-09 Mike Alexander
* Merge branch 'maint'
2022-10-09 Mike Alexander
* Compatibility with XCode's "new build system"
2022-10-06 이정희
* Translation update by 이정희 <[email protected]> using Weblate