You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
(1) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(4) |
Feb
(7) |
Mar
(2) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(3) |
Nov
|
Dec
|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
(1) |
Dec
|
| 2006 |
Jan
(14) |
Feb
(2) |
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
(4) |
Feb
(3) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2009 |
Jan
(1) |
Feb
(4) |
Mar
(1) |
Apr
(4) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: wwp <sub...@fr...> - 2007-03-26 10:47:36
|
Hello Qball, On Mon, 26 Mar 2007 11:25:57 +0200 Qball Cow <qb...@qb...> wrote: > The webmaster moved the site from one machine to another, I'll see if I=20 > can check it later today.,. Thanks! Regards, --=20 wwp |
|
From: Qball C. <qb...@qb...> - 2007-03-26 09:26:15
|
The webmaster moved the site from one machine to another, I'll see if I can check it later today.,. Thanks.. Qball wwp wrote: > Hello Q, > > > Is the SVN repos for gtodo1 (or sarine.nl itself) down? > > >> svn up >> > svn: Can't connect to host 'sarine.nl': Connection refused > > > Regards, > > |
|
From: wwp <sub...@fr...> - 2007-03-26 09:13:24
|
Hello Q, Is the SVN repos for gtodo1 (or sarine.nl itself) down? > svn up svn: Can't connect to host 'sarine.nl': Connection refused Regards, --=20 wwp |
|
From: Qball C. <qb...@qb...> - 2007-02-16 20:52:48
|
I've made gtodo2 a bit more usefull. I've removed the broken print stuff, fixed some gui issues, and added a flat-file backend. See: http://wordpress.qballcow.nl/2007/02/14/task-lists-and-syncing/ http://wordpress.qballcow.nl/2007/02/16/task-lists-and-syncing-update/ To check it out: svn co https://gtodo.svn.sourceforge.net/svnroot/gtodo gtodo Have fun, Q |
|
From: Qball C. <qb...@qb...> - 2007-02-10 20:36:55
|
Patch looks fine. if you want direct commit access contact me.
Qball
On Sat, 2007-02-10 at 19:28 +0100, wwp wrote:
> Hi Qball,
>
>
> there's a crash I reproduce every time here, it's when exporting to HTML, if
> Embed Default CSS is checked (1st checkbox) and if Export Current Cat only is
> checked too (last checkbox). Here's a quick patch against current SVN that
> does check for pointer sanity, maybe not exactly what you'd like but it does
> the fix to me:
>
> Index: src/export.c
> ===================================================================
> --- src/export.c (revision 8)
> +++ src/export.c (working copy)
> @@ -207,7 +207,7 @@
> if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(cb_curcat)))
> {
> int i= 0, cat = 0;
> - for(i=0;param_string[i] != NULL;i++);
> + for(i=0;param_string && param_string[i] != NULL;i++);
> cat = gtk_option_menu_get_history (GTK_OPTION_MENU (mw.option));
>
> if(cat != 0)
>
>
> BTW, do you think that exporting to HTML could keep the current sort method?
>
>
> Regards,
>
> -------------------------------------------------------------------------
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier.
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> _______________________________________________ Gtodo-list mailing list Gto...@li... https://lists.sourceforge.net/lists/listinfo/gtodo-list
|
|
From: wwp <sub...@fr...> - 2007-02-10 18:28:22
|
Hi Qball,
there's a crash I reproduce every time here, it's when exporting to HTML, if
Embed Default CSS is checked (1st checkbox) and if Export Current Cat only =
is
checked too (last checkbox). Here's a quick patch against current SVN that
does check for pointer sanity, maybe not exactly what you'd like but it does
the fix to me:
Index: src/export.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- src/export.c (revision 8)
+++ src/export.c (working copy)
@@ -207,7 +207,7 @@
if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(cb_curcat)))
{
int i=3D 0, cat =3D 0;
- for(i=3D0;param_string[i] !=3D NULL;i++);
+ for(i=3D0;param_string && param_string[i] !=3D NULL;i++);
cat =3D gtk_option_menu_get_history (GTK_OPTION_MENU (mw.op=
tion));
if(cat !=3D 0)
BTW, do you think that exporting to HTML could keep the current sort method?
Regards,
--=20
wwp
|
|
From: Qball C. <qb...@qb...> - 2007-01-28 21:52:45
|
I/We should make a list what should be done on the RC so we can make a (final) release. SVN does fix some serious bugs compared to the latest stable release. (or snapshot used in some distro's). The one thing I can remember is permission checking on remote files... I have to admit I haven't used gtodo in a while... Qball wwp wrote: > Hello Qball, > > > On Sun, 28 Jan 2007 20:31:24 +0100 Qball Cow <qb...@qb...> wrote: > > >> wwp wrote: >> >>> Hello Qball, >>> >>> >>> On Sun, 28 Jan 2007 19:57:25 +0100 Qball Cow <qb...@qb...> wrote: >>> >>> >>> >>>> svn co svn://sarine.nl/gtodo1 gtodo1 >>>> >>>> >>> Cool, thanks! >>> >>> BTW, is the gto...@li... mailing list down? I didn't >>> receive my own (recent) posts. >>> >>> >>> Regards, >>> >>> >>> >> I got them. >> > > Hm, strange, apparently I was not subscribed :-\. Done now. > > > Regards, > > |
|
From: Qball C. <qb...@qb...> - 2007-01-28 18:58:25
|
applied... you can find the latest gtodo here: svn co svn://sarine.nl/gtodo1 gtodo1 Qball wwp wrote: > Hi Qball, > > > Long time ago! > > I'm maybe moving to XFCE, and didn't find any xfce applet to run gtodo.. so I > wondered why not adding an eggtrayicon to gtodo! I've completely forgotten > that there's already an eggtrayicon :-), and even that I was using it, then > switched to the gtodo-applet few months/years ago because it was more > convenient. > > Back to the trayicon (to use gtodo in GNOME or XFCE), here are 2 patches. > One that fixes the --help text to add missing switches (-h, -n) and fix few > typos. > > The other one add a new option to "close to tray" (if the tray icon is > enabled, using the WM to close gtodo will hide it, you can still close gtodo > from the main window menu or the trayicon menu), and enhance the visibility > handling of the trayicon: it is now able to directly raise the window when > it's iconified (minimized, shaded or on another desktop). All those trayicon > features make it more convenient (and standard), I don't need the applet > anymore: tray icon enabled, close to tray enabled, I start gtodo -h with my > session, et voila. > > Tested OK withing GNOME 2.14.x, KDE 3.5.x, Window Maker, XFCE4. > > BTW, all patches I created for gtodo 0.16-rc2 are available here: > http://www.mollux.org/projects/contrib/gtodo/0.16.0-rc2/ > > > Regards, > |
|
From: wwp <sub...@fr...> - 2007-01-28 18:11:01
|
Hi Qball, Long time ago! I'm maybe moving to XFCE, and didn't find any xfce applet to run gtodo.. so I wondered why not adding an eggtrayicon to gtodo! I've completely forgotten that there's already an eggtrayicon :-), and even that I was using it, then switched to the gtodo-applet few months/years ago because it was more convenient. Back to the trayicon (to use gtodo in GNOME or XFCE), here are 2 patches. One that fixes the --help text to add missing switches (-h, -n) and fix few typos. The other one add a new option to "close to tray" (if the tray icon is enabled, using the WM to close gtodo will hide it, you can still close gtodo from the main window menu or the trayicon menu), and enhance the visibility handling of the trayicon: it is now able to directly raise the window when it's iconified (minimized, shaded or on another desktop). All those trayicon features make it more convenient (and standard), I don't need the applet anymore: tray icon enabled, close to tray enabled, I start gtodo -h with my session, et voila. Tested OK withing GNOME 2.14.x, KDE 3.5.x, Window Maker, XFCE4. BTW, all patches I created for gtodo 0.16-rc2 are available here: http://www.mollux.org/projects/contrib/gtodo/0.16.0-rc2/ Regards, -- wwp |
|
From: wwp <sub...@fr...> - 2007-01-25 17:10:26
|
Hi there, did anyone knows about any Gtodo-applet for XFCE4 (of course, w/ gnome thin= gs installed)? Regards, --=20 wwp |
|
From: wwp <sub...@fr...> - 2006-03-17 10:16:49
|
Hello Qball, Rob, On Fri, 17 Mar 2006 11:00:37 +0100 Qball Cow <qb...@qb...> wrote: > wwp wrote: > > Hello Qball, > > > > > > On Fri, 17 Mar 2006 10:27:40 +0100 Qball Cow <qb...@qb...> wrote: > > > > =20 > >> wwp wrote: > >> =20 > >>> Hello QBall, > >>> > >>> > >>> I wonder how I could work w/ gtodo when I'm in disconnected mode, and= w/ > >>> ackerTodo when I'm online. Would there be some ways for both software= to > >>> exchange data (I know that ackerTodo is able to export .xml, but > >>> this .xml is a bit different from gtodo's one)? I really like the idea > >>> of an online todo base (to share w/ other people w/ a project managem= ent > >>> purpose) and ackterTodo is really neat, but I really *want* to keep up > >>> working w/ gtodo locally. > >>> > >>> Any thought? > >>> > >>> > >>> Regards, > >>> > >>> =20 > >>> =20 > >> I've taken a look at the xml export file, Its very similar to the xml= =20 > >> file used in xml2, so conversion should be relatively easy. (also to t= he=20 > >> old gtodo format). > >> There is just one problem, The tasks doesn't have a unique id in the=20 > >> exported xml file, making synchronization very tricky and very error > >> prone. > >> > >> For gtodo2 I intent to make the backend modulair, so you can also use= =20 > >> gtodo to open the task list of f.e. evolution data server, writing a=20 > >> backend that can work with the data stored in mysql by ackerTodo is th= en=20 > >> possible. > >> > >> I hope this answers the question? > >> =20 > > > > Yes, thanks for your prompt answer! I'm also in contact w/ the author of > > ackerTodo and am waiting for his opinion towards that. > > > > > > Regards, > > > > =20 > In the gtodo2 xml format I also plan to implement a "deleted" flag, this= =20 > should help allot with synchronization with f.e. evolution. (otherwise=20 > deleted items gets re-added on sync every time.) > If the author of ackerTodo wants/needs stuff to be added/changed for=20 > gtodo2 let me know, nothing isn't really "decided" yet for it. Yes, sounds a good idea for that purposes! I've forwarded our previous exchange to the author of ackerTodo (Rob, you're now CC'ed, I hope you won't get annoyed with my decision). Regards, --=20 wwp |
|
From: Qball C. <qb...@qb...> - 2006-03-17 10:01:00
|
wwp wrote: > Hello Qball, > > > On Fri, 17 Mar 2006 10:27:40 +0100 Qball Cow <qb...@qb...> wrote: > > >> wwp wrote: >> >>> Hello QBall, >>> >>> >>> I wonder how I could work w/ gtodo when I'm in disconnected mode, and w/ >>> ackerTodo when I'm online. Would there be some ways for both software to >>> exchange data (I know that ackerTodo is able to export .xml, but >>> this .xml is a bit different from gtodo's one)? I really like the idea of >>> an online todo base (to share w/ other people w/ a project management >>> purpose) and ackterTodo is really neat, but I really *want* to keep up >>> working w/ gtodo locally. >>> >>> Any thought? >>> >>> >>> Regards, >>> >>> >>> >> I've taken a look at the xml export file, Its very similar to the xml >> file used in xml2, so conversion should be relatively easy. (also to the >> old gtodo format). >> There is just one problem, The tasks doesn't have a unique id in the >> exported xml file, making synchronization very tricky and very error prone. >> >> For gtodo2 I intent to make the backend modulair, so you can also use >> gtodo to open the task list of f.e. evolution data server, writing a >> backend that can work with the data stored in mysql by ackerTodo is then >> possible. >> >> I hope this answers the question? >> > > Yes, thanks for your prompt answer! I'm also in contact w/ the author of > ackerTodo and am waiting for his opinion towards that. > > > Regards, > > In the gtodo2 xml format I also plan to implement a "deleted" flag, this should help allot with synchronization with f.e. evolution. (otherwise deleted items gets re-added on sync every time.) If the author of ackerTodo wants/needs stuff to be added/changed for gtodo2 let me know, nothing isn't really "decided" yet for it. Qball |
|
From: wwp <sub...@fr...> - 2006-03-17 09:39:22
|
Hello Qball, On Fri, 17 Mar 2006 10:27:40 +0100 Qball Cow <qb...@qb...> wrote: > wwp wrote: > > Hello QBall, > > > > > > I wonder how I could work w/ gtodo when I'm in disconnected mode, and w/ > > ackerTodo when I'm online. Would there be some ways for both software to > > exchange data (I know that ackerTodo is able to export .xml, but > > this .xml is a bit different from gtodo's one)? I really like the idea = of > > an online todo base (to share w/ other people w/ a project management > > purpose) and ackterTodo is really neat, but I really *want* to keep up > > working w/ gtodo locally. > > > > Any thought? > > > > > > Regards, > > > > =20 > I've taken a look at the xml export file, Its very similar to the xml=20 > file used in xml2, so conversion should be relatively easy. (also to the= =20 > old gtodo format). > There is just one problem, The tasks doesn't have a unique id in the=20 > exported xml file, making synchronization very tricky and very error pron= e. >=20 > For gtodo2 I intent to make the backend modulair, so you can also use=20 > gtodo to open the task list of f.e. evolution data server, writing a=20 > backend that can work with the data stored in mysql by ackerTodo is then= =20 > possible. >=20 > I hope this answers the question? Yes, thanks for your prompt answer! I'm also in contact w/ the author of ackerTodo and am waiting for his opinion towards that. Regards, --=20 wwp |
|
From: Qball C. <qb...@qb...> - 2006-03-17 09:27:56
|
wwp wrote: > Hello QBall, > > > I wonder how I could work w/ gtodo when I'm in disconnected mode, and w/ > ackerTodo when I'm online. Would there be some ways for both software to > exchange data (I know that ackerTodo is able to export .xml, but this .xml is > a bit different from gtodo's one)? I really like the idea of an online todo > base (to share w/ other people w/ a project management purpose) and > ackterTodo is really neat, but I really *want* to keep up working w/ gtodo > locally. > > Any thought? > > > Regards, > > I've taken a look at the xml export file, Its very similar to the xml file used in xml2, so conversion should be relatively easy. (also to the old gtodo format). There is just one problem, The tasks doesn't have a unique id in the exported xml file, making synchronization very tricky and very error prone. For gtodo2 I intent to make the backend modulair, so you can also use gtodo to open the task list of f.e. evolution data server, writing a backend that can work with the data stored in mysql by ackerTodo is then possible. I hope this answers the question? Qball |
|
From: wwp <sub...@fr...> - 2006-03-17 09:14:55
|
Hello QBall, I wonder how I could work w/ gtodo when I'm in disconnected mode, and w/ ackerTodo when I'm online. Would there be some ways for both software to exchange data (I know that ackerTodo is able to export .xml, but this .xml = is a bit different from gtodo's one)? I really like the idea of an online todo base (to share w/ other people w/ a project management purpose) and ackterTodo is really neat, but I really *want* to keep up working w/ gtodo locally. Any thought? Regards, --=20 wwp |
|
From: wwp <sub...@fr...> - 2006-03-01 08:08:46
|
Hello, I've noticed few issues when editing the comment of a todo item: - when opening the "edit item" dialog, it discards the current text selection (for instance, selection existing in another app), thus preventing from using the X11's middle-button paste. - when clicking the comment edit-widget, the cursor is not drawn until you type some text. These issues are not major, but a bit irritating if you work a lot w/ gtodo and need to edit comments :-). The attached patch solves both issues (here, GTK+ 2.8.x). Regards, -- wwp |
|
From: Qball C. <qb...@qb...> - 2006-02-27 22:38:53
|
Yes, that is a bug, should be an easy fix. Health and other things kinda prevented me from making release of gtodo 0.16. I will try todo it asap. thx, Qball I did spend some time today (and yesterday) working on gtodo2 here is a screenshot: http://download.qballcow.nl/gtodo.png (also http://download.qballcow.nl/gtodo.gif this is a small screencast). On Mon, 2006-02-27 at 23:30 +0100, wwp wrote: > Hey Qball, > > > using gtodo 0.16-rc2, I noticed that the tooltip, that shows upon a item in a > category list, might be empty (tooltip is a small empty square), if the > comment that belongs to the item contains some specific characters (at least > '<'). Maybe it's just a lack of encoding some special chars used for text > formatting? > > > Regards, > |
|
From: wwp <sub...@fr...> - 2006-02-27 22:30:41
|
Hey Qball, using gtodo 0.16-rc2, I noticed that the tooltip, that shows upon a item in= a category list, might be empty (tooltip is a small empty square), if the comment that belongs to the item contains some specific characters (at least '<'). Maybe it's just a lack of encoding some special chars used for text formatting? Regards, --=20 wwp |
|
From: Qball C. <qb...@qb...> - 2006-01-25 16:30:53
|
On Wed, 2006-01-25 at 16:24 +0100, wwp wrote: > Hello Qball, > > > On Sat, 21 Jan 2006 15:08:21 +0100 Qball Cow <qb...@qb...> wrote: > > > I've updated, and fixed a few small bugs, in the applet. It isn't the > > applet from the screenshot, but the simple one from the last release. > > http://download.qballcow.nl/programs/gtodo/gtodo-applet-0.16.0.tar.gz > [snip] > > I can confirm that w/ gtodo-applet 0.16.0, I still face crashes occasionally, > even if less frequently, when adding items or editing items' subject in > category (no need to remove anyone). > > BTW, is there a way to debug a gnome applet (from gdb for instance)? I'd > prefer providing a backtrace than such vague bug description. There probably is, but I never looked into it. I've also tried several times to reproduce the crash, but wasn't successfully yet. (It's probably something very simple/obvious what is making it crash, I keep missing it when reading the code) I also wrote the following applet a while back. (the one from the screen shot) After some searching in old backup's I found the source again, I've copied the fixed libgtodo in it and here it is: http://download.qballcow.nl/programs/gtodo/gtodo-applet-0.16-2.tar.gz I wonder what one is preferred? This one takes more space, but shows directly how many tasks are due, and can show a small list. Please let me know what one I should continue to work on? Qball p.s. sorry for the bad and messy English. |
|
From: wwp <sub...@fr...> - 2006-01-25 15:25:02
|
Hello Qball, On Sat, 21 Jan 2006 15:08:21 +0100 Qball Cow <qb...@qb...> wrote: > I've updated, and fixed a few small bugs, in the applet. It isn't the > applet from the screenshot, but the simple one from the last release. > http://download.qballcow.nl/programs/gtodo/gtodo-applet-0.16.0.tar.gz [snip] I can confirm that w/ gtodo-applet 0.16.0, I still face crashes occasionally, even if less frequently, when adding items or editing items' subject in category (no need to remove anyone). BTW, is there a way to debug a gnome applet (from gdb for instance)? I'd prefer providing a backtrace than such vague bug description. Regards, > On Fri, 2006-01-20 at 13:27 +0100, Qball Cow wrote: > > On Fri, 2006-01-20 at 08:25 +0100, wwp wrote: > > [snip] > > > > Yes, now you mention it, I remember this needed fixing.. This should > > > > be fixed before a release. Patches are welcome. > > > > thanks. > > > > > > > > I've also fixed the following 2 things today: > > > > 1. Show or Hide window now only works when tray icon is enabled. (to > > > > stop the window from playing hide-and-seek). > > > > 2. Use the new (gtk+-2.4) file chooser. > > > > > > > > Please feel free to mention more "oddities" or other things that > > > > should be fixed. > > > > > > Hmm while we're here. W/ 0.14 I faced reproducible crashes of the > > > gtodo-applet when I was adding some items to a category. Don't remember > > > exactly how but it was frequent, and IIRC I couldn't get it w/ > > > 0.16.0-rc2. Was it a known and fixed issue w/ gtodo? > > > > > > About this gtodo-applet. If I'm not wrong, when you dble-click on it, it > > > opens gtodo. Now, if you dble-click on it 20 times, you'll get 20 > > > gtodos :-). Wouldn't it more "common" to show/hide upon a single click > > > on it? > > > > > > > > I am not a big fan of the applet myself, but if people actually use it, > > it needs fixing. As far as I know the applet has several bugs. > > This is the latest version I have on my hard disk: > > http://images.qballcow.nl/gtodo-applet6.png. Maybe somebody can come up > > with a short list of what the applet should and shouldn't do. (I know > > there been discussions about this before). > > > > Gtodo doesn't have a system to keep track of and messaging running > > gtodo's. But those 20 gtodo's should stay "in sync", because it tracks > > changes on the file, and in the preferences. > > I am open for a decent solution to this problem. > > > > > > Qball. > > > > > > > > p.s. I plan to maintain this branch until a (second?) (stable) release > > > > is done of the gtodo rewrite. I don't intend to add allot of features. > > > > But feel free to request them for the rewrite. If you want to check > > > > out how the rewrite of gtodo is progressing so far, let me know. > > > > > > Nice to hear :-). > > > > > > > > > Regards, > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. Do you grep through log > > files for problems? Stop! Download the new AJAX search engine that makes > > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > > _______________________________________________ > > Gtodo-list mailing list > > Gto...@li... > > https://lists.sourceforge.net/lists/listinfo/gtodo-list > > -- wwp |
|
From: Qball C. <qb...@qb...> - 2006-01-21 14:09:27
|
I've updated, and fixed a few small bugs, in the applet. It isn't the applet from the screenshot, but the simple one from the last release. http://download.qballcow.nl/programs/gtodo/gtodo-applet-0.16.0.tar.gz If anybody wants to fix up the applet from my screenshot, feel free to send me an e-mail, so I can send the source. Qball. (p.s. gtodo has a notification tray that does almost the same.) On Fri, 2006-01-20 at 13:27 +0100, Qball Cow wrote: > On Fri, 2006-01-20 at 08:25 +0100, wwp wrote: > [snip] > > > Yes, now you mention it, I remember this needed fixing.. This should be > > > fixed before a release. Patches are welcome. > > > thanks. > > > > > > I've also fixed the following 2 things today: > > > 1. Show or Hide window now only works when tray icon is enabled. (to > > > stop the window from playing hide-and-seek). > > > 2. Use the new (gtk+-2.4) file chooser. > > > > > > Please feel free to mention more "oddities" or other things that should > > > be fixed. > > > > Hmm while we're here. W/ 0.14 I faced reproducible crashes of the > > gtodo-applet when I was adding some items to a category. Don't remember > > exactly how but it was frequent, and IIRC I couldn't get it w/ 0.16.0-rc2. > > Was it a known and fixed issue w/ gtodo? > > > > About this gtodo-applet. If I'm not wrong, when you dble-click on it, it > > opens gtodo. Now, if you dble-click on it 20 times, you'll get 20 gtodos :-). > > Wouldn't it more "common" to show/hide upon a single click on it? > > > > > I am not a big fan of the applet myself, but if people actually use it, > it needs fixing. As far as I know the applet has several bugs. > This is the latest version I have on my hard disk: > http://images.qballcow.nl/gtodo-applet6.png. Maybe somebody can come up > with a short list of what the applet should and shouldn't do. (I know > there been discussions about this before). > > Gtodo doesn't have a system to keep track of and messaging running > gtodo's. But those 20 gtodo's should stay "in sync", because it tracks > changes on the file, and in the preferences. > I am open for a decent solution to this problem. > > > Qball. > > > > > p.s. I plan to maintain this branch until a (second?) (stable) release > > > is done of the gtodo rewrite. I don't intend to add allot of features. > > > But feel free to request them for the rewrite. If you want to check out > > > how the rewrite of gtodo is progressing so far, let me know. > > > > Nice to hear :-). > > > > > > Regards, > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > Gtodo-list mailing list > Gto...@li... > https://lists.sourceforge.net/lists/listinfo/gtodo-list |
|
From: Qball C. <qb...@qb...> - 2006-01-20 12:27:24
|
On Fri, 2006-01-20 at 08:25 +0100, wwp wrote: [snip] > > Yes, now you mention it, I remember this needed fixing.. This should be > > fixed before a release. Patches are welcome. > > thanks. > > > > I've also fixed the following 2 things today: > > 1. Show or Hide window now only works when tray icon is enabled. (to > > stop the window from playing hide-and-seek). > > 2. Use the new (gtk+-2.4) file chooser. > > > > Please feel free to mention more "oddities" or other things that should > > be fixed. > > Hmm while we're here. W/ 0.14 I faced reproducible crashes of the > gtodo-applet when I was adding some items to a category. Don't remember > exactly how but it was frequent, and IIRC I couldn't get it w/ 0.16.0-rc2. > Was it a known and fixed issue w/ gtodo? > > About this gtodo-applet. If I'm not wrong, when you dble-click on it, it > opens gtodo. Now, if you dble-click on it 20 times, you'll get 20 gtodos :-). > Wouldn't it more "common" to show/hide upon a single click on it? > > I am not a big fan of the applet myself, but if people actually use it, it needs fixing. As far as I know the applet has several bugs. This is the latest version I have on my hard disk: http://images.qballcow.nl/gtodo-applet6.png. Maybe somebody can come up with a short list of what the applet should and shouldn't do. (I know there been discussions about this before). Gtodo doesn't have a system to keep track of and messaging running gtodo's. But those 20 gtodo's should stay "in sync", because it tracks changes on the file, and in the preferences. I am open for a decent solution to this problem. Qball. > > p.s. I plan to maintain this branch until a (second?) (stable) release > > is done of the gtodo rewrite. I don't intend to add allot of features. > > But feel free to request them for the rewrite. If you want to check out > > how the rewrite of gtodo is progressing so far, let me know. > > Nice to hear :-). > > > Regards, > |
|
From: wwp <sub...@fr...> - 2006-01-20 07:25:30
|
Hello Qball, On Fri, 20 Jan 2006 00:47:56 +0100 Qball Cow <qb...@qb...> wrote: > On Thu, 2006-01-19 at 22:46 +0100, wwp wrote: > > Hello Qball, > > > > > > On Wed, 18 Jan 2006 21:05:30 +0100 Qball Cow <qb...@qb...> wrote: > > > > [snip] > > > > Also: it is possible (optionally?) NOT to display the comment text in > > > > the list view? The idea is to keep each item height the same (but I > > > > also like the new behaviour), then if I want to see the detail, > > > > either I activate tooltips or I double-click the item. > > > This should be possible yes. In the next gtodo I plan to make it > > > configurable.. (the markup). > > > > > > If I get more request I will change it. (I don't want to add too many > > > options). > > > > In case anyone is interested, or if you, QBall, ever plan to consider it, > > here is a patch that allows hiding/showing comments in items list. When > > comments are hidden, bold is no longer used (as in 0.14 and since it's no > > longer needed to show bold subject). Not that I insist about this feature, > > but since I did it for me, I just want to propose this patch. Feel free to > > ignore it :-). > > I will take a look at it tomorrow. I might include it... > > > > QBall: I noticed several issues in gtodo.schemas.in (mostly: long text of > > some options don't match at all the option itself, probably wrong > > copy/paste). Should I give you a list of the bad parts, write a patch > > or .. do nothing? > Yes, now you mention it, I remember this needed fixing.. This should be > fixed before a release. Patches are welcome. > thanks. > > I've also fixed the following 2 things today: > 1. Show or Hide window now only works when tray icon is enabled. (to > stop the window from playing hide-and-seek). > 2. Use the new (gtk+-2.4) file chooser. > > Please feel free to mention more "oddities" or other things that should > be fixed. Hmm while we're here. W/ 0.14 I faced reproducible crashes of the gtodo-applet when I was adding some items to a category. Don't remember exactly how but it was frequent, and IIRC I couldn't get it w/ 0.16.0-rc2. Was it a known and fixed issue w/ gtodo? About this gtodo-applet. If I'm not wrong, when you dble-click on it, it opens gtodo. Now, if you dble-click on it 20 times, you'll get 20 gtodos :-). Wouldn't it more "common" to show/hide upon a single click on it? > p.s. I plan to maintain this branch until a (second?) (stable) release > is done of the gtodo rewrite. I don't intend to add allot of features. > But feel free to request them for the rewrite. If you want to check out > how the rewrite of gtodo is progressing so far, let me know. Nice to hear :-). Regards, -- wwp |
|
From: Qball C. <qb...@qb...> - 2006-01-19 23:48:10
|
On Thu, 2006-01-19 at 22:46 +0100, wwp wrote: > Hello Qball, > > > On Wed, 18 Jan 2006 21:05:30 +0100 Qball Cow <qb...@qb...> wrote: > > [snip] > > > Also: it is possible (optionally?) NOT to display the comment text in the > > > list view? The idea is to keep each item height the same (but I also like > > > the new behaviour), then if I want to see the detail, either I activate > > > tooltips or I double-click the item. > > This should be possible yes. In the next gtodo I plan to make it > > configurable.. (the markup). > > > > If I get more request I will change it. (I don't want to add too many > > options). > > In case anyone is interested, or if you, QBall, ever plan to consider it, > here is a patch that allows hiding/showing comments in items list. When > comments are hidden, bold is no longer used (as in 0.14 and since it's no > longer needed to show bold subject). Not that I insist about this feature, > but since I did it for me, I just want to propose this patch. Feel free to > ignore it :-). I will take a look at it tomorrow. I might include it... > > QBall: I noticed several issues in gtodo.schemas.in (mostly: long text of some > options don't match at all the option itself, probably wrong copy/paste). > Should I give you a list of the bad parts, write a patch or .. do nothing? Yes, now you mention it, I remember this needed fixing.. This should be fixed before a release. Patches are welcome. thanks. I've also fixed the following 2 things today: 1. Show or Hide window now only works when tray icon is enabled. (to stop the window from playing hide-and-seek). 2. Use the new (gtk+-2.4) file chooser. Please feel free to mention more "oddities" or other things that should be fixed. Qball p.s. I plan to maintain this branch until a (second?) (stable) release is done of the gtodo rewrite. I don't intend to add allot of features. But feel free to request them for the rewrite. If you want to check out how the rewrite of gtodo is progressing so far, let me know. |
|
From: wwp <sub...@fr...> - 2006-01-19 21:46:10
|
Hello Qball, On Wed, 18 Jan 2006 21:05:30 +0100 Qball Cow <qb...@qb...> wrote: [snip] > > Also: it is possible (optionally?) NOT to display the comment text in the > > list view? The idea is to keep each item height the same (but I also like > > the new behaviour), then if I want to see the detail, either I activate > > tooltips or I double-click the item. > This should be possible yes. In the next gtodo I plan to make it > configurable.. (the markup). > > If I get more request I will change it. (I don't want to add too many > options). In case anyone is interested, or if you, QBall, ever plan to consider it, here is a patch that allows hiding/showing comments in items list. When comments are hidden, bold is no longer used (as in 0.14 and since it's no longer needed to show bold subject). Not that I insist about this feature, but since I did it for me, I just want to propose this patch. Feel free to ignore it :-). QBall: I noticed several issues in gtodo.schemas.in (mostly: long text of some options don't match at all the option itself, probably wrong copy/paste). Should I give you a list of the bad parts, write a patch or .. do nothing? Regards, -- wwp |