Notices


Reply
Thread Tools
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#611
Originally Posted by chubbyisacat View Post
YES! SUCCESS!
It now opens. Perfect. Thanks for your help and your patience.
Yay - so sorry it took so long, was hoping the other bits would lead to a simpler fix - but great to hear it is now working

Once again, thank you very much for testing - if there is anything you would like to see, or see changed or added just let me know

(I'm learning - so not all fixes are next day fixes! hehehe)
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 

The Following User Says Thank You to noobmonkey For This Useful Post:
Posts: 3,319 | Thanked: 5,610 times | Joined on Aug 2008 @ Finland
#612
Originally Posted by noobmonkey View Post
Hold on!
let me set the depends correctly

Gonna change the build file to - python2.5-qt4 (>= 4.6)
That should help!
You need (>> 4.7.3)
__________________
Blogging about mobile linux - The Penguin Moves!
Maintainer of PyQt (see introduction and docs), AppWatch, QuickBrownFox, etc
 

The Following 2 Users Say Thank You to attila77 For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#613
Originally Posted by attila77 View Post
You need (>> 4.7.3)
hehe! noticed the mistake before i updated!
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 

The Following 2 Users Say Thank You to noobmonkey For This Useful Post:
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#614
Apologies for providing a half-assed FMTxFrequency function. I should've known better as I wrote a clone of the status bar applet...

Code:
import gettext #part of standard Python, I believe 

def FMTxFrequency():
	freq = "%.1f" % float(GetProp(FMTxPropertiesInterfaceConnect(), 'frequency') / 1000.0)
	freq_mhz = gettext.dgettext("osso-fm-transmitter", "fmtx_va_frequency")
	if freq_mhz != "fmtx_va_frequency":
		freq_mhz %= freq
		return freq_mhz
	return freq
Oh, it returns a str so no need for manual casts

P.S. You can pass False (introspection=False) as the third argument of your get_object calls to stop it from introspecting the given interface and producing those error messages

Last edited by qwerty12; 2010-06-08 at 00:03.
 

The Following User Says Thank You to qwerty12 For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#615
Originally Posted by qwerty12 View Post
Apologies for providing a half-assed FMTxFrequency function. I should've known better as I wrote a clone of the status bar applet...

Code:
import gettext #part of standard Python, I believe 

def FMTxFrequency():
	freq = "%.1f" % float(GetProp(FMTxPropertiesInterfaceConnect(), 'frequency') / 1000.0)
	freq_mhz = gettext.dgettext("osso-fm-transmitter", "fmtx_va_frequency")
	if freq_mhz != "fmtx_va_frequency":
		freq_mhz %= freq
		return freq_mhz
	return freq
Oh, it returns a str so no need for manual casts

P.S. You can pass False (introspection=False) as the third argument of your get_object calls to stop it from introspecting the given interface and producing those error messages
Haha! Spent a while last night trying to get it to return correctly! never thought to divide by 1000.0 instead of 1000!
Thank you very much!
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -

Last edited by noobmonkey; 2010-06-08 at 07:57.
 

The Following 2 Users Say Thank You to noobmonkey For This Useful Post:
Posts: 210 | Thanked: 62 times | Joined on Jan 2010 @ Helsinki, Finland
#616
is led test supposed to show all colors? I only get red twice. or is red what you get when you combine them all?
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#617
Hi Brank, there is a dropdown list to the right of the LED test button. this will allow you to choose a few tests.
i am working on testing all colours, but the with current patterns, some only work when the device is sleeping etc.
so therefore the drop down list only allows a few. Will work on adding more soon.
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -

Last edited by noobmonkey; 2010-06-08 at 09:51.
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#618
Brank, also realised you might need to let me know which version you are using - there are 3 versions currently available - one in extras, testing and devel.
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#619
Just wanted to get some opinions. Did a quick mockup of a possible new design.

The idea is as follows:
  • Main Menu
  • Each information screen displays as before but in a stackable window, with a lister, but less per page, so easier to find information
  • Each test loads up in it's own stackable window.

First draft of menu below:

(Ignore the title - just a label until i do something fancy)
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 

The Following 3 Users Say Thank You to noobmonkey For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#620
Just a quick update. V1.2.0-3 is now promoted to extras. screenshots will follow shortly.
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Reply

Tags
check, faulty, front camera, gps, hardware, healthcheck, test


 
Forum Jump


All times are GMT. The time now is 03:41.