Skip to content

Commit

Permalink
Update 0.14 (Files)
Browse files Browse the repository at this point in the history
  • Loading branch information
1nf1n1t3Sm4sh3r committed Oct 17, 2024
1 parent e9e2078 commit 1cae6d2
Show file tree
Hide file tree
Showing 24 changed files with 1,405 additions and 166 deletions.
3 changes: 3 additions & 0 deletions data/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"Fixed bug with Better UI enabling even when disabled",
"Added new tier badges: Splattered Yolk (lifetime deaths) and Humpty's Fall (fall deaths)",
"Ishmyster, Grinder, and Simsim - enjoy your Playtester Badges!"
"Rewrote some Better Inventory code",
"Color slider colors <em>should<em> be auto-applied more reliably now",
"Added some Work-in-Progress (WIP) themes: King Hayden, Novosuper, and menoXD"
]
}
6 changes: 6 additions & 0 deletions data/loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,12 @@
"p_settings_mods_themeManager_theme_graysocean2_desc": "Same as the Main graysocean theme but with a modified in-game UI. Content creator badges are hidden on the leaderboard and the \"killed by\" and \"you killed\" text is themed for fashion shows.",
"p_settings_mods_themeManager_theme_boolet": "Boolet x DeltaStorm",
"p_settings_mods_themeManager_theme_boolet_desc": "Play like a pro with the <a target='_blank' href='https://youtube.com/c/Boolet'>Boolet</a> x DeltaStorm theme! Created by <a target='_blank' href='https://youtube.com/c/Boolet'>boolet</a> and updated by Infinite Smasher. This theme used to be available on the Chrome WebStore as an extension but it isn't anymore. This is an updated and improved version of it!",
"p_settings_mods_themeManager_theme_hayden": "King Hayden (WIP)",
"p_settings_mods_themeManager_theme_hayden_desc": "<a target='_blank' href='https://twitch.tv/king_hayden_'>King Hayden</a>'s Theme. Created by Jayvan and updated by Infinite Smasher.",
"p_settings_mods_themeManager_theme_novo": "Novosuper (WIP)",
"p_settings_mods_themeManager_theme_novo_desc": "<a target='_blank' href='https://twitch.tv/novosuper'>Novosuper</a>'s Theme. Created by Jayvan and updated by Infinite Smasher.",
"p_settings_mods_themeManager_theme_meno": "menoXD (WIP)",
"p_settings_mods_themeManager_theme_meno_desc": "<a target='_blank' href='https://twitch.tv/menoxd'>menoXD</a>'s Theme. Created by Jayvan and updated by Infinite Smasher.",


"p_settings_mods_customSkybox_title": "Custom Skybox",
Expand Down
5 changes: 5 additions & 0 deletions data/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -786,10 +786,15 @@
"active": true,
"locKey": "p_settings_mods_themeManager_themeSelect",
"options": [
{ "id": "boolet", "locKey": "p_settings_mods_themeManager_theme_boolet" },
{ "id": "graysocean1", "locKey": "p_settings_mods_themeManager_theme_graysocean1" },
{ "id": "graysocean2", "locKey": "p_settings_mods_themeManager_theme_graysocean2" },
{ "id": "boolet", "locKey": "p_settings_mods_themeManager_theme_boolet" },
{ "id": "infinite", "locKey": "p_settings_mods_themeManager_theme_infinite" }
{ "id": "hayden", "locKey": "p_settings_mods_themeManager_theme_hayden" },
{ "id": "infinite", "locKey": "p_settings_mods_themeManager_theme_infinite" },
{ "id": "meno", "locKey": "p_settings_mods_themeManager_theme_meno" },
{ "id": "novo", "locKey": "p_settings_mods_themeManager_theme_novo" }
],
"defaultVal": "graysocean1"
},
Expand Down
247 changes: 82 additions & 165 deletions js/megaMod.js

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion mods/data/themes.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
{ "id": "infinite", "locKey": "p_settings_mods_themeManager_theme_infinite_desc" },
{ "id": "graysocean1", "locKey": "p_settings_mods_themeManager_theme_graysocean1_desc" },
{ "id": "graysocean2", "locKey": "p_settings_mods_themeManager_theme_graysocean2_desc" },
{ "id": "boolet", "locKey": "p_settings_mods_themeManager_theme_boolet_desc" }
{ "id": "boolet", "locKey": "p_settings_mods_themeManager_theme_boolet_desc" },
{ "id": "hayden", "locKey": "p_settings_mods_themeManager_theme_hayden_desc" },
{ "id": "novo", "locKey": "p_settings_mods_themeManager_theme_novo_desc" },
{ "id": "meno", "locKey": "p_settings_mods_themeManager_theme_meno_desc" }
]
Loading

0 comments on commit 1cae6d2

Please sign in to comment.