forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2004
1535 lines (1167 loc) · 58.1 KB
/
ChangeLog.2004
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
-*- ChangeLog gnome-2-branch: top half of this file; HEAD branch: bottom half of this file
2004-12-23 Derek Atkins <[email protected]>
Chris Shoemaker's patch to silence gtk errors in dialog-budget-category.c:
* we don't need to get our own account TreeModel and set it to our
new account TreeView, because gnc_tree_view_account_new gives us
a TreeView with the global account TreeModel already set. Plus,
it already has the right TreeModelSort interface, which we are
counting on.
* check for NULL before trying to gtk_entry_set_text().
2004-12-20 Derek Atkins <[email protected]>
Stephen Evanchik's Double free bug in GncDenseCal:
* src/gnome-utils/gnc-dense-cal.c:
Remove double calls to gdc_free_all_mark_data
in object cleanup,
Stephen Evanchik's patch to Update scheduled transaction dialog:
* src/gnome/dialog-sx-from-trans.c:
- Removed per-button callbacks in favor of a
dialog response callback
- Changed per-button callback functions to
simple 'action' functions that are called
in the response handler.
- Migrated away from gtk_signal_connect
- Removed references to GNOME 1.x dialog
- C Style changes: 'open curly brace on same line'
- Moved 'public' function gnc_sx_create_from_trans
to the bottom of the file
2004-12-19 Derek Atkins <[email protected]>
Stephen Evanchik's Minor touch-ups to GNCCurrencyEdit:
* src/gnome-utils/gnc-currency-edit.c:
In gnc_currency_edit_get_type added 'const' keyword and
final NULL entry in currency_edit_info declaration
In gnc_currency_edit_new use g_type_class_ref and
GNC_TYPE_CURRENCY_EDIT macro; move gtk_type_new to
g_object_new
Stephen Evanchik's patch to remove references to gtk_type_new
in converted widgets:
* src/gnome-utils/gnc-date-edit.h:
Added GNC_TYPE_DATE_EDIT macro
* src/gnome-utils/gnc-general-select.h:
Added GNC_TYPE_GENERAL_SELECT macro
* src/gnome-utils/gnc-date-edit.c:
* src/gnome-utils/gnc-general-select.c:
* src/gnome-utils/gnc-dense-cal.c:
gtk_type_new -> g_object_new
2004-12-18 Derek Atkins <[email protected]>
Stephen Evanchik's GncDenseCal GObject patch:
* src/gnome-utils/gnc-dense-cal.h:
Added #include <glib.h>
Added private member 'disposed' to GncDenseCal struct
Added GNC_TYPE_DENSE_CAL macro
* src/gnome-utils/gnc-dense-cal.c:
Converted the following functions to use GObject:
gnc_dense_cal_get_type,
gnc_dense_cal_class_init
Renamed gnc_dense_cal_destroy to gnc_dense_cal_dispose
2004-12-17 Derek Atkins <[email protected]>
Stephen Evanchik's GNCDateEdit GObject patch:
* src/gnome-utils/gnc-date-edit.h:
Removed #include <gnome.h>
Added #include <glib.h>
Added private member 'disposed' to GNCDateEdit struct
* src/gnome-utils/gnc-date-edit.c:
Converted the following functions to use GObject:
gnc_date_edit_get_type,
gnc_date_edit_class_init
Renamed gnc_date_edit_destroy to gnc_date_edit_finalize
Added gnc_date_edit_dispose function that handles
child widget destruction
Explicit casts to GTK_WIDGET in create_children
2004-12-16 Joshua Sled <[email protected]>
Stephen Evanchik's GncGeneralSelect GObject cleanup patch:
* src/gnome-utils/gnc-general-select.h:
Removed #include <glib-object.h>
Added #include <glib.h>
Added private member 'disposed' to GNCGeneralSelect
* src/gnome-utils/gnc-general-select.c:
Converted the following functions to use GObject:
gnc_general_select_get_type,
gnc_general_select_class_init
Added gnc_general_select_dispose function that handles
child widget destruction
2004-12-15 Joshua Sled <[email protected]>
* src/register/register-gnome/gnucash-item-edit.c
(create_popup_toggle): realize popup-arrow widget so it gets
displayed; correct tyop in "field" name.
2004-12-15 Joshua Sled <[email protected]>
* src/register/register-gnome/gnucash-item-edit.c
(gnc_item_edit_set_cursor_pos): Re-add
text-selection-via-mouse-drag support [still buggy in multiple
ways; see GNOME2_STATUS for updates].
* GNOME2_STATUS: Update status.
2004-12-14 Joshua Sled <[email protected]>
* src/business/business-gnome/business-gnome.scm
(business-report-function): Change business-report menu path for
reporting ui updates.
2004-12-05 Derek Atkins <[email protected]>
New Account Dialog bug fix from Stephen Evanchik:
* src/gnome/glade/account.glade:
- Made Accounts h-scroll box policy automatic.
- Reordered the containing table to two rows, one column
* configure.in:
change the version number to 1.99 to make it different than HEAD.
2004-12-04 Derek Atkins <[email protected]>
Fix some deprecated functions:
* src/gnome-utils/gnc-gnome-utils.c:
gnome_pixmap_new_from_file -> gtk_image_new_from_file
* src/business/business-gnome/dialog-date-close.c:
gnome_pixmap_new_from_file -> gtk_image_new_from_file
gnome_unconditional_pixmap_file -> gnome_program_locate_file
* src/business/business-gnome/dialog-invoice.c:
gnome_unconditional_pixmap_file -> gnome_program_locate_file
gnome_pixmap_load_file -> gtk_image_new_from_file
2004-11-30 Derek Atkins <[email protected]>
* src/gnome-utils/Makefile.am:
Add DESTDIR to the install hooks
* src/gnome/gnc-plugin-page-account-tree.c: Fix spelling of "Account"
2004-10-31 Derek Atkins <[email protected]>
Heath Martin's x86_64 patch:
* lib/egg/egg-menu-merge.c:
change a gint to a gsize
* src/gnome/gnc-plugin-page-account-tree.c:
use GINT_TO_POINTER() instead of a direct cast.
* src/engine/gnc-budget-cat.c:
* src/gnome/dialog-budget-workbench.c:
Fixes for ISO C90. Fixes bug #153472.
2004-08-05 Derek Atkins <[email protected]>
* src/engine/gnc-budget*:
* src/gnome/*budget*:
* src/gnome/glade/budget.glade:
* src/gnome-utils/gnc-budget*:
Darin Willits' initial budget code. Still not fully functional
but the basic UI is there. See the GNOME2_STATUS for additional
information.
2004-07-20 Derek Atkins <[email protected]>
* lib/egg/eggtoolbar.c
Priit Laes' patch for C90 compliance (only the g2 portion).
2004-07-06 David Hampton <[email protected]>
* various files: Merge in changes to HEAD from 2004-05-02
(gnome2-merge-8) through yesterday (gnome2-merge-9).
2004-06-13 Derek Atkins <[email protected]>
* configure.in: add support for gtkhtml-3.1, remove src/experimental
* src/Makefile.am: remove experimental subtree
* src/app-file/gncmod-app-file.c: don't need gnc-mdi-utils.h
* src/gnome/gnc-window.c: register the gnc-mdi progress handler
* src/gnome-utils/gnc-mdi-utils.[ch]: add a progress handler
that gets set by the gnc-window code (just like in gnc-file)
to remove a circular dependency.
2004-05-31 Joshua Sled <[email protected]>
* src/report/report-gnome/gnc-plugin-page-report.c
(gnc_plugin_page_report_set_fwd_button),
(gnc_plugin_page_report_set_back_button): forw/back action sensitivity
(gnc_plugin_page_report_*_cb): Provide functional backing
[forw/back/reload/stop/export/options/print].
2004-05-31 Joshua Sled <[email protected]>
* src/report/report-gnome/gnc-plugin-page-report-ui.xml: Add
report UI decl.
* src/report/report-gnome/gnc-plugin-page-report.c
(gnc_plugin_page_report_init),
(gnc_plugin_page_report_merge_actions),
(gnc_plugin_page_report_unmerge_actions): Create and [un]merge report
Actions + toolbar items on page-transitions.
2004-05-31 Joshua Sled <[email protected]>
* src/gnome/top-level.c (gnc_html_register_url_cb): Modify to
handle hyperlinks better.
* src/engine/qofbook.c (qof_book_get_entity_by_guid): Add generic
GUID lookup [without entity-type being known] to handle historical
code.
2004-05-30 Joshua Sled <[email protected]>
* src/gnome-utils/gnc-mdi-utils.c (gnc_mdi_show_progress): Proxy
progress-display call through to gnc-window code.
(gnc_ui_get_toplevel): Re-implement gnc_ui_get_toplevel in a
less-correct but valid way.
* src/report/report-gnome/gnc-plugin-page-report.c
(gnc_plugin_page_report_create_widget): Set the top-level window
so progress-render calls work during report render-time.
2004-05-24 Derek Atkins <[email protected]>
* src/gnome/dialog-new-user.c:
* src/gnome/gnc-embedded-window.c:
* src/gnome/gnc-main-window.c:
* src/gnome/gnc-plugin-page-account-tree.c:
* src/gnome-utils/dialog-transfer.c:
* src/gnome-utils/gnc-query-list.c:
Vitaly Lipatov's C-construct patch --
During compiling CVS version of gnucash (tag gnucash-gnome2-dev)
I have found some mistakes makes error with GCC compiler.
* lib/egg/Makefile.am: don't define *_DISABLE_DEPRECATED when
building libegg. It causes a build failure on FC2 with
Gnome-2.6/Gtk-2.4 because some Gtk-2.2 functions have been
deprecated. Oops!
2004-05-15 Joshua Sled <[email protected]>
* src/report/report-gnome/gnc-plugin-page-report.c
(gnc_plugin_page_report_class_init): Add 'report_id'
object-property for page-c'tor.
(gnc_plugin_page_report_setup): Setup the page's report at creation time so
we can get the correct tab labels.
* src/gnome-utils/gnc-mdi-utils.c (gnc_mdi_show_progress): Weaken
assertion while code isn't fully changed over, yet.
(gnc_ui_get_toplevel): Comment out b0rken MDI-related code.
2004-05-05 Joshua Sled <[email protected]>
* src/report/report-gnome/window-report.h: Comment interface with
recon about usage in the source tree.
* src/report/report-gnome/gnc-plugin-page-report.c: Copy
window-report.c implementation over to here, rename, and get
somewhat working again. At this point, report-menu invocations
result in a tab being created, and displaying the error message.
2004-05-05 David Hampton <[email protected]>
Fixes from Christian Neumair <[email protected]>.
* src/gnome/dialog-new-user.c:
* src/gnome/window-reconcile.c:
* src/gnome/glade/account.glade:
* src/gnome/glade/newuser.glade:
* src/gnome-utils/dialog-transfer.[ch]:
* src/gnome-utils/transfer.glade: HIGify several dialogs.
2004-05-05 Derek Atkins <[email protected]>
* lib/egg/egg-menu-merge.c:
we don't have a "ui" so dont notify ourself when merging.
* src/gnome-utils/gnc-menu-extensions.scm:
Use empty strings instead of #f for menu items so we don't
cause problems later where we expect to get an actual string.
* src/report/report-gnome/report-gnome.scm:
Make sure we actually have a menu-path list!
2004-05-03 David Hampton <[email protected]>
Fixes from Christian Neumair <[email protected]>.
* src/gnome-search/search-date.c: Fix a crash.
* src/gnome-utils/gnc-tree-model-account.c: Fix memory leaks.
* src/register/register-gnome/gnucash-sheet.c: Fix popup menu.
2004-05-02 David Hampton <[email protected]>
* various files: Merge in changes to HEAD from 2004-03-03
(gnome2-merge-7) through today (gnome2-merge-8).
* src/business/business-core/Makefile.am:
* src/business/business-gnome/Makefile.am:
* src/import-export/binary-import/Makefile.am: Work around
problems with libltdl3.
* src/import-export/hbci/druid-hbci-initial.c: Eliminate a couple
of compiler warning messages.
2004-05-02 Joshua Sled <[email protected]>
* src/report/report-gnome/gnc-plugin-page-report.[ch]: Plugin-Page
for a report instance; yet to be finished.
* src/report/report-gnome/report-gnome.scm
(gnc:add-report-template-menu-items): Update menu path
constructors to have the correct gnome2-ui-merging menu path
value.
* src/gnome-utils/gnc-menu-extensions.[ch]: Partially-completed
changes for using the menu/UI merging code for setting up
extensions menu.
* src/gnome-utils/gnc-html.[ch]: Revert gtkhtml2 changes; restoring
gtkhtml1 version of the gnc-html.c code allows compatability
with gtkhtml3.
* src/gnome/ui/gnc-main-window-ui.xml: Add testing MiscAction,
MiscTestAction.
* src/gnome/gnc-main-window.c (gnc_main_window_cmd_test): Add test
menu item for GtkHtml3-window display.
* src/gnome/gnc-main-window.c (gnc_main_window_setup_window): Add
testing code to merge/display menu item, call the
extensions_menu setup routine.
* configure.in (DB_LIBS): move from gtkhtml2 to gtkhtml3.
* lib/egg/egg-menu-merge.c (egg_menu_merge_add_ui):
Merge egg_menu_merge_add_ui from gtk-2.4.0 GtkUIManager.
2004-04-10 Derek Atkins <[email protected]>
* src/app-utils/gnc-druid-provider-desc.h: add a comment about
the callback functions.
* src/import-export/Makefile.am: remove duplicate files, add
import format gnome provider.
* src/import-export/gnc-import-format-gnome.c: add a new format
provider to let the user choose a date or numeric format.
* src/import-export/import-provider-format.glade: glade file
for the format provider
* src/import-export/Makefile.am: add missing header file to noinst list
* src/import-export/gnc-import-desc-format.[ch]: callbacks should
take a GNCImportFormatCB*.
* src/import-export/gnc-import-format-gnome.c: fix a couple bugs.
- make sure we only include available choices.
- send the right callback.
* src/import-export/gncmod-generic-import.c: register the format provider
* src/import-export/qif-import/Makefile.am: include and link against
generic import library (for test druid)
* src/import-export/qif-import/gnc-druid-test.c: add "format" provider
to druid test
2004-03-05 Tomas Cernaj <[email protected]>
* src/register/register-gnome/gnucash-grid.c:
Fix bug in the grid's update method: Called
gnome_canvas_item_request_update() while updating.
2004-03-04 Tomas Cernaj <[email protected]>
* src/register/register-gnome/gnucash-cursor.c:
* src/register/register-gnome/gnucash-cursor.h:
* src/register/register-gnome/gnucash-grid.c:
* src/register/register-gnome/gnucash-grid.h:
* src/register/register-gnome/gnucash-header.h:
* src/register/register-gnome/gnucash-sheet.c:
* src/register/register-gnome/gnucash-sheet.h:
Convert to new GType-/GObject-System.
2004-02-09 Derek Atkins <[email protected]>
* src/import-export/Makefile.am: added new 'format' provider desc
* src/import-export/gnc-import-format-cb.[ch]:
Callback object for the import format provider
* src/import-export/gnc-import-desc-format.[ch]:
Descriptor for the Import Format Provider, used to choose
Date and Number formats.
2004-02-08 Derek Atkins <[email protected]>
* src/app-utils/gnc-druid-provider-desc-file.c:
* src/app-utils/gnc-druid-provider-desc-multifile.c:
don't need to cast to the superclass -- just use it directly
* src/gnome-utils/Makefile.am:
add multifile sources and glade file
* src/gnome-utils/gnc-druid-provider-file-gnome.c:
Call the next_cb with the proper argument (no clue why the compiler
didn't catch this before)
* src/gnome-utils/gnc-druid-provider-multifile-gnome.[ch]:
* src/gnome-utils/druid-provider-multifile.glade:
Added code and glade file to implement the multifile provider
* src/gnome-utils/gncmod-gnome-utils.c:
Register the file and multifile providers
* src/import-export/qif-import/gnc-druid-test.c:
Add the file and multifile providers to the druid test
* src/app-utils/gnc-druid-provider-desc-edge.c:
don't need to cast to the cuperclass -- just use it directly.
* src/app-utils/gnc-druid-provider-desc/file.[ch]:
add a history_id as a separate member for where to store
file choice history
* src/gnome-utils/gnc-druid-provider-file-gnome.c:
use new history_id member
* src/import-export/qif-import/gnc-druid-test.c:
set file history_id
* src/gnome-utils/gnc-druid-gnome.c: remove debugging printfs
* src/app-utils/gnc-druid.[ch]:
Make sure the jump code CAN allow a recursive jump originating
and ending in the same provider. Put a counter around the
jump function to make sure we don't walk the tree while we're
jumping. This will let the last jump win correctly.
* src/gnome-utils/gnc-druid-provider-multifile-gnome.c
handle prev-page properly by not allowing you to jump
back while you have any files in the list.
2004-02-07 Derek Atkins <[email protected]>
* src/app-utils/gnc-druid-provider-desc-file.[ch]:
Add 'glob' option (should we glob the filename?)
Add a forward pointer to the multifile if we allow multiple file selection
* src/app-utils/gnc-druid-provider.c:
Change the class functions so that children don't need to override
all the page-movement functions if they don't need to do so.
* src/app-utils/gnc-druid.c: handle jump_to_provider properly
* src/gnome-utils/Makefile.am: added file-chooser provider
* src/gnome-utils/gnc-druid-provider-edge-gnome.[ch]:
use basic-gobject framework to reduce the code size
remove non-necessary overrides
remove non-ncessary definitions
* src/gnome-utils/gnc-druid-provider-file-gnome.[ch]:
Add a new provider that allows the user to select a file.
2004-01-29 Derek Atkins <[email protected]>
* src/app-utils/gnc-druid-provider-*.[ch]:
- move the remove_file() method from the MultiFile to the File Provider
- add a returned gpointer this_file to the file provider callback.
2004-01-23 Derek Atkins <[email protected]>
* src/app-utils/Makefile.am:
Add new multifile provider descriptor
* src/app-utils/gnc-druid-provider-desc-multifile.[ch]:
New multi-file provider descriptor
2004-01-22 Derek Atkins <[email protected]>
* src/app-utils/Makefile.am:
Add basic gobject header.
* src/app-utils/gnc-basic-gobject.h: provide some macros to
simplify some general gobject creation, for example simple
objects with just a get_type() and new() methods.
* src/app-utils/gnc-druid-cb.h:
need to include gnc-druid-provider.h directly
* src/app-utils/gnc-druid-cb.c:
implement in terms of the new gnc-gobject macros
* src/app-utils/gnc-druid-provider.c:
* src/app-utils/gnc-druid-provider-desc.c:
* src/app-utils/gnc-druid-provider-desc-edge.c:
implement in terms of the new gnc-gobject macros
* src/app-utils/gnc-druid-provider-desc.h:
re-add the various callback routines in terms of a new typedef
* src/app-utils/gnc-druid-provider.h:
need to include gnc-druid-provider-desc.h directly
* src/import-export/Makefile.am:
Add new files to implement the format-chooser provider framework.
* src/import-export/import-prov-desc-format.[ch]:
* src/import-export/import-prov-format-cb.[ch]:
* src/app-utils/Makefile.am:
add new-file druid provider (and callback)
* src/app-utils/gnc-druid-provider-desc-file.[ch]:
provider descriptor for enter-file provider
* src/app-utils/gnc-druid-provider-file-cb.[ch]:
provider callback for enter-file provider
2004-01-20 Derek Atkins <[email protected]>
* src/app-utils/gnc-druid-provider-desc.h: add a pointer to the
provider created from this descriptor.
* src/app-utils/gnc-druid-provider.c: set the provider pointer
in the descriptor object.
* src/app-utils/gnc-druid.[ch]:
- add pointer to the current provider list node.
- add API to specifically jump to a particular provider
- restructure code to reduce duplication
* src/import-export/import-parse.h: add GNCIF_NONE
2004-01-16 Derek Atkins <[email protected]>
* src/gnome-utils/gnc-druid-gnome.[ch]: move the next/prev signals to
the pages. Add a cancel callback to the pages (the druid's main
cancel callback is never called). Now we get our signals
correct. Save a reference to the window so we can destroy it..
Use gtk_widget_destroy() instead of g_object_unref().
* src/import-export/qif-import/gnc-druid-test.[ch]: add some code
to test the new druid framework. Build's a test druid.
* src/import-export/qif-import/Makefile.am: build new test code
* src/import-export/qif-import/gnc-plugin-qif-import*: hook in
the new druid test code; add a new menu item to test the druid.
2004-01-14 Derek Atkins <[email protected]>
* src/app-utils/gnc-druid-provider-desc-edge.[ch]: add api to
build the provider-desc in one function.
* src/app-utils/gnc-druid-provider.[ch]: remove get_pages API;
the sub-class should just insert the list of pages and let
us deal with it. Also added a last_page() method.
* src/app-utils/gnc-druid.c: make sure to delete the providers
when we shut down.
* src/gnome-utils/gnc-druid-gnome*.h: move the definition of the
gnome UI to a header that actually get's installed as opposed to
an internal header.
* src/gnome-utils/gnc-druid-provider-edge-gnome.[ch]: Implement
a gnome-druid edge-page (first/last page in the druid). Probably
still need to hook into the next/prev buttons.
* gnc-druid.[ch]: add gnc_druid_{next,prev}_page() APIs to choose the
default next/previous page in the druid. This will automatically
walk through the providers to find the next real page.
* gnc-druid-gnome.c: hook in handlers for "next" and "back" signals
for default page moves. This should allow us to constantly keep
track of the current provider.
2004-01-13 Derek Atkins <[email protected]>
* configure.in: pull in gobject with glib
* src/app-utils/Makefile.am: add the gnc-druid files
* src/app-utils/gnc-druid*: an abstract druid creation framework.
* src/app-utils/Makefile.am: add the edge provider description.
* src/app-utils/gnc-druid-provider-desc-edge.*: provider descriptor
for edge pages (the first and last page of the druid).
* src/app-utils/gnc-druid*:
- add class macros
- add a title to the basic provider desc and clean it up.
* src/gnome-utils/Makefile.am: add preliminary gnome gnc-druid impl.
* src/gnome-utils/gnc-druid-gnome.[ch]: gnome implementation of gnc-druid
* src/app-utils/gnc-druid*:
- move the provider-building into the generic class and add an
"append_provider" method to the druid class. Use that when
building the druid.
- add a ui_type to the druid class and use that when building providers.
* src/app-utils/gnc-druid-provider.[ch]: add get_pages() class method.
(I decided I don't need a special gnc-druid-provider-gnome just to
add a get_pages method, as everything would need it anyways).
* src/gnome-utils/gnc-druid-gnome.c: use the get_pages() method
to actually build the druid.
* src/gnome-utils/gncmod-gnome-utils.c: register the gnome-druid and
edge provider.
2004-01-06 Derek Atkins <[email protected]>
* src/engine/qofinstance.c: revert fix from 01-01, because it's wrong.
Fix the actual problem, all the ...ReturnGUID() #define's which
don't check that it's passed a NULL value.
* src/engine/Transaction.h:
* src/engine/Account.h:
Fix ...ReturnGUID() to check whether it was passed a NULL object
and, if so, return the null GUID instead of crashing.
* src/business/business-core/gncCustomer.h:
* src/business/business-core/gncEmployee.h:
* src/business/business-core/gncInvoice.h:
* src/business/business-core/gncJob.h:
* src/business/business-core/gncTaxTable.h:
* src/business/business-core/gncVendor.h:
Fix ...RetGUID() to check whether it was passed a NULL object
and, if so, return the null GUID instead of crashing.
2004-01-01 Derek Atkins <[email protected]>
* src/engine/qofinstance.c: return a "valid" GUID even if passed a NULL
object, because lots of code assumes you can get a guid all the time.
So, just return guid_null() instead of NULL. Fixes a SEGV.
-=-=-=- cvs gnome2 branch ChangeLog is above this line -=-=-=-
2004-12-31 Derek Atkins <[email protected]>
John Ellson's patch to fix some gcc4 warnings (bug #162582).
Chris Shoemaker's gnc-trace patch.
* src/engine/gnc-trace.[ch]:
- Recent use of malloc in gnc-trace breaks my compile, use g_malloc
- Fix leak of filename mem
- add indenting of trace file according to ENTER/LEAVE stack depth
- have ENTER report file name of function along with function name
Chris Shoemaker's typo-fix patch.
* src/engine/qofbook.h:
* src/engine/qofid.h:
general fixed typos and comments
2004-12-29 Christian Stimming <[email protected]>
* src/tax/us/txf-de_DE.scm: Add Tax TXF categories for the de_DE
locale, i.e. the German tax report. If the current locale begins
with de_DE, the new German tax categories will be loaded,
otherwise the conventional U.S. ones. This is the easiest method
to allow other (non-U.S.) tax categories to be selected in the
accounts' tax settings.
* src/report/locale-specific/us/taxtxf-de_DE.scm: Add Tax report
for de_DE locale. If the current locale begins with de_DE, the new
German tax report will be loaded, otherwise the conventional
U.S. report.
2004-12-23 Christian Stimming <[email protected]>
* src/import-export/hbci/druid-hbci-initial.c (on_aqhbci_button):
Add extra sanity checks and verbose error message if the setup
wizard of aqhbci cannot be found.
* src/import-export/hbci/gncmod-hbci.c: Fix potentially missing
initialization of gwenhywfar library, as reported by Peter
O'Gorman on Max OS X.
2004-12-17 Derek Atkins <[email protected]>
Rich Johnson's patch to include private structures in the doxygen docs
* src/doc/doxygen.cfg.in:
extract local classes = yes
don't exclude *P.h
2004-12-05 Derek Atkins <[email protected]>
* src/engine/test/test-book-merge.c: targetEnt is always NULL
during MERGE_NEW so don't test it in that case.
2004-12-04 Derek Atkins <[email protected]>
* src/backend/file/Makefile.am:
* src/backend/file/test/Makefile.am:
* src/business/business-core/file/Makefile.am:
Need to include GNOME_XML_CFLAGS to make sure the libxml includes
are found during the compile. Fixes #121026.
* src/gnome/glade/register.glade:
Increase "number" spin box to a maximum of 1billion. Fixes #152772.
* src/business/business-core/gncInvoice.c:
send an event when a payment is processed so the invoice gets
updated as "paid" in the search window.
Fixes #139092.
* src/business/business-gnome/dialog-vendor.c:
Make sure we set the proper search-type when we create the
query, otherwise the search will fail later.
Fixes #141526.
* src/engine/test/test-numeric.c:
Make sure we use gint64 instead of gint when trying to test
values > 2^32.
2004-12-02 Derek Atkins <[email protected]>
* src/business/business-ledger/Makefile.am: add explicit
dependency on business-utils.
* src/engine/gnc-trace.c: Try a few different filenames for
the trace log and if all else fails fall back to stderr.
2004-11-27 Christian Stimming <[email protected]>
* src/import-export/import-backend.c
(gnc_import_find_split_matches): Improve importer performance by
matching imported transactions only against transactions in the
proper time interval.
2004-11-22 Christian Stimming <[email protected]>
* configure.in, README: Add configure check for libofx version
0.7.0 and respective error message. Update docs. Fixes #159050
2004-11-13 Christian Stimming <[email protected]>
* src/report/report-gnome/window-report.c,
src/scm/main-window.scm: Identified and fixed several places with
untranslated strings.
2004-11-10 Christian Stimming <[email protected]>
* src/engine/gnc-commodity.c, src/engine/iso-4217-currencies.scm:
Change currency mnemonic for "New Israeli Shekel" from "ILS" to
"NIS". Fixes #152755.
2004-11-01 Christian Stimming <[email protected]>
* src/gnome/dialog-find-transactions.c: Mark search criteria for
translation -- somehow this had been missed all the time.
2004-10-31 Derek Atkins <[email protected]>
* Neil Williams' QOF Book Merge Patch #2.
* src/engine/gnc-pricedb.c:
Phil Longstaff's patch to prevent duplicate pricedb entries.
Heath Martin's x86_64 patch:
* macros/autogen.sh:
change "head -1" to "head -n 1"
* src/engine/gnc-numeric.[ch]:
change string_to_gnc_numeric() to return gboolean.
* src/app-utils/gnc-exp-parser.c:
* src/backend/file/sixtp-dom-parsers.c:
use new string_to_gnc_numeric() API
* src/engine/gnc-lot.c:
64-bit safe for x86_64
* src/gnome/dialog-scheduledxaction.c:
* src/gnome/dialog-sxsincelast.c:
* src/gnome/druid-loan.c:
* src/gnome-utils/dialog-account.c:
* src/gnome-utils/gnc-query-list.c:
* src/import-export/import-match-map.c:
use GPOINTER_TO_INT and GINT_TO_POINTER macros to be 64-bit safe.
James Strandboge's "Easy Invoice" patch:
* src/business/business-reports/Makefile.am:
* src/business/business-reports/business-reports.scm:
* src/business/business-reports/easy-invoice.scm:
add "easy invoice" code.
* src/business/business-utils/business-prefs.scm:
* src/business/business-utils/business-utils.scm:
add preferences for the business ID, used in the easy invoice.
* src/report/stylesheets/Makefile.am:
* src/report/stylesheets/stylesheets.scm:
* src/report/stylesheets/stylesheet-easy.scm:
add "easy stylesheet" code.
* src/engine/gw-engine-spec.scm:
Fix parameter order to match C file (thanks for Erwin Rieger).
2004-10-30 Christian Stimming <[email protected]>
* doc/README.HBCI: Updated HBCI readme.
* src/import-export/hbci/hbci-interaction.c: Fix problems with
user messages.
2004-10-24 Benoit Grégoire <[email protected]>
* po/fr.po: Translation from Johan Buret, unfortunately on the wrong branch.
2004-10-16 Derek Atkins <[email protected]>
* Neil Williams' QOF book merge patch #1:
qof_book_merge - release 1.
Includes
qof_book_merge.c
qof_book_merge.h
test-book-merge.c test routine
New Account Hierarchy druid
Sundry adjustments to QOF support.
Tweaks to several Makefile.am files to support new files.
Tweaks to window-main.c to support new menu item
Changes to druid-hierarchy.c to support the merge druid.
2004-10-15 Derek Atkins <[email protected]>
* src/business/business-core/gncInvoice.[ch]
* src/business/business-gnome/dialog-date-close.[ch]
* src/business/business-gnome/dialog-invoice.c
* src/business/business-gnome/glade/date-close.glade
* src/business/business-utils/business-prefs.scm
Daniel Lindenaar's patch to implement a check-box in the Invoice Post
Dialog (with a default in the File Preferences) to choose to accumulate
splits when posting an invoice, or post a 1:1 mapping.
2004-10-13 Derek Atkins <[email protected]>
* src/import-export/qif-import/qif-object.scm:
provide a default account name so we don't crash when someone
imports a broken QIF that has a !Account without an account name.
Fixes bug #155244.
2004-10-08 Derek Atkins <[email protected]>
* engine/gw-engine-spec.scm:
* gnome-search/dialog-search.h:
* report/report-gnome/dialog-column-view.h:
Andreas Rottmann's patch to support g-wrap 1.9.
- don't wrap non-existent objects
- protect headers from multiple inclusion
- include gtk.h header when we use gtk objects.
2004-10-08 Benoit Grégoire <[email protected]>
* src/import-export/import-backend.c: Duplicate match tweaks:
-Change MATCH_DATE_NOT_THRESHOLD from 3 weeks to two weeks
-A transaction amount mismatch past the threshold is now punished by -5 instead of -1
-Date mismatch is now worth -5 isntead of -10
-Check number mismatch is now punished -2, but only if both numbers are NOT empty.
* src/import-export/ofx/gnc-ofx-import.c: Update for new LibOfx, this among other things, gives gnucash Microsoft OFC support.
* src/import-export/ofx/test/test-link.cL Update for new LibOfx.
* configure.in: Partly update for new libofx. It will crash if the right version isn't available, but there is no explicit version support (if someone wants to code it, you can use the output of "ofxdump --version".
* src/gnome-utils/gnc-query-list.c: Fix gcc3.4 compile problem
2004-09-30 Christian Stimming <[email protected]>
* src/import-export/hbci/gnc-hbci-getbalance.c: Fix HBCI balance
retrieval when some of the returned balance is NULL.
2004-09-28 Derek Atkins <[email protected]>
* src/engine/qofquerycore.c: Fix for x86_64.
* src/backend/file/io-gncbin-r.c: Fixes for x86_64
2004-09-22 Christian Stimming <[email protected]>
* src/import-export/hbci/hbci-interaction.c: Finally fix the HBCI
implementation based on aqbanking/aqhbci. This can now be tested
intensively.
2004-09-22 Derek Atkins <[email protected]>
* src/engine/test/test-transaction-reversal.c:
* src/engine/test-core/test-engine-stuff.c:
Fix for ISO C90. Fixes #153465.
2004-09-06 Christian Stimming <[email protected]>
* src/import-export/hbci/dialog-hbcitrans.c,
gnc-hbci-getbalance.c, gnc-hbci-gettrans.c: More AqBanking work
after hints from Martin Preuss <[email protected]>.
2004-09-04 Christian Stimming <[email protected]>
* src/import-export/hbci/*.h, *.c, macros/aqbanking.m4,
configure.in: Major change for HBCI. It is no longer based on the
openhbci2 library but instead on the aqbanking library
http://sf.net/projects/aqbanking which is Martin Preuss' successor
of openhbci2. This means that now aqbanking-0.9.2 is required
instead of any of the openhbci[2] package. Still needs more
testing, though.
2004-08-28 Derek Atkins <[email protected]>
* src/engine/Account.c: fix xaccAccountGetBalanceAsOfDate() to properly
compute the balance at the end of the split list. Fixes #150757.
2004-08-21 Derek Atkins <[email protected]>
* src/report/standard-reports/advanced-portfolio.scm:
Add option to include zero-amount splits in computations.
Fixes #143722.
2004-08-19 Derek Atkins <[email protected]>
Neil Williams's "QOF create: functionality added" patch:
QOF create: adding functions to be used with
qof_object_new_instance for new qof_book_merge objects, including
business objects.
Small documentation tweak to make QofEntity and QofParam
structures visible to doxygen.
* src/import-export/qif-import/qif-dialog-utils.scm:
Perry Smith's Null Account Patch. Make sure the security is
a real string before appending an account separator, so we
don't try to create a "null" account.
2004-08-19 Derek Atkins <[email protected]>
* configure.in: change the gtkhtml order to search for >= 1.1 before
< 1.1, in order to try to fix #84707 on systems with multiple
versions of gtkhtml.
2004-08-12 David Montenegro <[email protected]>
* src/report/standard-reports/trial-balance.scm:
src/report/standard-reports/equity-statement.scm:
src/report/report-system/report-utilities.scm:
Added to the work sheet special handling of
inventory and income summary accounts for
merchandising businesses. Fixes #150008.
2004-08-11 Derek Atkins <[email protected]>
* src/gnome/gnucash.desktop.in: make the desktop HIG compliant.
Fixes #145545
2004-07-20 Derek Atkins <[email protected]>
* src/engine/Scrub.c
* src/engine/Scrub2.c
* src/engine/gnc-numeric.c
* src/engine/gnc-pricedb.c
* src/engine/kvp-util.c
* src/engine/qofid.c
* src/engine/qofmath128.c
* src/engine/qofquery.c
* src/engine/qofsession.c
* src/engine/test/test-numeric.c
Priit Laes' patch for C90 compliance.
2004-07-13 David Montenegro <[email protected]>
* src/report/standard-reports/general-ledger.scm:
src/report/standard-reports/standard-reports.scm:
src/report/standard-reports/Makefile.am:
Added General Ledger report, a Transaction Report
with a pre-set set of options.
* src/report/standard-reports/transaction.scm:
FIXME - All accounts now selected by default, avoids
confusing error message. Error message also clarified.
Fixed "Totals" option so that it works.
* src/report/standard-reports/balance-sheet.scm:
* src/report/standard-reports/equity-statement.scm:
* src/report/standard-reports/trial-balance.scm:
Updated comments
* Fixes #144268
* src/report/standard-reports/income-statement.scm:
src/report/standard-reports/pnl.scm:
src/report/standard-reports/standard-reports.scm:
src/report/standard-reports/Makefile.am:
Rewrote pnl.scm, renamed it to income-statement.scm.
Can now create a meaningful statement post-closing.
* src/report/report-system/html-acct-table.scm:
Updated to include ability to "see through" closing
and/or adjusting entries.
* Fixes #105330.
* src/report/standard-reports/general-journal.scm:
src/report/standard-reports/standard-reports.scm:
src/report/standard-reports/Makefile.am:
Added General Journal report, a Register Report
with a pre-set set of options.
* Bug #109738.
2004-07-13 David Montenegro <[email protected]>
* src/report/standard-reports/trial-balance.scm:
* src/report/standard-reports/standard-reports.scm:
* src/report/standard-reports/Makefile.am
added Trial Balance/Work Sheet report
* src/report/standard-reports/balance-sheet.scm:
added drop-down choices missing in previous version
added support for adjusting/closing entries
* src/report/standard-reports/equity-statement.scm:
added support for adjusting/closing entries
fixed "For Period Covering" label
fixed handling of unrealized gains
investment/draw discrimination based on shares sign
omit unrealized gains when zero
* src/report/report-system/html-acct-table.scm:
* src/report/report-system/html-table.scm:
null reference bug fixes
* src/report/report-system/report-utilities.scm:
added utility functions for accessing splits
and creating double-column balance HTML
gnc:double-col,
gnc:account-get-trans-type-balance-interval,
gnc:account-get-pos-trans-total-interval
* src/report/report-system/commodity-utilities.scm:
* src/report/report-system/html-acct-table.scm:
* src/report/report-system/report-utilities.scm:
moved gnc:commodity-collector-commodity-count and
gnc:uniform-commodity? into commodity-utilities.scm
* src/report/report-system/report-system.scm:
added some additional exports
Bug #144265
2004-07-04 Derek Atkins <[email protected]>
* acinclude.m4: create a SCANF_QD_CHECK and make sure both
that and SCANF_LLD_CHECK are "long long" constant-safe
* configure.in: use the new SCANF_QD_CHECK and use it
earlier in the configuration.
2004-07-02 Derek Atkins <[email protected]>