Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
symbuzzer committed Dec 19, 2024
1 parent 6c6096e commit 03193f7
Show file tree
Hide file tree
Showing 10 changed files with 64 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v2.3.0
- Added region options for system logos
- Added necassary system logos for region options
- Changed default game list to Detailed_2 (from Grid)
- Fixed some variabled due make things more understandable

# v2.2.0
- Added new detailed_2 view
- Added disable video option for all gamelist views
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Unlike many ES themes, the clock is displayed accurately on small screen devices
- Unlike many ES themes, the problem of text overlapping in the menus has been minimized
- Menu and navigation sounds available
- Has region option for system logos
- Added the ability to display only the battery percentage and hide the battery bar, which is not available in ES Settings
- Added the ability to show or hide game counts for per system
- Added show or hide system logo on game lists
Expand Down
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# What features will be added in next releases?
*Fell free to [create issue](https://github.com/symbuzzer/es-theme-knulli/issues/new) to request any feature...*

# v2.2.0
# v2.4.0
...
11 changes: 8 additions & 3 deletions _inc/variables/lang-default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,14 @@
<subset.systemlogoeffects.enabled>enabled</subset.systemlogoeffects.enabled>
<subset.systemlogoeffects.disabled>disabled</subset.systemlogoeffects.disabled>

<subset.systemlogos>show system logos on gamelists</subset.systemlogos>
<subset.systemlogos.yes>yes</subset.systemlogos.yes>
<subset.systemlogos.no>no</subset.systemlogos.no>
<subset.systemlogosongamelists>show system logos on gamelists</subset.systemlogosongamelists>
<subset.systemlogosongamelists.yes>yes</subset.systemlogosongamelists.yes>
<subset.systemlogosongamelists.no>no</subset.systemlogosongamelists.no>

<subset.region>region</subset.region>
<subset.region.eu>eu</subset.region.eu>
<subset.region.us>us</subset.region.us>
<subset.region.jp>jp</subset.region.jp>

<subset.gamecount>show game count</subset.gamecount>
<subset.gamecount.yes>yes</subset.gamecount.yes>
Expand Down
2 changes: 1 addition & 1 deletion _inc/xml/basic.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
colorEnd="80808080"

>
<visible ifSubset="systemlogos:no">false</visible>
<visible ifSubset="systemlogosongamelists:no">false</visible>
</image>


Expand Down
2 changes: 1 addition & 1 deletion _inc/xml/detailed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

>

<visible ifSubset="systemlogos:no">false</visible>
<visible ifSubset="systemlogosongamelists:no">false</visible>

</image>

Expand Down
2 changes: 1 addition & 1 deletion _inc/xml/detailed_2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<customView name="detailed_2" inherits="detailed" displayName="${lang.detailed_2}">

<image ifSubset="systemlogos:no" name="logo"
<image ifSubset="systemlogosongamelists:no" name="logo"

visible="false"

Expand Down
2 changes: 1 addition & 1 deletion _inc/xml/grid.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
colorEnd="80808080"

>
<visible ifSubset="systemlogos:no">false</visible>
<visible ifSubset="systemlogosongamelists:no">false</visible>
</image>

<image name="frame"
Expand Down
27 changes: 26 additions & 1 deletion _inc/xml/logo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,35 @@
zIndex="1000"
saturation="1.2"

/>

<image name="logo"

ifSubset="region:eu"

>

<path>./../../_inc/logos/${p.custom}/${system.theme}/logo.png</path>
<path>./../../_inc/logos/${p.custom}/${system.theme}/logo.svg</path>

</image>

<image name="logo"

ifSubset="region:us"

>

<path>./../../_inc/logos/${p.custom}/${system.theme}/us/logo.png</path>

</image>

<image name="logo"

ifSubset="region:jp"

>

<path>./../../_inc/logos/${p.custom}/${system.theme}/jp/logo.png</path>

</image>

Expand Down
24 changes: 18 additions & 6 deletions theme.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<theme defaultView="grid">
<theme defaultView="detailed_2">

<formatVersion>7</formatVersion>

Expand All @@ -9,7 +9,7 @@
<variables>


<v.themeVersion>2.2.0</v.themeVersion>
<v.themeVersion>2.3.0</v.themeVersion>

<v.allViews>system,grid,basic,detailed,detailed_2</v.allViews>
<v.allGamelists>grid,basic,detailed,detailed_2</v.allGamelists>
Expand Down Expand Up @@ -146,14 +146,14 @@

</subset>

<subset name="systemlogos"
<subset name="systemlogosongamelists"

displayName="${subset.systemlogos}"
displayName="${subset.systemlogosongamelists}"

>

<include name="yes" displayName="${subset.systemlogos.yes}" />
<include name="no" displayName="${subset.systemlogos.no}" />
<include name="yes" displayName="${subset.systemlogosongamelists.yes}" />
<include name="no" displayName="${subset.systemlogosongamelists.no}" />

</subset>

Expand All @@ -168,6 +168,18 @@

</subset>

<subset name="region"

displayName="${subset.region}"

>

<include name="eu" displayName="${subset.region.eu}" />
<include name="us" displayName="${subset.region.us}" />
<include name="jp" displayName="${subset.region.jp}" />

</subset>

<subset name="batterybar"

displayName="${subset.batterybar}"
Expand Down

0 comments on commit 03193f7

Please sign in to comment.