├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── close_button.png ├── close_button_hover.png ├── launch_button.png ├── launch_button_hover.png ├── logo.ico ├── logo.png ├── minimize_button.png └── minimize_button_hover.png ├── index.html ├── package.json ├── src ├── main.ts ├── preload.ts └── renderer.ts ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/README.md -------------------------------------------------------------------------------- /assets/close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/assets/close_button.png -------------------------------------------------------------------------------- /assets/close_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/assets/close_button_hover.png -------------------------------------------------------------------------------- /assets/launch_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/assets/launch_button.png -------------------------------------------------------------------------------- /assets/launch_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/assets/launch_button_hover.png -------------------------------------------------------------------------------- /assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/assets/logo.ico -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/minimize_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/assets/minimize_button.png -------------------------------------------------------------------------------- /assets/minimize_button_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/assets/minimize_button_hover.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/src/preload.ts -------------------------------------------------------------------------------- /src/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/src/renderer.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CollinMcKinney/LeagueLocaleLauncher/HEAD/yarn.lock --------------------------------------------------------------------------------