forked from Gnucash/gnucash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.2005
5412 lines (4379 loc) · 202 KB
/
ChangeLog.2005
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
r12228 | chris | 2005-12-31 17:28:42 -0500 (Sat, 31 Dec 2005) | 2 lines
M /trunk/src/engine/Group.c
M /trunk/src/engine/Group.h
M /trunk/src/engine/GroupP.h
Constify the AccountGroup variables where possible in Group.[ch]
2005-12-31 Chris Shoemaker <[email protected]>
* [r12224] trunk/src/gnome/gnc-plugin-page-budget.c: Turn on gconf
for the budget plugin page's tree view account. Doesn't seem to
work quite yet. It does save the settings in the user's gconf
directory, but the tree view doesn't remember things like sort
order, which the account-tree page's account treeview does
remember. There must be something else needed...
* [r12223] trunk/src/gnome-utils/gnc-tree-model-budget.c,
trunk/src/gnome/gnc-plugin-budget.c: *really* mark strings for
runtime translation, not just translatable.
* [r12222] trunk/src/gnome/glade/budget.glade: Remove GUI for old
attempt at account type filtering.
* [r12221] trunk/src/gnome/gnc-plugin-page-budget.c: Remember what
the Budget views looked like last time we were running Most of
the work is delegated to GncTreeViewAccount, just as for
GncPluginPageAccountTree. One difference is that the Budget page
has to also remember which Budget it was showing. For that, we
encode the GUID to a string in the keyfile.
* [r12220] trunk/src/gnome-utils/gnc-plugin-page.h: whitespace
line-wrap cleanup
* [r12219] trunk/src/gnome-utils/gnc-tree-view-account.c,
trunk/src/gnome-utils/gnc-tree-view-account.h,
trunk/src/gnome/gnc-plugin-page-account-tree.c,
trunk/src/gnome/gnc-plugin-page-account-tree.h: Move functions
from GncPluginPageAccountTree to GncTreeViewAccount The reason
GncPluginPageBudget keeps wanting to use functions in
GncPluginPageAccountTree is that they both use
GncTreeViewAccount. So, we're moving those functions (the
account view filter functions and the account view save/restore
functions) into gnc-tree-view-account. Along the way, we're also
narrowing the argument types from GtkTreeView to
GncTreeViewAccount to avoid unnecessary down-casting.
* [r12214] trunk/src/gnome/gnc-plugin-page-account-tree.c,
trunk/src/gnome/gnc-plugin-page-account-tree.h,
trunk/src/gnome/gnc-plugin-page-budget.c: Generalizing Account
Filter By... (step 5) export the account-tree's account filter
function populate the account-tree's account filter struct with
the right tree-view. And finally... reuse all this generalized
functionality in the budget plugin page. Nice!
* [r12213] trunk/src/gnome/gnc-plugin-page-account-tree.c,
trunk/src/gnome/gnc-plugin-page-account-tree.h: Generalize
Account Filter By... (step 4) Fixup comments forgotten in step
3. Factor out and export most of the account filter dialog
creation. Eventually this function should live somewhere else.
2005-12-30 Chris Shoemaker <[email protected]>
* [r12212] trunk/src/gnome/gnc-plugin-page-account-tree.c:
Generalize Account Filter By... (step 3) Narrow all the account
filter dialog callbacks to use only the AccountFilterDialog
struct. Now they're multi-purpose.
* [r12211] trunk/src/gnome/gnc-plugin-page-account-tree.c:
Generalize Account Filter By... (step 2) Narrow the account
filter function to use only the AccountFilterDialog. Now it's
multi-purpose.
* [r12210] trunk/src/gnome/gnc-plugin-page-account-tree.c,
trunk/src/gnome/gnc-plugin-page-account-tree.h: Generalize
Account Filter By... (step 1) Export AccountFilterDialog type
* [r12208] trunk/AUTHORS,
trunk/src/gnome-utils/gnc-tree-model-budget.c,
trunk/src/gnome/glade/budget.glade,
trunk/src/gnome/gnc-plugin-budget.c: Mark budget strings for
i18n Remove obsolete budget glade dialogs
* [r12202] trunk/src/engine/test-core/Makefile.am,
trunk/src/engine/test-core/test-engine-strings.h,
trunk/src/engine/test-core/test-engine-stuff.c: Minor
improvements to engine testing infrastructure
- add some arrays of realistic string values for various
Account and Transaction fields
- use the arrays to generate slightly more human-readable
random books
- pull some hardcoded constants out into static knobs
- wrap Transaction creation in begin/commit
* [r12201] trunk/src/engine/Account.c, trunk/src/engine/Account.h,
trunk/src/engine/AccountP.h, trunk/src/engine/Group.c,
trunk/src/engine/Group.h, trunk/src/engine/gw-engine-spec.scm:
Add 'const' qualifier to Account pointers in the Account api.
Including necessary related changes to functions passed accounts
from the account functions. Interestingly, the only g-wrap
function that complained about the new const function arguments
was xaccAccountOrder(), the only one using const Account **
types. It seems very uncommon to express const-ness in g-wrap
for any types other than gw:mchar. Actually I couldn't find any
other examples, anywhere, so I had to guess at the syntax, but
it works. Oh, and one or two minor tweaks like my last commit
snuck in, too.
2005-12-30 David Hampton <[email protected]>
* glade-fixup: New script that will remove all post-gtk24
attributes from all glade files under the 'src' directory.
* src/gnome/glade/register.glade: Fix the 'sort by number' and
'sort by statement date' choices in the register sort dialog.
* src/gnome-utils/dialog-transfer.c: Enhance the dialog so that
pressing the Enter key in any field will activate the dialog.
Fixes bug 125565.
* src/gnome/glade/budget.glade: Remove gtk2.6 properties from the
file.
* src/gnome-utils/search-param.c: Remember and use the
justification specified in the code instead of just left
justifying everything. Fixes #126546.
2005-12-29 David Hampton <[email protected]>
* src/scm/main.scm:
* src/scm/main-window.scm:
* src/gnome/gnc-plugin-page-account-tree.c:
* src/gnome/glade/account.glade:
* src/gnome/ui/gnc-plugin-page-account-tree-ui.xml: Migrate the
account page options to a new "Filter By" dialog. Add a new
option to filter out accounts with zero total balances. Remember
the current filter state across invocations of GnuCash.
* src/gnome-utils/ui/gnc-main-window-ui.xml:
* src/gnome-utils/gnc-main-window.c:
* src/gnome/ui/gnc-plugin-page-register-ui.xml: Move the "Sort By"
and "Filter By" menu items to the main window so they will always
appear in the same place in the menus. Hide them so they don't
actually appear until a page provides them.
* src/engine/gw-engine-spec.scm: Comment out unused function that
won't compile with g-wrap 1.9 after the const-ifying of the
account functions.
2005-12-29 Christian Stimming <[email protected]>
* src/import-export/hbci/gnc-hbci-utils.h, gnc-hbci-utils.c: Use
glib's g_iconv functions instead of the system's iconv(3)
functions to improve portability.
2005-12-29 Chris Shoemaker <[email protected]>
* [r12199] trunk/src/engine/Account.c, trunk/src/engine/Account.h:
Single-pass audit/cleanup of Account.c
- standardize on 'acc' as variable name for Account.
- removed 'acc->inst.dirty = TRUE' when preceeded by mark_account.
- slightly more consistent whitespace.
- short-circuit no-op in many cases where we thought we were
changing state but we really weren't. Don't dirty Accounts in
these cases.
- fix a couple cases where we dirtied the account without
dirtying the parent
- fix one BUG where we just blew away the account's Lots for no
reason.
- comment possible bug where we don't dirty a split.
- comment two possible buglets where we generate double CM
events.
- comment on possible bugs related to conditional sorting of the
Split list.
, - heavy conversion from lower-level to higher-level KVP api.
- plug mem leak of entire GList of splits.
- document minor change to corner-case behavior of
xaccAccountHasAncestor().
- several control flow simplifications.
- fixed one case where we were changing the Account without
dirtying it. (Can't find this one now. Maybe I imagined it.)
- Please note where I've marked 'BUG'. I think there are still
(at least) 2 medium and 2 minor bugs remaining in this
file. I'll have another look some other day.
* [r12197] trunk/src/engine/Transaction.c: remove random
qof_commit_edit from xaccSplitSetSlots_nc fixes unbalanced
begins/commits
* [r12196] trunk/lib/libqof/qof/qof-be-utils.h: spelling fix
2005-12-28 Chris Shoemaker <[email protected]>
* [r12191] trunk/src/bin/Makefile.am: trigger regeneration of
gnucash scripts when the configuration changes pulled from 1.8
* [r12190] trunk/NEWS: Pulled NEWS history from 1.8 branch into
trunk.
2005-12-28 David Hampton <[email protected]>
* src/glib-compat.h:
* src/gnome-utils/gnc-recurrence.c:
* src/gnome-utils/gnc-period-select.c:
* src/gnome-utils/gnc-dense-cal.c:
* src/gnome-utils/dialog-utils.c:
* src/gnome-utils/gnc-frequency.c:
* src/engine/FreqSpec.c:
* src/engine/Recurrence.c:
* src/gnome/druid-loan.c:
* src/gnome/druid-acct-period.c:
* src/gnome/dialog-sx-from-trans.c:
* src/gnome/dialog-scheduledxaction.c:
* src/gnome/dialog-sxsincelast.c:
* src/app-utils/gnc-accounting-period.[ch]: Better fix for
compiling cleanly on a glib 2.9/2.10 system without using
deprecated functions.
2005-12-28 Christian Stimming <[email protected]>
* src/gnome-utils/dialog-options.c: Improve tooltip display for
almost all option types. Add tooltips for buttons where they were
missing. Pack option widgets into GtkEventBox so that tooltips are
really shown. Fix various string i18n bugs.
2005-12-27 Christian Stimming <[email protected]>
* src/register/register-core/quickfillcell.c (utf8_caseequal_len):
Fix length-delimited utf8 comparison. Fixes occasional crashes in
register when editing quickfill entries.
2005-12-27 David Hampton <[email protected]>
* src/gnome-utils/gnc-recurrence.c:
* src/gnome-utils/gnc-period-select.c:
* src/gnome-utils/gnc-dense-cal.c:
* src/gnome-utils/dialog-utils.c:
* src/gnome-utils/gnc-frequency.c:
* src/gnome-utils/gnc-plugin-manager.c:
* src/engine/FreqSpec.c:
* src/engine/Recurrence.c:
* src/gnome/druid-loan.c:
* src/gnome/druid-acct-period.c:
* src/gnome/dialog-sx-from-trans.c:
* src/gnome/dialog-scheduledxaction.c:
* src/gnome/dialog-sxsincelast.c:
* src/app-utils/gnc-accounting-period.c:
* lib/libqof/qof/guid.c: Update to compile cleanly on a glib
2.9/2.10 system without using deprecated functions.
* configure.in: Detect a glib 2.9 system and set appropriate
flags. Change the default so that glib deprecated functions are
not allowed with glib <= 2.10. Add arguments to allow disabling
deprecated gdk functions.
2005-12-27 Chris Shoemaker <[email protected]>
* [r12188] trunk/README.dependencies: Document our dependency on
gcc as a compiler.
* [r12186] trunk/README.patches, trunk/README.svn,
trunk/make-gnucash-patch.in: Update patch submitting
instructions.
2005-12-27 Derek Atkins <[email protected]>
* lib/goffice-0.0.4/plugins/plot_radar/gog-radar.c:
rename 'fmin()' to 'gogi_fmin()' to prevent double
declaration on MacOS. It's an internal (static) function
so we can safely rename the function.
2005-12-26 David Hampton <[email protected]>
* src/import-export/hbci/glade/hbciprefs.glade: Remember value of
HCBI preferences.
2005-12-23 David Hampton <[email protected]>
* src/gnome-utils/dialog-options.c: Translate strings for
multichoice options.
2005-12-22 Christian Stimming <[email protected]>
* macros/g-wrap.m4: Copy macro file from gwrap-1.3.4 package
because it is missing in the gwrap-1.9.x packages. May be removed
if we switch to a different package detection code, potentially
via pkgconfig, but for now copying this macro is the easiest
solution.
2005-12-19 David Hampton <[email protected]>
* src/gnome-utils/gnc-main-window.c: Andreas Köhler's patches to
remember/restore maximized windows, and to shrink the size of the
close button on notebook tabs.
2005-12-18 Christian Stimming <[email protected]>
* src/report/standard-reports/*.scm: I18n string cleanup: Fix
"(N_" for "(_" where applicable.
* po/glossary/gnc-glossary.txt: Add explanation for trial balance.
2005-12-15 Christian Stimming <[email protected]>
* src/import-export/hbci/gnc-hbci-transfer.c: The amount of the
online transfer somehow needs to be negated in the gnucash account
now.
2005-12-10 David Hampton <[email protected]>
* src/gnome-utils/gnc-tree-model-account.c:
* src/gnome/gnc-plugin-page-account-tree.c:
* src/gnome/glade/account.glade:
* src/engine/Account.[ch]: David Jafferian's account deletion
patch that queries the user about whether to delete or move any
contained transactions and sub-accounts.
* src/gnome-utils/dialog-utils.c: Fix the glade auto-connect code
so it doesn't swap the callback arguments when an explicit
"object" is provided to the callback. (This is an unused code
path that is about to be used.)
* src/register/register-gnome/gnucash-grid.c: Andreas Köhler's
patch to fix the alignment of cells in the register.
2005-12-09 Derek Atkins <[email protected]>
* configure.in: g-wrap 1.9.6 can define the module-dir as
share/guile/site -- we want to make sure to get rid of
the /site when computing the libdir from this. Otherwise
the runtime will fail to find the g-wrap runtime libraries.
* src/gnome-utils/gnc-currency-edit.c:
* src/business/business-gnome/business-urls.c:
include <strings.h> to compile on Solaris.
2005-12-08 Christian Stimming <[email protected]>
* src/report/standard-reports/income-statement.scm, *.scm:
Unify/simplify several option names for translation.
2005-12-07 Joshua Sled <[email protected]>
* hbci-interaction.c (inputBoxCB, getTanCB): printf(%d, size_t)
casting for 64-bit arch.
* hbci-interaction.c (showBoxCB, hideBoxCB): uint32->pointer(64) casting.
2005-12-07 David Hampton <[email protected]>
* src/gnome/gnc-plugin-page-budget.c:
* src/gnome/ui/gnc-plugin-page-budget-ui.xml: Add support for
opening account registers from the budget page. Use shorter
toolbar labels.
* src/gnome-utils/gnc-tree-view-account.c: Add a check that the
tree selection is in the right mode to call
gnc_tree_view_account_get_selected_account().
* configure.in: Comment out the recently introduced second set of
checks for gconf. They cause problems with schema installation.
2005-12-06 Joshua Sled <[email protected]>
* gnc-main-window.c (gnc_menu_actions): Remove Misc menu.
2005-12-06 David Hampton <[email protected]>
* src/gnome/dialog-price-edit-db.c: Fix the edit price to properly
check the number of selected prices.
* lib/goffice-0.0.4/goffice/gtk/go-combo-text.c: Comment out
function that does nothing except generate a compiler warning.
2005-12-06 Joshua Sled <[email protected]>
* gog-graph-impl.h:
* gog-graph.c (gog_graph_unref_data), (gog_graph_ref_data): Don't
misuse the Quark storage for pointers, especially because they're
not integer-sized on a 64-bit platform.
2005-12-06 Derek Atkins <[email protected]>
* configure.in: remove libgsf/po/Makefile and goffice/po/Makefile
because we never build these directories.
* configure.in:
- remove libgsf/doc*
- remove GTK_DOC checks
* lib/libgsf/Makefile.am: remove 'doc' from SUBDIRS and
remove distcheck extra flags.
2005-12-05 Christian Stimming <[email protected]>
* src/backend/file/gnc-backend-file.c: Don't chown() the owner,
only root can do that. Ignore errors on chown() since that means
the save completed successful anyway.
2005-12-04 Derek Atkins <[email protected]>
* configure.in: fix some of the output strings
* lib/libgsf-1.12.3/gsf/glib24_26-compat.c:
make g_get_filename_charsets static because it's not
needed outside this file.
* lib/goffice-0.0.4/goffice/glib24_26-compat.c:
make _g_compute_locale_variants static because it's
not needed outside this file.
* src/gnome-utils/Makefile.am: Grab svn version using
svnversion instead of parsing "svn info". Also make it
so that it doesn't force a rebuild if the version does
not change.
* src/gnome-utils/gnc-splash.c: changed svn version
from an integer into a string. Handle that in the
splash screen.
2005-12-04 Joshua Sled <[email protected]>
* All: Fold branches/goffice-update/ back into trunk/.
2005-12-04 David Hampton <[email protected]>
* src/gnome-utils/test/test-gnc-recurrence.c:
* src/engine/test-core/test-engine-stuff.c:
* src/engine/gnc-associate-account.c:
* lib/libqof/qof/qofquery.c: Don't ignore the return value of glib
list functions. This will likely become a warning in future
version of glib, which translates to an error for gnucash since it
compiles with the -Werror flag.
2005-12-04 Derek Atkins <[email protected]>
* macros/autogen.sh: don't warn the user about running
configure with zero arguments. Autogen doesn't run
configure anymore. This confused a user.
2005-12-04 Christian Stimming <[email protected]>
* src/import-export/hbci/druid-hbci-initial.c: Fix crash when
clicking on "start aqbanking-wizard" with gwenhywfar>=1.99.x.
2005-12-03 Christian Stimming <[email protected]>
* Makefile.am: Add convenience makefile rule "make pot" for
updating the translation template. Rename the rule for
auto-generation of ChangeLog.svn from svn to "ChangeLog.svn".
2005-12-03 Joshua Sled <[email protected]>
* split-register-control.c (gnc_split_register_auto_completion):
Fail fast if no auto-complete requested.
* split-register.c (gnc_split_register_set_auto_complete): Add new
configuration option to turn off auto-completion.
* dialog-scheduledxaction.c (schedXact_editor_create_ledger): Turn
off auto-complete on the SX template register.
2005-12-03 Joshua Sled <[email protected]>
* GNOME2_STATUS: remove GOG-porting notes, spelling fixes.
* sched-xact.glade:
* apps_gnucash_dialog_scheduled_transctions.schemas:
* dialog-scheduledxaction.c (schedXact_editor_create_ledger):
Remove the not-really-respected-anyways option to change the
number of register lines in the SX editor dialog.
2005-12-03 Joshua Sled <[email protected]>
* gnc-dense-cal.c (gnc_dense_cal_init): Don't use a hardcoded
font; get both fonts from the style.
2005-11-30 David Hampton <[email protected]>
* src/register/register-gnome/gnucash-header.c:
* src/business/business-gnome/dialog-date-close.c:
* src/gnome-utils/gnc-date-edit.c:
* src/gnome-utils/gnc-html-graph-gog.c:
* src/gnome-utils/dialog-options.c:
* src/gnome/window-reconcile.c:
* src/gnome/dialog-sxsincelast.c:
* src/gnome/dialog-tax-info.c:
* src/gnome-search/search-account.c:
* src/gnome-search/dialog-search.c: Eliminate the deprecated
function gtk_widget_set_usize().
* src/register/register-gnome/gnucash-date-picker.c:
* src/business/business-gnome/search-owner.c:
* src/gnome-utils/gnc-query-list.c:
* src/gnome/gnc-split-reg.c: Finish converting type creation over
from gtk_type_unique() to g_type_register_static().
* various: More trivial conversions from deprecated gtk/gnome
functions to supported functions.
2005-11-29 David Hampton <[email protected]>
* src/gnome-utils/gw-gnome-utils-spec.scm:
* src/gnome-utils/dialog-utils.[ch]: Remove unused function.
* various: More syntactic sugar converting from gtk_object_xxx
functions to g_object_xxx functions.
* various: Syntactic sugar converting from gtk_signal_xxx
functions to g_signal_yyy functions.
* src/gnome-utils/gnc-gnome-utils.c:
* src/gnome-utils/gnc-html-guppi.[ch]:
* src/gnome-utils/Makefile.am:
* src/gnome-utils/gnc-html.c:
* src/gnome/Makefile.am:
* lib/Makefile.am:
* lib/README:
* lib/guppi-legend.patch:
* configure.in: Remove all remaining references to guppi.
* rpm/gnucash.spec.in: Quick update for 2.0 requirements. Needs
to actually be tested.
* src/import-export/qif/qif-parse.c:
* src/import-export/hbci/druid-hbci-initial.c:
* src/import-export/hbci/hbci-interaction.c:
* src/import-export/hbci/druid-hbci-utils.c:
* src/import-export/hbci/dialog-hbcitrans.c:
* src/import-export/hbci/gnc-hbci-trans-templ.[ch]:
* src/gnome-utils/gnc-tree-model-account.c:
* src/gnome/dialog-sx-from-trans.c:
* src/gnome/dialog-scheduledxaction.c:
* configure.in: Eliminate all remaining use of deprecated glib
functions. Enable the compile time flag to prevent any of these
deprecated routines from creeping back into the source.
2005-11-28 David Hampton <[email protected]>
* src/import-export/qif-import/qif-to-gnc.scm:
* src/import-export/qif-import/qif-merge-groups.scm:
* src/import-export/qif-import/qif-file.scm:
* src/import-export/hbci/hbci-interaction.c:
* src/gnome/gw-gnc-spec.scm:
* src/gnome/dialog-progress.[ch]: Migrate from the deprecated
gtk_progress interface to the supported gtk_progress_bar.
* src/import-export/qif-import/druid-qif-import.c: Need to escape
user input string to prevent errors from gtk.
* src/gnome-utils/gnc-main-window.c:
* Makefile.am:
* TRANSLATORS: Fix the translator credits in the gtk2.6 about box.
They should come from the translation, not a static file.
* src/gnome-utils/gnc-gui-query.glade: Mark a couple of strings as
not needing translation.
2005-11-27 David Hampton <[email protected]>
*src/gnome-utils/druid-gconf-setup.glade: Make the capitalization
consistent across the titles of all pages.
* src/backend/file/io-gncbin-r.c:
* src/backend/file/gnc-pricedb-xml-v2.c:
* src/backend/file/io-gncxml-v1.c:
* src/backend/postgres/price.c:
* src/engine/gnc-pricedb.[ch]:
* src/engine/gnc-pricedb-p.h: Better integrate stock prices with
QOF. Gnucash now warns you about unsaved stock price changes.
2005-11-26 David Hampton <[email protected]>
* src/gnome/gnc-plugin-page-register.c: Change "Reverse
Transaction" menu item to be "Add Reversing Transaction".
* src/gnome/gnc-plugin-page-register.c: Eliminate extra redrawing
of the register by suspending events around the entire reverse
transaction operation. Speed up the command significantly.
* src/engine/Transaction.c: Initialize the qof entity in the new
split, not the old one.
2005-11-26 David Hampton <[email protected]>
* lib/goffice-0.0.4/plugins/plot_radar/gog-radar.c:
* lib/goffice-0.0.4/goffice/app/go-plugin.c: Compile cleanly using
gcc4.
2005-11-25 David Hampton <[email protected]>
* src/business/dialog-tax-table/dialog-tax-table.c: Andreas
Köhler's patch to prevent a patch when trying to edit a
non-existent tax table entry.
* src/register/ledger-core/dialog-dup-trans.c:
* src/gnome/glade/register.glade: Fix the duplicate transaction
dialog so that the "Enter" key activates the dialog box. Fixes
104496.
* src/gnome-utils/gnc-date-edit.[ch]:
* src/gnome/window-reconcile.c:
* src/gnome-search/search-date.c: Update function name to match
its g2 implementation.
* src/gnome-utils/dialog-commodity.c: Consistently use the string
"currency" in the commodity picker window instead of the string
ISO4217. Previous behavior wasn't consistent. Fixes 167388.
* src/gnome/dialog-price-edit-db.c: Allow selection of multiple
prices at once. Multiple prices can be deleted at the same time,
but not edited. implements 147557.
* src/gnome-utils/gnc-tree-view-price.c: Fix the
gnc_tree_view_price_set_selected_price function to ignore exchange
and commodity entries.
* src/gnome/dialog-price-edit-db.c: Enhance the "remove old
prices" code to have options to retain the last price entered, and
to retain any user entered prices. The "remove old" button should
always be active. Group the "Add/Edit/Remove" buttons for a
single price. Allow the prices dialog to be closed with the
escape key.
* src/gnome-utils/gnc-date-edit.c: Show widget by default when its
created for a glade dialog.
* src/gnome-utils/gnc-file.c: Shouldn't still be calling the old
save state functions.
* src/scm/main-window.scm: Fix crash when saving files.
* src/report/report-gnome/gnc-plugin-page-report.c:
* src/business/business-gnome/gnc-plugin-page-invoice.c:
* src/gnome-utils/gnc-main-window.c:
* src/gnome/gnc-plugin-page-register.c:
* src/gnome/gnc-plugin-page-account-tree.c: Update default
accelerator keys as per the HIG.
2005-11-25 Derek Atkins <[email protected]>
* src/gnome-utils/Makefile.am:
add GSF_CFLAGS
* lib/goffice-0.0.4/goffice/utils/go-libxml-extras.c
lib/goffice-0.0.4/goffice/utils/datetime.c:
lib/goffice-0.0.4/goffice/graph/gog-chart.c
lib/goffice-0.0.4/goffice/graph/gog-plot.c
lib/goffice-0.0.4/goffice/graph/gog-object.c
lib/goffice-0.0.4/goffice/gtk/goffice-gtk.c:
look for goffice/glib24_26-compat.h
* lib/goffice-0.0.4/goffice/Makefile.am:
don't deal with goffice-features.h anymore
* configure.in:
fix for FC3 dependencies
* Makefile.am:
create goffice -> , symlink when building internal goffice
2005-11-23 David Hampton <[email protected]>
* src/report/report-gnome/report-gnome.scm:
* src/gnome-utils/gnc-menu-extensions.c:
* src/gnome-utils/gnc-menu-extensions.h:
* src/gnome-utils/gnc-plugin-menu-additions.c:
* src/gnome-utils/gnome-utils.scm:
* src/gnome-utils/gnc-menu-extensions.scm: Rewrite the code that
assigns accelerator keys to the names of menu extensions. The new
C language implementation is now called as late as possible (when
menus are populated), and rewritten understands utf8 strings. The
code now also translates the menu extension path components as it
goes so that sub-menus will appear properly in non-English
languages.
* src/gnome-utils/ui/gnc-main-window-ui.xml:
* src/gnome-utils/gnc-main-window.c:
* src/gnome/top-level.c: Restore long lost functionality to
customize the accelerator keys on menu items.
* src/gnome-utils/druid-gconf-setup.c:
* src/engine/test/test-resolve-file-path.c:
* src/app-utils/gnc-ui-util.c:
* lib/libqof/qof/guid.c: Use the g_get_home_dir() function instead
of getenv("HOME"). The former tries multiple places to get the
path to the users home directory.
* src/import-export/qif-import/qif-guess-map.scm:
* src/scm/command-line.scm:
* src/scm/main.scm:
* src/scm/main-window.scm:
* src/scm/path.scm:
* src/engine/gnc-filepath-utils.c:
* src/engine/gnc-filepath-utils.h:
* src/engine/gw-engine-spec.scm:
* src/app-utils/file-utils.c:
* src/app-utils/gnc-exp-parser.c: Consolidate the creation of all
file names under ~/.gnucash, and also consolidate checks for the
existence of ~/.gnucash and ~/.gnucash/books. Add better error
messages when there is a problem.
2005-11-22 David Hampton <[email protected]>
* src/import-export/schemas/apps_gnucash_import_generic_matcher.schemas:
* src/import-export/import-main-matcher.c:
* src/import-export/generic-import.glade:
* src/import-export/import-match-picker.c:
* src/import-export/hbci/schemas/apps_gnucash_dialog_hbci.schemas:
* src/import-export/hbci/hbci-interaction.c:
* src/import-export/hbci/glade/hbci.glade:
* src/import-export/hbci/glade/hbcipass.glade: Dialog makeovers.
Split the generic matcher transaction list help out into a
separate window so it doesn't blow out the dialog or get cut off.
Update some of the dialogs for the new HIG styles. Make a couple
of dialogs start smaller. Remember dialog sizes (add schema
entries too). Fix a couple of gtk2 conversion problems. Remove
some lines added by glade 2.10.
2005-11-22 Neil Williams <[email protected]>
* src/backend/Makefile.am : Remove redundant variable.
2005-11-22 Neil Williams <[email protected]>
* src/backend/postgres/PostgresBackend.c : Correct
postgres access_method.
2005-11-22 Neil Williams <[email protected]>
* configure.in : Remove net and RPC backends,
Tidy up --with and --enable output to --help
* po/POTFILES.in : Remove RPC and net related files.
* src/backend/Makefile.am : Remove net and RPPC
* src/backend/net : Removed all files.
* src/backend/qsf : Removed stub.
* src/backend/rpc : Removed all files.
* src/engine/gnc-engine.c : Remove gnc_run_rpc_server
function.
* src/engine/gnc-engine.h : Remove -gnc_run_rpc_server
definition.
* src/engine/gnc-filepath-utils.c : Remove rpc://
* src/engine/gw-engine-spec.scm : Remove g-wrapper
* src/README.modules : Document removal of RPC.
2005-11-22 Christian Stimming <[email protected]>
* po/nb.po: Updated Norwegian (bokmaal) translation by Tor Harald
Thorland <[email protected]>.
* po/glossary/nb.po: New filename for Norwegian (bokmaal) glossary
-- it used to be stored under no.po but that is no longer.
2005-11-21 David Hampton <[email protected]>
* src/report/report-gnome/report.glade:
* src/report/report-gnome/dialog-column-view.c: Give the dialogs a
gtk2 look. Add accelerator keys. Use the gtk dialog functions.
Take care of some resizing problems.
* src/import-export/import-main-matcher.c:
* src/register/register-gnome/gnucash-sheet.c: Use gtk version of
various functions instead of gnome versions. Rest of the file was
converted long ago.
* src/gnome/glade/userpass.glade:
* src/gnome/dialog-userpass.c: Finish conversion to a
GtkDialog. Redo dialog as a table instead of boxes in boxes.
2005-11-21 Derek Atkins <[email protected]>
* src/gnome-utils/Makefile.am: exit if "svn info" fails.
2005-11-21 Neil Williams <[email protected]>
Use only qof.h in place of other QOF headers,
as per the API, to ease future conversions
from libqof1 to libqof2.
* src/app-utils/gnc-component-manager.h :
* src/app-utils/gnc-euro.h :
* src/app-utils/gnc-exp-parser.h :
* src/app-utils/gnc-ui-util.h :
* src/app-utils/guile-util.h :
* src/app-utils/option-util.h :
* src/backend/dwi/qofmap.h :
* src/backend/file/gnc-book-xml-v2.c :
* src/backend/file/gnc-recurrence-xml-v2.c :
* src/backend/file/gnc-xml.h :
* src/backend/file/io-gncbin.h :
* src/backend/file/io-gncxml.h :
* src/backend/file/io-gncxml-v1.c :
* src/backend/file/io-gncxml-v2.h :
* src/backend/file/io-utils.h :
* src/backend/file/sixtp-dom-generators.h :
* src/backend/file/sixtp-dom-parsers.h :
* src/backend/file/sixtp-utils.h :
* src/backend/file/test/test-dom-converters1.c :
* src/backend/file/test/test-file-stuff.h :
* src/backend/file/test/test-kvp-frames.c :
* src/backend/file/test/test-save-in-lang.c :
* src/backend/file/test/test-xml-commodity.c :
* src/backend/gnc-backend-api.h :
* src/backend/net/NetIO.c :
* src/backend/postgres/account.h :
* src/backend/postgres/book.h :
* src/backend/postgres/builder.c :
* src/backend/postgres/builder.h :
* src/backend/postgres/checkpoint.c :
* src/backend/postgres/checkpoint.h :
* src/backend/postgres/escape.c :
* src/backend/postgres/events.h :
* src/backend/postgres/kvp-sql.c :
* src/backend/postgres/kvp-sql.h :
* src/backend/postgres/putil.c :
* src/backend/postgres/putil.h :
* src/backend/postgres/txn.c :
* src/backend/postgres/txn.h :
* src/backend/postgres/txnmass.h :
* src/backend/postgres/upgrade.c :
* src/backend/rpc/gncRpc.h :
* src/backend/rpc/gncRpc_server.c :
* src/backend/rpc/RpcBackend.c :
* src/backend/rpc/RpcServer.c :
* src/backend/rpc/RpcUtils.c :
* src/business/business-core/file/gnc-bill-term-xml-v2.c :
* src/business/business-core/file/gnc-owner-xml-v2.h :
* src/business/business-gnome/business-gnome-utils.c :
* src/business/business-gnome/business-options-gnome.c :
* src/business/business-gnome/business-urls.c :
* src/business/business-gnome/dialog-billterms.c :
* src/business/business-gnome/dialog-customer.c :
* src/business/business-gnome/dialog-date-close.c :
* src/business/business-gnome/dialog-date-close.h :
* src/business/business-gnome/dialog-employee.c :
* src/business/business-gnome/dialog-invoice.c :
* src/business/business-gnome/dialog-invoice.h :
* src/business/business-gnome/dialog-job.c :
* src/business/business-gnome/dialog-order.c :
* src/business/business-gnome/dialog-payment.c :
* src/business/business-gnome/dialog-vendor.c :
* src/business/business-ledger/gncEntryLedgerModel.c :
* src/business/business-ledger/gncEntryLedgerP.h :
* src/business/dialog-tax-table/dialog-tax-table.c :
* src/engine/cap-gains.h :
* src/engine/engine-helpers.h :
* src/engine/gnc-book.h :
* src/engine/gnc-budget.h :
* src/engine/gnc-commodity.h :
* src/engine/GNCId.h :
* src/engine/gncObject.h :
* src/engine/gnc-session.h :
* src/engine/gnc-session-scm.h :
* src/engine/gw-engine-spec.scm :
* src/engine/gw-kvp-spec.scm :
* src/engine/kvp-scm.h :
* src/engine/Period.h :
* src/engine/QueryCore.h :
* src/engine/QueryNew.h :
* src/engine/QueryObject.h :
* src/engine/SX-book-p.h :
* src/engine/test-core/test-engine-stuff.h :
* src/engine/test/test-freq-spec.c :
* src/engine/test/test-querynew.c :
* src/engine/test/test-recurrence.c :
* src/engine/Transaction.c :
* src/engine/Transaction.h :
* src/engine/TransactionP.h :
* src/engine/TransLog.c :
* src/gnome/dialog-commodities.c :
* src/gnome/dialog-price-editor.c :
* src/gnome/dialog-sx-from-trans.c :
* src/gnome/dialog-tax-info.c :
* src/gnome/druid-acct-period.c :
* src/gnome/druid-merge.h :
* src/gnome/druid-stock-split.c :
* src/gnome/gnc-plugin-budget.c :
* src/gnome/gnc-plugin-page-budget.c :
* src/gnome/gw-gnc-spec.scm :
* src/gnome/reconcile-list.h :
* src/gnome-search/search-date.h :
* src/gnome-search/search-numeric.h :
* src/gnome-utils/dialog-exchange.h :
* src/gnome-utils/dialog-options.c :
* src/gnome-utils/druid-utils.c :
* src/gnome-utils/gnc-account-sel.c :
* src/gnome-utils/gnc-amount-edit.c :
* src/gnome-utils/gnc-amount-edit.h :
* src/gnome-utils/gnc-date-format.h :
* src/gnome-utils/gnc-dialog.c :
* src/gnome-utils/gnc-file.h :
* src/gnome-utils/gnc-gui-query.c :
* src/gnome-utils/gnc-html-graph-gog.c :
* src/gnome-utils/gnc-html-guppi.c :
* src/gnome-utils/gncmod-gnome-utils.c :
* src/gnome-utils/gnc-plugin.c :
* src/gnome-utils/gnc-plugin-menu-additions.c :
* src/gnome-utils/gnc-plugin-page.c :
* src/gnome-utils/gnc-plugin-page.h :
* src/gnome-utils/gnc-query-list.c :
* src/gnome-utils/gnc-recurrence.c :
* src/gnome-utils/gnc-tree-model-account-types.c :
* src/gnome-utils/gnc-tree-model-commodity.c :
* src/gnome-utils/gnc-tree-model-example-account.c :
* src/gnome-utils/gnc-tree-model-price.c :
* src/gnome-utils/gnc-window.c :
* src/gnome-utils/test/test-gnc-dialog.c :
* src/gnome/window-main-summarybar.c :
* src/import-export/binary-import/druid-commodity.h :
* src/import-export/hbci/dialog-daterange.h :
* src/import-export/hbci/gnc-hbci-gettrans.c :
* src/import-export/hbci/gnc-hbci-kvp.h :
* src/import-export/hbci/gnc-hbci-trans-templ.h :
* src/import-export/hbci/gnc-hbci-utils.c :
* src/import-export/hbci/gnc-plugin-hbci.c :
* src/import-export/import-main-matcher.c :
* src/import-export/import-match-map.c :
* src/import-export/import-match-picker.c :
* src/import-export/import-parse.h :
* src/import-export/import-utilities.c :
* src/import-export/log-replay/gnc-log-replay.c :
* src/import-export/qif-import/druid-qif-import.c :
* src/import-export/qif/qif-import.h :
* src/import-export/qif/qif-objects-p.h :
* src/network-utils/gnc-http.c :
* src/register/ledger-core/dialog-dup-trans.c :
* src/register/ledger-core/split-register-load.c :
* src/register/register-core/datecell.h :
* src/register/register-core/formulacell.h :
* src/register/register-core/pricecell.h :
2005-11-20 David Hampton <[email protected]>
* src/import-export/hbci/gnc-hbci-gettrans.c:
* src/import-export/hbci/hbci-interaction.c:
* src/import-export/hbci/gnc-hbci-getbalance.c: Convert a couple
of dialogs from the deprecated gnome_ok_dialog to a
gtk_message_dialog.
* src/import-export/import-account-matcher.c:
* src/import-export/generic-import.glade: Put the account tree
into a scrolled window so the dialog buttons don't get pushed
off-screen when you expand the accounts.
* src/gnome-utils/gnc-gui-query.[ch]: Remove unused functions.
* src/gnome/gnc-split-reg.c: Update dialogs to give them a Gtk2
HIG look and feel.
*src/gnome-utils/dialog-reset-warnings.c: Make a function
static. Remove extraneous printf.
*/src/gnome-utils/preferences.glade: Fix a typo.
* src/report/report-gnome/window-report.c: Use a GtkMessageDialog
instead of the deprecated gnome_ok_dialog function.
* src/gnome-utils/dialog-options.c: Convert the font picker and
color picker from deprecated gnome widgets to their gtk
counterparts. Also convert the image picker when compiled with
gtk2.6 or better.
* src/report/report-gnome/dialog-style-sheet.c: Close stylesheet
edit dialog when the stylesheet picker dialog is closed. Prevents
a crash.
* src/gnome-utils/gnc-file.c:
* src/gnome-utils/dialog-utils.[ch]: Convert the "file locked"
message to a GtkMessageDialog. Add a utility function for
creating buttons with images attached.
* src/gnome-utils/gnc-main-window.c: Use the new GtkAboutDialog
when compiling with gtk2.6.
* src/core-utils/gnc-gdate-utils.c:
* src/backend/postgres/test/test-db.c:
* src/import-export/hbci/gnc-hbci-gettrans.c:
* src/engine/gnc-filepath-utils.c:
* src/engine/FreqSpec.c:
* src/engine/test/test-freq-spec.c:
* src/gnome/druid-loan.c:
* src/gnome/druid-acct-period.c:
* src/gnome/dialog-sx-from-trans.c:
* src/gnome/dialog-scheduledxaction.c:
* src/gnome/dialog-sxsincelast.c:
* src/app-utils/gnc-exp-parser.c:
* lib/libqof/qof/qofquery.c:
* lib/libqof/qof/gnc-date.c: Andreas Köhler's patch to replace
some deprecated glib functions.
* src/backend/file/gnc-backend-file.c:
* src/gnome-utils/dialog-utils.c: Fix some build problems on FC3
related to the include file changes.
2005-11-20 Neil Williams <[email protected]>
* src/core-utils/gnc-gkeyfile-utils.c : Modifying Scott's
64bit patch to retain compatibility with OSX.
* doc/build-osx.txt : Updating build advice for OSX.
2005-11-20 David Hampton <[email protected]>
* TRANSLATORS:
* LICENSE:
* DOCUMENTERS:
* Makefile.am: Add new files.
* AUTHORS: Convert to utf-8.
* src/backend/file/gnc-backend-file.c: Need to include locale.h to
compile without optimization.