Author Topic: LUNA (Updated)  (Read 8944 times)

Lunatic

  • Newbie
  • *
  • Posts: 5
  • Karma: +2/-0
    • View Profile
LUNA (Updated)
« on: April 15, 2019, 10:43:30 AM »
Click the image to watch the video


Click Here to Download 'LUNA' Layout from Google Drive (Updated)

Changes
Code: [Select]
-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 :)
« Last Edit: February 25, 2020, 11:43:26 AM by Lunatic »

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Luna Ultimate
« Reply #1 on: April 15, 2019, 01:48:40 PM »
Looks like a fun setup. Lots of systems configured as well I see. :)

Lunatic

  • Newbie
  • *
  • Posts: 5
  • Karma: +2/-0
    • View Profile
Re: Luna Ultimate
« Reply #2 on: April 15, 2019, 10:51:28 PM »
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 :)

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: Luna Ultimate
« Reply #3 on: April 16, 2019, 06:40:22 AM »
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

dougan78

  • Full Member
  • ***
  • Posts: 159
  • Karma: +4/-0
    • View Profile
Re: Luna Ultimate
« Reply #4 on: April 20, 2019, 04:41:17 AM »
Like it!  Nice work!  Lots of systems too!   Keep it up.

Lunatic

  • Newbie
  • *
  • Posts: 5
  • Karma: +2/-0
    • View Profile
Re: LUNA (Updated)
« Reply #5 on: May 01, 2019, 02:33:42 AM »
Updated the layout, hope you enjoy even more  :D

squirlslap

  • Newbie
  • *
  • Posts: 7
  • Karma: +1/-0
    • View Profile
Re: LUNA (Updated)
« Reply #6 on: August 31, 2019, 09:35:42 PM »
Love the theme,is there anyway to change the time.

Lunatic

  • Newbie
  • *
  • Posts: 5
  • Karma: +2/-0
    • View Profile
Re: LUNA (Updated)
« Reply #7 on: September 01, 2019, 11:46:24 PM »
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"

squirlslap

  • Newbie
  • *
  • Posts: 7
  • Karma: +1/-0
    • View Profile
Re: LUNA (Updated)
« Reply #8 on: September 02, 2019, 11:43:58 PM »
Thanks for the response,I meant changing it from 24H to 12H. I can't figure it out.

Lunatic

  • Newbie
  • *
  • Posts: 5
  • Karma: +2/-0
    • View Profile
Re: LUNA (Updated)
« Reply #9 on: September 03, 2019, 02:35:21 AM »
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
Code: [Select]
"%c"
"%Ec"
"%x"
"%Ex"
"%X"
"%EX"
"%D"
"%F"
"%r"
"%R"
"%T"
"%p"
"%z"
"%Z"
« Last Edit: September 03, 2019, 03:00:18 AM by Lunatic »

Pieter Hulshoff

  • Administrator
  • Hero Member
  • *****
  • Posts: 1534
  • Karma: +46/-14
    • View Profile
    • Towel 42
Re: LUNA (Updated)
« Reply #10 on: September 03, 2019, 07:18:36 AM »
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.
« Last Edit: September 03, 2019, 07:26:43 AM by Pieter Hulshoff »

squirlslap

  • Newbie
  • *
  • Posts: 7
  • Karma: +1/-0
    • View Profile
Re: LUNA (Updated)
« Reply #11 on: September 03, 2019, 08:32:55 PM »
Worked perfectly,thank you for all your help.It is much appreciated.