Ok guys I just released a new version v0.1.4.0. This is the changelog:
Changelog (v0.1.4.0 Beta):- General
- iMON
- New version of iMon Display API Wrapper# (v0.1.0.7)
- Increased maximum delay after scrolling to 5s (from 2s)
- XBMC
- Option to show/rotate the disc icon during playback
- Default values for Music / Music Video Playback text
- Formatting option to add leading zeros (format: %keyword:length%)
- Show system time instead of other text
As requested I implemented the possibility to display the system's current time instead of a static text when XBMC is idle (and control mode is NOT enabled). Furthermore I added options to not show media information during playback. I haven't tested this very thorough so I'm sure there are cases where it does not work properly. So just let me know if you see something awkward on your display.
Furthermore I added the following possibility to "format" the media information output during playback:
You can now add a ":" followed by a number (the length) to the media information's keyword. This will add leading zeros to the text to fill it up to the defined length (so this only makes sense for numbers). Here's an example:
Up until now you could only do
Code:
%show%: S%season%E%episode% - %title%
which resulted in something like
Code:
Dexter: S3E7 - some title
Now you can do
Code:
%show%: S%season[b]:2[/b]%E%episode[b]:2[/b]% - %title%
which results in something like
Code:
Dexter: S03E07 - some title
Please test the new features and give me some feedback and maybe further ideas for improvement.