Re: [maemo-developers] Shameless request for developper help

2006-03-27 Thread Tuomas Kuosmanen
On Fri, 2006-03-24 at 22:45 +0100, ext Lionel Dricot wrote:

 Since I tried the FBreader 0.7.3 package, I cannot launch my
 extra-applications anymore (as told on maemo-users).
 
 Thanks to the great help I received on IRC, we discovered that
 extra-applets (like CPU/mem applet) are still launched !
 
 In order to understand what my problem is I tried to change the source in
 the CPU/mem applet to add two simple function :

Check out today's application catalog.. :) The cpu graph applet has
support for adding commands.

The xterm is /var/lib/install/usr/bin/osso-xterm I think - might vary if
you have some other version of the term installed.

Then again, the real issue of why doesnt fbreader start (my issue) and
your (why do none of the extra apps start after installing fbreader)
needs to be resolved. Does anyone else have issues with the fbreader
package? It works okay for me on scratchbox, but fails to start on the
real 770. It starts if I run it with run-standalone.sh from the
commandline though, which indicates some problem with the .desktop file
perhaps?

//Tuomas

-- 
A: No
Q: Should i quote this on the top?

___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] Shameless request for developper help

2006-03-27 Thread Kalle Vahlman
On 3/27/06, Tuomas Kuosmanen [EMAIL PROTECTED] wrote:
 Then again, the real issue of why doesnt fbreader start (my issue) and
 your (why do none of the extra apps start after installing fbreader)
 needs to be resolved. Does anyone else have issues with the fbreader
 package? It works okay for me on scratchbox, but fails to start on the
 real 770. It starts if I run it with run-standalone.sh from the
 commandline though, which indicates some problem with the .desktop file
 perhaps?

If one would know how that .desktop looks, it'd be easier to guess if
this is indeed the case ;)

--
Kalle Vahlman, [EMAIL PROTECTED]
Powered by http://movial.fi
Interesting stuff at http://syslog.movial.fi
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


Re: [maemo-developers] Shameless request for developper help

2006-03-27 Thread Tuomas Kuosmanen
On Mon, 2006-03-27 at 12:11 +0300, ext Kalle Vahlman wrote:
 On 3/27/06, Tuomas Kuosmanen [EMAIL PROTECTED] wrote:
  Then again, the real issue of why doesnt fbreader start (my issue) and
  your (why do none of the extra apps start after installing fbreader)
  needs to be resolved. Does anyone else have issues with the fbreader
  package? It works okay for me on scratchbox, but fails to start on the
  real 770. It starts if I run it with run-standalone.sh from the
  commandline though, which indicates some problem with the .desktop file
  perhaps?
 
 If one would know how that .desktop looks, it'd be easier to guess if
 this is indeed the case ;)

Yeah, going to have a look (though, get the package from the appcatalog
yourself too to have a look, and to see if you have the same problem)

//T

-- 
A: No
Q: Should i quote this on the top?

___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers


[maemo-developers] Shameless request for developper help

2006-03-24 Thread Lionel Dricot
(I tought it was better to post this mail here than the user-mailing list,
sorry if you read it twice)


Hello,

Since I tried the FBreader 0.7.3 package, I cannot launch my
extra-applications anymore (as told on maemo-users).

Thanks to the great help I received on IRC, we discovered that
extra-applets (like CPU/mem applet) are still launched !

In order to understand what my problem is I tried to change the source in
the CPU/mem applet to add two simple function :

- one that launch and xterm (to see if it works)
- the other to backup my .gpe folder to my MMC card so I can reflash the
whole system.

Unfortunatly, I'm stuck at my parent's house for a few days and I
discovered that they don't have enough disk space to install the whole
maemo SDK ! I tried to clean up everything without success.

So, I'm asking here for help. Can anybody here take the time to modify the
source of CPU/mem and make a deb for me ? I don't think I have nothing to
offer in exchange except a few visitors to the website of your project
(I've a quite popular weblog).. I'm simply stuck with my broken 770 and
the computer of my mother :-( So, it's a call for help.

The modification seems really easy :

Adding this to line 298  (with correct PATH, I have no idea of what are
the correct ones):

static void
activate_xterm_item(GtkMenuItem *item, gpointer data)
{
  g_spawn_command_line_async(??/xterm, error);
}

static void
activate_gpe_item(GtkMenuItem *item, gpointer data)
{
  g_spawn_command_line_async(cp -r /home/user/??.gpe /media/mmc1/, error);
}


Adding this to line 459 :

/* Xterm */
  info-menu_xterm = gtk_menu_item_new_with_label(Launch Terminal);
gtk_menu_shell_append(GTK_MENU_SHELL(info-menu),
  info-menu_xterm);
  g_signal_connect(G_OBJECT(info-menu_xterm),
  activate,
  G_CALLBACK(activate_xterm_item),
  data);
/* Backup GPE */
  info-menu_xterm = gtk_menu_item_new_with_label(Backup GPE);
gtk_menu_shell_append(GTK_MENU_SHELL(info-menu),
  info-menu_gpe);
  g_signal_connect(G_OBJECT(info-menu_gpe),
  activate,
  G_CALLBACK(activate_gpe_item),
  data);


It might work. I have no idea since I never developped with Maemo..


Thanks a lot for your support and for all advices I received on IRC. I
understand that my request is a bit can-someonde-do-it-for-me but it's
my only chance to have my calendar for the next week...

I really feel guilty to post this..

Lionel

PS : anyway, softwares for the 770 rocks !!! Thanks everyone. I'm
specially thankful to the scummvm porter but I use a lot of others and
they are great. :-)



___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers