Replace Yorba links with GNOME links, remove donate menu, update dpkg blurb.
Thanks for all the fish, Yorba. Bug 765656.
This commit is contained in:
parent
3b87cab5ea
commit
8f00a51b13
6 changed files with 21 additions and 36 deletions
3
README
3
README
|
|
@ -25,9 +25,8 @@
|
|||
Geary will then begin downloading messages in your inbox and other
|
||||
folders.
|
||||
|
||||
* Contacting Yorba
|
||||
* Contacting Geary Developers
|
||||
|
||||
Yorba: http://www.yorba.org
|
||||
Geary wiki: https://wiki.gnome.org/Apps/Geary
|
||||
|
||||
We also encourage you to join the Geary mailing list. See
|
||||
|
|
|
|||
27
debian/control
vendored
27
debian/control
vendored
|
|
@ -23,7 +23,7 @@ Build-Depends: debhelper (>= 8),
|
|||
gnome-doc-utils,
|
||||
libgcr-3-dev (>= 3.10.1)
|
||||
Standards-Version: 3.8.3
|
||||
Homepage: http://www.yorba.org
|
||||
Homepage: https://wiki.gnome.org/Apps/Geary
|
||||
|
||||
Package: geary
|
||||
Architecture: any
|
||||
|
|
@ -43,11 +43,15 @@ Depends: ${shlibs:Depends}, ${misc:Depends},
|
|||
libgcr-base-3-1 (>= 3.10.1),
|
||||
libgcr-ui-3-1 (>= 3.10.1)
|
||||
Description: Email client
|
||||
Geary is an email client built for the GNOME desktop environment. It
|
||||
allows you to read and send email with a simple, modern interface.
|
||||
Geary is an mail application for GNOME designed to let you manage
|
||||
your email quickly and effortlessly.
|
||||
.
|
||||
Visit http://www.yorba.org to read about the current state of
|
||||
Geary's development.
|
||||
Its interface is based on conversations, so you can read an entire
|
||||
discussion without having to click from message to message.
|
||||
.
|
||||
Geary is still in development and has a limited but growing set of
|
||||
features. It works with Gmail, Yahoo! Mail, Outlook.com
|
||||
(experimental), and other popular IMAP servers.
|
||||
|
||||
Package: geary-dbg
|
||||
Architecture: any
|
||||
|
|
@ -56,10 +60,13 @@ Priority: extra
|
|||
Depends: geary (= ${binary:Version}), ${misc:Depends}
|
||||
Enhances: geary
|
||||
Description: Email client (debugging symbols)
|
||||
Geary is an email client built for the GNOME desktop environment. It
|
||||
allows you to read and send email with a simple, modern interface.
|
||||
Geary is an mail application for GNOME designed to let you manage
|
||||
your email quickly and effortlessly.
|
||||
.
|
||||
Visit http://www.yorba.org to read about the current state of
|
||||
Geary's development.
|
||||
Its interface is based on conversations, so you can read an entire
|
||||
discussion without having to click from message to message.
|
||||
.
|
||||
This package contains debugging symbols for geary.
|
||||
Geary is still in development and has a limited but growing set of
|
||||
features. It works with Gmail, Yahoo! Mail, Outlook.com
|
||||
(experimental), and other popular IMAP servers.
|
||||
|
||||
|
|
|
|||
2
debian/copyright
vendored
2
debian/copyright
vendored
|
|
@ -1,6 +1,6 @@
|
|||
Format: http://dep.debian.net/deps/dep5
|
||||
Upstream-Name: geary
|
||||
Source: <http://yorba.org>
|
||||
Source: <https://wiki.gnome.org/Apps/Geary>
|
||||
|
||||
Files: *
|
||||
Copyright: 2012-2015 Yorba Foundation
|
||||
|
|
|
|||
|
|
@ -17,10 +17,9 @@ public class GearyApplication : Gtk.Application {
|
|||
public const string APP_ID = "org.yorba.geary";
|
||||
public const string DESCRIPTION = _("Mail Client");
|
||||
public const string COPYRIGHT = _("Copyright 2011-2015 Yorba Foundation");
|
||||
public const string WEBSITE = "http://www.yorba.org";
|
||||
public const string WEBSITE_LABEL = _("Visit the Yorba web site");
|
||||
public const string WEBSITE = "https://wiki.gnome.org/Apps/Geary";
|
||||
public const string WEBSITE_LABEL = _("Visit the Geary web site");
|
||||
public const string BUGREPORT = "https://wiki.gnome.org/Apps/Geary/ReportingABug";
|
||||
public const string DONATE = "http://www.yorba.org/about/donate";
|
||||
|
||||
public const string VERSION = _VERSION;
|
||||
public const string INSTALL_PREFIX = _INSTALL_PREFIX;
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ public class GearyController : Geary.BaseObject {
|
|||
// NOTE: Some actions with accelerators need to also be added to ui/accelerators.ui
|
||||
public const string ACTION_HELP = "GearyHelp";
|
||||
public const string ACTION_ABOUT = "GearyAbout";
|
||||
public const string ACTION_DONATE = "GearyDonate";
|
||||
public const string ACTION_QUIT = "GearyQuit";
|
||||
public const string ACTION_NEW_MESSAGE = "GearyNewMessage";
|
||||
public const string ACTION_REPLY_TO_MESSAGE = "GearyReplyToMessage";
|
||||
|
|
@ -390,10 +389,6 @@ public class GearyController : Geary.BaseObject {
|
|||
about.label = _("_About");
|
||||
entries += about;
|
||||
|
||||
Gtk.ActionEntry donate = { ACTION_DONATE, null, TRANSLATABLE, null, null, on_donate };
|
||||
donate.label = _("_Donate");
|
||||
entries += donate;
|
||||
|
||||
Gtk.ActionEntry quit = { ACTION_QUIT, Stock._QUIT, TRANSLATABLE, "<Ctrl>Q", null, on_quit };
|
||||
quit.label = _("_Quit");
|
||||
entries += quit;
|
||||
|
|
@ -568,7 +563,6 @@ public class GearyController : Geary.BaseObject {
|
|||
const string[] exported_actions = {
|
||||
ACTION_ACCOUNTS,
|
||||
ACTION_PREFERENCES,
|
||||
ACTION_DONATE,
|
||||
ACTION_HELP,
|
||||
ACTION_ABOUT,
|
||||
ACTION_QUIT,
|
||||
|
|
@ -1724,14 +1718,6 @@ public class GearyController : Geary.BaseObject {
|
|||
);
|
||||
}
|
||||
|
||||
private void on_donate() {
|
||||
try {
|
||||
Gtk.show_uri(null, GearyApplication.DONATE, Gdk.CURRENT_TIME);
|
||||
} catch (Error error) {
|
||||
debug("Error opening donate page: %s", error.message);
|
||||
}
|
||||
}
|
||||
|
||||
private void on_shift_key(bool pressed) {
|
||||
if (main_window != null && main_window.main_toolbar != null
|
||||
&& current_account != null && current_folder != null) {
|
||||
|
|
|
|||
|
|
@ -12,12 +12,6 @@
|
|||
<attribute name='accel'><Primary>E</attribute>
|
||||
</item>
|
||||
</section>
|
||||
<section>
|
||||
<item>
|
||||
<attribute name='label' translatable='yes'>_Donate</attribute>
|
||||
<attribute name='action'>app.GearyDonate</attribute>
|
||||
</item>
|
||||
</section>
|
||||
<section>
|
||||
<item>
|
||||
<attribute name='label' translatable='yes'>_Help</attribute>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue