-
Notifications
You must be signed in to change notification settings - Fork 802
/
ChangeLog.2017
5704 lines (2852 loc) · 112 KB
/
ChangeLog.2017
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
2017-12-31 John Ralls
* Fix extra instance of test-test-extras* in install_manifest.txt
2017-12-31 Mechtilde
* correct typo
2017-12-31 John Ralls
* Update ChangeLogs for the new year.
2017-12-30 John Ralls
* Release GnuCash 2.7.3 (tag: 2.7.3)
2017-12-30 John Ralls
* Merge Bob Fewell's 'gtk3-update12' into unstable.
2017-12-30 John Ralls
* Prevent "Save before closing" dialog from appearing at startup.
2017-12-30 John Ralls
* Fix distcheck errors.
2017-12-30 John Ralls
* Fix -Wsign-compare error.
2017-12-30 John Ralls
* Merge branch 'maint' into unstable
2017-12-30 Robert Fewell
* Fix register move to another window
2017-12-30 Robert Fewell
* Fix some transient parent warnings
2017-12-30 Robert Fewell
* Fix There is no budget icon yet so set it to the account one.
2017-12-30 Robert Fewell
* Fix error when sheet is read only.
2017-12-30 Robert Fewell
* Fix transient parent warnings for budgets
2017-12-30 Robert Fewell
* Fix Invalid cast from GncWebkitHtml to GtkWindow
2017-12-30 Robert Fewell
* Fix Test for filepath is NULL when cancel pressed for export
2017-12-30 Robert Fewell
* Fix Critical errors when SX editor loaded
2017-12-30 Robert Fewell
* Fix Transient parent warnings for SX editor
2017-12-30 Robert Fewell
* Add a left margin to report zoom to align with other options
2017-12-30 Robert Fewell
* Fix register cell height by adding 1px for cell border
2017-12-30 Geert Janssens
* A few translatable string changes in the warnings for editing reconciled splits
2017-11-29 Robert Fewell
* Bug 771667 - Change reconciled splits warning
2017-12-30 Christopher Lam
* ENH: display infobox when no accounts matched
2017-12-29 John Ralls
* Bug 616709 - Pressing delete key while editing account name offers...
2017-12-29 John Ralls
* Fix crash in customer/employee/vendor reports.
2017-12-29 John Ralls
* Merge Bob Fewell's 'gtk3-update11' into unstable.
2017-12-29 Geert Janssens
* Merge branch 'unstable-TR-plus' of https://github.com/christopherlam/gnucash into unstable
2017-12-30 Christopher Lam
* COSMETIC: amend strings in options
2017-12-29 Geert Janssens
* Update POTEFILES.in
2017-12-29 Geert Janssens
* Fix a few compile warnings-turned-errors
2017-12-29 Geert Janssens
* Merge branch 'prices-in' of https://github.com/Bob-IT/gnucash into unstable
2017-12-29 Robert Fewell
* Bug 616709 - Stop the delete button on the Account page
2017-12-29 Robert Fewell
* Set focus for invoice pages
2017-12-29 Robert Fewell
* Add function to get whether sheet is read only
2017-12-29 Robert Fewell
* Make sure the tree view is the focus on an owner page
2017-12-29 Robert Fewell
* Replace tabs with spaces for budget files
2017-12-29 Robert Fewell
* ake sure the Account tree view has focus when budgets open
2017-12-29 Robert Fewell
* Change tabs to spaces in gnc-html-webkit2.c
2017-12-29 Robert Fewell
* Make sure the webkit widget has focus on report load
2017-12-29 Robert Fewell
* Replace tabs with spaces in a couple of source files
2017-12-29 Robert Fewell
* Make sure the sx tree view has focus on page load
2017-12-29 Robert Fewell
* Make sure the sheet has focus in a register when opened
2017-12-29 Robert Fewell
* Prevent the tab being the focus
2017-12-29 Robert Fewell
* Make sure the tree view has focus on Account tree page load
2017-12-27 John Ralls
* Fix Travis 'dangling else' warning.
2017-12-26 John Ralls
* Another attempt to make Travis's g++ happy about compiler warnings.
2017-12-26 John Ralls
* Fix CXX Flags for g++.
2017-12-23 John Ralls
* Bug 791848 - GC 2.6.x does not handle ISO dates introduced with GC 2.7.
2017-12-26 John Ralls
* Enforce -Werror on C++ files and fix resulting errors.
2017-12-23 John Ralls
* Test struct tm* returns from gnc_gmtime and gnc_localtime
2017-12-23 John Ralls
* Fix autotools test setup for test-date-utilities.
2017-12-23 John Ralls
* Fix picky gcc-7.2 complaint about a %d conversion not fitting in 3 bytes.
2017-12-23 John Ralls
* Bug 791848 - GC 2.6.x does not handle ISO dates introduced with GC 2.7
2017-12-23 John Ralls
* Enable reading undelimited YYYYMMDDHHMMSS time strings.
2017-12-24 Christopher Lam
* REFACTOR: gnc-numeric not available in scheme anymore
2017-12-05 Christopher Lam
* ENH: Optionally hide transactions
2017-12-13 Christopher Lam
* ENH: Add 'daily subtotal strategy
2017-12-02 Christopher Lam
* ENH: Formalise Reconciliation Report as a new menu item.
2017-11-30 Christopher Lam
* ENH: Add indenting for main data and subheadings/subtotals
2017-11-30 Christopher Lam
* ENH: Add sortkey Reconciled Status
2017-11-30 Christopher Lam
* ENH: Add debit/credit friendly names in subheading rendering
2017-11-27 Christopher Lam
* ENH: Add option to choose infobox display summary
2017-12-11 Christopher Lam
* COSMETIC: if grand-totals=#f then omit <hr>
2017-11-29 Christopher Lam
* REFACTOR: remove 'renderer-key lookup symbol, simplify custom sorter
2017-11-29 Christopher Lam
* REFACTOR: simplify num/t-num display code
2017-12-11 Christopher Lam
* REFACTOR: centralize left-cols to a vector-list
2017-11-28 Christopher Lam
* ENH: if no Display/* selected, insert empty left-column
2017-11-28 Christopher Lam
* REFACTOR: simplify render-summary
2017-11-28 Christopher Lam
* REFACTOR: simplify do-rows-with-subtotals
2017-11-27 Christopher Lam
* REFACTOR:bisect subtotal-get-info into primary/secondary
2017-12-11 Christopher Lam
* REFACTOR: start refactor subtotal
2017-12-11 Christopher Lam
* BUGFIX: Reverse sign on display only
2017-12-11 Christopher Lam
* BUGFIX: Fix incorrect N_ and _ handling
2017-12-11 Christopher Lam
* ENH: Upgrade Sign Reversal to use global preference by default
2017-11-26 Christopher Lam
* REFACTOR: move calculated-cells to allow access from add-subtotal-row
2017-12-11 Christopher Lam
* ENH: 'original currency amt' now shows dual columns
2017-12-11 Christopher Lam
* REFACTOR+ENH:Add common-currency mnemonic to header if enabled
2017-12-11 Christopher Lam
* REFACTOR: move column-uses? location
2017-12-11 Christopher Lam
* REFACTOR:Move Void-status filter to filter tab
2017-11-26 Christopher Lam
* REFACTOR:Centralise sign-reverse-list
2017-12-10 Christopher Lam
* ENH: add infobox to summarise options used
2017-12-10 Christopher Lam
* REFACTOR: Centralize options
2017-11-27 Christopher Lam
* ENH: disable filter accounts selector if filter-mode=none
2017-12-10 Christopher Lam
* ENH: dual columns subtotals now in correct column
2017-12-11 Christopher Lam
* REFACTOR: Use time64 instead of timepair
2017-12-10 Christopher Lam
* COSMETIC: Move Display>Sign reversal option
2017-12-10 Christopher Lam
* ENH: Enable sign reversal for amount 'single only
2017-12-10 Christopher Lam
* ENH: "Shares" column gets number-cell styling
2017-12-13 Christopher Lam
* ENH: "Price" column gets number-cell styling.
2017-12-15 Christopher Lam
* ENH: show original currency, and enable multicolumns.
2017-12-15 Christopher Lam
* ENH: add custom sorter which can handle periodic dates
2017-12-10 Christopher Lam
* REFACTOR: simplify do-rows-with-subtotals to use fewer args
2017-12-15 Christopher Lam
* REFACTOR: use scheme idioms
2017-12-15 Christopher Lam
* REFACTOR: Simplify Trans Number handling
2017-12-10 Christopher Lam
* COSMETIC:Rename subtitles -> subheadings in sorting/account display
2017-12-10 Christopher Lam
* REFACTOR: initialize accounts/filter by to null list
2017-12-10 Christopher Lam
* REFACTOR: rewrite renderers to lookup 'renderer-key from sortlists
2017-12-10 Christopher Lam
* ENH: Show account description in subheadings
2017-12-10 Christopher Lam
* REFACTOR: move add-split-row into make-split-table
2017-12-10 Christopher Lam
* REFACTOR: move *-choice-list into options-generator
2017-12-10 Christopher Lam
* REFACTOR: simplify functions, reduce arguments
2017-12-10 Christopher Lam
* REFACTOR: improve heading-list to handle dual headings
2017-12-10 Christopher Lam
* REFACTOR: centralize BOOK-SPLIT-ACTION
2017-12-10 Christopher Lam
* REFACTOR: centralize DATE-SORTING-TYPES and SUBTOTAL-ENABLED
2017-12-10 Christopher Lam
* REFACTOR: centralize key-choice-list
2017-12-10 Christopher Lam
* REFACTOR: centralize date-subtotal-list
2017-12-10 Christopher Lam
* REFACTOR: centralize sortkey-list
2017-12-10 Christopher Lam
* REFACTOR: centralize numerous used-* into column-uses? helper function
2017-12-22 Christopher Lam
* REFACTOR: combine 2 key-choice-list into 1
2017-12-22 Christopher Lam
* REFACTOR: move some funcs to refactor later
2017-12-10 Christopher Lam
* REFACTOR: always run qof-query-destroyer
2017-12-09 Christopher Lam
* ENH: Optimise Transaction Matcher filter
2017-12-10 Christopher Lam
* ENH: add reconciled status filtering
2017-12-10 Christopher Lam
* ENH: Move Account matcher to Filter tab
2017-12-09 Christopher Lam
* REFACTOR: Delete unused functions
2017-12-10 Christopher Lam
* REFACTOR: rename funcs, centralize strings
2017-12-10 Christopher Lam
* ***reindent and remove trailing whitespace***
2017-12-09 Christopher Lam
* ENH: Move Transaction Matcher to new Filter tab
2017-12-12 Christopher Lam
* BUGFIX: change date-sorting-types
2017-12-12 Christopher Lam
* OBSOLETE: 'exact-time removed
2017-12-21 Christopher Lam
* options.scm: upgrade lookup-value to learn section changes
2017-12-23 Geert Janssens
* Merge branch 'fix_bayes' of https://github.com/limitedAtonement/gnucash into unstable
2017-12-22 Geert Janssens
* Remove cmake hoop to change file permissions
2017-12-21 Geert Janssens
* Replace GNC_CONFIGURE(2) with configure_file
2017-12-22 John Ralls
* Fix use of guile function introduced in 2.0.10, not available in Ubuntu14.04.
2017-12-22 John Ralls
* Don't build borrowed/gwengui-gtk3 if its provided by gwenhywfar.
2017-12-21 John Ralls
* Replace the gnc:numeric pair with normal Scheme rationals.
2017-12-18 John Ralls
* Remove SIGFIG rounding from price calculation.
2017-12-21 lmat
* Adding to version info to feature string
2017-12-12 lmat
* Correct string cache code
2017-12-10 lmat
* Rename qofinstance function
2017-12-09 lmat
* Changed bayes import map design
2017-12-06 lmat
* Code review responses
2017-12-01 lmat
* Changed some constants to constexpr
2017-11-28 lmat
* Remove unused kvp function
2017-11-28 lmat
* kvp string: allocate enough space
2017-11-28 lmat
* Correct kvp to_string typo
2017-11-16 lmat
* Keep tokens as they are, don't translate them
2017-11-15 lmat
* Corrected memory management issue
2017-11-09 lmat
* Renaming functions to get rid of temporary name
2017-11-06 lmat
* Kvp no longer parses entries looking for delimiters
2017-11-03 lmat
* Added test for and corrected get_bayes_info
2017-11-02 lmat
* Removed qof_instance_set_kvp, qof_instance_get_kvp
2017-10-27 lmat
* Fixed conversion problem
2017-10-19 lmat
* Implement flat bayes kvp
2017-10-19 lmat
* Change kvp string representation
2017-10-05 lmat
* kvp frame to template and correcting failure macro
2017-08-14 lmat
* Account.c to Account.cpp
2017-12-20 Geert Janssens
* Force build order on report system support files
2017-12-19 Geert Janssens
* Add unit test for rewritten scheme error handlers
2017-12-19 Geert Janssens
* Drop guile 1.8 support
2017-12-19 Geert Janssens
* Add support for guile 2.2
2017-12-19 John Ralls
* Merge Chris Lam's Bug 790526 fix into maint.
2017-12-20 christopherlam
* fix silly mistake
2017-12-20 christopherlam
* fix unit test again
2017-12-19 John Ralls
* Add test-date-utilities to CMakeLists.txt and Makefile.am.
2017-12-19 John Ralls
* Fix duplicate test-case name.
2017-12-20 christopherlam
* typo
2017-12-20 christopherlam
* add unittest for bugzilla 790526
2017-12-19 christopherlam
* Fix -DWITH_SQL=OFF Build.
2017-12-08 Robert Fewell
* Change the relative path to a full one for rpath
2017-12-19 John Ralls
* Fix date offset error in datetime test.
2017-12-18 John Ralls
* Add tests for GMT and GMT+7 timezones.
2017-12-18 John Ralls
* Fix timezone constructor crash when zone file has no transitions.
2017-12-17 John Ralls
* Merge branch 'maint' into unstable
2017-12-16 John Ralls
* Release 2.6.19 (tag: 2.6.19)
2017-12-16 John Ralls
* Fix python tests when building from tarball.
2017-12-16 John Ralls
* Update Dutch and Serbian translations from the Translation project.
2017-12-16 John Ralls
* Merge Rob Gowin's Partial Fix for Bug 787497 into maint.
2017-12-16 John Ralls
* Add test-flat-bayes to autotools build.
2017-12-16 John Ralls
* Add minimum version to feature and fix copy-paste error in test-flat-bayes.
2017-12-15 John Ralls
* Handle mid-pacific timezones in date-sensitive tests.
2017-12-15 John Ralls
* Revert post-construction adjustment of ldt for DST.
2017-12-14 Robert Fewell
* Change the way the import settings are handled
2017-12-12 John Ralls
* Fix neutral time for consistent dates in mid-pacific time zones.
2017-12-12 John Ralls
* Fix posted-date scrub incrementing the day in central pacific timezones.
2017-12-12 John Ralls
* Remove (unused because of an error) parse-to-tm string timespec construction.
2017-12-12 John Ralls
* Fix offset handling in GncDateTime struct tm ctor, gnc_mktime, & gnc_timegm.
2017-12-11 Geert Janssens
* Add infrastructure to handle preference schema migrations and use it to replace one preference
2017-12-11 Robert Fewell
* Remove surplus statement
2017-12-08 John Ralls
* Fix the Mac install_name_dir to point at CMAKE_INSTALL_FULL_LIBDIR.
2017-12-10 John Ralls
* Bug 791422 - gnucash 2.7 no longer opens sqlite3...
2017-12-10 Robert Fewell
* Update file with changes for transient dialog changes
2017-12-10 Robert Fewell
* Replace magic numbers used in std::get... with values from enum
2017-12-10 Robert Fewell
* Merge branch 'prices-in' of /mygit/gnucash into prices-in
2017-12-07 Robert Fewell
* Add a test for empty values
2017-12-07 Robert Fewell
* Replace date parse function with one from gnc_datetime
2017-12-04 Robert Fewell
* Make changes for Gtk3 compatibility
2017-12-01 Robert Fewell
* Pot file changes for new files and settings rename
2017-12-01 Robert Fewell
* Rename gnc-csv-trans-settings.* to gnc-csv-import-settings.*
2017-12-01 Robert Fewell
* Reorder the create price procedure.
2017-12-01 Robert Fewell
* Add the ability to test from_commodity and to_currency being the same.
2017-12-01 Robert Fewell
* Add a test for from_commodity not being the same as to_currency
2017-12-01 Robert Fewell
* Various changes to comments in source files and displayed text.
2017-12-01 Robert Fewell
* Change the way commodity and currency combo's are shown.
2017-12-01 Robert Fewell
* Minor changes and tidy up
2017-12-01 Robert Fewell
* Change the settings file to save and load price settings.
2017-12-01 Robert Fewell
* Fix some errors in conversion of some function names
2017-12-01 Robert Fewell
* Remove duplicated function
2017-12-01 Robert Fewell
* Made changes to preset column types to align with other changes
2017-12-01 Robert Fewell
* Add option to specify Commodity from and Currency to for whole file
2017-12-01 Robert Fewell
* Some text changes
2017-12-01 Robert Fewell
* Remove not required account update
2017-12-01 Robert Fewell
* Add CSV Price importer assistant files
2017-12-01 Robert Fewell
* Rename function gnc_csv_price_col_type_strs to gnc_price_col_type_strs
2017-12-01 Robert Fewell
* Add price import files for the csv price importer
2017-12-01 Robert Fewell
* Add property files for the csv price importer
2017-12-09 John Ralls
* Test more thoroughly gnc-timezone's parsing of the zoneinfo database.
2017-12-08 Geert Janssens
* Fix transient parent warnings for tip-of-the-day and file dialogs
2017-12-08 Geert Janssens
* Fix transient parent warnings in search callbacks
2017-12-07 Robert Fewell
* Add a test for empty values
2017-12-07 Robert Fewell
* Replace date parse function with one from gnc_datetime
2017-12-06 Geert Janssens
* Add transient parent for search dialog
2017-12-03 Geert Janssens
* Fix missing transient parent warnings for several business dialogs
2017-11-16 Geert Janssens
* Fix transient parent for SX since last run... at startup
2017-11-16 Geert Janssens
* Set transient parents for all query views and dialogs
2017-11-26 Geert Janssens
* Alter function signature of gnc_(verify|yes_no|info|warning|error)_dialog
2017-11-25 Geert Janssens
* Improve window management
2017-11-16 Geert Janssens
* Ensure the main window is mapped before any reminder dialogs are shown at startup
2017-11-16 Geert Janssens
* Handle the splash/lock file warning more the gtk way
2017-11-22 lmat
* GUID/Flat bayes handling in 2.6
2017-12-05 John Ralls
* Rework directory determination in CMake builds.
2017-12-04 Robert Fewell
* Make changes for Gtk3 compatibility
2017-12-01 Robert Fewell
* Pot file changes for new files and settings rename
2017-12-01 Robert Fewell
* Rename gnc-csv-trans-settings.* to gnc-csv-import-settings.*
2017-12-01 Robert Fewell
* Reorder the create price procedure.
2017-12-01 Robert Fewell
* Add the ability to test from_commodity and to_currency being the same.
2017-12-01 Robert Fewell
* Add a test for from_commodity not being the same as to_currency
2017-12-01 Robert Fewell
* Various changes to comments in source files and displayed text.
2017-12-01 Robert Fewell
* Change the way commodity and currency combo's are shown.
2017-12-01 Robert Fewell
* Minor changes and tidy up
2017-12-01 Robert Fewell
* Change the settings file to save and load price settings.
2017-12-01 Robert Fewell
* Fix some errors in conversion of some function names
2017-12-01 Robert Fewell
* Remove duplicated function
2017-12-01 Robert Fewell
* Made changes to preset column types to align with other changes
2017-12-01 Robert Fewell
* Add option to specify Commodity from and Currency to for whole file
2017-12-01 Robert Fewell
* Some text changes
2017-12-01 Robert Fewell
* Remove not required account update
2017-12-01 Robert Fewell
* Add CSV Price importer assistant files
2017-12-01 Robert Fewell
* Rename function gnc_csv_price_col_type_strs to gnc_price_col_type_strs
2017-12-01 Robert Fewell
* Add price import files for the csv price importer
2017-12-01 Robert Fewell
* Add property files for the csv price importer
2017-12-02 Rob Gowin
* Partial fix for Bug 787497 - Disabling options cripples dist package (PR243)
2017-12-02 John Ralls
* One more stray header in libexec.
2017-12-01 John Ralls
* LIBDIR is not lib--two more CMakeLists.txt.
2017-12-01 John Ralls
* Remove gnucash/test.
2017-12-01 John Ralls
* Some fixes to complete removing gnucash/overrides.
2017-12-01 Rob Gowin
* Handle cases where LIBDIR is not "lib"
2017-12-01 John Ralls
* Fix autotools build after removing gnucash/overrides.
2017-12-01 Rob Gowin
* Handle cases where LIBDIR is not "lib"