Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Rockbox Ports are now being developed for various digital audio players!

+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Theming and Appearance Customization
| | |-+  Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« previous next »
  • Print
Pages: 1 [2]

Author Topic: Specific Clip Plus issue - Pixel Artefacts on Lock Screen  (Read 4951 times)

Offline sockbox

  • Member
  • *
  • Posts: 111
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #15 on: October 22, 2011, 11:14:04 PM »
Yeah, the bitmap strip isn't going to work for what you want to do.
Logged

Offline KiwiCam

  • Artist
  • Member
  • *
  • Posts: 92
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #16 on: October 23, 2011, 12:04:15 AM »
I've taken your suggestions and added them to my updates. I had to leave the Clock adjustments out, because pixels were still staying behind, for some reason.

Thanks for your help.
Logged

Offline KiwiCam

  • Artist
  • Member
  • *
  • Posts: 92
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #17 on: October 28, 2011, 08:34:29 PM »
Day Code isn't quite correct:

Code: [Select]
%ca%?cu<|s|nes|rs|f|ur|>day

Should be:

Code: [Select]
%ca%?cu<|s|nes|rs||ur|>day
 <<No F in Frifday ;)
« Last Edit: October 29, 2011, 12:20:14 AM by KiwiCam »
Logged

Offline [Saint]

  • Rockbox Expert
  • Member
  • *
  • Posts: 1662
  • Hayden Pearce
    • Google+
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #18 on: October 28, 2011, 11:25:23 PM »
Quote from: KiwiCam on October 28, 2011, 08:34:29 PM
No F in Frifday ;)

...there's 2 f's in Frifday. ;)
Logged
Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline KiwiCam

  • Artist
  • Member
  • *
  • Posts: 92
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #19 on: October 29, 2011, 12:21:53 AM »
Quote from: [Saint
...there's 2 f's in Frifday. ;)

Har! I still didn't actually correct the code up there either.  Changed now.
Logged

Offline sockbox

  • Member
  • *
  • Posts: 111
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #20 on: October 30, 2011, 04:28:45 PM »
Yeah. I caught that error earlier, but the bad code got quoted and copied over. Also made a slight change for the month code leaving out the last ember. However, saving on code doesn't make much of a difference now that the skin buffer is much larger than the original 13k.

You should  file a bug report for the bitmap strip not working when used in a bar tag.
« Last Edit: October 30, 2011, 11:41:37 PM by sockbox »
Logged

Offline KiwiCam

  • Artist
  • Member
  • *
  • Posts: 92
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #21 on: October 31, 2011, 03:17:47 AM »
Quote from: sockbox on October 30, 2011, 04:28:45 PM
However, saving on code doesn't make much of a difference now that the skin buffer is much larger than the original 13k.

A second side effect, is that the %ax then doesn't work properly. F for instance, on the day code, you get some funny results. I particularly like it when it's in Portuguese, and it's Sexta-Feira or Friday ;)


Quote from: sockbox on October 30, 2011, 04:28:45 PM
You should  file a bug report for the bitmap strip not working when used in a bar tag.

OK. I'd love to see that working.

Thanks.

« Last Edit: October 31, 2011, 04:22:32 AM by KiwiCam »
Logged

Offline [Saint]

  • Rockbox Expert
  • Member
  • *
  • Posts: 1662
  • Hayden Pearce
    • Google+
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #22 on: October 31, 2011, 03:23:01 AM »
%ax works as intended.
It will however flip alignment tags also, so one needs to use the language direction sensitive alignment tags as opposed to the generic alignment tags (yes, there are two types...).

You also need to make sure if your using translation that you set up a condition for right-to-left languages, otherwise when your left-to-right code is rendered it will be backwards.
ie. Foo Baz Bar will become Bar Baz Foo.

There's several examples in my themes, one easily available on the tracker, of how to accommodate for right to left languages and translated strings.


[Saint]

Edit: additionally, bitmapstrips not working for the bar tags is not a bug. The bar image is loaded by the bar tag declaration, not %xl'd earlier in the code, so it just wont work. This isn't a bug.
« Last Edit: October 31, 2011, 03:32:08 AM by [Saint] »
Logged
Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline KiwiCam

  • Artist
  • Member
  • *
  • Posts: 92
Re: Specific Clip Plus issue - Pixel Artefacts on Lock Screen
« Reply #23 on: October 31, 2011, 04:22:39 AM »
Quote from: [Saint] on October 31, 2011, 03:23:01 AM
%ax works as intended.
It will however flip alignment tags also, so one needs to use the language direction sensitive alignment tags as opposed to the generic alignment tags (yes, there are two types...).

You also need to make sure if your using translation that you set up a condition for right-to-left languages, otherwise when your left-to-right code is rendered it will be backwards.
ie. Foo Baz Bar will become Bar Baz Foo.

There's several examples in my themes, one easily available on the tracker, of how to accommodate for right to left languages and translated strings.


Sorry Saint. I put you on COMPLETELY the wrong track there. I've had %ax on my brain and had forgotten what it did. Besides, I've ruined my own joke. Strike that first sentance of mine. I'm just referring to the language translation using that code suggestion of Sockbox's. [An EDIT has been made]

Quote from: [Saint] on October 31, 2011, 03:23:01 AM


Edit: additionally, bitmapstrips not working for the bar tags is not a bug. The bar image is loaded by the bar tag declaration, not %xl'd earlier in the code, so it just wont work. This isn't a bug.


Great. I don't have to find out now, where to file a bug report.  ;D
Logged

  • Print
Pages: 1 [2]
« previous next »
+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Theming and Appearance Customization
| | |-+  Specific Clip Plus issue - Pixel Artefacts on Lock Screen
 

  • SMF 2.0.17 | SMF © 2019, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.077 seconds with 14 queries.