<feed xmlns='http://www.w3.org/2005/Atom'>
<title>decky-lsfg-vk/src/components, branch main</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/'/>
<entry>
<title>Merge main and normalize translation locale handling</title>
<updated>2026-08-03T18:32:35+00:00</updated>
<author>
<name>xXJSONDeruloXx</name>
<email>danielhimebauch@gmail.com</email>
</author>
<published>2026-08-03T18:32:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=c52d1fa86d302d0d6cb29808aa62c755c7b33362'/>
<id>c52d1fa86d302d0d6cb29808aa62c755c7b33362</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: simplify FP16 toggle description</title>
<updated>2026-08-03T18:18:50+00:00</updated>
<author>
<name>xXJSONDeruloXx</name>
<email>danielhimebauch@gmail.com</email>
</author>
<published>2026-08-03T18:18:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=43f6b5621299aca92fd43de27922c1b27dd82e46'/>
<id>43f6b5621299aca92fd43de27922c1b27dd82e46</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: expose FP16 acceleration setting</title>
<updated>2026-08-03T18:13:35+00:00</updated>
<author>
<name>xXJSONDeruloXx</name>
<email>danielhimebauch@gmail.com</email>
</author>
<published>2026-08-03T18:13:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=a38868cf13af9e257f023b93357657980331e9a5'/>
<id>a38868cf13af9e257f023b93357657980331e9a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove dead code across frontend and backend</title>
<updated>2026-05-07T20:44:59+00:00</updated>
<author>
<name>Christopher Lott</name>
<email>chris@MacBook-Air-von-Christopher.fritz.box</email>
</author>
<published>2026-05-07T20:44:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=7e576633715caa2a8d19dbe6b33a92881c2c5b81'/>
<id>7e576633715caa2a8d19dbe6b33a92881c2c5b81</id>
<content type='text'>
- Remove TS ConfigurationManager class in configSchema.ts (called
  non-existent backend methods; only getDefaults() was used, replaced
  with direct import)
- Remove Python update_config method and create_config_from_args (unreachable
  since plugin.py routes through update_config_from_dict; also carried a
  duplicate @staticmethod that would crash at runtime)
- Delete configuration_helpers_generated.py entirely (all three functions
  were unused)
- Remove their generators from generate_python_boilerplate.py
- Remove dead generated code from config_schema_generated.py
  (create_config_dict, get_function_parameters, TOML_FIELDS, SCRIPT_FIELDS)
- Remove duplicate import in config_schema.py
- Remove unused config prop from UsageInstructions component
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove TS ConfigurationManager class in configSchema.ts (called
  non-existent backend methods; only getDefaults() was used, replaced
  with direct import)
- Remove Python update_config method and create_config_from_args (unreachable
  since plugin.py routes through update_config_from_dict; also carried a
  duplicate @staticmethod that would crash at runtime)
- Delete configuration_helpers_generated.py entirely (all three functions
  were unused)
- Remove their generators from generate_python_boilerplate.py
- Remove dead generated code from config_schema_generated.py
  (create_config_dict, get_function_parameters, TOML_FIELDS, SCRIPT_FIELDS)
- Remove duplicate import in config_schema.py
- Remove unused config prop from UsageInstructions component
</pre>
</div>
</content>
</entry>
<entry>
<title>Apply i18n to all UI components with ko/ja translations</title>
<updated>2026-03-12T07:07:04+00:00</updated>
<author>
<name>sana2dang</name>
<email>sana2dang@naver.com</email>
</author>
<published>2026-03-12T07:07:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=b3bd38494122b402a7c1c3873747148da2538ef6'/>
<id>b3bd38494122b402a7c1c3873747148da2538ef6</id>
<content type='text'>
- Add src/i18n/i18n.ts translation engine (ported from SimpleDeckyTDP)
- Add defaults/i18n/{ko,ja,template}.json with 80 translation keys
- Add defaults/i18n/language_metadata.json and steam_language_map.json
- Add scripts/build_i18n_json.sh to generate languages.json
- Apply t() to all 10 components: Content, ConfigurationSection,
  FlatpaksModal, FpsMultiplierControl, InstallationButton, NerdStuffModal,
  ProfileManagement, SmartClipboardButton, FgmodClipboardButton, UsageInstructions

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Add src/i18n/i18n.ts translation engine (ported from SimpleDeckyTDP)
- Add defaults/i18n/{ko,ja,template}.json with 80 translation keys
- Add defaults/i18n/language_metadata.json and steam_language_map.json
- Add scripts/build_i18n_json.sh to generate languages.json
- Apply t() to all 10 components: Content, ConfigurationSection,
  FlatpaksModal, FpsMultiplierControl, InstallationButton, NerdStuffModal,
  ProfileManagement, SmartClipboardButton, FgmodClipboardButton, UsageInstructions

</pre>
</div>
</content>
</entry>
<entry>
<title>fix: normalize spaces in profile names w dashes for conf requirements, display actual in FE</title>
<updated>2025-12-07T04:40:32+00:00</updated>
<author>
<name>xXJSONDeruloXx</name>
<email>danielhimebauch@gmail.com</email>
</author>
<published>2025-12-07T04:40:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=2c333e8ef1778bf9f0aebb46d68364cee64629f5'/>
<id>2c333e8ef1778bf9f0aebb46d68364cee64629f5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: url path for bundler url with new space in name for flatpak img</title>
<updated>2025-11-11T00:11:28+00:00</updated>
<author>
<name>xXJSONDeruloXx</name>
<email>danielhimebauch@gmail.com</email>
</author>
<published>2025-11-11T00:11:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=d7c3143b689c987c56184a6cf5d8011f7c80a46e'/>
<id>d7c3143b689c987c56184a6cf5d8011f7c80a46e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>rm old comments</title>
<updated>2025-10-22T01:45:14+00:00</updated>
<author>
<name>xXJsonDeruloXx</name>
<email>danielhimebauch@gmail.com</email>
</author>
<published>2025-10-22T01:45:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=c0ea447cfac66c9a5a9541cf92204a9928879591'/>
<id>c0ea447cfac66c9a5a9541cf92204a9928879591</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: align close button implementation in nerd stuff w flatpak modal</title>
<updated>2025-10-20T19:01:10+00:00</updated>
<author>
<name>xXJSONDeruloXx</name>
<email>danielhimebauch@gmail.com</email>
</author>
<published>2025-10-20T19:01:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=2fcac839c23df7dfdfe0634189eaeb1e8e5824a1'/>
<id>2fcac839c23df7dfdfe0634189eaeb1e8e5824a1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add consistent headders and bump ver, recipe for tmp storage purge</title>
<updated>2025-10-20T18:44:37+00:00</updated>
<author>
<name>xXJSONDeruloXx</name>
<email>danielhimebauch@gmail.com</email>
</author>
<published>2025-10-20T18:44:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mirror.aerocore.com.cn/xXJSONDeruloXx/decky-lsfg-vk/commit/?id=f454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a'/>
<id>f454f9c6ff6ad7556a3e8d8f003b312a6ffdb27a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
