From adam at yorba.org Mon Feb 1 18:26:29 2010 From: adam at yorba.org (Adam Dingle) Date: Mon, 01 Feb 2010 10:26:29 -0800 Subject: [Shotwell] Rightward pointing mouse cursor In-Reply-To: <4B628470.6020205@alumni.caltech.edu> References: <4B628470.6020205@alumni.caltech.edu> Message-ID: <4B671CD5.9010800@yorba.org> Paul, for some reason we see this bug on Fedora 12 but not Ubuntu 9.10. I'm not sure why - perhaps it's a GTK version difference. In any case, thanks for the diff. We've committed the change. adam Paul Novak wrote: > Hello, > > Occasionally, the mouse pointer points towards the right. This happens > when I edit a photo by double-clicking on a photo, pressing the "Crop" > button at the bottom of the screen, entering the cropped area and then > upon leaving the cropped area the mouse points rightward. This can be > fixed with the changes listed in the diff below so the mouse pointer is > consistent and always points in one direction. > > The change is replacing every instance of GDK_ARROW with GDK_LEFT_PTR. > The standard cursors are at > http://library.gnome.org/devel/gdk/stable/gdk-Cursors.html, and I think > GDK_LEFT_PTR is the appropriate cursor. > > Paul > > > Index: src/AppWindow.vala > =================================================================== > --- src/AppWindow.vala (revision 1141) > +++ src/AppWindow.vala (working copy) > @@ -319,7 +319,7 @@ > } > > public void set_normal_cursor() { > - window.set_cursor(new Gdk.Cursor(Gdk.CursorType.ARROW)); > + window.set_cursor(new Gdk.Cursor(Gdk.CursorType.LEFT_PTR)); > spin_event_loop(); > } > } > Index: src/FacebookConnector.vala > =================================================================== > --- src/FacebookConnector.vala (revision 1141) > +++ src/FacebookConnector.vala (working copy) > @@ -345,7 +345,7 @@ > } > > private void on_page_load(WebKit.WebFrame origin_frame) { > - webview.window.set_cursor(new Gdk.Cursor(Gdk.CursorType.ARROW)); > + webview.window.set_cursor(new Gdk.Cursor(Gdk.CursorType.LEFT_PTR)); > > string loaded_url = origin_frame.get_uri().dup(); > > Index: src/FlickrConnector.vala > =================================================================== > --- src/FlickrConnector.vala (revision 1141) > +++ src/FlickrConnector.vala (working copy) > @@ -673,7 +673,7 @@ > } > > private void on_page_load(WebKit.WebFrame origin_frame) { > - white_pane.window.set_cursor(new Gdk.Cursor(Gdk.CursorType.ARROW)); > + white_pane.window.set_cursor(new > Gdk.Cursor(Gdk.CursorType.LEFT_PTR)); > string token; > string username; > bool got_auth_info = false; > Index: src/EditingTools.vala > =================================================================== > --- src/EditingTools.vala (revision 1141) > +++ src/EditingTools.vala (working copy) > @@ -524,7 +524,7 @@ > > private CropToolWindow crop_tool_window = null; > private Gdk.Pixbuf color_shifted = null; > - private Gdk.CursorType current_cursor_type = Gdk.CursorType.ARROW; > + private Gdk.CursorType current_cursor_type = Gdk.CursorType.LEFT_PTR; > private BoxLocation in_manipulation = BoxLocation.OUTSIDE; > private Gdk.GC wide_black_gc = null; > private Gdk.GC wide_white_gc = null; > @@ -1024,7 +1024,7 @@ > > // make sure the cursor isn't set to a modify indicator > if (canvas != null) > - canvas.get_drawing_window().set_cursor(new > Gdk.Cursor(Gdk.CursorType.ARROW)); > + canvas.get_drawing_window().set_cursor(new > Gdk.Cursor(Gdk.CursorType.LEFT_PTR)); > > base.deactivate(); > } > @@ -1168,7 +1168,7 @@ > Gdk.Rectangle scaled_pos = canvas.get_scaled_pixbuf_position(); > Box offset_scaled_crop = scaled_crop.get_offset(scaled_pos.x, > scaled_pos.y); > > - Gdk.CursorType cursor_type = Gdk.CursorType.ARROW; > + Gdk.CursorType cursor_type = Gdk.CursorType.LEFT_PTR; > switch (offset_scaled_crop.approx_location(x, y)) { > case BoxLocation.LEFT_SIDE: > cursor_type = Gdk.CursorType.LEFT_SIDE; > @@ -1207,7 +1207,7 @@ > break; > > default: > - // use Gdk.CursorType.ARROW > + // use Gdk.CursorType.LEFT_PTR > break; > } > > @@ -1862,7 +1862,7 @@ > > bind_window_handlers(); > > - cached_arrow_cursor = new Gdk.Cursor(Gdk.CursorType.ARROW); > + cached_arrow_cursor = new Gdk.Cursor(Gdk.CursorType.LEFT_PTR); > cached_grab_cursor = new Gdk.Cursor(Gdk.CursorType.FLEUR); > > canvas.get_photo().altered += on_photo_altered; > _______________________________________________ > Shotwell mailing list > Shotwell at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell > > From kaj-ivar at vanderwijst.com Thu Feb 4 21:14:41 2010 From: kaj-ivar at vanderwijst.com (Kaj-Ivar van der Wijst) Date: Thu, 04 Feb 2010 22:14:41 +0100 Subject: [Shotwell] Collections and sets Message-ID: <4B6B38C1.5080001@vanderwijst.com> Hi! I've been using Shotwell for quite some time now, and I really like the 'Events'-way of organizing my photos. However, I miss a feature like being able to create and edit sets, which aren't date-related in any way. It would also be nice to be able to save these sets in collections. For example, I could make a collection called 'Seasons', with four sets: 'Winter', 'Spring', 'Summer' and 'Autumn', or sets like 'Trees', 'Architecture' or whatever, exactly like Flickr now. I think this wouldn't be too hard to develop, as it doesn't really differ from the Events now being used. Could this be a possible feature for, say, Shotwell 0.5 (or later)? That would be great! Thanks in advance, Kaj-Ivar From adam at yorba.org Sat Feb 6 12:01:39 2010 From: adam at yorba.org (Adam Dingle) Date: Sat, 6 Feb 2010 13:01:39 +0100 Subject: [Shotwell] Collections and sets In-Reply-To: <4B6B38C1.5080001@vanderwijst.com> References: <4B6B38C1.5080001@vanderwijst.com> Message-ID: <7c6db8601002060401i9417974ub579a6f440371294@mail.gmail.com> Kaj-Ivar, Shotwell 0.5 will include tags: for example, you'll be able to tag some photos with 'Winter', some with 'Spring' and so on. The sidebar will list all tags, and you'll be able to click on any tag to see all the photos that have that tag. I think this will give you most of what you're asking for. Perhaps in a future release we'll allow tags to be grouped into folders; then you could have a 'Seasons' folder with tags such as 'Winter' and 'Spring inside it. Any feedback on this planned feature is welcome! adam On Thu, Feb 4, 2010 at 10:14 PM, Kaj-Ivar van der Wijst < kaj-ivar at vanderwijst.com> wrote: > Hi! > > I've been using Shotwell for quite some time now, and I really like the > 'Events'-way of organizing my photos. However, I miss a feature like > being able to create and edit sets, which aren't date-related in any > way. It would also be nice to be able to save these sets in collections. > For example, I could make a collection called 'Seasons', with four sets: > 'Winter', 'Spring', 'Summer' and 'Autumn', or sets like 'Trees', > 'Architecture' or whatever, exactly like Flickr now. > > I think this wouldn't be too hard to develop, as it doesn't really > differ from the Events now being used. > > Could this be a possible feature for, say, Shotwell 0.5 (or later)? That > would be great! > > Thanks in advance, > > Kaj-Ivar > _______________________________________________ > Shotwell mailing list > Shotwell at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dontodd at gmail.com Sat Feb 6 18:44:21 2010 From: dontodd at gmail.com (Todd Slater) Date: Sat, 6 Feb 2010 13:44:21 -0500 Subject: [Shotwell] Collections and sets In-Reply-To: <7c6db8601002060401i9417974ub579a6f440371294@mail.gmail.com> References: <4B6B38C1.5080001@vanderwijst.com> <7c6db8601002060401i9417974ub579a6f440371294@mail.gmail.com> Message-ID: <9421dc6f1002061044l79648620v49358bda9225f4df@mail.gmail.com> For portability I would love it if keyword metadata could be included in the picture file itself. F-spot provides the option to store it in the picture or the database, which is nice (except for the way it handles EXIF timestamps). Sending keyword tags on export to flickr would be nice, too. I'm very much looking forward to the tags feature! Best, Todd On Sat, Feb 6, 2010 at 7:01 AM, Adam Dingle wrote: > Kaj-Ivar, > > Shotwell 0.5 will include tags: for example, you'll be able to tag some > photos with 'Winter', some with 'Spring' and so on. The sidebar will list > all tags, and you'll be able to click on any tag to see all the photos that > have that tag. I think this will give you most of what you're asking for. > Perhaps in a future release we'll allow tags to be grouped into folders; > then you could have a 'Seasons' folder with tags such as 'Winter' and > 'Spring inside it. > > Any feedback on this planned feature is welcome! > > adam > > On Thu, Feb 4, 2010 at 10:14 PM, Kaj-Ivar van der Wijst < > kaj-ivar at vanderwijst.com> wrote: > >> Hi! >> >> I've been using Shotwell for quite some time now, and I really like the >> 'Events'-way of organizing my photos. However, I miss a feature like >> being able to create and edit sets, which aren't date-related in any >> way. It would also be nice to be able to save these sets in collections. >> For example, I could make a collection called 'Seasons', with four sets: >> 'Winter', 'Spring', 'Summer' and 'Autumn', or sets like 'Trees', >> 'Architecture' or whatever, exactly like Flickr now. >> >> I think this wouldn't be too hard to develop, as it doesn't really >> differ from the Events now being used. >> >> Could this be a possible feature for, say, Shotwell 0.5 (or later)? That >> would be great! >> >> Thanks in advance, >> >> Kaj-Ivar >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jim at yorba.org Sun Feb 7 10:15:46 2010 From: jim at yorba.org (Jim Nelson) Date: Sun, 7 Feb 2010 11:15:46 +0100 Subject: [Shotwell] Collections and sets In-Reply-To: <9421dc6f1002061044l79648620v49358bda9225f4df@mail.gmail.com> References: <4B6B38C1.5080001@vanderwijst.com> <7c6db8601002060401i9417974ub579a6f440371294@mail.gmail.com> <9421dc6f1002061044l79648620v49358bda9225f4df@mail.gmail.com> Message-ID: Hi Todd, We do have a ticket for this at http://trac.yorba.org/ticket/1290. We don't have a ticket for sending tags to Web services; I've created one at http://trac.yorba.org/ticket/1326. Thanks, -- Jim On Sat, Feb 6, 2010 at 7:44 PM, Todd Slater wrote: > For portability I would love it if keyword metadata could be included in > the picture file itself. F-spot provides the option to store it in the > picture or the database, which is nice (except for the way it handles EXIF > timestamps). Sending keyword tags on export to flickr would be nice, too. > I'm very much looking forward to the tags feature! > > Best, > > Todd > > > On Sat, Feb 6, 2010 at 7:01 AM, Adam Dingle wrote: > >> Kaj-Ivar, >> >> Shotwell 0.5 will include tags: for example, you'll be able to tag some >> photos with 'Winter', some with 'Spring' and so on. The sidebar will list >> all tags, and you'll be able to click on any tag to see all the photos that >> have that tag. I think this will give you most of what you're asking for. >> Perhaps in a future release we'll allow tags to be grouped into folders; >> then you could have a 'Seasons' folder with tags such as 'Winter' and >> 'Spring inside it. >> >> Any feedback on this planned feature is welcome! >> >> adam >> >> On Thu, Feb 4, 2010 at 10:14 PM, Kaj-Ivar van der Wijst < >> kaj-ivar at vanderwijst.com> wrote: >> >>> Hi! >>> >>> I've been using Shotwell for quite some time now, and I really like the >>> 'Events'-way of organizing my photos. However, I miss a feature like >>> being able to create and edit sets, which aren't date-related in any >>> way. It would also be nice to be able to save these sets in collections. >>> For example, I could make a collection called 'Seasons', with four sets: >>> 'Winter', 'Spring', 'Summer' and 'Autumn', or sets like 'Trees', >>> 'Architecture' or whatever, exactly like Flickr now. >>> >>> I think this wouldn't be too hard to develop, as it doesn't really >>> differ from the Events now being used. >>> >>> Could this be a possible feature for, say, Shotwell 0.5 (or later)? That >>> would be great! >>> >>> Thanks in advance, >>> >>> Kaj-Ivar >>> >> > _______________________________________________ > Shotwell mailing list > Shotwell at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From lfu.project at gmail.com Sun Feb 7 18:49:40 2010 From: lfu.project at gmail.com (LFU Project Team) Date: Sun, 7 Feb 2010 20:49:40 +0200 Subject: [Shotwell] Shotwell ia already official part of a Linux distribution Message-ID: <6992f8d71002071049x77101c71w9c45ccbf342a612f@mail.gmail.com> Being excellent piece of software, Shotwell is chosen to be the default Photo manager in one Bulgarian Linux distribution. Our distribution is called USU (http://learnfree.eu/), and it's primary focus is educational sphere. We found Shotwell to be perfectly suitable for our purpose. Thank You for this useful application! Greetings from Bulgaria, Svetoslav Stefanov -- http://learnfree.eu -------------- next part -------------- An HTML attachment was scrubbed... URL: From tommy.he at linux.com Tue Feb 9 11:42:16 2010 From: tommy.he at linux.com (Tommy He) Date: Tue, 09 Feb 2010 11:42:16 +0000 Subject: [Shotwell] Adding simplified Chinese translation Message-ID: <4B714A18.2030706@linux.com> Hello everyone, I wish I could find this non-destructive photo organizer earlier. Thank you for this great application. Last night I initialized a simplified Chinese po file on Transifex. It only contains few entry since I hope to use the on-line po editor. However, I can not see this po file listed and mark it as locked. Does it need some confirmation for the new translation? Kind regards, Tommy He -- Take a Deep Breath out of Windows From lucas at yorba.org Tue Feb 9 19:53:58 2010 From: lucas at yorba.org (Lucas Beeler) Date: Tue, 9 Feb 2010 11:53:58 -0800 Subject: [Shotwell] Adding simplified Chinese translation In-Reply-To: <4B714A18.2030706@linux.com> References: <4B714A18.2030706@linux.com> Message-ID: <992b763d1002091153n4679c02cj603d8f6235bad349@mail.gmail.com> Hi Tommy, Thank you so much for submitting a Shotwell translation! We hope to make Shotwell available to as many people around the globe as possible in their native languages, and the efforts of translators like you help us advance this goal. I received your zh_CN po file yesterday. Our Transifex account is set up so that newly submitted po files are not committed to our source repository immediately. Instead, we manually inspect each submitted po file to verify (and correct, if necessary) its metadata and encoding before we commit it. This helps us maintain the polish and consistency we aim for in all our Yorba apps. I will commit your zh_CN po file today. That said, we generally don't commit po files that have fewer than 10% of their strings translated -- because profiling, updating, and committing po files consumes time that could be used for coding Shotwell! Thanks again! Wishing you all the best, Lucas From tommy.he at linux.com Tue Feb 9 20:10:53 2010 From: tommy.he at linux.com (Tommy He) Date: Tue, 09 Feb 2010 20:10:53 +0000 Subject: [Shotwell] Adding simplified Chinese translation In-Reply-To: <992b763d1002091153n4679c02cj603d8f6235bad349@mail.gmail.com> References: <4B714A18.2030706@linux.com> <992b763d1002091153n4679c02cj603d8f6235bad349@mail.gmail.com> Message-ID: <4B71C14D.8090208@linux.com> Hi Lucas, Oh, sorry for the inconvenience. I was just eager to try the Transifex online po editor. My main translation work is on Fedora project, which still runs an old version Transifex without online po editor. If this comment this almost empty po file consume too much precious coding time, please let me know and I am still cool to generate a nearly completed one with gtranslator as I used to. Again, sorry for the inconvenience. Kind regards, ? 2010?02?09? 19:53, Lucas Beeler ??: > Hi Tommy, > > Thank you so much for submitting a Shotwell translation! We hope to > make Shotwell available to as many people around the globe as possible > in their native languages, and the efforts of translators like you > help us advance this goal. > > I received your zh_CN po file yesterday. Our Transifex account is > set up so that newly submitted po files are not committed to our > source repository immediately. Instead, we manually inspect each > submitted po file to verify (and correct, if necessary) its metadata > and encoding before we commit it. This helps us maintain the polish > and consistency we aim for in all our Yorba apps. > > I will commit your zh_CN po file today. That said, we generally > don't commit po files that have fewer than 10% of their strings > translated -- because profiling, updating, and committing po files > consumes time that could be used for coding Shotwell! > > Thanks again! > > Wishing you all the best, > Lucas > -- Take a Deep Breath out of Windows From lucas at yorba.org Tue Feb 9 20:16:39 2010 From: lucas at yorba.org (Lucas Beeler) Date: Tue, 9 Feb 2010 12:16:39 -0800 Subject: [Shotwell] Adding simplified Chinese translation In-Reply-To: <4B71C14D.8090208@linux.com> References: <4B714A18.2030706@linux.com> <992b763d1002091153n4679c02cj603d8f6235bad349@mail.gmail.com> <4B71C14D.8090208@linux.com> Message-ID: <992b763d1002091216u76e16c22iadd0f6b7d4a4e4c7@mail.gmail.com> Hi Tommy, I made an exception to the "10% of strings need to be translated" rule in your case because I could tell that you're enthusiastic about Shotwell and are likely to finish the translation! I just committed your po file and updated the Transifex page about 5 minutes ago. Thanks again, Lucas From tommy.he at linux.com Tue Feb 9 20:25:47 2010 From: tommy.he at linux.com (Tommy He) Date: Tue, 9 Feb 2010 20:25:47 +0000 Subject: [Shotwell] Adding simplified Chinese translation In-Reply-To: <992b763d1002091216u76e16c22iadd0f6b7d4a4e4c7@mail.gmail.com> References: <4B714A18.2030706@linux.com> <992b763d1002091153n4679c02cj603d8f6235bad349@mail.gmail.com> <4B71C14D.8090208@linux.com> <992b763d1002091216u76e16c22iadd0f6b7d4a4e4c7@mail.gmail.com> Message-ID: <8ed3c2d1002091225x5d3ec9a7y7e4785d31825d5b2@mail.gmail.com> Hi Lucas, Thank you for the exception. Good to hear that. I am going to start it now. :-) Kind regards, On 9 February 2010 20:16, Lucas Beeler wrote: > Hi Tommy, > > I made an exception to the "10% of strings need to be translated" > rule in your case because I could tell that you're enthusiastic about > Shotwell and are likely to finish the translation! I just committed > your po file and updated the Transifex page about 5 minutes ago. > > Thanks again, > Lucas > -- Take a Deep Breath out of Windows -------------- next part -------------- An HTML attachment was scrubbed... URL: From tommy.he at linux.com Tue Feb 9 21:00:10 2010 From: tommy.he at linux.com (Tommy He) Date: Tue, 9 Feb 2010 21:00:10 +0000 Subject: [Shotwell] Adding simplified Chinese translation In-Reply-To: <8ed3c2d1002091225x5d3ec9a7y7e4785d31825d5b2@mail.gmail.com> References: <4B714A18.2030706@linux.com> <992b763d1002091153n4679c02cj603d8f6235bad349@mail.gmail.com> <4B71C14D.8090208@linux.com> <992b763d1002091216u76e16c22iadd0f6b7d4a4e4c7@mail.gmail.com> <8ed3c2d1002091225x5d3ec9a7y7e4785d31825d5b2@mail.gmail.com> Message-ID: <8ed3c2d1002091300h1f52a6e5y65af7b8704ff2149@mail.gmail.com> Hi Lucas? It seems that the Transifex was unable to save the result from online translation. What I translated in the last 15 minutes were lost when I hit save button. :-( Is that the kind of permission problem ? Probably I have to roll back to gtranslator for safety. Kind regards, On 9 February 2010 20:25, Tommy He wrote: > Hi Lucas, > > Thank you for the exception. > > Good to hear that. I am going to start it now. :-) > > Kind regards, > > > On 9 February 2010 20:16, Lucas Beeler wrote: > >> Hi Tommy, >> >> I made an exception to the "10% of strings need to be translated" >> rule in your case because I could tell that you're enthusiastic about >> Shotwell and are likely to finish the translation! I just committed >> your po file and updated the Transifex page about 5 minutes ago. >> >> Thanks again, >> Lucas >> > > > > -- > Take a Deep Breath out of Windows > -- Take a Deep Breath out of Windows -------------- next part -------------- An HTML attachment was scrubbed... URL: From lucas at yorba.org Tue Feb 9 21:11:51 2010 From: lucas at yorba.org (Lucas Beeler) Date: Tue, 9 Feb 2010 13:11:51 -0800 Subject: [Shotwell] Adding simplified Chinese translation In-Reply-To: <8ed3c2d1002091300h1f52a6e5y65af7b8704ff2149@mail.gmail.com> References: <4B714A18.2030706@linux.com> <992b763d1002091153n4679c02cj603d8f6235bad349@mail.gmail.com> <4B71C14D.8090208@linux.com> <992b763d1002091216u76e16c22iadd0f6b7d4a4e4c7@mail.gmail.com> <8ed3c2d1002091225x5d3ec9a7y7e4785d31825d5b2@mail.gmail.com> <8ed3c2d1002091300h1f52a6e5y65af7b8704ff2149@mail.gmail.com> Message-ID: <992b763d1002091311s36c404c4w38db65e13fa51798@mail.gmail.com> Hi Tommy, The Transifex online translation system appears to have problems working with PO files having more than 100 strings. The web-based editing component of Transifex is called Lotte. Up until release 0.7 of Transifex, Lotte was limited solely to 100 string or less PO files (see http://docs.transifex.org/releases/0.7.html for details). In the current release of Transifex server (0.8) the previous hard 100 string restriction was removed. However, we still get anecdotal reports of Lotte having trouble with large PO files (your report being yet another example). Since the Shotwell POT file has over 400 translatable strings, we definitely don't recommend using Lotte to edit it online. Instead, we recommend using POEdit or a similar desktop translation app. Once again, this is an ongoing limitation of the Transifex server software and we apologize for the inconvenience. Take care, Lucas From tommy.he at linux.com Tue Feb 9 21:20:26 2010 From: tommy.he at linux.com (Tommy He) Date: Tue, 9 Feb 2010 21:20:26 +0000 Subject: [Shotwell] Adding simplified Chinese translation In-Reply-To: <992b763d1002091311s36c404c4w38db65e13fa51798@mail.gmail.com> References: <4B714A18.2030706@linux.com> <992b763d1002091153n4679c02cj603d8f6235bad349@mail.gmail.com> <4B71C14D.8090208@linux.com> <992b763d1002091216u76e16c22iadd0f6b7d4a4e4c7@mail.gmail.com> <8ed3c2d1002091225x5d3ec9a7y7e4785d31825d5b2@mail.gmail.com> <8ed3c2d1002091300h1f52a6e5y65af7b8704ff2149@mail.gmail.com> <992b763d1002091311s36c404c4w38db65e13fa51798@mail.gmail.com> Message-ID: <8ed3c2d1002091320ka1ddfcau705837955a225442@mail.gmail.com> Hi Lucas, Oh, I see. Thanks for the information. Well, I think I have to use the Gtranslator as usual. Hope they could fix it soon. Kind regards, On 9 February 2010 21:11, Lucas Beeler wrote: > Hi Tommy, > > The Transifex online translation system appears to have problems > working with PO files having more than 100 strings. The web-based > editing component of Transifex is called Lotte. Up until release 0.7 > of Transifex, Lotte was limited solely to 100 string or less PO files > (see http://docs.transifex.org/releases/0.7.html for details). In the > current release of Transifex server (0.8) the previous hard 100 string > restriction was removed. However, we still get anecdotal reports of > Lotte having trouble with large PO files (your report being yet > another example). Since the Shotwell POT file has over 400 > translatable strings, we definitely don't recommend using Lotte to > edit it online. Instead, we recommend using POEdit or a similar > desktop translation app. Once again, this is an ongoing limitation of > the Transifex server software and we apologize for the inconvenience. > > Take care, > Lucas > -- Take a Deep Breath out of Windows -------------- next part -------------- An HTML attachment was scrubbed... URL: From paolo_montrasi at yahoo.it Sat Feb 20 13:50:23 2010 From: paolo_montrasi at yahoo.it (Paolo) Date: Sat, 20 Feb 2010 14:50:23 +0100 Subject: [Shotwell] debian ppc user Message-ID: <1266673823.6611.7.camel@mini> hi all, I had waited for vala-0.7.9 to move in testing and now we have vala-0.7.10 but compiling shotwell 0.4.3 fails. currently I can use the earlier version of shotwell on my debian ppc, which is very good anyway in respect to other photo managers that hog my slow cpu. I would like to know if the next release of shotwell is going to use vala-0.7.10, so I can compile it on my own. thanks, Paolo From adam at yorba.org Sat Feb 20 15:59:35 2010 From: adam at yorba.org (Adam Dingle) Date: Sat, 20 Feb 2010 16:59:35 +0100 Subject: [Shotwell] debian ppc user In-Reply-To: <1266673823.6611.7.camel@mini> References: <1266673823.6611.7.camel@mini> Message-ID: <7c6db8601002200759l3fad0bc6h564a34a5a51c03ae@mail.gmail.com> > I would like to know if the next release of shotwell is going to use > vala-0.7.10 ... Yes. If you're daring, you can try the current trunk build, which builds with (and only with) Vala 0.7.10. New features include tags, exporting to PicasaWeb, modifiying photos' dates/times, and more. The trunk build might not always be stable, of course. We'll release Shotwell 0.5 with all these features sometime in March. adam On Sat, Feb 20, 2010 at 2:50 PM, Paolo wrote: > hi all, I had waited for vala-0.7.9 to move in testing and now we have > vala-0.7.10 but compiling shotwell 0.4.3 fails. > currently I can use the earlier version of shotwell on my debian ppc, > which is very good anyway in respect to other photo managers that hog my > slow cpu. > I would like to know if the next release of shotwell is going to use > vala-0.7.10, so I can compile it on my own. > thanks, > Paolo > > _______________________________________________ > Shotwell mailing list > Shotwell at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell > -------------- next part -------------- An HTML attachment was scrubbed... URL: From caccolangrifata at gmail.com Fri Feb 26 12:43:56 2010 From: caccolangrifata at gmail.com (caccolangrifata) Date: Fri, 26 Feb 2010 13:43:56 +0100 Subject: [Shotwell] Enhancing doesn't work Message-ID: <1267188236.6642.4.camel@mind> On shotwell 0.4.3 and 0.4.3+trunk It seams the clicking on Enhancing nothing change and on terminal appear that message "(shotwell:7410): GLib-GObject-CRITICAL **: g_value_get_pointer: assertion `G_VALUE_HOLDS_POINTER (value)' failed" is that a bug? -- caccolangrifata -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 197 bytes Desc: Questa ? una parte del messaggio firmata digitalmente URL: From caccolangrifata at gmail.com Fri Feb 26 12:51:48 2010 From: caccolangrifata at gmail.com (caccolangrifata) Date: Fri, 26 Feb 2010 13:51:48 +0100 Subject: [Shotwell] it.po update Message-ID: <1267188708.6642.7.camel@mind> Hi! in the attach there is a patch for it.po file for incoming shotwell 0.5. 96% completed Enjoy! :D -- caccolangrifata -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 197 bytes Desc: Questa ? una parte del messaggio firmata digitalmente URL: From caccolangrifata at gmail.com Fri Feb 26 12:53:40 2010 From: caccolangrifata at gmail.com (caccolangrifata) Date: Fri, 26 Feb 2010 13:53:40 +0100 Subject: [Shotwell] it.po update In-Reply-To: <1267188708.6642.7.camel@mind> References: <1267188708.6642.7.camel@mind> Message-ID: <1267188820.6642.9.camel@mind> Doh! forgot the attach... sorry Il giorno ven, 26/02/2010 alle 13.51 +0100, caccolangrifata ha scritto: > Hi! > in the attach there is a patch for it.po file for incoming shotwell 0.5. > 96% completed > Enjoy! :D > -- caccolangrifata -------------- next part -------------- A non-text attachment was scrubbed... Name: it.po.patch Type: text/x-patch Size: 80140 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 197 bytes Desc: Questa ? una parte del messaggio firmata digitalmente URL: From adam at yorba.org Fri Feb 26 13:58:21 2010 From: adam at yorba.org (Adam Dingle) Date: Fri, 26 Feb 2010 05:58:21 -0800 Subject: [Shotwell] Enhancing doesn't work In-Reply-To: <1267188236.6642.4.camel@mind> References: <1267188236.6642.4.camel@mind> Message-ID: <4B87D37D.9000809@yorba.org> An HTML attachment was scrubbed... URL: From mweisshaupt1988 at googlemail.com Fri Feb 26 20:34:50 2010 From: mweisshaupt1988 at googlemail.com (=?ISO-8859-15?Q?Martin_Wei=DFhaupt?=) Date: Fri, 26 Feb 2010 21:34:50 +0100 Subject: [Shotwell] de.po Update Message-ID: <4B88306A.7080705@googlemail.com> Hello everyone, I attached the updated German translation. Regards, Martin -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: de.po URL: From jim at yorba.org Sat Feb 27 02:09:40 2010 From: jim at yorba.org (Jim Nelson) Date: Fri, 26 Feb 2010 18:09:40 -0800 Subject: [Shotwell] Call for testing Message-ID: Hello, We've been working diligently on Shotwell 0.5 and we have high hopes for this release. Several big new features have been added as well as a slew of tweaks, additions, and bug fixes. Some of the more big ticket items include: * Tags as another way of organizing your collection * Picasa Web publishing * Printing * Adjust photos dates and times, both to a single moment and shifting several forward and backward in time We could use your help. We're hoping to ship Shotwell 0.5 in the next few weeks and would like to run it through its paces. We need people to download the current revision in trunk (not the tarball) and really beat up on it. If you're interested, follow the directions here for getting the source and building it: http://trac.yorba.org/wiki/ShotwellInstallation If you find bugs or issues -- anything that seems odd -- please feel free to report them here on the mailing list or via our Trac ticketing system at: http://trac.yorba.org/ We're also always looking for translators to assist us in making Shotwell a world-class product. If you're interested, please visit our Transifex page to get started: http://www.transifex.net/projects/p/shotwell/ Thanks for your continued support! -- Jim Nelson -------------- next part -------------- An HTML attachment was scrubbed... URL: From roman.yepishev at yandex.ua Sat Feb 27 12:24:30 2010 From: roman.yepishev at yandex.ua (Roman Yepishev) Date: Sat, 27 Feb 2010 14:24:30 +0200 Subject: [Shotwell] Shotwell performance in Lucid Lynx Message-ID: <1267273470.4375.21.camel@buzz.west.homenet.org> Hello, I have updated my system to Lucid Lynx where shotwell is present in the repository and it looks like it does not work well there. First of all, when progress bar is displaying the loading state during startup, the following lines flood the terminal: (shotwell:4753): GLib-GObject-CRITICAL **: g_value_get_pointer: assertion `G_VALUE_HOLDS_POINTER (value)' failed When the main window is loaded, the "Photos" meta-event is selected but no images are displayed in the image pane. It looks like redrawing is not happening. It is possible to trigger the redraw by clicking on one of the "photos". In this case the whole aria is redrawn, however during scrolling some photos are still missing or only partially displayed. When photos are imported, the event pane is not updated with the new nodes, the photos are only available via Photos meta-event. Facebook upload plugin seems to be having problems during initialization. The following is printed to the terminal: Entity: line 183: parser error : expected '>' From caccolangrifata at gmail.com Sat Feb 27 14:13:34 2010 From: caccolangrifata at gmail.com (caccolangrifata) Date: Sat, 27 Feb 2010 15:13:34 +0100 Subject: [Shotwell] Shotwell performance in Lucid Lynx In-Reply-To: <1267273470.4375.21.camel@buzz.west.homenet.org> References: <1267273470.4375.21.camel@buzz.west.homenet.org> Message-ID: <1267280014.2959.12.camel@mind> It's seems that there is some problem with libglib2 2.23 Can you check the version of this library? in ubuntu the package name is libglib2.0-0 Il giorno sab, 27/02/2010 alle 14.24 +0200, Roman Yepishev ha scritto: > Hello, > > I have updated my system to Lucid Lynx where shotwell is present in the > repository and it looks like it does not work well there. > > First of all, when progress bar is displaying the loading state during > startup, the following lines flood the terminal: > > (shotwell:4753): GLib-GObject-CRITICAL **: g_value_get_pointer: > assertion `G_VALUE_HOLDS_POINTER (value)' failed > > When the main window is loaded, the "Photos" meta-event is selected but > no images are displayed in the image pane. It looks like redrawing is > not happening. > > It is possible to trigger the redraw by clicking on one of the "photos". > In this case the whole aria is redrawn, however during scrolling some > photos are still missing or only partially displayed. > > When photos are imported, the event pane is not updated with the new > nodes, the photos are only available via Photos meta-event. > > Facebook upload plugin seems to be having problems during > initialization. > The following is printed to the terminal: > Entity: line 183: parser error : expected '>' > ^ > Entity: line 183: parser error : Opening and ending tag mismatch: > photos_getAlbums_response line 2 and photos_getAlbums_resp > ^ > However, the photos do get uploaded but it looks like it performs pretty > serious computations consuming a lot of CPU time to upload every photo. > > Additionally, it is not possible to build shotwell from 0.4.3 sources in > stock Lucid Lynx install with Vala 0.7.10, see > http://paste.ubuntu.com/385037/ > Compilation failed: 12 error(s), 56 warning(s) > > I will be happy to provide any additional info regarding the issue. I > know this has to go to bug reports, but I'd appreciate that if someone > else could confirm these issues. > _______________________________________________ > Shotwell mailing list > Shotwell at lists.yorba.org > http://lists.yorba.org/cgi-bin/mailman/listinfo/shotwell -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 197 bytes Desc: Questa ? una parte del messaggio firmata digitalmente URL: From martin.james.robinson at gmail.com Sat Feb 27 21:58:21 2010 From: martin.james.robinson at gmail.com (Martin Robinson) Date: Sat, 27 Feb 2010 13:58:21 -0800 Subject: [Shotwell] Small patch for trinket handling Message-ID: <654d70961002271358i6ce7204at7071d5d46935199@mail.gmail.com> I'm not sure if this is the appropriate place to submit patches, but here goes. :) I was fiddling around with trinket positioning today for fun and I ran into some code which requisitions size for multiple trinkets, but doesn't position them properly. It's not entirely useful, as there doesn't appear to be a way to have multiple trinkets yet, but I've attached a very simple patch for this issue. Martin -------------- next part -------------- A non-text attachment was scrubbed... Name: trinket_positioning.diff Type: text/x-patch Size: 1297 bytes Desc: not available URL: