gnucash maint: Multiple changes pushed

Robert Fewell bobit at code.gnucash.org
Sun Nov 29 05:47:40 EST 2020


Updated	 via  https://github.com/Gnucash/gnucash/commit/8a256a8d (commit)
	 via  https://github.com/Gnucash/gnucash/commit/5c7a2c4b (commit)
	from  https://github.com/Gnucash/gnucash/commit/979f6acf (commit)



commit 8a256a8db6e7fd37ff0862f6cefa55e3515632fd
Author: Robert Fewell <14uBobIT at gmail.com>
Date:   Sun Nov 29 10:41:49 2020 +0000

    Bug 798031 - Date goes to prior year with mm/dd
    
    The default value in the glade file was set to 6 months but the default
    value in the gschema file org.gnucash.gschema.xml.in was set to 11
    months so have changed the gschema to match the glade file.

diff --git a/gnucash/gschemas/org.gnucash.gschema.xml.in b/gnucash/gschemas/org.gnucash.gschema.xml.in
index fd3461e16..bc4964d24 100644
--- a/gnucash/gschemas/org.gnucash.gschema.xml.in
+++ b/gnucash/gschemas/org.gnucash.gschema.xml.in
@@ -166,7 +166,7 @@
       <description>When a date is entered without year it can be completed so that it will be within the current calendar year or close to the current date based on a sliding window starting a set number of months backwards in time.</description>
     </key>
     <key name="date-backmonths" type="d">
-      <default>11.0</default>
+      <default>6.0</default>
       <summary>Maximum number of months to go back.</summary>
       <description>Dates will be completed so that they are close to the current date. Enter the maximum number of months to go backwards in time when completing dates.</description>
     </key>

commit 5c7a2c4bd6dac204c877f556c1f9a9def3f550a3
Author: Robert Fewell <14uBobIT at gmail.com>
Date:   Sun Nov 29 10:33:26 2020 +0000

    Change the mnemonic of '_Open Read-Only' to 'Open _Read-Only'

diff --git a/gnucash/gnome-utils/gnc-file.c b/gnucash/gnome-utils/gnc-file.c
index 1c20ea37b..10245195e 100644
--- a/gnucash/gnome-utils/gnc-file.c
+++ b/gnucash/gnome-utils/gnc-file.c
@@ -846,7 +846,7 @@ RESTART:
                 "%s", fmt2);
         gtk_window_set_skip_taskbar_hint(GTK_WINDOW(dialog), FALSE);
 
-        gnc_gtk_dialog_add_button(dialog, _("_Open Read-Only"),
+        gnc_gtk_dialog_add_button(dialog, _("Open _Read-Only"),
                                   "emblem-readonly", RESPONSE_READONLY);
         gnc_gtk_dialog_add_button(dialog, _("Open with _No File"),
                                   "document-new-symbolic", RESPONSE_NO_FILE);



Summary of changes:
 gnucash/gnome-utils/gnc-file.c              | 2 +-
 gnucash/gschemas/org.gnucash.gschema.xml.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



More information about the gnucash-changes mailing list