Active Topics

 


Reply
Thread Tools
velox's Avatar
Posts: 394 | Thanked: 1,341 times | Joined on Dec 2009
#1
Hi all,
I made a thing and would love you to tell me if it works for you:

slumber is a sleep timer program for SailfishOS with sensors support.

This means you can use the accelerometer or proximity sensor to reset the timer if the display is lit: Just place your device on your bed and slap the mattress in it's general direction to reset the timer. If the display is off, tapping the screen thrice to "wake up and reset" in one go works reasonably good as well.

It's designed to pause local media players or Kodi/VLC via network.
If your device supports it (Jolla1 does not), aliendalvik/android media players shown on the lock screen should work, too.
Optionally, an audible notification plays for the last few seconds before pausing your media.

Please let me know if it works for your favourite Player.



Known restrictions:
- Does not work with Android media players on jolla1 phone.
- Does not work in Sailfish Browser (working alternative: WebPirate Browser)
- Sensors won't work when Display is off. But there is an option to keep it on while the timer runs. (If you know how to fix: please tell me!)
- Phone Vibration might trigger Accelerometer. (Well…)

Install
- https://openrepos.net/content/velox/slumber (most recent builds)
- from Jolla Store (old aka. stable)
- build it yourself after getting it on github


Changelog don't waste your bandwidth if you don't think it's worth it

* version 0.12-1 (in jolla store)
- bugfix: fix settings page for volume restoration
- feature: add simple dbus interface
- a lot of translation updates (thanks, translation team!)

* version 0.11-2
- feature: reset timer with button press on Amazfish-connected device
- feature: optional second Kodi action: Suspend/Shutdown (Not supported on every Kodi configuration)
- feature: disconnect (audio) bluetooth devices without fully shutting down BT
- enhancement: enable "quick select" for main page pull menus
- bugfix/enhancement: support Kodi 18 (leia) API change
- appearance: move notification setting to "Actions" settings page
- appearance: make "playback detected" notification inline
- some translation updates (thank you, translation team!)

* version 0.10-1
- packaging/meta data: OBS compatibility
- user request: main page hint font size increased (previously hard to read in chinese)
- enhancement: restore volume faster on cancel
- many translation updates
- enhancement: add 172x172 icon
- feature: replace BT action with privileged actions

* version 0.9-2
- bugfix: fix broken translations
- bugfix: only disable bluetooth after volume is restored
- translation updates: es/zh/fr/nl/nl_be/sl
- enhancement: always reset volume while canceling (even if reset not enabled)
- enhancement: only trigger "void" fallback after mpris handling is done

Last edited by velox; 2019-11-22 at 07:52. Reason: 0.12-1 in jolla store
 

The Following 18 Users Say Thank You to velox For This Useful Post:
Ancelad's Avatar
Posts: 1,552 | Thanked: 3,108 times | Joined on Jun 2012 @ Russia, 96
#2
Please, fix button-width It is too big...
 

The Following User Says Thank You to Ancelad For This Useful Post:
velox's Avatar
Posts: 394 | Thanked: 1,341 times | Joined on Dec 2009
#3
Originally Posted by Ancelad View Post
Please, fix button-width It is too big...
Yay, if Button Layouts are the worst thing anyone notices, that's a pretty good sign.
It looks a bit weird on Landscape, though, good point. On Portrait, I think it's actually prettier than automatic width, but I'll just change it and get over it. Thanks for taking the Time and giving Feedback!
 
velox's Avatar
Posts: 394 | Thanked: 1,341 times | Joined on Dec 2009
#4
v0.2 is uploaded to warehouse & first post is updated. Buttons are much narrower now
 

The Following User Says Thank You to velox For This Useful Post:
Posts: 187 | Thanked: 514 times | Joined on Nov 2014
#5
Killdroid in the Jolla store can restart the Alien Dalvik system, as long as you've given it your root password.

Makes me wonder if you could use that (or the same mechanism) to shut all Android apps. It'd have to be a setting - it's a pretty blunt way of turning off the radio

ETA - there's also this http://talk.maemo.org/showthread.php?t=96085
 

The Following User Says Thank You to MikeHG For This Useful Post:
CepiPerez's Avatar
Posts: 1,023 | Thanked: 4,421 times | Joined on Feb 2010 @ Argentina
#6
nice app, but doesn't work for flowplayer
how does it work? dbus? I can add whatever you need, just let me know
__________________
Filebox / FileCase for Maemo / Harmattan / Sailfish
FlowPlayer for Maemo / Harmattan / Sailfish
Whatsup for Harmattan / Sailfish
CallBlocker for Harmattan

Support my work:
Paypal / Bitcoin
 

The Following 4 Users Say Thank You to CepiPerez For This Useful Post:
velox's Avatar
Posts: 394 | Thanked: 1,341 times | Joined on Dec 2009
#7
Originally Posted by MikeHG View Post
Killdroid in the Jolla store can restart the Alien Dalvik system, as long as you've given it your root password.

Makes me wonder if you could use that (or the same mechanism) to shut all Android apps. It'd have to be a setting - it's a pretty blunt way of turning off the radio

ETA - there's also this http://talk.maemo.org/showthread.php?t=96085
I'll keep this in mind as a possible feature in the future. Good to know there are ways to kill dalvik and still get accepted to Jolla Store. Thanks!

Originally Posted by CepiPerez View Post
nice app, but doesn't work for flowplayer
how does it work? dbus? I can add whatever you need, just let me know
Pausing media is actually a bit of a hack right now: I just play a very short, silent .mp3 file right out of QML, which automatically pauses a lot of native players. I tried using dbus from QML when I wanted to fade out media volume before, but didn't get anywhere. Hints how to do that stuff at all (and helpful dbus methods) would be greatly appreciated…
 

The Following User Says Thank You to velox For This Useful Post:
Posts: 440 | Thanked: 2,256 times | Joined on Jul 2014
#8
Originally Posted by velox View Post
Pausing media is actually a bit of a hack right now: I just play a very short, silent .mp3 file right out of QML, which automatically pauses a lot of native players. I tried using dbus from QML when I wanted to fade out media volume before, but didn't get anywhere. Hints how to do that stuff at all (and helpful dbus methods) would be greatly appreciated…
Using MPRIS to pause the players might be a better solution for native players. Which is what the lockscreen media controls use, and so is a common API for you to hook into

http://specifications.freedesktop.or...est/index.html

https://github.com/nemomobile/qtmpris
__________________
SirenSong v0.5
Like my work? buy me a beer
 

The Following 2 Users Say Thank You to r0kk3rz For This Useful Post:
velox's Avatar
Posts: 394 | Thanked: 1,341 times | Joined on Dec 2009
#9
Originally Posted by r0kk3rz View Post
Using MPRIS to pause the players might be a better solution for native players. Which is what the lockscreen media controls use, and so is a common API for you to hook into

http://specifications.freedesktop.or...est/index.html

https://github.com/nemomobile/qtmpris
This is why I like this place. Thanks, I'll definitely look into that!
 
CepiPerez's Avatar
Posts: 1,023 | Thanked: 4,421 times | Joined on Feb 2010 @ Argentina
#10
Add this to your globals.qml file:

on top of page:
import org.nemomobile.mpris 1.0

Insde main Rectangle component:
MprisManager { id: mprisManager }

then when timer is triggered add this:
mprisManager.pause()

This should work for stock player and flowplayer (also cutespot uses mpris afaik)
__________________
Filebox / FileCase for Maemo / Harmattan / Sailfish
FlowPlayer for Maemo / Harmattan / Sailfish
Whatsup for Harmattan / Sailfish
CallBlocker for Harmattan

Support my work:
Paypal / Bitcoin
 

The Following 4 Users Say Thank You to CepiPerez For This Useful Post:
Reply

Tags
media, sailfishos, timer

Thread Tools

 
Forum Jump


All times are GMT. The time now is 11:55.