Reply
Thread Tools
Posts: 404 | Thanked: 186 times | Joined on Oct 2010 @ Dehradun,India
#1391
Originally Posted by mooninite View Post
There is no Details button. The only button is "Create backup". I already have a recent backup.

When I check the Log there are no errors in it to tell me to what the problem is.

I only have Nokia, maemo.org Extras, and CSSU-thumb enabled. -extras-testing and -extras-devel are disabled.

Edit:
OK, you mean clicking on the update and looking at Details.

Yes, there is a Problems tab and it lists "Application packages missing: busybox, libmaemosec, etc.".

I'm guessing you can't go from CSSU Stable to CSSU thumb then. Wasn't looking forward to a reflash so I guess I'll pass on this. Thanks.
There is no need for reflash.
just add community testing repository according to the temporary community-testing repository .
As i already mentioned the original one has cssu testing T6 and not T7.
cssu thumb imports some packages from cssu testing repository..

edit@freemangordon already answered

Last edited by raaj13; 2013-02-11 at 14:07.
 

The Following User Says Thank You to raaj13 For This Useful Post:
Posts: 3,328 | Thanked: 4,476 times | Joined on May 2011 @ Poland
#1392
@freemangordon, arcean and other hildon-desktop & CSSU devs

No idea whether it should be rather posted in CSSU Testing thread, but I've just found that hildon-desktop regressed. Yes, regressed. Having updated to latest hildon-desktop (1:2.2.149-1+thumb1), the X-CSSU-Force-Landscape field in hildon-desktop stopped working. The apps are being rotated as if there was no entry in .desktop.

What has changed? I can find no changelog entry about this? Was the support dropped?

/edit: I used at least version 1:2.2.146-2+thumb0 beforce
__________________
If you want to support my work, you can donate by PayPal or Flattr

Projects no longer actively developed: here

Last edited by marmistrz; 2013-02-11 at 18:58.
 

The Following 3 Users Say Thank You to marmistrz For This Useful Post:
Posts: 220 | Thanked: 1,260 times | Joined on Apr 2010 @ Poland
#1393
Originally Posted by marmistrz View Post
@freemangordon, arcean and other hildon-desktop & CSSU devs

No idea whether it should be rather posted in CSSU Testing thread, but I've just found that hildon-desktop regressed. Yes, regressed. Having updated to latest hildon-desktop (1:2.2.149-1+thumb1), the X-CSSU-Force-Landscape field in hildon-desktop stopped working. The apps are being rotated as if there was no entry in .desktop.

What has changed? I can find no changelog entry about this? Was the support dropped?

/edit: I used at least version 1:2.2.146-2+thumb0 beforce
For future reference - please use CSSU-testing thread for such bugs .
All in all, X-CSSU-Force-Landscape field works here. Could you give names of the apps you've tested? Have you enabled forcerotation feature?
__________________
Gnumeric - a spreadsheet application for N900
Camdrive transforms your N9 into a car black box
CSSU developer, join us!
 

The Following 2 Users Say Thank You to arcean For This Useful Post:
Posts: 3,328 | Thanked: 4,476 times | Joined on May 2011 @ Poland
#1394
Originally Posted by arcean View Post
For future reference - please use CSSU-testing thread for such bugs .
All in all, X-CSSU-Force-Landscape field works here. Could you give names of the apps you've tested? Have you enabled forcerotation feature?
Forced rotation enabled.
How it can be checked:
1. install cssu-thumb, update hildon-desktop e.g. via apt-get upgrade, enable forced rotation
2. install powedit (deb needs to be downloaded due to hash sum mismatch)
3. edit /usr/share/applications/hildon/powedit.desktop - add X-CSSU-Force-Landscape=true to the end of the file
4. Launch PowEdit via menu

Expected output: when device rotation, the window shouldn't be rotated by hildon-desktop, it should stay in landscape, only internal Qt Components rotation should be used

Actual ouptut: Both hildon-desktop rotation and internal rotation is used
__________________
If you want to support my work, you can donate by PayPal or Flattr

Projects no longer actively developed: here
 

The Following 2 Users Say Thank You to marmistrz For This Useful Post:
Posts: 33 | Thanked: 17 times | Joined on Jun 2012
#1395
whats the status of cssu update?
 
Posts: 220 | Thanked: 1,260 times | Joined on Apr 2010 @ Poland
#1396
Originally Posted by marmistrz View Post
Forced rotation enabled.
How it can be checked:
1. install cssu-thumb, update hildon-desktop e.g. via apt-get upgrade, enable forced rotation
2. install powedit (deb needs to be downloaded due to hash sum mismatch)
3. edit /usr/share/applications/hildon/powedit.desktop - add X-CSSU-Force-Landscape=true to the end of the file
4. Launch PowEdit via menu

Expected output: when device rotation, the window shouldn't be rotated by hildon-desktop, it should stay in landscape, only internal Qt Components rotation should be used

Actual ouptut: Both hildon-desktop rotation and internal rotation is used
I've changed the following line in main.cpp file of your application:
Code:
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
to
Code:
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockLandscape);
and it work's as expected.

For some reason ScreenOrientationAuto sets HILDON_PORTRAIT_SUPPORTED flag on app's window. With current portrait mode policy it means that the window won't be blacklisted.
__________________
Gnumeric - a spreadsheet application for N900
Camdrive transforms your N9 into a car black box
CSSU developer, join us!
 

The Following 4 Users Say Thank You to arcean For This Useful Post:
Posts: 3,328 | Thanked: 4,476 times | Joined on May 2011 @ Poland
#1397
Originally Posted by arcean View Post
I've changed the following line in main.cpp file of your application:
Code:
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
to
Code:
viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockLandscape);
and it work's as expected.

For some reason ScreenOrientationAuto sets HILDON_PORTRAIT_SUPPORTED flag on app's window. With current portrait mode policy it means that the window won't be blacklisted.
I regret to say that it doesn't work as expected. For this app, yes. But not for thousands of MeeGo apps run via MeeCoLay. They don't have this line with ScreenOrientationLockLandscape. Btw. does the internal rotation work after changing this line (Qt Components one)

This is the only way to blacklist MeeGo without gaining root priveleges and without leaving crap when the app is removed.

What has changed that this stopped working with QmlApplicationViewer::ScreenOrientationAuto?
__________________
If you want to support my work, you can donate by PayPal or Flattr

Projects no longer actively developed: here

Last edited by marmistrz; 2013-02-13 at 17:05.
 
Posts: 176 | Thanked: 262 times | Joined on Nov 2009 @ Texas, USA
#1398
Originally Posted by raaj13 View Post
There is no need for reflash.
just add community testing repository according to the temporary community-testing repository .
As i already mentioned the original one has cssu testing T6 and not T7.
cssu thumb imports some packages from cssu testing repository..

edit@freemangordon already answered
I added community-testing, and that reduced the number of packages in the "Problems" tab, but there are still missing packages.

libmaemosec, maemosec-certman, osso-systemui-alarm, etc.
 
Posts: 404 | Thanked: 186 times | Joined on Oct 2010 @ Dehradun,India
#1399
Originally Posted by mooninite View Post
I added community-testing, and that reduced the number of packages in the "Problems" tab, but there are still missing packages.

libmaemosec, maemosec-certman, osso-systemui-alarm, etc.
community testing which one?

http://skeiron.org/repo/repository.m...unity-testing/

hasn't got missing packages since I used that one myself and didn't faced a problem.
 

The Following User Says Thank You to raaj13 For This Useful Post:
Posts: 176 | Thanked: 262 times | Joined on Nov 2009 @ Texas, USA
#1400
Originally Posted by raaj13 View Post
community testing which one?

http://skeiron.org/repo/repository.m...unity-testing/

hasn't got missing packages since I used that one myself and didn't faced a problem.
I tried that repository earlier but could not connect so I tried the repo.maemo.org one. Now I tried this one again and I successfully updated to -thumb.
 

The Following User Says Thank You to mooninite For This Useful Post:
Reply

Tags
code size, dinosaurs, fmg ftw!, fmg.da.king, performance, thumb, thumb life


 
Forum Jump


All times are GMT. The time now is 09:33.