maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Newbie (https://talk.maemo.org/forumdisplay.php?f=26)
-   -   Calendar app for N810 that can make an alarm sound (https://talk.maemo.org/showthread.php?t=18970)

Laughing Man 2008-04-13 05:22

Re: Calendar app for N810 that can make an alarm sound
 
It's not possible to flash the OS2007 onto an n810. And even if it did work, you'd lose functionality.

PinCushionQueen 2008-04-13 06:43

Re: Calendar app for N810 that can make an alarm sound
 
I have a calendar app (full PIM suite, actually) that I use all the time on my N810 and I definately have alarms with sounds that are reliable. All you need is KDE installed and use it as your desktop environment. KOrganizer is included in the KDE install.

rbrewer123 2008-04-13 16:54

Re: Calendar app for N810 that can make an alarm sound
 
Here are some patches that get Gene's to_do app to work on OS 2008. They should retain backwards compatibility with OS 2007 but I have no way to test that myself. I know that we really want to see calend working, but it's more complicated and I decided to start small. I figured I would post this now to possibly entice someone into helping on calend once they see that the changes aren't that bad.

I haven't made any attempt to repackage this into .debs. I just downloaded the individual source code links from his site and put them in a directory. I run it with "python to_do" to see that it works correctly.

Thanks to mbfrog's post in this thread for some tips on getting started:
http://www.internettablettalk.com/fo...=calend&page=2

nokia_utilities:
Code:

--- nokia_utilities.orig/nokia_utilities.py    2008-04-11 19:03:12.000000000 -0400
+++ nokia_utilities/nokia_utilities.py  2008-04-13 12:31:48.000000000 -0400
@@ -10,6 +10,10 @@
 except:
    nokia=False
 
+
+GTK_VERSION_OS2008 = 2,10,12
+
+
 def set_version_short(v):
    global version_short
 
@@ -108,6 +112,8 @@
    d.set_authors(['Gene Cash <gene.cashgmail.com>'])
    d.set_license(license)
    d.set_website('http://home.cfl.rr.com/genecash/nokia/index.html')
+    if not gtk.check_version(*GTK_VERSION_OS2008):
+        d.connect('response', lambda d, r: d.destroy())
    d.run()
 
 # put up a timed information banner

to_do:
Code:

--- to_do.orig/to_do    2008-04-11 19:01:57.000000000 -0400
+++ to_do/to_do 2008-04-13 12:34:39.000000000 -0400
@@ -603,8 +603,8 @@
 view=gtk.TreeView()
 sw.add(view)
 view.set_headers_visible(True)
-if nokia:
-    # fix buglet that messes with setting the checkboxes
+if nokia and gtk.check_version(*GTK_VERSION_OS2008):
+    # fix buglet in OS 2007 that messes with setting the checkboxes
    view.set_property('allow-checkbox-mode', False)
 view.connect('row-activated', row_select)
 view.set_property('hover-selection', True)


rbrewer123 2008-04-13 16:57

Re: Calendar app for N810 that can make an alarm sound
 
Quote:

Originally Posted by PinCushionQueen (Post 169101)
I have a calendar app (full PIM suite, actually) that I use all the time on my N810 and I definately have alarms with sounds that are reliable. All you need is KDE installed and use it as your desktop environment. KOrganizer is included in the KDE install.

I'll have to check that out... didn't realize the KOrganizer stuff was running ok already.

rbrewer123 2008-04-14 03:24

Re: Calendar app for N810 that can make an alarm sound
 
I've put packages with Gene Cash's to_do and calend programs here:
http://brewer123.home.comcast.net/debs

They run on my n810. Let me know how they work for you. Download the debs in order and the dependencies should be satisfied correctly.


All times are GMT. The time now is 21:06.

vBulletin® Version 3.8.8