forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2013
2788 lines (1394 loc) · 67.1 KB
/
ChangeLog.2013
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
2013-12-31 John Ralls
* Bug 721260 - Crash on startup: gnucash cannot handle default locale
2013-12-31 John Ralls
* Fix another broken build
2013-12-28 John Ralls
* Release 2.6.0
2013-12-28 John Ralls
* Add new files to POTFILES.in and POTFILES.skip (HEAD, trunk)
2013-12-28 Mike Evans
* A couple more edits. (origin/trunk, origin/HEAD)
2013-12-28 Mike Evans
* Update Last Translator and removed cruft.
2013-12-28 Mike Evans
* Update Amercan -> British translations.
2013-12-27 Geert Janssens
* Update gnome appdata file to pass validity check
2013-12-27 Cristian Marchi
* Update French translations thanks to Sébastien Villemot.
2013-12-27 Cristian Marchi
* Update Lithuanian translation. Thanks to Aurimas Fišeras.
2013-12-26 Geert Janssens
* Prevent gnc-numeric overflow in advanced portfolio report
2013-12-26 Cristian Marchi
* Update Italian translation.
2013-12-26 Geert Janssens
* Fix compile warning introduced in r23602
2013-12-26 Geert Janssens
* Bug 720646 - New Book Tabs on Windows
2013-12-26 Geert Janssens
* Don't create a second account hierarchy page when cancelling the Hierarchy Assistant
2013-12-26 Geert Janssens
* Make "New Book Options" dialog transient for its caller where possible
2013-12-25 John Ralls
* Add plugin example to plugins
2013-12-24 Geert Janssens
* Use same name for dialog and menu related to preconfigured reports
2013-12-24 Geert Janssens
* Revert "Bug 720646 - New Book Tabs on Windows"
2013-12-24 Geert Janssens
* Bug 720646 - New Book Tabs on Windows
2013-12-24 John Ralls
* Make the date help string translatable
2013-12-23 Geert Janssens
* Fix some warnings while creating a new book
2013-12-23 Geert Janssens
* Prevent account hierarchy assistant from opening a second account hierarchy upon completion
2013-12-23 John Ralls
* Bug 710823 - libofx can supply broken UTF-8 for account id
2013-12-22 John Ralls
* Bug 710824 - GnuCash should sanitise UTF-8 before serialising files
2013-12-22 Mike Alexander
* Update .gitignore to include recently added config macros.
2013-12-22 Mike Alexander
* Load old version 1 XML files without crashing.
2013-12-22 Geert Janssens
* Bug 720556 - The Tip of the Day preference isn't getting saved
2013-12-21 Cristian Marchi
* More update to Italian translation.
2013-12-21 Geert Janssens
* Drop double blanks from gschema strings.
2013-12-21 Geert Janssens
* Reset Warnings dialog: show translated warnings
2013-12-20 John Ralls
* Fix up and update strawberry perl URIs
2013-12-20 Cristian Marchi
* Another update to Italian Translation.
2013-12-20 John Ralls
* Suppress other register's blank transactions from General Ledger
2013-12-20 John Ralls
* Bug 720555 - General Ledger - Can't Enter Transaction Amounts
2013-12-20 John Ralls
* Bug 157247 - Asset account's "total" value should use most recent transaction prices
2013-12-20 John Ralls
* Extract-method on gnc_split_register_auto_calc
2013-12-20 John Ralls
* Rewrite apparently confusing comment.
2013-12-18 Cristian Marchi
* Update Dutch translation, copied from the Translation Project.
2013-12-18 Cristian Marchi
* Updated Lithuanian translation provided by Aurimas Fišeras.
2013-12-16 Geert Janssens
* Add missing macros to distribution and silence libtool warning
2013-12-15 Frank H. Ellenberger
* [23570] there was still one "_JP" although currently commented out
2013-12-15 John Ralls
* Change guide and help translation directories
2013-12-15 John Ralls
* Release 2.5.10
2013-12-15 John Ralls
* Rename some directories in src/import-export
2013-12-15 John Ralls
* Move gnc-warnings.c from POTFILES.skip to POTFILES.ignore
2013-12-15 John Ralls
* Fix ax_pkg_swig.m4 filename.
2013-12-15 John Ralls
* Revert a stray, unrelated change from r23556
2013-12-15 John Ralls
* BUG 336843 (Attach images/files/urls to transactions):
2013-12-15 John Ralls
* Fix missing xaccTransCommitEdit() from r23466
2013-12-14 John Ralls
* Bug 619478 - Build warning in html/gnc-html-webkit.c
2013-12-14 Geert Janssens
* SWIG version updates
2013-12-14 Geert Janssens
* Guile 1.8 fixes for r23556 and r23557
2013-12-13 Cristian Marchi
* Update Italian translation.
2013-12-13 Geert Janssens
* Bug 719481 - GnuCash report crashes with Guile2
2013-12-13 Geert Janssens
* Use scm_[to/from]_utf8_string instead of scm_[to/from]_locale_string as per guile recommendation
2013-12-13 Mike Evans
* Move customer, bill, and invoice importers form the business menu to the file menu.
2013-12-13 Mike Evans
* Remove empty file.
2013-12-13 Frank H. Ellenberger
* Fix of [23550]: Translator comments don't like empty comment lines.
2013-12-13 Frank H. Ellenberger
* Update translation into Arabic language to 44% completion on trunk by عبدالسلام عبدالعزيز <[email protected]>
2013-12-12 Frank H. Ellenberger
* Tell translators where to adjust their credits.
2013-12-12 Mike Alexander
* Ignore missing accounts in gnc:filter-accountlist-type to avoid an assert.
2013-12-12 Mike Alexander
* Ignore XCode projects
2013-12-12 Mike Alexander
* Check for null account pointers in gnc_tree_view_account_set_selected_accounts.
2013-12-11 Frank H. Ellenberger
* Port of "Completion of translation into Arabic language by 55%" by abdulsalam alshilash
2013-12-11 Frank H. Ellenberger
* Appendix to [23539] update POTFILES.in
2013-12-11 Geert Janssens
* Build svn releases with documentation from a matching branch
2013-12-11 Geert Janssens
* Bug 720235 - Python bindings should load environment file just like gnucash does
2013-12-10 Mike Alexander
* Fix r23536: got the 'closing keyword wrong in a couple of places
2013-12-10 Mike Alexander
* Change various reports to find book closing transactions without pattern matching
2013-12-10 Mike Alexander
* Add the ability to search for transactions that are, or are not, book closing entries.
2013-12-10 Geert Janssens
* Ensure that opening an existing book never opens an empty main window.
2013-12-10 John Ralls
* Bug 705714 - QIF Import - File selection pop-up is not on top during qif import
2013-12-10 John Ralls
* QifImport: Fix crash from attempting to import an empty file.
2013-12-10 John Ralls
* Qif Import Assistant: Don't disable the whole dialog, just the Forward button
2013-12-09 John Ralls
* Bug 632588 - Scrub doesn't fix missing currency
2013-12-09 John Ralls
* Fix missing identifier from r23520
2013-12-08 Geert Janssens
* Fix (harmless) report warnings as reported in bug 639371
2013-12-08 Geert Janssens
* Long term fix for wrong version number part of bug 639371
2013-12-08 Geert Janssens
* Remove obsolete conditional that's never triggered anymore
2013-12-08 Cristian Marchi
* Updated French translation and glossary, thanks to Sébastien Villemot.
2013-12-08 Geert Janssens
* Fix report background image loading on Windows
2013-12-07 Frank H. Ellenberger
* Bug 711317 - Indian Rupee Symbol appears as "?" marks
2013-12-07 John Ralls
* Fix missing prototype warning from r23494.
2013-12-07 Geert Janssens
* Bug 627575 - Stylesheet names with non-alphanumeric characters and saved-reports -- addendum
2013-12-07 Geert Janssens
* Bug 627575 - Stylesheet names with non-alphanumeric characters and saved-reports
2013-12-07 Mike Alexander
* Don't add a \n to the beginning of the split memo, account, or amount lists. Pango seems to ignore it, but it really shouldn't be there.
2013-12-07 Mike Alexander
* Fix bug 653594 related to check printing. This bug has two parts. The original bug was that the wrong split is sometimes used to print the check. In the comments a second problem was mentioned: sometimes the wrong split is omitted from the split list in formats that print all the splits.
2013-12-07 Mike Alexander
* Protect against null account pointers in a couple of place to avoid asserts.
2013-12-07 Mike Alexander
* Protect gnc_mktime against bad dates.
2013-12-05 John Ralls
* Test for overflow limits in gnc_numeric_add.
2013-12-05 John Ralls
* Handle RAND_MAX < 2^32 in get_random_gint64()
2013-12-05 Geert Janssens
* Multi-currency "Post invoice" improvements
2013-12-05 Geert Janssens
* Bug 630578 - current date instead of posting date in exchange rate, when posting a bill
2013-12-04 Geert Janssens
* Bug 715123 - Post invoice problem, cannot unpost
2013-12-04 Christian Stimming
* Fix cutecash build: Calling the iso-currencies-to-c script can directly use the unchanged .in script because we call the GUILE_EXECUTABLE directly from cmake.
2013-12-04 Frank H. Ellenberger
* Update german glossary
2013-12-04 Mike Alexander
* Fix bug 719521. The two radio buttons were both there, but one on top of the other.
2013-12-03 Christian Stimming
* Fix ugly typo in string.
2013-12-03 Christian Stimming
* Update German translation. Still 690 to go.
2013-12-02 John Ralls
* Bug 719726 - Click on File -> Open seg-faults
2013-12-02 John Ralls
* Bug 708526 - GnuCash Crashes when opening About page
2013-12-02 John Ralls
* Remove src/gnome-utils/gnc-warnings.c from POTFILES.in
2013-12-02 John Ralls
* Protect older GCCs from -Wno-invalid-source-encoding
2013-12-02 Geert Janssens
* Fix python test
2013-12-02 Geert Janssens
* GSettings: only load backend when installed
2013-12-01 Mike Alexander
* Update progress bar while writing price DB as well as while reading it.
2013-12-01 John Ralls
* Make that Release 2.5.9
2013-12-01 John Ralls
* Release 2.5.90
2013-12-01 John Ralls
* Ensure that all KVP changes are properly marked dirty and committed.
2013-11-30 Mike Evans
* Bug 710871 - Python site-packages not found when not installed to default location using --prefix
2013-11-30 John Ralls
* Fix windows build for r23452
2013-11-29 Geert Janssens
* Improve cond-expand/eval-when usage based on feedback from the guile developers
2013-11-29 Geert Janssens
* Bug 707311 - Tax Invoice fails to open when using guile 2 - addendum
2013-11-29 Mike Evans
* Bug 715184 - Bill or Invoice; a new Bill gives a new Invoice
2013-11-29 Mike Alexander
* Try to make the python bindings tests work with an out of source tree build. This is almost ok, but it uses the schemas from the install tree.
2013-11-29 Mike Alexander
* Make the test-dynload test work in the X11 version on MacOSX.
2013-11-28 Christian Stimming
* Remove annoying extra question before overwriting transfer fields by template.
2013-11-28 Christian Stimming
* Update German translation. Still 790 to go, sigh.
2013-11-28 Christian Stimming
* Win32: Update aqbanking versions
2013-11-28 John Ralls
* Bug 704506 - Connection loss to mysql after resume from hibernation
2013-11-28 John Ralls
* test_gnc_setlocale: Print diagnostic message, replacing comment.
2013-11-28 John Ralls
* Stop leaking and re-inserting Split slots
2013-11-26 Geert Janssens
* Fix price quotes installation on Windows
2013-11-26 Geert Janssens
* Fix line-ending styles on a few windows scripts
2013-11-26 Geert Janssens
* Set proper EOL style for windows vbs script
2013-11-26 Geert Janssens
* Report the proper minimum version for libgoffice when not found at configure time
2013-11-26 Geert Janssens
* Fix several test failures under guile 2 with auto compile enabled
2013-11-26 Geert Janssens
* Bug 712299 - Tax Invoice with guile 2 doesn't display currency symbols (second attempt)
2013-11-26 Geert Janssens
* Preferences fixes
2013-11-26 Geert Janssens
* Guile2: fix two tests in report system
2013-11-26 Mike Alexander
* Work around WebKit bug 119003 by flushing events when removing a page from a window. See <https://bugs.webkit.org/show_bug.cgi?id=119003>
2013-11-25 John Ralls
* Fix sometime crash in test-xml-pricedb
2013-11-25 John Ralls
* Bug 644044 - Lots: SQL backend loses link to Gain/Loss Txn
2013-11-25 John Ralls
* TEMPORARY -- REBASE THIS OUT
2013-11-24 John Ralls
* Fix make check after r23429 broke it.
2013-11-24 John Ralls
* Work around Clang whining about UTF-8
2013-11-24 Christian Stimming
* More German translation update. Still approx. 900 strings to go...
2013-11-24 Geert Janssens
* When an account or budget is deleted, drop any associated saved state
2013-11-24 Geert Janssens
* Register2: improve sort functionality
2013-11-24 Geert Janssens
* Bug 710905 - Column withs, visibility, order and sort order not saved and restored
2013-11-22 Mike Alexander
* Update the progress bar while loading the price DB from an XML file.
2013-11-22 Cristian Marchi
* Update Italian translation.
2013-11-22 Geert Janssens
* Suppress a few harmless state file related warnings at startup
2013-11-22 Geert Janssens
* Win32: more consistent use of @PACKAGE@ for gnucash package name in installer script
2013-11-22 Geert Janssens
* Win32: remove gconf related settings from the installer script
2013-11-21 Christian Stimming
* i18n update: Remove some almost-duplicate strings by removing unneeded punctuation.
2013-11-21 Christian Stimming
* Update German translation. Slightly more translated now.
2013-11-21 Frank H. Ellenberger
* Fix a few doxygen errors and wanrnings.
2013-11-21 Geert Janssens
* Fix typos in translatable strings
2013-11-21 Mike Alexander
* Don't write the default currency symbol to the output file. Patch by Frédéric Perrin.
2013-11-20 Mike Evans
* Make bill & invoice importer and customer importer modules load by default.
2013-11-20 Geert Janssens
* Bug 712299 - Tax Invoice with guile 2 doesn't display currency symbols
2013-11-20 Geert Janssens
* Small fixes to make the Windows build work again after r23412
2013-11-20 John Ralls
* Bug 711289 - time zone handling is inconsistent between 2.4 and 2.5
2013-11-19 Mike Alexander
* Decompress zipped XML files ourself instead of letting libxml2 do it. As of version 2.9.1 it has a bug that causes it to fail to decompress certain files. See https://bugzilla.gnome.org/show_bug.cgi?id=712528 for more info.
2013-11-18 Christian Stimming
* Cutecash: Adapt to compiler/linker flags that are needed on Ubuntu 13.10
2013-11-18 Christian Stimming
* Cutecash: Adapt to recent gconf file changes.
2013-11-17 John Ralls
* Bug 336843: Correct Win32 Display function.
2013-11-17 Mike Alexander
* Add missing semicolon and only dump transaction when debugging.
2013-11-17 John Ralls
* Release 1.5.8
2013-11-17 John Ralls
* Adjust Makefile.am for new runTests.py.in
2013-11-16 Mike Alexander
* Turn off the scheme compiler's "possibly unbound variable" warnings. In guile 2.0 we get nearly 7500 of them loading the scheme files.
2013-11-16 Geert Janssens
* Remove some redundant variable definitions in Makefile.am
2013-11-16 Geert Janssens
* Don't distribute files generated by configure
2013-11-16 Geert Janssens
* Fix distcheck-hook to handle [type: ] prefixes in POTFILES.in properly
2013-11-16 Geert Janssens
* Don't create invoice when Duplicate invoice dialog is cancelled
2013-11-15 John Ralls
* Bug 336843: Attach images/files/urls to transactions.
2013-11-15 John Ralls
* Bug 711289: Time Zone Handling is Inconsistent between 2.4 and 2.5
2013-11-14 Geert Janssens
* Bug 707311 - Tax Invoice fails to open when using guile 2
2013-11-13 Geert Janssens
* Bug 709589 - make check fails with guile 2
2013-11-13 Geert Janssens
* Make python test find its test files for out of tree builds
2013-11-13 Geert Janssens
* Use guile/python executable as found during configure for tests and some support scripts
2013-11-13 Geert Janssens
* Replace all uses of GUILE_INCS with GUILE_CFLAGS
2013-11-13 Geert Janssens
* Improve guile testing in configure.ac
2013-11-13 Christian Stimming
* First update of German translation.
2013-11-13 Christian Stimming
* I18n message improvements: Fix typos; unify strings.
2013-11-11 Mike Alexander
* Collapse the two transaction currency scrubbing functions into one and fix some bugs. The most serious bug was that it would, in some cases, set the transaction's currency to a non-currency commodity. It also sometimes set the currency directly without calling xaccTransSetCurrency which skipped a number of side effects.
2013-11-10 John Ralls
* Wrap budget UI strings in the translation function
2013-11-10 John Ralls
* Fix Application Menu Preferences Item
2013-11-08 Mike Alexander
* Handle multi-currency transactions in registers without a default currency. Editing a multi-currency transaction in a serach results register sometimes sets the exchange rate to 1 instead of the value you want.
2013-11-05 Christian Stimming
* Bug #711493: Fix unselected account that is NULL.
2013-11-05 John Ralls
* Update dependencies and versions
2013-11-05 Geert Janssens
* Enable translations on gsettings schemas
2013-11-04 Geert Janssens
* Bug 711294 - Gnucash repeatedly ask associated income account when import qfx file
2013-11-04 Geert Janssens
* Use proper conversion modifier for unsigned int
2013-11-03 John Ralls
* Fix broken win32 build
2013-11-03 John Ralls
* Release 2.5.7
2013-11-03 John Ralls
* Clean out log files from testing the xml backend.
2013-11-02 John Ralls
* Remove dialog-preferences2.c from POTFILES.in
2013-11-02 John Ralls
* Skip this test when building with clang
2013-11-02 John Ralls
* replace static string filename with generated one
2013-11-02 John Ralls
* Remove dead code.
2013-11-02 John Ralls
* Replace deprecated tempnam with a constant.
2013-11-02 John Ralls
* Mac: Don't append 'Gnucash' to the 'Preferences' menu item title.
2013-11-02 John Ralls
* Avoid critical error from trying to access an uninitialized GHash.
2013-11-02 John Ralls
* Fix incorrect Enum type specifier
2013-10-31 Geert Janssens
* Update POTFILES.in after my recent work
2013-10-31 Geert Janssens
* Bug 693244 - View Lots window enhancements
2013-10-31 Geert Janssens
* Improve visual appearance and sorting of Invoice payment dialog
2013-10-31 Geert Janssens
* Bug 687478 - Bills due reminder doesn't work well with credit notes
2013-10-31 Geert Janssens
* Bug 687479 - Automatic invoice/payment matching on posting an invoice should be an optional feature
2013-10-31 Geert Janssens
* Code reindentation in tests
2013-10-31 Geert Janssens
* Code reindentation
2013-10-30 Geert Janssens
* Remove now unused parameter
2013-10-30 Geert Janssens
* Bug 710979 - Crash in gnc_plugin_page_invoice_summarybar_position_changed
2013-10-29 Geert Janssens
* Some white space and comment improvements
2013-10-29 Geert Janssens
* Cleanup leftover from state save/restore re-implementation
2013-10-29 Geert Janssens
* Fix crash when deleting budget
2013-10-29 Geert Janssens
* Remove function that no longer adds value
2013-10-29 Geert Janssens
* Re-implement state save/restore functionality in gnc_tree_view
2013-10-29 Geert Janssens
* Move state handling code to separate file and improve on it
2013-10-29 Geert Janssens
* On file open, only destroy a previous session if really exists
2013-10-29 Geert Janssens
* Remove gnc_build_book_path from swig interface file
2013-10-29 Geert Janssens
* Remove some unused includes
2013-10-28 Mike Alexander
* Guard against bad parameter to gnc_plugin_page_invoice_summarybar_position_changed.
2013-10-28 Geert Janssens
* Use the symbol in iso-4217-currencies by default
2013-10-28 Frank H. Ellenberger
* Rename .texinfo files to .texi to get rid of the autogen.sh warning.
2013-10-27 Mike Alexander
* Add --with-xdg-data-dirs to specify default search path for XDG data directories.
2013-10-27 Mike Alexander
* Fix a typo in --with-qt3-wizard-package.
2013-10-27 Frank H. Ellenberger
* Bump required automake version to 1.11
2013-10-27 Mike Evans
* Bug 710871 - Undo my last two commits.
2013-10-26 Mike Evans
* Bug 710871 - Remove errant $.
2013-10-26 Geert Janssens
* Small XDG_DATA_DIRS improvements
2013-10-26 Geert Janssens
* Add off-by-one warning in comment
2013-10-26 Geert Janssens
* Prohibit setting budget values greater than num_periods
2013-10-25 Geert Janssens
* Fix save count down timer on Windows
2013-10-25 Geert Janssens
* Clean up preferences for pricedb-editor and price-editor
2013-10-25 Geert Janssens
* Configure: don't list ofx twice in selected components
2013-10-25 Geert Janssens
* Avoid the need for a duplicate dialog-preferences.glade
2013-10-25 Geert Janssens
* Register rewrite Update, revised removal update for next release. This update adds a configure option --enable-register2 which will enable the register2 changes at compile time, there are also some changes to use the Gnucash --extra parameter that displays some of the new register2 functionality for testing. Author: Robert Fewell
2013-10-25 Christian Stimming
* Bug #710739: Fill in field for remote bank account information also for SEPA transfers.
2013-10-25 Mike Evans
* Bug-710871 Fix for Python site-packages not found when not installed to default location
2013-10-25 Geert Janssens
* Fix window position/size saving
2013-10-24 Geert Janssens
* Ignore autogenerated Makefile[.in] for gschemas directories
2013-10-24 Geert Janssens
* Add a field to the commodity editor allowing setting the user symbol.
2013-10-24 Geert Janssens
* Add a user_symbol to one UT
2013-10-24 Geert Janssens
* Copy the test-files to the builddir, and use that in GNC_TEST_FILES
2013-10-24 Geert Janssens
* Use the new user_symbol property where relevant
2013-10-24 Geert Janssens
* Add a new user_symbol property to the Commodity class
2013-10-24 Geert Janssens
* Check for availability of xsltproc at configure time
2013-10-24 Geert Janssens
* Fix gsettings schema for commodities editor
2013-10-24 Geert Janssens
* Fix budget options descriptions field
2013-10-23 Geert Janssens
* Abort configure if --enable-ofx specified but no libofx development files found
2013-10-23 Geert Janssens
* Remove reference to schema that was deleted earlier
2013-10-22 Geert Janssens
* Revert "[PATCH] Register rewrite Update, remove update for next release."
2013-10-22 Geert Janssens
* [PATCH] Register rewrite Update, remove update for next release.
2013-10-22 Geert Janssens
* Win32: set XDG_DATA_DIRS when running the Windows installer
2013-10-22 Geert Janssens
* Add default-to-save timeout on save-on-changes dialog
2013-10-22 Geert Janssens
* Drop check for glib >= 2.14, glib >= 2.28 is already required