![]() |
2011-06-02
, 20:58
|
Posts: 40 |
Thanked: 5 times |
Joined on Jan 2011
|
#42
|
![]() |
2011-06-02
, 21:17
|
Posts: 2,225 |
Thanked: 3,822 times |
Joined on Jun 2010
@ Florida
|
#43
|
![]() |
2011-06-02
, 21:40
|
Posts: 40 |
Thanked: 5 times |
Joined on Jan 2011
|
#44
|
What I was saying earlier is: 1st reinstall python, BY ITSELF, without this applet. Then install the applet. If that doesn't work, try first installing python, then installing the dependency python-hildondesktop or whatever, and only then, AFTER installing those, install the applet again. That typically works for me for Advanced Clock Plugin, Advanced Power, and for Advanced Interface Switcher (which are all python status menu applets).
![]() |
2011-06-02
, 21:49
|
Posts: 2,225 |
Thanked: 3,822 times |
Joined on Jun 2010
@ Florida
|
#45
|
The Following User Says Thank You to Mentalist Traceur For This Useful Post: | ||
![]() |
2011-06-02
, 22:53
|
Posts: 40 |
Thanked: 5 times |
Joined on Jan 2011
|
#46
|
Ouch. Ok, if you had so many apps installed that depended on "python", that probably means you had all the Python you needed already on-board, and your issue may be different than mine.
Hmm. Alright, well, try this:
apt-get install python-hildondesktop
Then reboot, then reinstall the applet. (Keep in mind, I'm mostly guessing here, based on vaguelly similar experiences... I'm not an expert on this issue by any means.)
The Following User Says Thank You to price For This Useful Post: | ||
![]() |
2011-06-03
, 06:50
|
|
Posts: 565 |
Thanked: 618 times |
Joined on Jun 2010
@ Finland
|
#47
|
sorry to ask this here, but how to permenantly install the bleeding edge drivers?
Maybe 2g/3g selector. I've got the rest installed and I see the applet (but I can't make it work, see two posts above ^).
So try seeing if that selector is causing you problems.
The app is not loading the drivers again for me. after I install the program, it worked but after a phone restart it did not work again even tho the app says that the drivers are loaded.
![]() |
2011-06-03
, 09:57
|
Posts: 107 |
Thanked: 173 times |
Joined on Feb 2011
|
#48
|
def click(self, button): if self.getDriverStatus() != self.status: if self.status: self.Notifications.notify("Stock drivers are already in use") else: self.Notifications.notify("Bleeding Edge drivers are already in use") self.status=self.getDriverStatus() else: folder = self.Config.getFolder() if self.Config.checkFolder(folder): if self.status: self.loadDrivers(folder, False) else: self.loadDrivers(folder, True) else: SetupDialog(self) self.updateButton()
![]() |
2011-06-03
, 10:10
|
|
Posts: 565 |
Thanked: 618 times |
Joined on Jun 2010
@ Finland
|
#49
|
Hi laasonen, and thanks for this applet
When you test for a mismatch between current status and actual loaded modules, you should update status and buttons accordingly, otherwise, it results in a "bleeding edge drivers" button that refuses to load "stock drivers" since they are already loaded.
Here is the modified click function with one line added and one line modified in bold
Code:def click(self, button): if self.getDriverStatus() != self.status: if self.status: self.Notifications.notify("Stock drivers are already in use") else: self.Notifications.notify("Bleeding Edge drivers are already in use") self.status=self.getDriverStatus() else: folder = self.Config.getFolder() if self.Config.checkFolder(folder): if self.status: self.loadDrivers(folder, False) else: self.loadDrivers(folder, True) else: SetupDialog(self) self.updateButton()
![]() |
2011-06-04
, 04:43
|
|
Posts: 293 |
Thanked: 373 times |
Joined on Jul 2010
@ Westside
|
#50
|
The Following User Says Thank You to frostbyte For This Useful Post: | ||