-
Notifications
You must be signed in to change notification settings - Fork 802
/
ChangeLog.2014
1863 lines (932 loc) · 42.2 KB
/
ChangeLog.2014
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
2014-10-19 Ralf Habacker
* Bug 738749 - Broken account template en_GB/uk-vat.gnucash-xea.
2014-12-29 Geert Janssens
* Revert "Bug 740471 - Applying payment to invoice Segmentation fault"
2014-12-26 John Ralls
* Fix typo in Transaction.c.
2014-12-24 Geert Janssens
* Revisit "Bug 741810 - Compilation fails because of creating .gnucash"
2014-12-23 John Ralls
* Extract function to clarify intent.
2014-12-22 John Ralls
* Bug 741228 - "Red line" threshold applies to Template scheduled transactions
2014-12-10 Mike Alexander
* Tell Guile (and others) to look in install/lib/gnucash for libraries. Without this Guile can't find libgncmod-engine and GnuCash won't start. I don't know how this worked before, perhaps because the correct path was in src/bin/overrides/gnucash-env.in
2014-12-23 Francisco
* Update Spanish translation
2014-12-23 Geert Janssens
* Cherry-pick "Bug 741810 - Compilation fails because of creating .gnucash"
2014-12-10 Mike Alexander
* Tell Guile (and others) to look in install/lib/gnucash for ligraries. Without this Guile can't find libgncmod-engine and GnuCash won't start, at least sometimes.
2014-12-21 John Ralls
* Replace GNC_HOME/bin with gnc_path_get_bindir().
2014-12-21 John Ralls
* Adjust #ifdef __clang__ to exclude clang versions > 6
2014-12-21 John Ralls
* Bug 739584 - gnucash-2.6.4 segfaults regularly on transfer .
2014-12-21 John Ralls
* Fix Guile compiled path in environment.in
2014-12-21 John Ralls
* Remove note from the top of environment.in. It's obsolete.
2014-12-06 Geert Janssens
* Bug 740471 - Applying payment to invoice Segmentation fault
2014-12-06 Geert Janssens
* Bug 740471 - Applying payment to invoice Segmentation fault
2014-12-06 Geert Janssens
* Bug 740471 - Applying payment to invoice Segmentation fault
2014-12-20 Geert Janssens
* Fix crash when running check & repair on an open AP/AR register
2014-12-18 John Ralls
* Update News for re-tag of 2.6.5 (tag: 2.6.5a)
2014-12-17 Geert Janssens
* Fix lot scrubbing for business lots
2014-12-17 Geert Janssens
* Improve comment for gncOwnerAutoApplyPaymentsWithLots
2014-12-15 John Ralls
* Release 2.6.5. (tag: 2.6.5)
2014-12-15 John Ralls
* Fix msgfmt errors in Indian-language .po files.
2014-12-15 John Ralls
* Update translation project po files.
2014-12-14 John Ralls
* Still more Guile library path additions, this time in tests.
2014-12-14 John Ralls
* Use standard macro INT64_C() to silence gcc-4.2 complaint
2014-12-14 John Ralls
* Correct inadvertent change to a still-needed function.
2014-12-13 John Ralls
* Remove Windows specializations from gnc-date.c
2014-12-12 John Ralls
* Still more Guile precompilation fixes.
2014-12-08 Mike Alexander
* Fix line endings in repository to match recent change to .gitattributes
2014-12-08 VERDOÏA Laurent
* French typo correction
2014-12-05 Frank H. Ellenberger
* Add ChangeLog.2013 to dist_doc_DATA
2014-12-02 Frank H. Ellenberger
* Update of de.po: 152 + 38 remaining
2014-12-03 Geert Janssens
* Yet another guile 2 precompile fix of the German tax report
2014-12-03 Geert Janssens
* Fix guile 2 precompilation of German tax report
2014-12-02 John Ralls
* Guile compilation: One missed CLEANFILES.
2014-12-02 John Ralls
* Fix the *.win32-bin.txt and downloaded.mt940 attributes.
2014-12-02 John Ralls
* Guile precompilation: One more missing library-dir.
2014-12-02 John Ralls
* Reapply fix of Guile precompilation without unwanted change in gnc-numeric.c.
2014-12-02 John Ralls
* Revert "Fix Guile-2.0 precompilation."
2014-12-01 John Ralls
* Fix Guile-2.0 precompilation.
2014-12-01 Frank H. Ellenberger
* Update of de.po: 351 +50 remaining
2014-11-30 John Ralls
* Bug 738477 - WebKit is broken on Win32.
2014-11-30 Frank H. Ellenberger
* Update of de.po -still 530 + 53 to review
2014-11-24 Geert Janssens
* Python bindings - fix creation of new xml files
2014-11-17 Geert Janssens
* Fix a few typos in python example scripts and align them with the latest api changes
2014-11-17 Geert Janssens
* Fix build-time hard-coded path introduced by the guile2 compile changes
2014-11-17 Geert Janssens
* Prevent crash when standards-report dir doesn't exist
2014-11-12 Geert Janssens
* Fix parallel make for guile2 compilation
2014-11-12 Geert Janssens
* QIF Import crashes when closing via the 'X' button on the last page
2014-11-04 Geert Janssens
* Omit extension on calls to load-extension
2014-10-31 Geert Janssens
* Use one common base directory to store all scheme files and modules
2014-10-30 Geert Janssens
* Guile 2 pre-compilation improvements
2014-10-31 Geert Janssens
* Pre-compile scm files when building with guile 2
2014-10-28 Geert Janssens
* Guile module structure cleanup
2014-10-28 Geert Janssens
* Fix a few deprecation warnings when building and testing with guile 2
2014-10-28 Geert Janssens
* Harmonize variable names used to refer to guile modules in all makefiles
2014-10-15 Jeff Earickson
* Assamese Indic Language translation file (Devanagari script)
2014-10-15 Jeff Earickson
* Add Assamese Indic Language (as) to LINGUAS
2014-11-08 Cristian Marchi
* Update Italian translation.
2014-10-17 Sébastien Villemot
* Add missing comma in call to gtk_tree_store_set().
2014-10-26 Geert Janssens
* Rewrite old-fashioned makefile construct
2014-10-25 Geert Janssens
* Fix invocations of guile function 'load-from-path'
2014-10-21 Geert Janssens
* Fix some warnings found with msgfmt -c in the po files
2014-10-21 Geert Janssens
* Revert "Remove bare percent sign in taxinvoice.scm, replace with English."
2014-10-19 Jeff Earickson
* Indic Language Konkani translation in Latin script
2014-10-19 Jeff Earickson
* Add kok@latin to LINGUAS_ALL (Konkani in Latin script)
2014-10-19 Jeff Earickson
* Indic Language Gujarati Translation File
2014-10-19 Jeff Earickson
* Addition of Gujarati (gu) to LINGUAS_ALL po file list
2014-10-19 Jeff Earickson
* Indic Language Kannada Translation file
2014-10-19 Jeff Earickson
* Add kn (Kannada) to LINGUAS_ALL
2014-10-21 Geert Janssens
* Revert to using numerical indexes for the x-axis on bar charts
2014-10-15 Joe Hansen
* Updated Danish translation
2014-10-13 John Ralls
* Bug 738113 - Crash on reload budget report.
2014-10-12 Jeff Earickson
* Remove bare percent sign in taxinvoice.scm, replace with English.
2014-10-08 Christian Stimming
* Aqbanking: Add display of aqbanking subaccountid in initial correspondence setup
2014-09-26 Christian Stimming
* Aqbanking online SEPA transfer: Allow transfers without BIC, only IBAN. Also add IBAN checking.
2014-09-01 Christian Stimming
* Aqbanking transfer: Make IBAN and BIC text entry fields filter digits or alphas correctly as needed.
2014-10-13 Geert Janssens
* Some minor cosmetics in the barchart code
2014-10-13 Geert Janssens
* Redo the highlighter in barcharts.
2014-10-13 Geert Janssens
* Bug 737815 - Graphs cannot be generated correctly
2014-10-11 Carsten Rinke
* Bug737815 - Graphs Cannot Be Generated Correctly
2014-10-13 Frank H. Ellenberger
* Add report forms T-Account/Vertical and account types Active/Passive to glossary.
2014-10-06 John Ralls
* Bug 736359 - Date of 0000-00-00 in MySQL backend crashes GnuCash
2014-10-06 John Ralls
* Update Farsi translation from the Translation Project.
2014-10-02 Ralf Habacker
* Adapt german SKR03 account template to updated tax rate.
2014-10-02 Frank H. Ellenberger
* Allow GUILE1_PROGS as m4 name
2014-09-30 John Ralls
* Fix a bunch of non-literal-null-conversion warnings.
2014-09-30 John Ralls
* Add sv_AX, sv_FI, zh_HK, and zh_TW to Makefiles & configure.
2014-09-27 John Ralls
* Release 2.6.4 (tag: 2.6.4)
2014-09-27 John Ralls
* Ensure that the root account is saved to the SQL backend.
2014-09-20 Robert Fewell
* This patch allows the ability to skip rows when importing transactions.
2014-09-23 valdis
* Updated resource files for Latvian: po/lv.po and accounts/lv/acctchrt_business.gnucash-xea
2014-09-27 Chenxiong Qi
* Bug 701052 - cannot click on 'cancel' or 'ok' button on dialogue box
2014-09-26 Jeff Earickson
* Repaired version of Marathi Language translation file
2014-09-26 Jeff Earickson
* Repaired version of latest Konkani language translation.
2014-09-25 Jeff Earickson
* Tamil Language Translation
2014-09-25 Jeff Earickson
* Deleted Raman language version of Konkani in favor of updated Devangari version.
2014-09-25 Jeff Earickson
* Updated translation of the Konkani Language.
2014-09-25 Jeff Earickson
* Updated Translation of the Bodo Language
2014-09-25 Jeff Earickson
* Added or updated the following Indic Language Translation Files:
2014-09-25 Jeff Earickson
* Urdu Language Translation file.
2014-09-25 Jeff Earickson
* Telugu Language Translation file.
2014-09-25 Jeff Earickson
* Marathi Language Translation File.
2014-09-25 Jeff Earickson
* Kashmiri Language translation file.
2014-09-25 Jeff Earickson
* Hindi Language Translation file
2014-09-26 Geert Janssens
* Rework assistant csv import regex code to eliminate the mandatory dummy field (#eol).
2014-09-26 Geert Janssens
* CSV Import transform macro into function
2014-09-26 Geert Janssens
* CSV Export: factor out function to generate regular expression
2014-09-25 Geert Janssens
* Refactor OS-specific ifdef to reduce code duplication
2014-09-19 Robert Fewell
* This patch just changes the white space to be of a consistent format.
2014-09-19 Robert Fewell
* Part Bug fix for 729476, this changes the line endings to \r\n to make it more compatible with CSV format.
2014-09-19 Robert Fewell
* Part Bug fix for 729476, this fixes the quoting of quotes, newlines and separator to make it more compatible with CSV format.
2014-09-19 Robert Fewell
* This patch fixes bug 731519. The fix sets the upper limit before it sets the value of the end row spin button.
2014-09-25 John Ralls
* Bug 736703 - Scheduled transaction are registered without credit/debit
2014-09-23 Geert Janssens
* Bug 630638 - 'Process payment' should allow to select equity accounts for payment
2014-09-23 Geert Janssens
* Use same test for payment dialog transfer accounts and assign as payment checks
2014-09-22 Geert Janssens
* Avoid undocumented dependency on progress page type in assistant to skip page
2014-09-22 Robert Fewell
* This patch fixes bug 726888, cancel button is available on all pages of assistant.
2014-09-22 Robert Fewell
* Use same default setting for quotes in csv import and export
2014-09-22 Geert Janssens
* Set default currency for French account chart templates
2014-09-22 Geert Janssens
* Convert ISO-8859-1 account chart templates to UTF-8
2014-09-22 Geert Janssens
* Add context to generic translatable string
2014-09-22 Geert Janssens
* Bug 671615 - French: 'New Customer' button in Find Customer dialog is translated to 'Nouvel onglet'
2014-09-22 Geert Janssens
* Bug 720427 - Review of french account templates
2014-09-21 John Ralls
* Bug 732545 - gnucash-2.6.3 segfaults when started
2014-09-21 Mark Haanen
* Update Dutch translation, copied from the Translation Project.
2014-09-21 Geert Janssens
* Rewrite gfec_eval_file to avoid opening the file itself in guile
2014-09-21 Geert Janssens
* Swap static functions so the lower one can reuse the upper one
2014-09-20 Geert Janssens
* Bug 711567 - Cannot save a custom report if a path contain diacritic chars
2014-09-19 Geert Janssens
* Bug 695240 - mortgage wizard empty table
2014-09-20 Geert Janssens
* Provide strfmon function for platforms that don't have it
2014-09-16 David Maline
* Bug 733506 - (ForwadDisableQIF) The forward button is not active even though a file is selected
2014-09-16 Jethro Beekman
* Bug 733283 - [PATCH] Loss of fractions when importing OFX investment transactions
2014-09-16 Geert Janssens
* Align perl module requirements with recent Finance::Quote versions
2014-09-06 Dmitry Pavlov
* Updated Russian translation from Dmitry Pavlov
2014-09-06 Chenxiong Qi
* - New Chart of Accounts Assistant is too large for screen
2014-09-06 Alex Aycinena
* Correct txf output to use a minus sign, rather than parenthesis, for debits, without regard to locale settings, as is required by the txf pseudo-standard; was previously incorrectly using parenthesis for negatives in Windows environments, for example.
2014-08-12 lmat
* Replace C++ reserved words for future compatibility with C++
2014-09-04 John Ralls
* SQL: Save commodity namespace changes from template
2014-09-03 hawk-lord
* Missing translation
2014-09-03 hawk-lord
* Added Swedish association accounts.
2014-09-03 hawk-lord
* Added Swedish account files
2014-09-02 Geert Janssens
* Add business lot scrubbing to Check & Repair->All/This transaction(s)
2014-08-28 Geert Janssens
* Make scrub in lot viewer scrub business lots using the new scrub functions.
2014-08-27 Geert Janssens
* Rewrite invoice payment logic to fix lot link proliferation
2014-08-27 Geert Janssens
* Refactor get_pay_split into gncOwnerFindOffsettingSplit
2014-08-26 Geert Janssens
* Refactor gncOwnerReduceSplitTo out of reduce_biggest_split
2014-08-26 Geert Janssens
* Refactor gnc_doc_doc_link into gncOwnerSetLotLinkMemo and move it
2014-08-26 Geert Janssens
* Handle the case of scrubbing a lot link between two non-document lots
2014-08-26 Geert Janssens
* Tweak the get_pay_split function to prefer the best possible match
2014-08-26 Geert Janssens
* Refactor scrub_doc_pay_link into scrub_other_link and make it more generic
2014-08-23 Geert Janssens
* Add scrub function to reduce the amount of lot links used.
2014-08-23 Geert Janssens
* Widen the scope of the subsplit merge scrub function
2014-08-23 Geert Janssens
* Move account type checking functions into the engine
2014-08-16 Geert Janssens
* Remove superfluous include statements
2014-08-16 Geert Janssens
* Small corrections in doxygen comments
2014-08-23 Geert Janssens
* More ENTER/LEAVE corrections at function exit points
2014-07-31 John Ralls
* Balance ENTER with a LEAVE for all exit points.
2014-09-02 Geert Janssens
* Bug 434462 - register color don't work correct with system theme color - Part 2
2014-08-30 Geert Janssens
* Bug 434462 - register color don't work correct with system theme color - Part 1
2014-08-30 Geert Janssens
* Rename enum elements to make room for foreground equivalents
2014-08-30 Geert Janssens
* Refactor register color functions to reduce duplication
2014-08-30 Geert Janssens
* Bug 711440 - Tab labels have different background colour than containing gui element
2014-09-01 Mike Alexander
* Bug 735769: Enable price and shares cells in a split if it is not in the trans currency. The label for the cells are changed to "Exch. Rate" and "Oth. Curr." in this case.
2014-09-01 Mike Alexander
* If the cursor moves from one register cell to another, refresh the register headers. If trading accounts are on and the transaction is expanded then the headers depend on the type of split the cursor is in.
2014-07-01 Mike Alexander
* Use guint64 instead of uint64_t with G_GUINT64_FORMAT to avoid warnings.
2014-08-31 Mike Alexander
* Change gncOwnerGetBalanceInCurrency to only cosider lots that contain an invoice. This function is currently only used in the owner tree code and this change will cause payments not properly linked to invoices to be ignored when computing owner balances.
2014-08-31 Mike Alexander
* Finish implementing the "Show zero balance owners" filter option. It always showed nothing before.
2014-08-31 Mike Alexander
* The sense of the "Only show active customers" checkbox was inverted.
2014-08-29 Geert Janssens
* Bug 707243 - Hard-coded font colors in account tree?
2014-08-14 Mike Alexander
* Bug 722140: Add option to control inclusion of trading accounts in cash flow report.
2014-08-07 John Ralls
* Fix test-backend-dbi segfault with libdbi-0.9.0.
2014-08-07 John Ralls
* Fix uninitialized variable warning.
2014-08-07 John Ralls
* Add note about automake 1.14 to configure.ac
2014-08-07 John Ralls
* Revert "Fix broken test-backend-dbi with libdbi 0.9."
2014-08-07 John Ralls
* Fix broken test-backend-dbi with libdbi 0.9.
2014-08-07 Mike Evans
* Bug 734183 - Set all of the denominators correctly on the currency values.
2014-08-03 Mike Evans
* Bill invoice importer crashing when invoice has multiple lines.
2014-06-28 Michalis Kamprianis
* Bug 120199 - Incorrect sort order in "Sort by Statement Date"
2014-08-01 Geert Janssens
* Revert "Bug #622778 Miscalculation in cashflow reports - Step 01"
2014-08-01 Geert Janssens
* Revert "Bug #622778 Miscalculation in cashflow reports - Step 02"
2014-08-01 Geert Janssens
* Revert "Bug #622778 Miscalculation in cashflow reports - Step 03"
2014-08-01 Geert Janssens
* Revert "Round properly when computing fraction of the transaction's value due to a given split."
2014-08-01 Geert Janssens
* Revert "The cash flow report should ignore splits in trading accounts."
2014-08-01 Erik Johansson
* Update Swedish translation
2014-07-13 Mike Alexander
* Bug 733107: Search for reconcile status doesn't work right.
2014-07-01 Geert Janssens
* Drop packaging/win32
2014-06-21 Geert Janssens
* First unit test for gncEntry and fix first bug it revealed
2014-06-21 Geert Janssens
* Fix whitespace
2014-06-21 Geert Janssens
* Revert "Bug726674-BudgetReverseSignSupport"
2014-06-10 Geert Janssens
* Bug 723442 - Report Options - Report Name too short
2014-03-26 Carsten Rinke
* Bug726674-BudgetReverseSignSupport
2014-06-01 Michalis Kamprianis
* Bug 719457 - Template for Home Mortgage Loan isn't properly nested.
2014-05-29 Christoph Holtermann
* Some adjustments, new IPython version
2014-06-09 John Ralls
* Fix signed int overflow warning.
2014-06-08 John Ralls
* double_to_gnc_numeric: Return overflow error immediately on invalid input.
2014-06-08 John Ralls
* Use more significant digits for SX function returns.
2014-06-08 John Ralls
* 725366 - Formula Parsing Error with Scheduled Mortgage Transactions
2014-05-29 Christoph Holtermann
* Python bindings - no instance necessary anymore
2014-06-01 Carsten Rinke
* Bug 720934 - Barcharts with many data points have overlapping x-axis labels
2014-06-03 Jeff Earickson
* New/revised version of the Brazilian Portuguese translation file, For version 2.6.3. Translator: Miguel Rozsas <[email protected]>
2014-06-05 John Ralls
* Fix broken build on 64-bit systems
2014-06-03 John Ralls
* 722200 - configure script does not pick the correct am_cv_scanf version
2014-06-02 John Ralls
* Fix broken win32 build; MinGW needs our strptime.
2014-06-02 John Ralls
* 722200 - configure script does not pick the correct am_cv_scanf version
2014-06-02 John Ralls
* Revert "722200 - configure script does not pick the correct am_cv_scanf version"
2014-06-02 John Ralls
* Revert "722200 - configure script does not pick the correct am_cv_scanf version"
2014-06-02 Mike Evans
* Merge branch 'maint' of https://github.com/Gnucash/gnucash into maint
2014-06-01 John Ralls
* 722200 - configure script does not pick the correct am_cv_scanf version
2014-06-02 Mike Evans
* Add some date format checking and make sure generated dates are the correct user selected format, not always locale format.
2014-06-02 Mike Evans
* Relax requirements for booleans in invoice line.
2014-06-01 John Ralls
* 722200 - configure script does not pick the correct am_cv_scanf version
2014-06-01 Mike Evans
* Bug 730255 - Python bindings: Assigns bill entries to non-existant invoice.
2014-05-15 Mike Evans
* Python bindings. Add function gncVendorNextID, complementary to gncCustomerNextID.
2014-05-31 John Ralls
* 722200 - configure script does not pick the correct am_cv_scanf version
2014-05-27 John Ralls
* More fix-ups for the renumber subaccounts dialog.
2014-05-27 John Ralls
* Bug 725054 - Re-numbering sub accounts crashes the program
2014-05-26 John Ralls
* Bug 728717 - Ubuntu 14.04 - GNUcash crashes on close
2014-05-25 Mike Alexander
* Always use the price we display to calculate the current value of an account.
2014-05-10 Michalis Kamprianis
* Bug 719457 - Template for Home Mortgage Loan isn't properly nested.
2014-03-26 Frédéric Perrin
* Bug 723145 - Currency display does not respect locale
2014-05-04 Michalis Kamprianis
* Bug 728103 - Invoice opened does not contain the Job under circumstances
2014-04-30 Michalis Kamprianis
* Bug 509263 Since Last Run dialog won't allow resizing of Status column
2014-05-20 Geert Janssens
* Backport John's fix for a truly ancient bug
2014-05-20 Geert Janssens
* Merge branch 'scheduled_tx_i18n_prefix' of https://github.com/zeldigas/gnucash into maint
2014-05-19 Geert Janssens
* Bug 610202 - gnucash silently closes when no X11/$DISPLAY is present
2014-05-19 Dmitry Pavlov
* added context to ambigous i18n keys for scheduled transaction add/edit dialog
2014-05-13 Mike Alexander
* The cash flow report should ignore splits in trading accounts.
2014-05-13 Simon Arlott
* Bug 699687 - Add a configuration option to not display "since last run" window when opening a file
2014-05-13 Geert Janssens
* Fix regression in invoice pre-payments
2014-05-11 Michalis Kamprianis
* Bug 692249 - Add Help button in Custom Reports dialog box
2014-05-13 Geert Janssens
* Avoid defining the same translatable string twice
2014-04-29 Michalis Kamprianis
* Bug 729157 Bill Term discount days are allowed to be more than due days
2014-05-09 Geert Janssens
* Bug 688965 - Page Up, Page Down keys cause GnuCash to hang
2014-05-08 Geert Janssens
* Fix document type dispay for credit notes on owner report
2014-05-08 Amm
* Better period totals formatting
2014-05-05 Mike Alexander
* Don't nest AC_MSG_CHECKING calls, it produces confuing output.
2014-05-05 Colin
* Fix crash initialising dbi if libdbi version >= 0.9.0
2014-05-05 Geert Janssens
* Revert "Fix crash with libdib >= 0.9.0"
2014-05-05 Geert Janssens
* Bug 729497 - Saved Report Configuration selection window resize
2014-05-05 Geert Janssens
* Fix crash with libdib >= 0.9.0
2014-05-02 Mike Alexander
* Better test for conflict between optimization and FORTIFY_SOURCE
2014-05-02 Geert Janssens
* Add _FORTIFY_SOURCE directive only when compiling with optimization enabled
2014-04-28 Jeff Earickson
* The Dogri language in Devanagari Script.
2014-04-28 Jeff Earickson
* Addition of the Dogri language (doi) to LINGUAS
2014-04-28 Jeff Earickson
* Addition of the Bodo language translation file, in Devanagari script
2014-04-28 Jeff Earickson
* Addition of the Bodo language (brx) in Devanagari Script.
2014-04-28 Geert Janssens
* Revert error on warning default when building from svn