ForumsThird-Party ApplicationsTaskUnifier: Multiplatform
TaskUnifier: Multiplatform
Author | Message |
---|---|
Go-ooo |
Thanks, Ben!
|
Benjamin Leclerc |
New version released !
Version 0.7.3 : - BF 3190245: Proxy Access Denied - BF 3190240: Bad request exception - BF 3188712: URI Too Large Exception on Manual Sync - BF 3186886: Improve error message for tasks with no title - FR 3187796: keep current search list after sync - FR 3179777: More forgiving time parsing - FR 3192241: Import/Export data - Bug fixed: background of the search list not always displayed - Improved UI (especially for Mac) - Improved startup scripts - Improved error handling - Use jcalendar instead of microba - Improved date/time chooser (start date and due date) |
Benjamin Leclerc |
Version 0.7.4 :
- Bug fixed: Performance issue !!! - Bug fixed: Invalid key !!! - FR 3195031: Popup task text - FR 3192919: Background synchronization (for scheduled sync) - FR 3192920: Setting synchronize on start - FR 3192920: Setting synchronize on close |
piman |
Using 0.7.4, I keep getting an error "Error while setting look and feel" when I try to change the theme. I wasn't getting this error before when using 0.7.2. Is it a bug, or is there something I could try?
|
Go-ooo |
On my system (Mac) 0.7.2 is still the latest working version Both 0.7.3 and 0.7.4 versions collapsed on start
|
Benjamin Leclerc |
@piman & @Go-ooo could you send me the log file (to [email protected]) ?
taskunifier.log file located in : - Windows : YourUser\Application Data\TaskUnifier - Mac : ~/Library/Application Data/TaskUnifier - Linux : ~/.taskunifier |
lqbcohen |
Just tried to run TaskUnifier 0.07.4 (for first time) on Ubuntu 10.10 and I couldn't get beyond the account creation box. I would enter my details and nothing would happen. If I click 'finish' it ends the program. Any attempt to relaunch brings up a missing file message and program falls over.
Will try an earlier version. This message was edited Mar 09, 2011. |
Benjamin Leclerc |
Hi lqbcohen,
Could you send me the log file ? ~/.taskunifier/taskunifier.log to [email protected] ? Thanks |
Rick Guyer |
I also tried installing on Ubuntu 10.10 (fresh install) and it closes after account creation. I don't have anything in ~/.tasknotifier, but the folder is created. Maybe it is a permission error.
|
lqbcohen |
Posted by Benjamin Leclerc:
Hi lqbcohen, Could you send me the log file ? ~/.taskunifier/taskunifier.log to [email protected] ? Thanks Hi Benjamin, Like Rick Guyer I don't have anything in ~/.tasknotifier, but the folder is created....! Thanks |
Benjamin Leclerc |
Did you already tried to increase permissions on the folder for example ?
chmod -R 777 ~/.taskunifier If it is working, please let me know |
Rick Guyer |
Yes, I changed permissions to 777, but still no change. If I try running TaskUnifier a second time (with or without the permission changes) I get an error "Settings file not found. A default settings file is loaded". After clicking "OK" it closes and nothing else happens. Nothing is ever created inside the ~/.taskunifier folder.
|
Benjamin Leclerc |
Hi Rick,
Could you add the following java parameter in the bash script and send the output ? -Dcom.leclercb.taskunifier.debug_mode=true Script should contain this : #!/bin/bash BASEDIR=`dirname $0` USERDIR=`echo ~` java -Dcom.leclercb.taskunifier.debug_mode=true -Dcom.leclercb.taskunifier.resource_folder="$BASEDIR/resources" -Dcom.leclercb.taskunifier.data_folder="$USERDIR/.taskunifier" -jar "$BASEDIR/TaskUnifier.jar" |
paulharrythomas |
Hi there
Great app, but I've got a couple of questions: I'm trying to get my Hotlist parameters to be the same as in Toodledo. Will the General folders be editable in future versions? In the meantime, I've tried to set up a personal folder to mimic the settings of my Toodledo Hotlist, but I'm having trouble with the conditions. I can't seem to implement the OR condition (only AND). I'm CTRL clicking on a Mac running OS X 10.5.8 with Java 1.6. Am I doing something wrong? All guidance would be appreciated. Paul |
Benjamin Leclerc |
Hi Paul,
Will the General folders be editable in future versions? It is a feature request, still have to think about it. Am I doing something wrong? Right click on the condition should show you a menu where you can choose between AND and OR. I know it works with the right click on a mac but I admit I have never tested it with CTRL... |
paulharrythomas |
Thanks very much for the prompt response.
I don't use a mouse so unfortunately I can't use the OR condition because it isn't working with CTRL (which is how I usually access right-click options). Is there no other way of selecting OR? Unfortunately, this means that I can't set up a bespoke Hotlist to match my Toodledo Hotlist on my iPhone. This is a bit of a problem for me, but I love the app and I'll certainly try future releases. Incidentally, I'm trying to set up my Hotlist so that it shows ALL tasks that are due today (or overdue), OR Top priority tasks (even without a due date) OR starred (because I sometimes throw a starred task in there to sort later. Is this possible to do any other way if I can't get OR to work? Again, all guidance would be much appreciated. |
Benjamin Leclerc |
Yes, create you search with the gui.
Once finished, open <home>/Library/Application Data/TaskUnifier/searchers.xml And replace by hand the AND by a OR where needed |
paulharrythomas |
Thanks very much for that. I'm nearly there but it's also showing the completed tasks, which I'd like to get rid of. When I try to get rid of these (with AND completed = no) in the GUI, it glitches and deletes one of my other conditions. I tried adding the condition manually to the XML file but I'm not good with code and I seem to be messing it up. If you could show me what needs to be added to the following text to make it filter out the completed tasks, then my personal folder will be the same as my Toodledo Hotlist on my iPhone and I'll be able to keep using TaskUnifier, which would be fantastic.
Sorry to be such a pain. <?xml version="1.0" encoding="UTF-8" standalone="no"?> <tasksearchers> <searcher> <title>Toodledo Hotlist</title> <sorter/> <filter link="OR"> <element> <column>PRIORITY</column> <condition>EnumCondition.EQUALS</condition> <value>com.leclercb.taskunifier.api.models.enums.TaskPriority#TOP</value> </element> <element> <column>DUE_DATE</column> <condition>DaysCondition.LESS_THAN_OR_EQUALS</condition> <value>1</value> </element> <element> <column>STAR</column> <condition>StringCondition.EQUALS</condition> <value>true</value> </element> </filter> </searcher> </tasksearchers> |
Benjamin Leclerc |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<tasksearchers> <searcher> <title>Toodledo Hotlist</title> <sorter/> <filter link="AND"> <element> <column>COMPLETED</column> <condition>StringCondition.EQUALS</condition> <value>false</value> </element> <filter link="OR"> <element> <column>PRIORITY</column> <condition>EnumCondition.EQUALS</condition> <value>com.leclercb.taskunifier.api.models.enums.TaskPriority#TOP</value> </element> <element> <column>DUE_DATE</column> <condition>DaysCondition.LESS_THAN_OR_EQUALS</condition> <value>1</value> </element> <element> <column>STAR</column> <condition>StringCondition.EQUALS</condition> <value>true</value> </element> </filter> </filter> </searcher> </tasksearchers> This message was edited Mar 16, 2011. |
paulharrythomas |
Fantastic. Thank you very much indeed.
Out of interest, every time I look at a General folder and then go back to my personal folder, it forgets the sort order I was looking at previously. Is this normal? Either way, thanks very much. I'm looking forward to giving it a good test run. |
You cannot reply yet
U Back to topic home
R Post a reply
To participate in these forums, you must be signed in.