[gnome-break-timer] Tweaked README, AUTHORS and About dialog



commit 2347f1093e5638dcdbf5795cad8b792d6a7b3d85
Author: Dylan McCall <dylanmccall ubuntu com>
Date:   Sun Sep 22 13:47:50 2013 -0700

    Tweaked README, AUTHORS and About dialog

 AUTHORS                  |    7 ++++++-
 NEWS                     |    4 ++++
 README                   |   19 +++++++++----------
 config.vapi              |    4 ++--
 configure.ac             |    2 +-
 settings/MainWindow.vala |   12 +++++++++---
 6 files changed, 31 insertions(+), 17 deletions(-)
---
diff --git a/AUTHORS b/AUTHORS
index 220e537..7a3cbbc 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1 +1,6 @@
-Dylan McCall <dylanmccall ubuntu com>
+GNOME Break Timer was designed and implemented by
+
+Dylan McCall <www.dylanmccall.com>
+Allan Day
+
+The gnome-break-timer icon is based on the gnome-clocks icon, from 
<https://git.gnome.org/browse/gnome-clocks>.
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..bebd02e
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,4 @@
+gnome-break-timer 1.0
+=====================
+
+ * First release
diff --git a/README b/README
index cad8903..58841d7 100644
--- a/README
+++ b/README
@@ -1,12 +1,11 @@
-GNOME Break Timer
-Copyright 2011, Dylan McCall and GNOME Break Timer contributors.
+Break Timer
+===========
 
------
+A break timer application for GNOME.
 
-GNOME Break Timer keeps track of your computer use and provides a gentle
-reminder to take regular breaks. This is great for anyone concerned about the
-mental or physical issues associated with heavy computer use. GNOME Break
-Timer aims to be effective over a long time, so it is assertive as possible
-without being irritating. It avoids threatening people with negative things
-like permanent usage statistics, but it provides incentives to be healthy
-which fit the moment at hand.
+This helps you to schedule regular breaks. It will remind you to take them
+based on how much you are using the computer. It tries hard to be simple but
+helpful, using notifications to gently indicate when a break has arrived while
+keeping out of the way for activities like games and videos.
+
+<https://wiki.gnome.org/GnomeBreakTimer>
diff --git a/config.vapi b/config.vapi
index 839edfe..55e501b 100644
--- a/config.vapi
+++ b/config.vapi
@@ -1,13 +1,13 @@
 /* This is a hand-written vapi file containing constants from config.h that
- * should exposed to the Vala program */
+ * should be exposed to the Vala program */
 
 [CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")]
 namespace Config {
        public const string GETTEXT_PACKAGE;
        public const string PACKAGE_NAME;
        public const string PACKAGE_VERSION;
+       public const string PACKAGE_URL;
        public const string VERSION;
        public const string HELPER_DESKTOP_ID;
        public const string SETTINGS_DESKTOP_ID;
 }
-
diff --git a/configure.ac b/configure.ac
index 4b09821..8fd94ce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@ AC_INIT([gnome-break-timer],
        [1.0],
        [http://bugs.launchpad.net/brainbreak],
        [gnome-break-timer],
-       [https://launchpad.net/brainbreak])
+       [https://wiki.gnome.org/GnomeBreakTimer])
 AC_CONFIG_MACRO_DIR([m4])
 AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz foreign])
 LT_INIT
diff --git a/settings/MainWindow.vala b/settings/MainWindow.vala
index 30f914c..d8ecd59 100644
--- a/settings/MainWindow.vala
+++ b/settings/MainWindow.vala
@@ -152,13 +152,19 @@ public class MainWindow : Gtk.ApplicationWindow {
        }
 
        public void show_about_dialog () {
+               const string copyright = "Copyright © 2011-2013 Dylan McCall";
+
                Gtk.show_about_dialog (this,
                        "program-name", _("GNOME Break Timer"),
                        "logo-icon-name", "gnome-break-timer",
+                       "version", Config.VERSION,
                        "comments", _("Computer break reminders for active minds"),
-                       "copyright", _("Copyright © Dylan McCall"),
-                       "website", "https://wiki.gnome.org/GnomeBreakTimer";,
-                       "website-label", _("GNOME Break Timer Website")
+                       "website", Config.PACKAGE_URL,
+                       "website-label", _("GNOME Break Timer Website"),
+                       "copyright", copyright,
+                       "license-type", Gtk.License.GPL_3_0,
+                       "wrap-license", false,
+                       "translator-credits", _("translator-credits")
                );
        }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]