forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2015
1372 lines (686 loc) · 28.9 KB
/
ChangeLog.2015
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
2015-12-31 John Ralls
* Bug 754192 - Since Last Run Dialog asks for security price even if not needed
2015-12-31 fell
* Finish split of ChangeLog
2015-12-31 fell
* de.po: merge pot, add a space - still 45 missing, 102 fuzzy
2015-12-30 fell
* Remove translatable flag from commodity placeholder in dialog-payment
2015-12-26 Emily Zora
* - Add Account.AssignLots to python bindings
2015-12-30 fell
* Revert unintended change of ChangeLog
2015-12-30 fell
* Merge branch 'Mechtilde-PotTest' into maint
2015-12-30 fell
* fix an outdated translator string in src/import-export/aqb/assistant-ab-initial.c
2015-12-30 fell
* Review of Pull Request 51
2015-12-29 John Ralls
* Bug 756335 - When importing, date selection causes exit crash
2015-12-24 Mechtilde
* correct the adaption too
2015-12-24 Mechtilde
* correct the adaption
2015-12-24 Mechtilde
* some German translation and adapt to actual file gnucash.pot
2015-12-23 Mechtilde
* some more German translation
2015-12-20 Mechtilde
* more German translation
2015-12-14 Mechtilde
* add German Translation
2015-12-29 Mike Evans
* Revert "Proposed fix for mangled Chinese characters on bill import."
2015-12-29 Mike Evans
* Proposed fix for mangled Chinese characters on bill import.
2015-12-27 fell
* Add a few more eclipse specific files to gitignore
2015-12-27 fell
* Postpone the renaming of the menu entry "_Price Editor" to the next main release.
2015-12-26 Grzegorz Milka
* Bug 759859 - Reconcilation does not convert transactions' currency to the main one making reconcilation impossible.
2015-12-26 fell
* Price Editor - use different names for different windows
2015-12-20 Mike Evans
* Bug 759674 - GNUCash crashes when importing invoices or bills with delimited import
2015-12-19 John Ralls
* Update the po files from the Translation Project. (HEAD, origin/maint, origin/HEAD, maint)
2015-12-19 Pedro Albuquerque
* Add new Portugal-Portuguese Translation.
2015-12-18 John Ralls
* Fix test failure due to trying to parse nanoseconds, which we don't actually use.
2015-12-18 Geert Janssens
* Bug 746155 - Reports: html-acct-table prepend-row! & prepend-col! unknown variables
2015-12-17 John Ralls
* Bug 756335 - When importing, date selection causes exit crash
2015-12-17 John Ralls
* Correct detection of marker commodity splits.
2015-12-14 John Ralls
* Use @SHELL@ instead of hardcode /bin/sh in test shell scripts. (origin/el-cap)
2015-12-10 John Ralls
* Bug 759224 - illegal dates in stock transactions cause corrupt file.
2015-12-12 Mechtilde
* update de.po via gnucash.pot after building myself
2015-12-12 Mechtilde
* update de.po via gnucash.pot after building myself
2015-12-12 Mechtilde
* some more German translation
2015-12-01 Mechtilde
* add more German Translation
2015-11-28 Mechtilde
* add German Translation
2015-11-01 Mechtilde
* remove some fuzzy
2015-12-11 Geert Janssens
* Fix uninitialized warning in previous commit
2015-12-11 Geert Janssens
* Improve the revert action
2015-12-11 Geert Janssens
* Have a more generic mechanism to set Save action's sensitivity and use it for Revert action as well
2015-12-11 Geert Janssens
* Remove a couple of obsolete FIXME comments
2015-12-10 Geert Janssens
* Make dirty handling as currently defined by qof_alt_dirty_mode the only dirty handling mode
2015-12-10 Mike Evans
* Bug 759294 - New the billing term are not saved during invoice editing. Prevent editing the terms from the invoice view. This has to be edited via the edit invoice button or menu Edit->Edit Invoice. The dropdown in the invoice view has been replaced with an edit text box set to non-editable in the glade file.
2015-12-10 Geert Janssens
* Bug 745101 - No warning when quitting with unsaved file
2015-12-10 Geert Janssens
* Disable a couple of debug tests in python
2015-12-10 Geert Janssens
* Revert "Bug 745101 - No warning when quitting with unsaved file"
2015-12-10 Geert Janssens
* Bug 745101 - No warning when quitting with unsaved file
2015-12-08 John Ralls
* Fix broken exchange rate edits when using trading accounts.
2015-12-05 Bob-IT
* Correct Spelling Mistake
2015-12-04 Geert Janssens
* Followup on bug 682800 to fix row balances in register reports
2015-11-15 Peter Broadbery
* Some fixes to the previous commit so that it works on both guile-1.8 and 2.0
2015-11-19 John Ralls
* Revert the Language-Team in ar.po.
2015-11-17 Mike Alexander
* Set val_imbalance in gnc_transaction_balance_trading.
2015-11-17 Mike Alexander
* Remove the code in on_matcher_ok_clicked that builds refs_list.
2015-11-17 Mike Alexander
* Avoid assert in gnc_split_register_balance_trans if default_account is null.
2015-11-13 Peter Broadbery
* Move test-account and test-split into engine/test directory
2015-11-13 Peter Broadbery
* Moved test-extras.scm to engine directory.
2015-11-09 Peter Broadbery
* cash-flow.scm: Use hashtables for accounts as well
2015-11-12 Peter Broadbery
* engine-utilities.scm: Add a couple of hashtable functions.
2015-11-09 Peter Broadbery
* cash-flow.scm: Use a hashtable instead of a list.
2015-11-12 Peter Broadbery
* engine-utilities.scm: Add a specialised hashtable.
2015-11-09 Peter Broadbery
* cashflow: use the much faster gnc:account-get-trans-type-splits-interval
2015-11-08 Peter Broadbery
* Add cashflow test
2015-10-31 Peter Broadbery
* report-utilities: Add a very small test to show that splits are unique for account-get-trans-type-splits-interval
2015-11-09 Peter Broadbery
* cashflow: Further separate work into a per-split section.
2015-11-12 Peter Broadbery
* standard-reports/cash-flow.scm: break out main calculation part
2015-11-12 Peter Broadbery
* Move account & split.scm to engine-utilities
2015-11-09 Peter Broadbery
* reports: Add account and split module, plus tests.
2015-11-08 Peter Broadbery
* Add and use a macro for loading modules.
2015-11-11 John Ralls
* Updated Arabic Translation by Abdulsalam Alshilash.
2015-11-05 Bill Nottingam
* Bug 742321 - Reset temporary prefs on application startup
2015-11-03 Geert Janssens
* Bug 756720 - configure fails to find libgoffice 0.10-10 (0.10.18-1)
2015-11-03 Mark Haanen
* Add new account chart for Duch small businesses.
2015-10-22 root
* disable recursion for balance and balance (usd)
2015-11-01 Geert Janssens
* Reduce code duplication
2015-10-30 yomlogs
* Bug 757378: display the user-defined display symbol for non-currency commodities.
2015-10-31 Mechtilde
* some more German translation
2015-10-29 Mechtilde
* more corr in German translation
2015-10-13 Mechtilde
* corr translation in German
2015-10-30 John Ralls
* Don't require prices in Scheduled Transactions with marker commodity splits.
2015-10-27 John Ralls
* Rename GNOME_COMPILE_WARNINGS to just COMPILE_WARNINGS.
2015-10-27 John Ralls
* Revert "Use gnc_pricedb_has_prices instead of testing the return value of get_prices."
2015-10-24 John Ralls
* Merge branch 'single-price' into maint
2015-10-24 John Ralls
* Fix leaking QofBook in most of the engine unit tests.
2015-10-18 John Ralls
* Use gnc_pricedb_has_prices instead of testing the return value of get_prices.
2015-10-16 John Ralls
* Remove be->price_lookup conditional clauses.
2015-09-15 John Ralls
* Prevent F::Q from updating PRICE_SOURCE_EDIT_DLG prices.
2015-09-12 John Ralls
* Remove unnecessary and harmful price rounding.
2015-09-09 John Ralls
* Implement user-entered-price preference.
2015-09-09 John Ralls
* Fold separate call of gnc_pricedb_lookup_latest() into lookup_price.
2015-09-03 John Ralls
* Use an enum for internal representation of Price Sources.
2015-09-03 John Ralls
* Extract function lookup_price in dialog_transfer.c
2015-09-01 John Ralls
* Adjust split_register to match transfer dialog checking inverted prices.
2015-09-01 John Ralls
* Fix missing initialization of price_value.
2015-09-01 John Ralls
* Change CURRENCY_DENOM to 10000, matching what F::Q returns.
2015-09-01 John Ralls
* Extract function round_price(), consistently apply it.
2015-08-28 John Ralls
* Create a rounding policy for prices in the pricedb.
2015-08-28 John Ralls
* Rename _gnc_xfer_dialog_set_exchange_rate and use it consistently.
2015-08-28 John Ralls
* Provide gnc_numeric_invert() convenience function.
2015-08-28 John Ralls
* Use price_value when referring to a gnc_numeric.
2015-08-25 John Ralls
* Price-quotes: Modify quotes on same day instead of creating new ones.
2015-08-23 John Ralls
* Edit split-based prices instead of adding.
2015-08-23 John Ralls
* Check for an existing price before adding one in split_reg.
2015-08-23 John Ralls
* In the transfer dialog use the price_edit value for the saved price.
2015-08-22 John Ralls
* Fix up whitespace in dialog-transfer.c.
2015-08-22 John Ralls
* Refactor gnc_xfer_dialog_response_cb with several extract-functions.
2015-08-22 John Ralls
* Don't store prices of source invoice.
2015-08-21 John Ralls
* Replace the price source and type strings with defines.
2015-10-23 John Ralls
* Revert "Merge branch 'single-price' into maint"
2015-10-23 John Ralls
* Revert "Fix rename failure for gnc_xfer_dialog_set_exchange_rate."
2015-10-23 John Ralls
* Revert "Fix price-reading crash if the price needs to be inverted."
2015-10-23 John Ralls
* Revert "Bug 756339 - Prices table not updated"
2015-10-16 John Ralls
* Fix typo.
2015-10-15 John Ralls
* Add Business Ledger to Doxygen docs.
2015-10-15 John Ralls
* Document the Register Core CellBlock class.
2015-10-15 John Ralls
* Create a new Register2 group in Register and add the Reg2-specific files to it.
2015-10-13 John Ralls
* Correct UK VAT Account types.
2015-10-13 John Ralls
* Add messages.mo to gitignore.
2015-10-13 John Ralls
* Add all register classes and such to Doxygen documentation.
2015-10-13 John Ralls
* Doxygen: Silence obsolete parameter warnings and suppress private struct names.
2015-10-11 John Ralls
* Some extract-function refactors to xaccTransScrubImbalance.
2015-10-11 John Ralls
* Delete unused function gnc-_split_reg_handle_exchange_cb.
2015-10-10 John Ralls
* Bug 756339 - Prices table not updated
2015-10-10 John Ralls
* Bug 756335 - When importing, date selection causes exit crash
2015-10-10 Geert Janssens
* Bug 646129 - Account selection in reports: 'Select Children' doesn't actually select children if they are collapsed
2015-05-20 Stefan Soeffing
* Bug 627692 - Report options, Account Selection, "select all" => not all accounts selected, only visible ones
2015-10-10 Geert Janssens
* Revert "- Report options, Account Selection, "select all" => not all accounts selected, only visible ones"
2015-05-20 Stefan Soeffing
* - Report options, Account Selection, "select all" => not all accounts selected, only visible ones
2015-10-09 John Ralls
* Bug 755781 - Files with copyright but no grant of license.
2015-08-31 Robert Fewell
* Bug 754533 No Account Templates Error Patch
2015-10-05 John Ralls
* Release 2.6.9 (tag: 2.6.9)
2015-10-05 John Ralls
* Fix price-reading crash if the price needs to be inverted.
2015-10-05 John Ralls
* Fix header warnings in TP translations.
2015-10-05 John Ralls
* Apply latest translations from the Translation Project.
2015-10-05 John Ralls
* Msgmerge-update the po files.
2015-10-05 Mechtilde
* some more translation
2015-10-05 Mechtilde
* more corrections
2015-09-27 Mechtilde
* small corrections
2015-10-02 John Ralls
* Remove duplicate call to gnc_set_default_directory().
2015-10-01 John Ralls
* Bug 755920 - Crash (Freeze) when using File Save As.. in Windows OS
2015-09-29 John Ralls
* Add engine-common.i to EXTRA_DIST for consistency.
2015-09-29 Dmitry Smirnov
* Bug 755778 - Test failure: test-engine:
2015-09-29 John Ralls
* Bug 755781 - Files with copyright but no grant of license. Non-free?
2015-09-26 John Ralls
* Release Gnucash-2.6.8 (tag: 2.6.8)
2015-09-26 John Ralls
* Fix empty Language tag in tr.po.
2015-09-25 Mechtilde
* corr some translations
2015-09-25 Mechtilde
* some translations
2015-09-23 Mechtilde
* update translation
2015-09-23 Mechtilde
* some corrections
2015-09-23 Mechtilde
* update translation
2015-09-22 John Ralls
* Failing to add a price to the db isn't a test failure.
2015-09-22 Geert Janssens
* Update POTFILES.in after removal of assistant-utils.c
2015-09-04 Geert Janssens
* Gtk code cleanups: setting a default color map is deprecated
2015-09-03 Geert Janssens
* Gtk code cleanups: Convert dense-cal from gdk_gc_* to cairo
2015-08-22 Geert Janssens
* Gtk code cleanups: Use accessor functions on GtkWidget instead of deprecated direct access
2015-08-25 Geert Janssens
* Gtk code cleanups: drop use of deprecated GTK_CALENDAR_WEEK_START_ON_MONDAY
2015-08-25 Geert Janssens
* Gtk code cleanups: replace deprecated gdk_drawable_get_display with gdk_window_get_display
2015-08-25 Geert Janssens
* Gtk code cleanups: drop custom arg type registration
2015-08-25 Geert Janssens
* Gtk code cleanups: GTK_WIDGET_SET_FLAGS is deprecated
2015-08-24 Geert Janssens
* Gtk code cleanups: use G_TYPE_CHECK_* instead of obsolete GTK_CHECK_*
2015-08-23 Geert Janssens
* Gtk code cleanups: use gdk_window_get_width/height functions
2015-08-22 Geert Janssens
* Gtk code cleanups: consistently use new style key codes
2015-08-22 Geert Janssens
* Gtk code cleanups: Avoid GtkObject where possible
2015-08-22 Geert Janssens
* Gtk code cleanups: Fix obsolete use of GtkType type.
2015-08-22 Geert Janssens
* Drop function gnc_assistant_set_colors
2015-09-19 John Ralls
* Update the translations from the Translation project.
2015-09-19 John Ralls
* Rearrange the LINGUAS as suggested by Frank Ellenberger in the wiki.
2015-09-19 John Ralls
* Update all message catalogs with the 2.6.7 gnucash.pot and fix all warnings.
2015-09-17 John Ralls
* Fix rename failure for gnc_xfer_dialog_set_exchange_rate.
2015-09-17 John Ralls
* Correct the Stock, Bond, Market Index, and Mutual Fund account types in all locales.
2015-09-17 John Ralls
* Fix warning about always-true condition.
2015-09-16 John Ralls
* Set -std=gnu99, matching master.
2015-09-15 John Ralls
* Merge branch 'single-price' into maint
2015-09-15 John Ralls
* Prevent F::Q from updating PRICE_SOURCE_EDIT_DLG prices.
2015-09-12 John Ralls
* Remove unnecessary and harmful price rounding.
2015-09-12 John Ralls
* Remove the preference for storing prices relative to the base currency.
2015-09-12 John Ralls
* Export the price-source enums to Guile and use them in price-quotes.scm.
2015-09-09 John Ralls
* Remove static function swap_amount(), not used.
2015-09-09 John Ralls
* Implement user-entered-price preference.
2015-09-09 John Ralls
* Fold separate call of gnc_pricedb_lookup_latest() into lookup_price.
2015-09-09 John Ralls
* Recognize and handle reversed price quotes from gnc-fq-helper.
2015-09-03 John Ralls
* Use an enum for internal representation of Price Sources.
2015-09-03 John Ralls
* Fix whitespace error.
2015-09-03 John Ralls
* Extract function lookup_price in dialog_transfer.c
2015-09-01 John Ralls
* Invert the F::Q price if there's already one in the other direction.
2015-09-01 John Ralls
* Handle currencies with one-directional quotes and quotes < 1 in F::Q.
2015-09-01 John Ralls
* Adjust split_register to match transfer dialog checking inverted prices.
2015-09-01 John Ralls
* Fix missing initialization of price_value.
2015-09-01 John Ralls
* Change CURRENCY_DENOM to 10000, matching what F::Q returns.
2015-09-01 John Ralls
* Extract function round_price(), consistently apply it.
2015-08-31 John Ralls
* Fix swap_amount so that it swaps the account pointers.
2015-08-31 John Ralls
* Fix gnc_numeric_invert to correctly handle negative values.
2015-08-30 John Ralls
* Flip return values of check_edit() and check_accounts().
2015-08-29 John Ralls
* Move gnc_numeric_invert to be not-inline.
2015-08-28 John Ralls
* Create a rounding policy for prices in the pricedb.
2015-08-28 John Ralls
* Rename _gnc_xfer_dialog_set_exchange_rate and use it consistently.
2015-08-28 John Ralls
* Provide gnc_numeric_invert() convenience function.
2015-08-28 John Ralls
* Use price_value when referring to a gnc_numeric.
2015-08-25 John Ralls
* Price-quotes: Modify quotes on same day instead of creating new ones.
2015-08-23 John Ralls
* Edit split-based prices instead of adding.
2015-08-23 John Ralls
* Check for an existing price before adding one in split_reg.
2015-08-23 John Ralls
* In the transfer dialog use the price_edit value for the saved price.
2015-08-22 John Ralls
* Fix up whitespace in dialog-transfer.c.
2015-08-22 John Ralls
* Refactor gnc_xfer_dialog_response_cb with several extract-functions.
2015-08-22 John Ralls
* Don't store prices of source invoice.
2015-08-21 John Ralls
* Replace the price source and type strings with defines.
2015-09-15 John Ralls
* Correct the Stock, Bond, Market Index, and Mutual Fund account types.
2015-09-12 John Ralls
* Bug 754617 - Gnucash should use PKG_PROG_PKG_CONFIG
2015-09-09 Geert Janssens
* Small doxigen improvements to previous commit
2015-09-09 Matt
* Bug754764Fix
2015-04-04 yomlogs
* Bug 724738 - Value in "Display Symbol" field not saved
2015-08-19 Alex Aycinena
* Remove e-mail form AUTHORS and DOCUMENTERS
2015-08-17 John Ralls
* Sort the source list from gnc-fq-check.
2015-08-10 Alex Aycinena
* Correct wording on AUTHORS and DOCUMENTERS
2015-08-06 Mike Alexander
* Avoid passing invalid arguments to functions to get rid of some non-fatal asserts.
2015-08-10 John Ralls
* Add note at the top to disuade users from contacting authors directly for support.
2015-08-02 John Ralls
* Put the quotes back around the date string in gnc-fq-helper.
2015-08-01 John Ralls
* Bug 753146 - free(): invalid pointer on duplicate transaction
2015-07-10 Mechtilde
* More new German translation
2015-07-05 Mechtilde
* New German translations - after sending the others to Frank
2015-07-04 Mechtilde
* some more German translations
2015-05-25 Mechtilde
* even more German translation
2015-05-23 Mechtilde
* added more German translation
2015-05-09 Mechtilde
* add translation for reports
2015-07-30 John Ralls
* Add make_testfile suggestion to test-templates README.
2015-07-30 Mike Evans
* Fix apparent typo preventing build.
2015-07-28 John Ralls
* Fix up and improve the Doxygen documentation in unittest-support.h.
2015-07-28 John Ralls
* Improve the test-templates README and update the templates to current practice.
2015-07-28 Geert Janssens
* Bug 752035 - Transaction Report Filter By not Always Working
2015-07-27 John Ralls
* Make backend sync errors survive to the session.
2015-07-26 John Ralls
* Bug 752879 - Finance::Quote TZ Date::Manip config variable is deprecated
2015-07-25 John Ralls
* Uninstall the python bindings.
2015-07-11 Bastien Scher
* Fix two French strings
2015-07-12 John Ralls
* Bug 746998 - "Months Remaining" spinbox in Loan Assistant is non-obvious
2015-07-11 John Ralls
* Bug 747795 - Attached file not found.
2015-07-11 John Ralls
* Bug 752204 - .gml2 files are modified during build, take 2.
2015-07-10 John Ralls
* Bug 752203 - `make check` fails in "runTests.py":
2015-07-10 John Ralls
* Bug 752204 - .gml2 files are modified during build
2015-07-10 John Ralls
* Initialize GError to NULL or it doesn't work.
2015-07-07 John Ralls
* Bug 749077 - wrongfully invalidating any account save location/path starting with ".gnucash"
2015-07-07 John Ralls
* Restore Date::Manip to quotes modules.
2015-07-05 John Ralls
* Update the copyright date for Help|About to 2015.
2015-05-24 John Ralls
* Change gtkmacintegration-gtk2 include directory back to gtkmacintegration.
2015-06-27 John Ralls
* Release 2.6.7 (tag: 2.6.7)
2015-06-27 John Ralls
* Get latest translations from the Translation Project.
2015-06-16 Geert Janssens
* Bug 681225 - income statement displays blank base currency entries when trading account transactions are present during the report period
2015-06-15 Geert Janssens
* Bug 739271 - pt_BR translation wrong word "limpesa". Should be "limpeza"
2015-06-15 Geert Janssens
* Bug 744858 - Update exchange rate on bill only possible once per session (after unpost/repost)
2015-06-13 Mark Haanen
* Updated Dutch translations
2015-06-13 Geert Janssens
* Bug 746792 - process payment in foreign currency leads to broken equation