From michaelmackus at gmail.com Sat Dec 1 06:31:36 2012 From: michaelmackus at gmail.com (Michael Mackus) Date: Fri, 30 Nov 2012 22:31:36 -0800 Subject: [Geary] Geary Multiple Inboxes & Search Message-ID: <50B9A448.3090805@gmail.com> Hello everyone, I love your email client. I really want to make the switch (from Thunderbird), but it doesn't have 2 needed features search & multiple emails. I'm a PHP programmer by day, but hack around in C++, python, Node.js, and some other languages at night and would love to contribute to Geary. I've downloaded the source code & compiled it, and am working on hacking away at it. Is there any sort of direction, or anything in particular that I should start working on (in regards to these 2 features)? I'm really excited, love this project :) Thanks From jim at yorba.org Mon Dec 3 21:35:08 2012 From: jim at yorba.org (Jim Nelson) Date: Mon, 03 Dec 2012 21:27:08 -0008 Subject: [Geary] Geary Multiple Inboxes & Search In-Reply-To: <50B9A448.3090805@gmail.com> References: <50B9A448.3090805@gmail.com> Message-ID: <50bd1b0f.c84e420a.3cba.ffff8b50@mx.google.com> Great to hear you're excited about Geary! ?The two features you've asked about are the most-requested in Geary today, and we definitely plan on attacking them for 0.3. However, they are large features and we at Yorba are sensitive to design, both UI and code structure. ?I recommend you look through our bug database and find a couple of smaller-sized tickets to start with. ?That will give you a chance to peruse the code more fully, to get your development stack set up, and to go through the process of our code review. Here's our ticket list: http://redmine.yorba.org/projects/geary/issues?query_id=5 Here's some suggested tickets to consider: http://redmine.yorba.org/issues/5921 http://redmine.yorba.org/issues/3772 http://redmine.yorba.org/issues/5549 http://redmine.yorba.org/issues/5315 These tickets aren't as sexy as multiple accounts and search, but they're smaller in size and better defined. Also note that Yorba is currently on a hiatus from Geary and Shotwell development. ?That means if you do turn in a patch in the next couple of weeks, it may be a while before we can review it. ?Please bear with us, we're not ignoring our two core projects! http://lists.yorba.org/pipermail/geary/2012-November/000105.html Good luck! -- Jim On Fri, Nov 30, 2012 at 10:31 PM, Michael Mackus wrote: Hello everyone, I love your email client. I really want to make the switch (from Thunderbird), but it doesn't have 2 needed features search & multiple emails. I'm a PHP programmer by day, but hack around in C++, python, Node.js, and some other languages at night and would love to contribute to Geary. I've downloaded the source code & compiled it, and am working on hacking away at it. Is there any sort of direction, or anything in particular that I should start working on (in regards to these 2 features)? I'm really excited, love this project :) Thanks From tommost at gmail.com Fri Dec 7 09:32:00 2012 From: tommost at gmail.com (Tom Most) Date: Fri, 7 Dec 2012 01:32:00 -0800 Subject: [Geary] [PATCH] Make image notification text wrap Message-ID: >From 1a7c1961ad390f339e33d2ac0b9c37550d7556df Mon Sep 17 00:00:00 2001 From: Tom Most Date: Thu, 6 Dec 2012 00:18:32 -0800 Subject: [PATCH] Wrap text in the external images info bar Previously the text would push the buttons over the right edge of the window, given a narrow conversation view. This change makes Geary more usable with narrow window sizes. --- src/client/views/conversation-viewer.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/views/conversation-viewer.vala b/src/client/views/conversation-viewer.vala index 9b0d3c0..d024b33 100644 --- a/src/client/views/conversation-viewer.vala +++ b/src/client/views/conversation-viewer.vala @@ -93,6 +93,7 @@ public class ConversationViewer : Object { external_images_info_bar.get_content_area() as Gtk.Box; if (external_images_info_bar_content_area != null) { Gtk.Label label = new Gtk.Label(_("This message contains images. Do you want to show them?")); + label.set_line_wrap(true); external_images_info_bar_content_area.add(label); label.show_all(); } -- 1.8.0.1 From thinkndev at gmail.com Sat Dec 8 18:24:48 2012 From: thinkndev at gmail.com (John Kim) Date: Sat, 8 Dec 2012 10:24:48 -0800 Subject: [Geary] Daily build as icon on unity. Message-ID: Hello. I use daily build geary to check my email and consider some bugs. But I don't always like reaching out for terminal to launch the application. Before I managed to put the application icon on the unity by using main menu, but I forgot how to do it. How can I launch geary as a standalone, mouse-clickable app? What is the command to use to update daily build geary? Thanks. -- John Kim Ubuntu enthusiast l ookjohn.com From jim at yorba.org Mon Dec 10 19:12:26 2012 From: jim at yorba.org (Jim Nelson) Date: Mon, 10 Dec 2012 19:04:26 -0008 Subject: [Geary] [PATCH] Make image notification text wrap In-Reply-To: References: Message-ID: <50c63413.a54d420a.1c54.32cc@mx.google.com> I've created a ticket and added your patch to it: http://redmine.yorba.org/issues/6126 In the future, it's more efficient if you create the ticket (please search to see if one already exists!) and directly attach the patch there, rather than including it inline in an email to the mailing list. Cheers, -- Jim On Fri, Dec 7, 2012 at 1:32 AM, Tom Most wrote: >From 1a7c1961ad390f339e33d2ac0b9c37550d7556df Mon Sep 17 00:00:00 2001 From: Tom Most Date: Thu, 6 Dec 2012 00:18:32 -0800 Subject: [PATCH] Wrap text in the external images info bar Previously the text would push the buttons over the right edge of the window, given a narrow conversation view. This change makes Geary more usable with narrow window sizes. --- src/client/views/conversation-viewer.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/views/conversation-viewer.vala b/src/client/views/conversation-viewer.vala index 9b0d3c0..d024b33 100644 --- a/src/client/views/conversation-viewer.vala +++ b/src/client/views/conversation-viewer.vala @@ -93,6 +93,7 @@ public class ConversationViewer : Object { external_images_info_bar.get_content_area() as Gtk.Box; if (external_images_info_bar_content_area != null) { Gtk.Label label = new Gtk.Label(_("This message contains images. Do you want to show them?")); + label.set_line_wrap(true); external_images_info_bar_content_area.add(label); label.show_all(); } -- 1.8.0.1 _______________________________________________ Geary mailing list Geary at lists.yorba.org http://lists.yorba.org/cgi-bin/mailman/listinfo/geary From tommost at gmail.com Tue Dec 11 01:55:10 2012 From: tommost at gmail.com (Tom Most) Date: Mon, 10 Dec 2012 17:55:10 -0800 Subject: [Geary] [PATCH] Make image notification text wrap In-Reply-To: <50c63413.a54d420a.1c54.32cc@mx.google.com> References: <50c63413.a54d420a.1c54.32cc@mx.google.com> Message-ID: Okay, will do. For trivial issues like this, is is preferred to generate a patch like this or just create a ticket? Thanks, Tom On Mon, Dec 10, 2012 at 11:12 AM, Jim Nelson wrote: > I've created a ticket and added your patch to it: > > http://redmine.yorba.org/issues/6126 > > In the future, it's more efficient if you create the ticket (please search > to see if one already exists!) and directly attach the patch there, rather > than including it inline in an email to the mailing list. > > Cheers, > > -- Jim > > > On Fri, Dec 7, 2012 at 1:32 AM, Tom Most wrote: > > From 1a7c1961ad390f339e33d2ac0b9c37550d7556df Mon Sep 17 00:00:00 2001 > From: Tom Most > Date: Thu, 6 Dec 2012 00:18:32 -0800 > Subject: [PATCH] Wrap text in the external images info bar > > Previously the text would push the buttons over the right edge of the > window, given a narrow conversation view. This change makes Geary more > usable with narrow window sizes. > --- > src/client/views/conversation-viewer.vala | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/client/views/conversation-viewer.vala > b/src/client/views/conversation-viewer.vala > index 9b0d3c0..d024b33 100644 > --- a/src/client/views/conversation-viewer.vala > +++ b/src/client/views/conversation-viewer.vala > @@ -93,6 +93,7 @@ public class ConversationViewer : Object { > external_images_info_bar.get_content_area() as Gtk.Box; > if (external_images_info_bar_content_area != null) { > Gtk.Label label = new Gtk.Label(_("This message contains > images. Do you want to show them?")); > + label.set_line_wrap(true); > external_images_info_bar_content_area.add(label); > label.show_all(); > } > -- > 1.8.0.1 > _______________________________________________ > Geary mailing list > Geary at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/geary > > From jim at yorba.org Tue Dec 11 02:01:38 2012 From: jim at yorba.org (Jim Nelson) Date: Tue, 11 Dec 2012 01:53:38 -0008 Subject: [Geary] [PATCH] Make image notification text wrap In-Reply-To: References: <50c63413.a54d420a.1c54.32cc@mx.google.com> Message-ID: <50c693fa.e9d3440a.7e88.fffff774@mx.google.com> Although we're backlogged on reviews right now, submitting a patch even for a trivial issue prioritizes getting the problem fixed rather than waiting for us to get to it some time in the development cycle. -- Jim On Mon, Dec 10, 2012 at 5:55 PM, Tom Most wrote: Okay, will do. For trivial issues like this, is is preferred to generate a patch like this or just create a ticket? Thanks, Tom On Mon, Dec 10, 2012 at 11:12 AM, Jim Nelson wrote: > I've created a ticket and added your patch to it: > > http://redmine.yorba.org/issues/6126 > > In the future, it's more efficient if you create the ticket (please search > to see if one already exists!) and directly attach the patch there, rather > than including it inline in an email to the mailing list. > > Cheers, > > -- Jim > > > On Fri, Dec 7, 2012 at 1:32 AM, Tom Most wrote: > > From 1a7c1961ad390f339e33d2ac0b9c37550d7556df Mon Sep 17 00:00:00 2001 > From: Tom Most > Date: Thu, 6 Dec 2012 00:18:32 -0800 > Subject: [PATCH] Wrap text in the external images info bar > > Previously the text would push the buttons over the right edge of the > window, given a narrow conversation view. This change makes Geary more > usable with narrow window sizes. > --- > src/client/views/conversation-viewer.vala | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/client/views/conversation-viewer.vala > b/src/client/views/conversation-viewer.vala > index 9b0d3c0..d024b33 100644 > --- a/src/client/views/conversation-viewer.vala > +++ b/src/client/views/conversation-viewer.vala > @@ -93,6 +93,7 @@ public class ConversationViewer : Object { > external_images_info_bar.get_content_area() as Gtk.Box; > if (external_images_info_bar_content_area != null) { > Gtk.Label label = new Gtk.Label(_("This message contains > images. Do you want to show them?")); > + label.set_line_wrap(true); > external_images_info_bar_content_area.add(label); > label.show_all(); > } > -- > 1.8.0.1 > _______________________________________________ > Geary mailing list > Geary at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/geary > > From tommost at gmail.com Tue Dec 11 04:37:43 2012 From: tommost at gmail.com (Tom Most) Date: Mon, 10 Dec 2012 20:37:43 -0800 Subject: [Geary] Daily build as icon on unity. In-Reply-To: References: Message-ID: If you're building from source in your home directory, you can install it by putting the appropriate .desktop in ~/.local/share/applications. $ cd $YOUR_GEARY_CHECKOUT $ cp build/desktop/geary.desktop ~/.local/share/applications/ Then you need to adjust the paths to be absolute so that they reference your local build: $ sed -i "s|Exec=|Exec=$PWD/|" ~/.local/share/applications/geary.desktop Does that help? On Sat, Dec 8, 2012 at 10:24 AM, John Kim wrote: > Hello. > > I use daily build geary to check my email and consider some bugs. But I > don't always like reaching out for terminal to launch the application. > Before I managed to put the application icon on the unity by using main > menu, but I forgot how to do it. How can I launch geary as a standalone, > mouse-clickable app? > > What is the command to use to update daily build geary? Thanks. > > -- > John Kim > Ubuntu enthusiast > l ookjohn.com > _______________________________________________ > Geary mailing list > Geary at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/geary From jim at yorba.org Tue Dec 11 19:23:43 2012 From: jim at yorba.org (Jim Nelson) Date: Tue, 11 Dec 2012 19:15:43 -0008 Subject: [Geary] Daily build as icon on unity. In-Reply-To: References: Message-ID: <50c78837.e9c5440a.47ea.6bd4@mx.google.com> I think Tom's correct (I haven't tried it), but if you're using Yorba's Daily Build PPA, you shouldn't have to do that. ?Installing from there will install Geary just like a normal app. If you're using Unity, click on the Unity icon in the top left-hand corner, search for Geary, and launch it. ?When it's running, right-click on the Geary icon in the dock. ?You should be able to "pin" it to the dock so it stays there whether running or not. -- Jim On Mon, Dec 10, 2012 at 8:37 PM, Tom Most wrote: If you're building from source in your home directory, you can install it by putting the appropriate .desktop in ~/.local/share/applications. $ cd $YOUR_GEARY_CHECKOUT $ cp build/desktop/geary.desktop ~/.local/share/applications/ Then you need to adjust the paths to be absolute so that they reference your local build: $ sed -i "s|Exec=|Exec=$PWD/|" ~/.local/share/applications/geary.desktop Does that help? On Sat, Dec 8, 2012 at 10:24 AM, John Kim wrote: > Hello. > > I use daily build geary to check my email and consider some bugs. But I > don't always like reaching out for terminal to launch the application. > Before I managed to put the application icon on the unity by using main > menu, but I forgot how to do it. How can I launch geary as a standalone, > mouse-clickable app? > > What is the command to use to update daily build geary? Thanks. > > -- > John Kim > Ubuntu enthusiast > l ookjohn.com > _______________________________________________ > Geary mailing list > Geary at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/geary _______________________________________________ Geary mailing list Geary at lists.yorba.org http://lists.yorba.org/cgi-bin/mailman/listinfo/geary From thinkndev at gmail.com Tue Dec 11 21:22:23 2012 From: thinkndev at gmail.com (John Kim) Date: Tue, 11 Dec 2012 13:22:23 -0800 Subject: [Geary] Daily build as icon on unity. In-Reply-To: <50c78837.e9c5440a.47ea.6bd4@mx.google.com> References: <50c78837.e9c5440a.47ea.6bd4@mx.google.com> Message-ID: Neat, that is a lot simpler too! Thanks. 2012. 12. 11. ?? 11:23? "Jim Nelson" ?? ??: > I think Tom's correct (I haven't tried it), but if you're using Yorba's > Daily Build PPA, you shouldn't have to do that. Installing from there will > install Geary just like a normal app. > > If you're using Unity, click on the Unity icon in the top left-hand > corner, search for Geary, and launch it. When it's running, right-click on > the Geary icon in the dock. You should be able to "pin" it to the dock so > it stays there whether running or not. > > -- Jim > > On Mon, Dec 10, 2012 at 8:37 PM, Tom Most wrote: > > If you're building from source in your home directory, you can install > it by putting the appropriate .desktop in ~/.local/share/applications. > > $ cd $YOUR_GEARY_CHECKOUT > $ cp build/desktop/geary.desktop ~/.local/share/applications/ > > Then you need to adjust the paths to be absolute so that they > reference your local build: > > $ sed -i "s|Exec=|Exec=$PWD/|" ~/.local/share/applications/geary.desktop > > Does that help? > > On Sat, Dec 8, 2012 at 10:24 AM, John Kim ** wrote: > > Hello. > > > > I use daily build geary to check my email and consider some bugs. But I > > don't always like reaching out for terminal to launch the application. > > Before I managed to put the application icon on the unity by using main > > menu, but I forgot how to do it. How can I launch geary as a standalone, > > mouse-clickable app? > > > > What is the command to use to update daily build geary? Thanks. > > > > -- > > John Kim > > Ubuntu enthusiast > > l **ookjohn.com > > _______________________________________________ > > Geary mailing list > > Geary at lists.yorba.org > > http://lists.yorba.org/cgi-bin/mailman/listinfo/geary > _______________________________________________ > Geary mailing list > Geary at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/geary > **** > > > From tiagoq at gmail.com Sat Dec 29 20:58:51 2012 From: tiagoq at gmail.com (Tiago Quelhas) Date: Sat, 29 Dec 2012 20:58:51 +0000 Subject: [Geary] Contributing to Geary Message-ID: Hi all, First of all, thanks for Geary! I've been looking for an email client with proper gmail-style conversation view support for a long time, and Geary seems to be it. Although there are still some features I miss, I hope it can one day be my client of choice. Meanwhile, I'm really interested in contributing to the project! I have a patch for bug #6115; would you be willing to see it? If so, please tell me if the proper etiquette is to post it to the mailing list, or directly to the bug tracker. Thanks, and all the best, Tiago Quelhas From eric at yorba.org Sat Dec 29 21:16:20 2012 From: eric at yorba.org (Eric Gregory) Date: Sat, 29 Dec 2012 13:16:20 -0800 Subject: [Geary] Contributing to Geary In-Reply-To: References: Message-ID: On Dec 29, 2012, at 12:58 PM, Tiago Quelhas wrote: > First of all, thanks for Geary! I've been looking for an email client > with proper gmail-style conversation view support for a long time, and > Geary seems to be it. Although there are still some features I miss, I > hope it can one day be my client of choice. > > Meanwhile, I'm really interested in contributing to the project! I > have a patch for bug #6115; would you be willing to see it? If so, > please tell me if the proper etiquette is to post it to the mailing > list, or directly to the bug tracker. Hi Tiago, Contributions are **always** welcome! The mailing list doesn't accept patches, so the best way to send us a patch is to attach it to a ticket. We ask that patches apply against the current git master, and they should be generated using "git diff". Looking forward to seeing it! - Eric From tiagoq at gmail.com Sat Dec 29 22:00:38 2012 From: tiagoq at gmail.com (Tiago Quelhas) Date: Sat, 29 Dec 2012 22:00:38 +0000 Subject: [Geary] Contributing to Geary In-Reply-To: References: Message-ID: On 29 December 2012 21:16, Eric Gregory wrote: > Hi Tiago, > > Contributions are **always** welcome! The mailing list doesn't accept patches, so the best way to send us a patch is to attach it to a ticket. > > We ask that patches apply against the current git master, and they should be generated using "git diff". > > Looking forward to seeing it! Thanks, Eric! I've submitted my patch to the bug tracker. > - Eric Cheers, Tiago