Menu

Main Menu
Talk Get Daily Search

Member's Online

    User Name
    Password

    [Annouce] HealthCheck - Hardware/System checker for the N900

    Reply
    Page 8 of 84 | Prev |   6     7   8   9     10   18 | Next | Last
    Rob1n | # 71 | 2010-02-24, 21:57 | Report

    Originally Posted by noobmonkey View Post
    wohooooo!

    very hard to find a full list of variants anywhere, i know the firmware checker gives whats available to me, but not all the variants
    All that I'm aware of are the global, US (002), Africa/Middle East (003), UK generic (203) and UK vodafone (205). I'm not sure what the last digit signifies for the variants either (mine's currently 203.2 but I think I've had 203.1 before as well).

    Edit | Forward | Quote | Quick Reply | Thanks

     
    noobmonkey | # 72 | 2010-02-24, 22:09 | Report

    There is alot lol!

    Code:
    if g.strip() == "3.2010.02-8":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1.1")
            elif g.strip() == "2.2009.51-1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1")
            elif g.strip() == "2009.51-1.203.2":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1 UK Generic Version")
            elif g.strip() == "2009.51-1.203.1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1 UK Generic Version")
            elif g.strip() == "2009.51-1.205.1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1 UK Vodafone Version")
            elif g.strip() == "2009.51-1.205.2":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1 UK Vodafone Version")
            elif g.strip() == "1.2009.44-1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.01")
            elif g.strip() == "1.2009.42-11":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 - Initial public release ")
            elif g.strip() == "1.2009.42-11.002":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 USA Version")
            elif g.strip() == "1.2009.42-11.003":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 Mid-East/N-Africa Version")
            elif g.strip() == "1.2009.42-11.203":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Generic Version")
            elif g.strip() == "1.2009.42-11.203.0":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Generic Version")
            elif g.strip() == "1.2009.42-11.203.1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Generic Version")
            elif g.strip() == "1.2009.42-11.203.2":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Generic Version")
            elif g.strip() == "1.2009.42-11.205":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Vodafone Version")
            elif g.strip() == "1.2009.42-11.205.0":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Vodafone Version")
            elif g.strip() == "1.2009.42-11.205.1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Vodafone Version")
            elif g.strip() == "1.2009.42-11.205.2":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Vodafone Version")
            elif g.strip() == "1.2009.41-1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Early Release Vanilla Variant")
            else:
               self.lbl_Maemo_Ver_Info.setText(g + " - Varient unknown -")

    Edit | Forward | Quote | Quick Reply | Thanks

     
    Rob1n | # 73 | 2010-02-24, 22:23 | Report

    Originally Posted by noobmonkey View Post
    There is alot lol!

    Code:
    if g.strip() == "3.2010.02-8":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1.1")
            elif g.strip() == "2.2009.51-1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1")
            elif g.strip() == "2009.51-1.203.2":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1 UK Generic Version")
            elif g.strip() == "2009.51-1.203.1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1 UK Generic Version")
            elif g.strip() == "2009.51-1.205.1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1 UK Vodafone Version")
            elif g.strip() == "2009.51-1.205.2":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.1 UK Vodafone Version")
            elif g.strip() == "1.2009.44-1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1.01")
            elif g.strip() == "1.2009.42-11":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 - Initial public release ")
            elif g.strip() == "1.2009.42-11.002":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 USA Version")
            elif g.strip() == "1.2009.42-11.003":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 Mid-East/N-Africa Version")
            elif g.strip() == "1.2009.42-11.203":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Generic Version")
            elif g.strip() == "1.2009.42-11.203.0":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Generic Version")
            elif g.strip() == "1.2009.42-11.203.1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Generic Version")
            elif g.strip() == "1.2009.42-11.203.2":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Generic Version")
            elif g.strip() == "1.2009.42-11.205":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Vodafone Version")
            elif g.strip() == "1.2009.42-11.205.0":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Vodafone Version")
            elif g.strip() == "1.2009.42-11.205.1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Vodafone Version")
            elif g.strip() == "1.2009.42-11.205.2":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Pr 1 UK Vodafone Version")
            elif g.strip() == "1.2009.41-1":
                self.lbl_Maemo_Ver_Info.setText(g.strip() + " - Early Release Vanilla Variant")
            else:
               self.lbl_Maemo_Ver_Info.setText(g + " - Varient unknown -")
    Ouch - you'd be better splitting the version string down and handling the parts separately. Probably the easiest method would be to split on hyphens first, giving you two strings A and B, then you can split A on dots (with either 1+2 or 2+3 being the year+week combination identifying the PR code), and B on dots as well (with the 2nd entry, if present, being the variant). You could also use a regex but that could get a bit more messy.

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following User Says Thank You to Rob1n For This Useful Post:
    noobmonkey

     
    noobmonkey | # 74 | 2010-02-24, 22:25 | Report

    Originally Posted by Rob1n View Post
    Ouch - you'd be better splitting the version string down and handling the parts separately. Probably the easiest method would be to split on hyphens first, giving you two strings A and B, then you can split A on dots (with either 1+2 or 2+3 being the year+week combination identifying the PR code), and B on dots as well (with the 2nd entry, if present, being the variant). You could also use a regex but that could get a bit more messy.
    yeah - will eventually do that, just got it quick n dirty to see what it looked like on screen, code tidying will come once i have the information that i want on the screen

    Working on wifi and bluetooth info this weekend

    Edit | Forward | Quote | Quick Reply | Thanks

     
    pelago | # 75 | 2010-02-24, 22:42 | Report

    I think "Pr" should be "PR" - I believe it's short for Public Release.

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following User Says Thank You to pelago For This Useful Post:
    noobmonkey

     
    JohnLF | # 76 | 2010-02-24, 22:56 | Report

    Very nice app, great to have all the info in one handy place.

    I don't know if this is possible, but one thing I would like to see is a list of apps installed and which repo they came from. This would make it easy to remove any devel apps for instance if you were troubleshooting your phone.

    Maybe this could be done by cross-referencing the catalogue caches?

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following 2 Users Say Thank You to JohnLF For This Useful Post:
    noobmonkey, sorodoros

     
    noobmonkey | # 77 | 2010-02-25, 09:30 | Report

    Originally Posted by pelago View Post
    I think "Pr" should be "PR" - I believe it's short for Public Release.
    Yup agree - will change in next version, possibly tomorrow

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following User Says Thank You to noobmonkey For This Useful Post:
    pelago

     
    F2thaK | # 78 | 2010-02-25, 09:30 | Report

    wow the front cam quality is great thru this app, except for scale!

    maybe you could add save photo function??

    great app!!!!!!!!!

    Edit | Forward | Quote | Quick Reply | Thanks
    The Following User Says Thank You to F2thaK For This Useful Post:
    noobmonkey

     
    noobmonkey | # 79 | 2010-02-25, 09:32 | Report

    Originally Posted by JohnLF View Post
    Very nice app, great to have all the info in one handy place.

    I don't know if this is possible, but one thing I would like to see is a list of apps installed and which repo they came from. This would make it easy to remove any devel apps for instance if you were troubleshooting your phone.

    Maybe this could be done by cross-referencing the catalogue caches?
    hehe, thats on the todo list, well kind off....

    It's very difficult to know where an app comes from unfortunatley... (Unless i log it at time of install.)

    Definitley will try and list apps currently in certain repo's though.
    Will also try and give the ability to enable/disable repo's if i can figure out how to do it!

    I also want to get suggestions for the tool box...

    Apt commans, clear cache , autoremove etc...
    Move fonts / (how to where etc..)
    Update to Python optify?
    Determine top 5 rootfs hungry apps with ability to remove....

    Any others?

    Edit | Forward | Quote | Quick Reply | Thanks

     
    noobmonkey | # 80 | 2010-02-25, 09:33 | Report

    Originally Posted by f2thak View Post
    wow the front cam quality is great thru this app, except for scale!

    maybe you could add save photo function??

    great app!!!!!!!!!

    it currently saves it to a file in your MyDocs

    In a future version could add the ability to change the location and filename
    (Yeah, sorry need to sort the scale out too!)

    Edit | Forward | Quote | Quick Reply | Thanks

     
    Page 8 of 84 | Prev |   6     7   8   9     10   18 | Next | Last
vBulletin® Version 3.8.8
Normal Logout