RetroFE forums
Artwork & Layouts => Share your theme => Topic started by: Lunatic on April 15, 2019, 10:43:30 AM
-
Click the image to watch the video
(https://i.hizliresim.com/0r2y79.png) (https://www.youtube.com/watch?v=UTMT-v3Agt4)
Click Here to Download 'LUNA' Layout from Google Drive (Updated) (https://drive.google.com/file/d/1zSMidzYcgQBS_UjHJHu2HqGahooBJVED/)
Changes
-Changed the transparancy level of eplogo
-Made changes on animation
-Changed/fixed the layer level of bottom border
-Changed/fixed some console images to not overflow onto tv
-Added extra detail texts/images which could be useful for arcade/mame systems especially
-Removed some systems, especially the ones which never got release outside of Japan
-Added Microsoft MSX system
-Changed the sorting of systems
-Changed the layout name to "LUNA" along with its logo.
-Few more changes that are not listed here.
Hope you like it, enjoy :)
-
Looks like a fun setup. Lots of systems configured as well I see. :)
-
Thanks. Would you like to add this layout to the theme section on home page? It's a mix between "Ergo Proxy" and "Retrospin" with addition.
By the way thank you for this great software, cheers :)
-
I’m currently working on some new features, but when I’m done I plan another round of tests, a full release, and an update of the download section. I’ll test your skin as well then.

Sent from my iPad using Tapatalk
-
Like it! Nice work! Lots of systems too! Keep it up.
-
Updated the layout, hope you enjoy even more :D
-
Love the theme,is there anyway to change the time.
-
Love the theme,is there anyway to change the time.
How do you mean? If you mean switching from 24H to 12H time format, you need to edit timeFormat="%H:%M" value in layout.xml you may want to check which alternatives fit there on this page though I'm no expert about these codes
https://en.cppreference.com/w/cpp/chrono/c/strftime
If you mean moving the timer or removing it completely, find layout.xml, open it with your text editor, click ctrl+f to find "type="time" value and edit the paragraph to your needs or if you want to remove the clock and the clock icon completely, delete both paragraphs that start with <reloadableText type="time" and <image src="images/clock.png"
-
Thanks for the response,I meant changing it from 24H to 12H. I can't figure it out.
-
Thanks for the response,I meant changing it from 24H to 12H. I can't figure it out.
Hmm, maybe @Pieter Hulshoff can help you with that issue.
Edit: I guess I figured it out. Try switching between the following codes till you find the one that fits your desire.
Edit layout.xml with notepad, find timeFormat="%H:%M" value and change the "%H:%M" line to either of these
"%c"
"%Ec"
"%x"
"%Ex"
"%X"
"%EX"
"%D"
"%F"
"%r"
"%R"
"%T"
"%p"
"%z"
"%Z"
-
Time format uses the standard C++ library: https://en.cppreference.com/w/cpp/chrono/c/strftime
It's mentioned in the manual: http://www.retrofe.nl/wiki/doku.php?id=layouts#reloadabletext_parameters
In the layout.xml file, you'll find the following line:
<reloadableText type="time" timeFormat="%H:%M" alpha="0" x="150" y="top" xOrigin="left" yOrigin="top" font="fonts/Geforce Light.ttf" fontSize="60" loadFontSize="60" fontColor="ffffff" layer="10" >
%H stands for 24 hour indication
Just replaced it with %I for 12 hour indication.
I believe you can add %p for the A.M. / P.M. indication if you so desire.
-
Worked perfectly,thank you for all your help.It is much appreciated.