-
Notifications
You must be signed in to change notification settings - Fork 802
/
ChangeLog.2016
1288 lines (644 loc) · 26.8 KB
/
ChangeLog.2016
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
2016-12-27 John Ralls
* Define _(X) to handle localization of GNC_COMMODITY_NS_CURRENCY.
2016-12-27 John Ralls
* Bug 776494 - Wrong menu entry in Tip of the day
2016-12-27 Robert Fewell
* Bug 516920 - Calendar Pop up disappears of the left side
2016-12-26 Mechtilde
* translation tip_of_the_day
2016-12-15 John Ralls
* Localize the word “CURRENCY” used in the commodity namespace selectors.
2016-12-15 John Ralls
* Bug 773945 - Select Security Dialog Not User Friendly
2016-12-18 John Ralls
* Fix reference to SVN in README.
2016-12-17 John Ralls
* Release 2.6.15 (tag: 2.6.15)
2016-12-17 John Ralls
* Update AUTHORS and DOCUMENTORS.
2016-12-17 John Ralls
* Update Danish and Serbian translations from the Translation Project.
2016-12-17 Phil Davis
* README typo
2016-12-13 John Ralls
* Bug 775912 - Tips of the Day shows content only once very 3 times
2016-12-11 John Ralls
* Remove QIF importer error “Dates earlier than 1970 are not supported”.
2016-12-11 John Ralls
* Bug 685329 - Crashes on non-existent date
2016-12-11 John Ralls
* Bug 772369 - Replace use of guile's internal date/time functions
2016-12-11 John Ralls
* Bug 773808 - Export Report Crash
2016-12-10 John Ralls
* Bug 772484 - Segfault on Transaction edit
2016-12-10 John Ralls
* Bug 774237 - FTBFS under some timezones (eg. GMT-14)
2016-12-09 John Ralls
* Bug 775385 - Confusing error message which includes the text "file file"
2016-12-09 John Ralls
* Bug 775368 - "Average cost" price source problem
2016-12-09 John Ralls
* Change the default price-source from Average Cost to Nearest in Time.
2016-12-09 John Ralls
* Calculate rates only for buy transactions in the report commodity for cost totals.
2016-12-04 John Ralls
* Single functions for gnc:make-exchange-alist and gnc:get-exchange-totals.
2016-12-01 John Ralls
* Move checks for no split amount and trading accounts to get-match-commodity-splits.
2016-12-01 John Ralls
* Clean up whitespace in commodity-utilities.scm.
2016-12-06 Ryan Tucker
* fix missing chmod +x in configure.ac
2016-12-04 John Ralls
* Bug 775567 - Importing QIF file from PayPal crashes GnuCash 2.6.14 on Windows XP service pack 3
2016-12-03 John Ralls
* Prevent crash when there's an error loading a qif import file.
2016-11-19 Robert Fewell
* Bug 516920 Scheduled trasaction calendar popup off screen
2016-11-30 Geert Janssens
* Fix compiler warning about misleading indentation
2016-11-28 Geert Janssens
* Fix report html header
2016-11-16 Robert Fewell
* Changed the default value for date format
2016-11-16 Robert Fewell
* Fix check printing custom preference value
2016-11-16 Robert Fewell
* Correct the default options if default invalid
2016-11-16 Robert Fewell
* Add an unset option to date-format
2016-11-15 Robert Fewell
* Added a default currency to the currency option
2016-11-15 Robert Fewell
* Add plot size option for future compatibility
2016-11-15 Robert Fewell
* Fix warning from glib when saving reports.
2016-11-15 Robert Fewell
* Change report resizing when not in view
2016-11-15 Robert Fewell
* Forgot to add the png file to previous commit
2016-11-15 Robert Fewell
* Add an image for the report tab
2016-11-15 Robert Fewell
* Change the reload to include using web_view_reload
2016-11-15 Robert Fewell
* Track visibility of the view scroll bars
2016-11-15 Robert Fewell
* Add progress bar updates for reload / Update
2016-11-15 Robert Fewell
* Add call back to track page size changes
2016-11-15 Robert Fewell
* Stop the progress bar changing height
2016-11-15 Robert Fewell
* Add idle function to load report
2016-11-15 Robert Fewell
* Remove macros/as-scrub-include.m4 from makefile
2016-11-13 Geert Janssens
* Fix make check after commit 673888dee7c
2016-11-12 Geert Janssens
* Bug 770364 - Sign of Value in Lots in Account window seems inconsistent
2016-11-12 Geert Janssens
* Use G_MAXINT64 instead of 0 to indicate an invalid date
2016-11-11 Geert Janssens
* Show empty business splits in lot viewer
2016-11-11 Geert Janssens
* Check more splits while running check & repair on business accounts
2016-11-11 Geert Janssens
* Business check & repair - correct lot invoice state
2016-11-09 Geert Janssens
* Various small improvements to check & repair on business accounts
2016-11-06 Geert Janssens
* When juggling business splits while scrubbing set both value and amount
2016-11-06 Geert Janssens
* Update progress bar while running Check & Repair
2016-11-09 Geert Janssens
* Remove lot from account while deleting the lot
2016-11-10 John Ralls
* Ensure that the Namespace combo box is initialized to a valid iter.
2016-10-24 John Ralls
* Bug 769124 - Australian (GMT-10) OFX transactions imported have previous
2016-10-20 John Ralls
* Bug 769124 - Australian (GMT-10) OFX transactions imported have previous days date.
2016-10-14 Rob.Gowin
* Remove configuration of HAVE_PUTENV.
2016-10-10 Geert Janssens
* Bug 771617 - Build fails because test test-report-utilities is sensitive to time of day/timezone
2016-10-10 Geert Janssens
* Bug 771617 - Build fails because test test-report-utilities is sensitive to time of day/timezone
2016-10-04 John Ralls
* Fix CSV importer to handle GMT + 13 Timezone (New Zealand Daylight Time).
2016-10-04 John Ralls
* Bug 772382 - Date off-by-one after DST change
2016-09-28 Ralf Habacker
* Fix broken german account template 'Kontenrahmen für Wohnungswirtschaft'.
2016-10-03 Geert Janssens
* Bug 771617 - Build fails because test test-report-utilities is sensitive to time of day/timezone
2016-10-02 Geert Janssens
* Bug 772313 - Invalid DOCTYPE in report generation
2016-09-27 Rob Gowin
* Use default PKG_CHECK_MODULES for CMake version > 3.4
2016-09-25 John Ralls
* Remove obsolete AS_SCRUB_INCLUDES macro.
2016-09-25 Mike Evans
* Bug 771246 - Set Invoice/Bill items date correctly from imported CSV.
2016-09-17 John Ralls
* Fix version in CMakeLists.txt. (tag: 2.6.14a)
2016-09-16 John Ralls
* Release 2.6.14 (tag: 2.6.14)
2016-09-16 John Ralls
* Synchronize translation project.
2016-09-15 John Ralls
* Bug 769746 - Zero interest loan formula fails.
2016-08-01 Robert Fewell
* Add option to recn cell type to be read only
2016-08-01 Robert Fewell
* Make a distinction between file/link Association
2016-08-01 Robert Fewell
* Indicate an Association in the Register
2016-09-13 John Ralls
* Bug 771379 - GnuCash doesn't support Russian Ruble Symbol
2016-09-12 Mike Evans
* Bug 771246 - Set Invoice/Bill items date correctly from imported CSV.
2016-09-11 John Ralls
* Bug 770181 - gnc-fq-dump incorrectly says "quote cannot be used...
2016-09-11 John Ralls
* Bug 761667 - Crash opening associated location that has no scheme
2016-09-11 John Ralls
* Australian (GMT-10) OFX transactions imported have previous days date
2016-09-08 Geert Janssens
* Bug 643025 - RFE: Ability to select and open multiple invoices
2016-09-07 Geert Janssens
* Bug 733153 - Ambiguous view of buttons in search dialog Linux version
2016-09-07 Geert Janssens
* Add small note the split action field is pre-filled by the business features
2016-08-03 Robert Fewell
* Bug 762901 [PATCH] Fix saving Account Treeview sort order.
2016-09-02 Serge Gebhardt
* Value "price" allowed in attr cd:type for element book (RELAX NG file)
2016-09-01 John Ralls
* Bug 769730 - Investments: Lots in This Account, Closed column shows
2016-08-26 Rob Gowin
* CMake improvements for SWIG handling and Python bindings.
2016-08-25 Geoff Lee
* Bug 770303 - Incorrect commodity match during import OFX and possible solution.
2016-08-25 John Ralls
* Whitespace cleanup in gnc_import_select_commodity.
2016-08-24 Geert Janssens
* SX - recalculate all occurrences of all SX if the calendar is updated to start on another month
2016-08-24 Geert Janssens
* SX Window: correctly show first sx on calendar when it is moved to next weekday
2016-08-24 Geert Janssens
* Bug 770136 - 'Reverse Order' in 'View'->'Sort by' is not saved
2016-08-22 John Ralls
* Bug 742461 - SQL backend doesn't update customer info
2016-08-22 Pierre-André Jacquod
* Bug 770196 - cppcheck va_list not closed
2016-08-21 John Ralls
* Revert "temporarily disable pre-logging messages."
2016-08-20 John Ralls
* Suppress the console window on launch when building with CMake on MSWin.
2016-08-20 John Ralls
* Merge branch 'maint' of ssh://code.gnucash.org/gnucash into maint
2016-08-19 John Ralls
* Bug 770113 - compiling issue with libdbi.
2016-08-19 John Ralls
* Fix compilation error in sqlite3_error_fn.
2016-08-18 John Ralls
* temporarily disable pre-logging messages.
2016-08-08 Stefan Talpalaru
* remove duplicate line
2016-08-08 Stefan Talpalaru
* fix compilation with guile-2.0.12
2016-04-28 fell
* Minor improvement of singe quote sources SIX*
2016-08-01 John Ralls
* Attempt to fix Travis test failure.
2016-07-31 fell
* de.po: merge new template
2016-07-31 fell
* Fix a typo in dialog invoice
2016-07-31 fell
* de.po: review of commit d5fa61d
2016-07-31 fell
* minor fix of de.po
2016-07-16 Marco Zietzling
* fixed some more German translations
2016-07-16 Marco Zietzling
* fixed some more German translations
2016-07-16 Marco Zietzling
* fixed some more German translations
2016-07-16 Marco Zietzling
* fixed German translations
2016-07-16 Rob Gowin
* Fixes to get CMake "MinGW Makefiles" generator to work. (github/maint)
2016-07-14 Rob Gowin
* Allow HTMLHELP_DIR to be specified on cmake command line
2016-07-12 Mike Evans
* Bug 756416 - CSV data with Posted information will always have last invoice not posted.
2016-07-08 John Ralls
* Tweak version.cmake to work on Windows.
2016-07-05 John Ralls
* Make CMake use the same scm-revision program as Autotools.
2016-07-03 John Ralls
* Clear the GDate before use.
2016-07-02 John Ralls
* Bug 137017 - date of transaction change with time zone change
2016-07-02 John Ralls
* Don't override optimization flags in CMakeLists.txt.
2016-07-02 Geert Janssens
* When default tax table is 'None', set a new invoice/bill entry as not taxabl by default as well.
2016-06-28 John Ralls
* Fix incomplete function name from 74fa556. (tag: 2.6.13b)
2016-06-27 John Ralls
* Reset release date to 28 June. (tag: 2.6.13a)
2016-06-27 John Ralls
* containsString wasn't introduced until OS X 10.10.
2016-06-25 John Ralls
* Release 2.6.13 (tag: 2.6.13)
2016-06-24 John Ralls
* Update translations from the translation project.
2016-06-23 John Ralls
* Remove automatch_store_transactions() from import-main-matcher.
2016-06-23 John Ralls
* Bug 760021 - File "Save As" to an existing file...overwrites without warning.
2016-06-23 John Ralls
* Bump CMake version to current.
2016-06-22 John Ralls
* Bug 761672 - Transfer made to placeholder account
2016-06-22 John Ralls
* Bug 764248 - saved-reports-2.4-backup line endings unconventional
2016-06-22 goodvibes2
* Update README to refer to wiki Submitting_Patches as per github discussion re this file.
2016-06-22 John Ralls
* Bug 748983 - Crash after opening money transfer dialog twice
2016-06-20 goodvibes2
* Bug 637004 Optionally allow customer and vendor address info to display Use an internal option to hold receivable/payable flag, remove trailing spaces.
2016-06-18 goodvibes2
* Bug 637004 Optionally allow customer and vendor address info to display in the Receivable Aging and Payable Aging reports so can be copied and pasted into a spreadsheet for use in mail merge.
2016-06-20 John Ralls
* Fix Travis test failure in gnc_iso8601_to_timespec_gmt.
2016-06-20 John Ralls
* Fix gnc_iso8601_to_timespec_gmt test failure.
2016-06-20 John Ralls
* Bug 767824 - Some UTC timezones incorrectly recognized on Windows 7
2016-06-06 Alex Aycinena
* Partially revert commit B555f495 and solve problem more simply by instead resequencing prior statements.
2016-06-04 Alex Aycinena
* The gnc_gui_refresh_all statement in gnc_book_options_dialog_apply_cb causes the 'apply' and 'OK' buttons to be set to sensitive on the open Book Options dialog in some circumstances; this commit causes them to be reset to insensitive, as they should be.
2016-05-31 Geert Janssens
* Update README file regarding pull request policy
2016-05-29 John Ralls
* Bug 766960 - gnucash-make-guids fails to run due to hardcoded paths.
2016-05-21 Geert Janssens
* Bug 765859 - The budget reports missing in Hungarian edition
2016-05-21 Geert Janssens
* Fix travis build
2016-05-21 Geert Janssens
* Bug 736352 - Expense Voucher adds tax automatically
2016-05-21 Geert Janssens
* Bug 766200 - Three-up printing does not position the third check properly
2016-05-21 Geert Janssens
* Check printing: make logic easier to follow
2016-05-20 John Ralls
* Fix adjust_sql_option_string test on Windows.
2016-05-19 John Ralls
* Move adjust_sql_options_string declaration to gnc-backend-dbi-priv.h.
2016-05-19 John Ralls
* Remove unnecessary g_strdup_printf.
2016-05-19 John Ralls
* Fix inconsistent and non-conforming whitespace and comments.
2016-05-20 Mike Evans
* Bug 766688 - Minimal fraction of BYN should be 1/100
2016-05-19 John Ralls
* Fix bad library name from c1ad6154.
2016-05-13 John Ralls
* Bug 764871 - Crash starting gnu cash
2016-05-14 John Ralls
* Don't try to compile test_adjust_sql_options on windows, it won't link.
2016-05-11 colinl
* Improved adjust_sql_options_string, added tests
2016-05-10 colinl
* Tidied up adjust_sql_options
2016-05-10 colinl
* adjust_sql_options working but needs tidy up and remove diagnostics
2016-05-03 victor811
* Update Russian translation
2016-05-03 victor811
* Update Russian translation
2016-05-10 John Ralls
* Bug 766028 - crash on manual addition of price entry in Price Editor
2016-05-05 Mechtilde
* correct some more shortcuts
2016-05-05 Mechtilde
* correct some shortcuts
2016-01-19 Mechtilde
* correct typos
2016-01-02 Mechtilde
* remove some fuzzy flags and add some translations
2016-01-20 Mechtilde
* some corrections
2016-01-02 Mechtilde
* remove some fuzzy flags
2016-01-02 Mechtilde
* add some translations
2016-04-24 Per Johansson
* FIxed remaining names.
2016-04-24 Per Johansson
* Added Finnish account plan.
2016-04-10 Per Johansson
* Added new sv_AX and sv_FI account plans.
2016-04-15 Geert Janssens
* Improve quickfill performance on huge registers
2016-03-24 John Ralls
* Mac Localization: Prefer the country to the language for fall-back locales.
2016-03-22 John Ralls
* Extract some functions to make the Mac locale setup a bit more maintainable.
2016-03-25 John Ralls
* Release 2.6.12 (tag: 2.6.12)
2016-03-25 John Ralls
* Update translations from the Translation Project.
2016-03-25 Geert Janssens
* Bug 719904 - Decide payment type only based on the account type involved
2016-03-25 Geert Janssens
* Factor out a convenience function to retrieve a (business) owner starting from a transaction
2016-03-25 Geert Janssens
* Provide option to print checks directly from the payment window
2016-03-25 Geert Janssens
* Check printing: extract address from invoice/bill for payment transactions
2016-03-25 Geert Janssens
* Move some utility functions from gui code to engine
2016-03-25 Geert Janssens
* Update POTFILES.in after previous commit
2016-03-24 Geert Janssens
* Merge reg and reg2 variant of print check dialog back into one file
2016-03-24 Geert Janssens
* Bug 693342 - Print (bottom) prints to middle for 3-check pages
2016-03-23 Geert Janssens
* Revert "Bug 118391 - Long currency names untranslated"
2016-03-23 Geert Janssens
* Disable debug message that got enabled by accident last year
2016-03-23 Geert Janssens
* Bug 687504 - Not possible to reset an invoice/bill counter format
2016-03-23 Geert Janssens
* Bug 642292 - General Ledger report - 'Primary Sort Key' value is not persistent
2016-03-22 John Ralls
* New Xcode, new errors, sigh.
2016-03-22 Geert Janssens
* Bug 482186 - Customer and vendor report for partners who get invoiced/paid in foreign currency show total labeled with the symbol of the default currency.
2016-03-21 Geert Janssens
* Bug 728074 - Posting bill converts currency to itself using 0 rate
2016-03-21 Geert Janssens
* Bug 118391 - Long currency names untranslated
2016-03-21 Geert Janssens
* Fix typo
2016-03-20 John Ralls
* Open correct xea directory if user has worked around bug 725296
2016-03-20 John Ralls
* OSX: Get the locale for account trees from the OS instead of setlocale().
2016-03-19 Geert Janssens
* Fix doxigen comment after changed const behaviour
2016-03-19 Geert Janssens
* Bug 620281 - Adding reversing transaction to bill transactions creates undeleteable transactions
2016-03-19 Geert Janssens
* Refuse to void read-only transactions.
2016-03-19 Geert Janssens
* Bug 754209 - Bills can be posted multiple times from "find bill" search results - follow up
2016-03-17 John Ralls
* Bug 733164 - Command-H Invokes Help->Help Contents
2016-03-17 John Ralls
* Set the transaction currency during auto-completion.
2016-03-17 John Ralls
* Correctly re-value splits when the transaction currency is changed.
2016-03-17 Geert Janssens
* Use PRIi64 instead of PRIx64
2016-03-17 Geert Janssens
* Bug 728722 - Setting number format details appear wrong in Help, section 10.3.4. Counters Book Options Tab
2016-03-16 Mike Evans
* Bug 754209 - Bills can be posted from "find bill" search results even if bill is already posted and results in extra $ posted to A/P
2016-03-14 Geert Janssens
* Bug 720934 - Barcharts with many data points have overlapping x-axis labels
2016-02-28 Chris Good
* Add Tip Of The Day re using multiple windows to do comparisons - Bug 762800
2016-03-13 Geert Janssens
* Fixup previous commit
2015-12-21 Matt G
* Bug 742352 - Budget Summary section does not show expense totals
2015-11-11 Gilles Dartiguelongue
* Bug 760015 - guile support is automagic
2016-03-11 John Ralls
* Bug 763146 - Invalid exchange rate is recorded when entering multi-currency transaction
2016-03-11 John Ralls
* Ensure numerator is positive before checking if the value is < 1.
2016-03-11 John Ralls
* Ensure price is set when the amount is entered and user doesn't tab out.
2016-03-11 John Ralls
* Test rounded values, but don't store them, to minimize jitter in prices.
2016-03-11 John Ralls
* Check price_source precedence first to save computation.
2016-03-11 John Ralls
* Ensure that xferData->price_source is always set correctly.
2016-03-11 John Ralls
* Fix double semicolon.
2016-03-11 John Ralls
* Remove price-direction code for to default currency and alphabetic order.
2016-03-11 John Ralls
* Extract functions update_price and new_price from create_price.
2016-03-10 John Ralls
* Fix typo in HTML header.
2016-03-10 John Ralls
* Bug 763111 - commodities prices editor creates hidden db entries
2016-03-10 John Ralls
* Bug 763279 - GnuCash has empty reports
2016-03-08 John Ralls
* Bug 722996 - Cannot add stock price on Price Editor
2016-03-10 Geert Janssens
* Minor tweaks to Bayesian feature flag
2016-03-10 Robert Fewell
* Make gnucash 2.7+ rerun bayesian data conversion whenever needed
2016-02-20 Robert Fewell
* Allow matching accounts to be found also by their GUID which will be used in newer versions. The default behaviour is still to create new entries under the account fullname.
2016-03-10 Robert Fewell
* Introduce GUID_BAYES feature flag
2016-03-03 Mike Evans
* Bug 762971 - Duplicating multiple invoices results in invoices without an ID number
2016-03-02 Mike Evans
* Bug - 761172 Importing invoices posts incorrect values.
2016-02-28 Phil Longstaff
* Memory leak in gnc-gsettings.c
2016-02-28 Phil Longstaff
* Close some more memory leaks
2016-02-28 Phil Longstaff
* Close some memory leaks identified by valgrind.
2016-02-22 Geert Janssens
* Bug 744157 - Tip about subaccount is confusing
2016-02-18 pmralbuquerque
* Updated translations after TACG translation
2016-02-17 fell
* Update the list of Finance::Quote methods
2016-02-13 Jesse Olmer
* Bug 739571 - Matching imported transactions doesn't indicate previously matched entries
2016-02-11 Sebastien Bourdelin
* Fix a typo
2016-02-09 fell
* Add comment about replacement of 10000 BYR by 1 BYN
2016-01-27 RobGowin
* cmake - Increase test pass rate on Windows
2016-02-01 Prayag Verma
* Fix Typos in doc/README.translator.txt
2016-01-18 RobGowin
* cmake - Add ability to run tests under CMake
2016-01-23 RobGowin
* Don't skip test under clang when using Guile 2.x
2016-01-23 RobGowin
* Change test to use LIBDIR to find dynamic libraries
2016-01-23 RobGowin
* Add TEST_PATH variable to test
2016-01-24 John Ralls
* Fix Travis build error.
2016-01-24 John Ralls
* Pretty up the SLR error dialog.