├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── feature_request.yml │ ├── issue_report.yml │ └── question.yml ├── crowdin.yml ├── dependabot.yml ├── labeler.yml ├── pull_request_template.md └── workflows │ ├── crowdin.yml │ ├── discord.yml │ ├── labeler-history.yml │ ├── labeler.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .husky └── pre-commit ├── .npmrc ├── .prettierignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docs ├── .gitignore ├── app │ ├── (home) │ │ ├── changelog │ │ │ ├── [slug] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── alternatives │ │ ├── archisteamfarm │ │ │ └── page.tsx │ │ ├── idle-master │ │ │ └── page.tsx │ │ └── steam-achievement-manager │ │ │ └── page.tsx │ ├── api │ │ └── search │ │ │ └── route.ts │ ├── components │ │ ├── AdOverlay.tsx │ │ ├── HelpDesk.tsx │ │ ├── TelemetryLoader.tsx │ │ ├── content │ │ │ ├── CardLink.tsx │ │ │ ├── Cards.tsx │ │ │ ├── CopyableFAQ.tsx │ │ │ ├── DocsCTA.tsx │ │ │ └── MockButton.tsx │ │ ├── home │ │ │ ├── CTASection.tsx │ │ │ ├── ComparisonSection.tsx │ │ │ ├── FAQSection.tsx │ │ │ ├── FeaturesSection.tsx │ │ │ ├── FooterSection.tsx │ │ │ ├── HeroSection.tsx │ │ │ ├── SecuritySection.tsx │ │ │ └── StatsSection.tsx │ │ └── search.tsx │ ├── docs │ │ ├── [[...slug]] │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── llms-full.txt │ │ └── route.ts │ ├── manifest.ts │ ├── privacy │ │ └── page.tsx │ ├── supported-games │ │ └── [appName] │ │ │ ├── AdComponent.tsx │ │ │ ├── AdComponentTwo.tsx │ │ │ └── page.tsx │ └── tos │ │ └── page.tsx ├── content │ ├── changelog │ │ ├── 2.3.0.mdx │ │ ├── 2.3.1.mdx │ │ ├── 2.3.10.mdx │ │ ├── 2.3.11.mdx │ │ ├── 2.3.12.mdx │ │ ├── 2.3.13.mdx │ │ ├── 2.3.2.mdx │ │ ├── 2.3.3.mdx │ │ ├── 2.3.4.mdx │ │ ├── 2.3.5.mdx │ │ ├── 2.3.6.mdx │ │ ├── 2.3.7.mdx │ │ ├── 2.3.8.mdx │ │ ├── 2.3.9.mdx │ │ ├── 2.4.6.mdx │ │ ├── 2.4.7.mdx │ │ ├── 2.5.0.mdx │ │ ├── 2.5.1.mdx │ │ ├── 2.5.10.mdx │ │ ├── 2.5.11.mdx │ │ ├── 2.5.12.mdx │ │ ├── 2.5.13.mdx │ │ ├── 2.5.14.mdx │ │ ├── 2.5.15.mdx │ │ ├── 2.5.2.mdx │ │ ├── 2.5.3.mdx │ │ ├── 2.5.4.mdx │ │ ├── 2.5.5.mdx │ │ ├── 2.5.6.mdx │ │ ├── 2.5.7.mdx │ │ ├── 2.5.8.mdx │ │ └── 2.5.9.mdx │ └── docs │ │ ├── faq.mdx │ │ ├── faqData.ts │ │ ├── features │ │ ├── achievement-manager.mdx │ │ ├── achievement-unlocker.mdx │ │ ├── auto-idler.mdx │ │ ├── card-farming.mdx │ │ ├── free-games.mdx │ │ ├── manual-add.mdx │ │ ├── playtime-booster.mdx │ │ ├── task-scheduling.mdx │ │ └── trading-card-manager.mdx │ │ ├── get-started │ │ ├── build-it-yourself.mdx │ │ ├── how-to-sign-in.mdx │ │ └── install.mdx │ │ ├── index.mdx │ │ ├── meta.json │ │ ├── settings │ │ ├── achievement-unlocker.mdx │ │ ├── card-farming.mdx │ │ ├── customization.mdx │ │ ├── debug.mdx │ │ ├── free-games.mdx │ │ ├── game-settings.mdx │ │ ├── general.mdx │ │ └── trading-card-manager.mdx │ │ ├── steam-credentials.mdx │ │ └── troubleshooting.mdx ├── lib │ ├── layout.shared.tsx │ └── source.ts ├── mdx-components.tsx ├── next-sitemap.config.mjs ├── next.config.ts ├── package.json ├── postcss.config.mjs ├── public │ ├── a99bafb2fec849c3abfd6d70326b67fa.txt │ ├── ads.txt │ ├── asf-og-image.png │ ├── examples │ │ ├── example.png │ │ └── profile-settings.webp │ ├── im-og-image.png │ ├── logo.svg │ ├── og-image.png │ └── sam-og-image.png ├── source.config.ts ├── tailwind.config.mjs ├── tsconfig.json └── vercel.json ├── eslint.config.mjs ├── latest.json ├── next.config.ts ├── notifications.json ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.mjs ├── prettier.config.mjs ├── public ├── app-logo.svg ├── cover-art │ ├── 1030300.webp │ ├── 1091500.webp │ ├── 1172470.webp │ ├── 1172710.webp │ ├── 1174180.webp │ ├── 1449110.webp │ ├── 1623730.webp │ ├── 1771300.webp │ ├── 1808500.webp │ ├── 1938090.webp │ ├── 2001120.webp │ ├── 221100.webp │ ├── 2246340.webp │ ├── 230410.webp │ ├── 2322010.webp │ ├── 236390.webp │ ├── 2507950.webp │ ├── 252490.webp │ ├── 2531310.webp │ ├── 2592160.webp │ ├── 2651280.webp │ ├── 271590.webp │ ├── 2767030.webp │ ├── 3008130.webp │ ├── 322170.webp │ ├── 3241660.webp │ ├── 3564740.webp │ ├── 381210.webp │ ├── 413150.webp │ └── 578080.webp ├── example.png ├── fallback.webp ├── favicon.ico ├── logo.png ├── mock.webp ├── powered-by-stripe.svg ├── themes │ ├── black.webp │ ├── blue.webp │ ├── dark.webp │ ├── gold.webp │ ├── pink.webp │ ├── purple.webp │ └── red.webp └── webview.html ├── src-tauri ├── .installed ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── build.rs ├── capabilities │ └── desktop.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── 32x32_running.png │ └── icon.ico ├── src │ ├── achievement_manager.rs │ ├── automation.rs │ ├── crypto.rs │ ├── custom_lists.rs │ ├── game_data.rs │ ├── idling.rs │ ├── lib.rs │ ├── logging.rs │ ├── main.rs │ ├── process_handler.rs │ ├── settings.rs │ ├── trading_cards.rs │ ├── user_data.rs │ └── utils.rs └── tauri.conf.json ├── src ├── components │ ├── achievements │ │ ├── AchievementButtons.tsx │ │ ├── Achievements.tsx │ │ ├── AchievementsList.tsx │ │ ├── PageHeader.tsx │ │ ├── StatisticButtons.tsx │ │ └── StatisticsList.tsx │ ├── automation │ │ ├── AchievementUnlocker.tsx │ │ └── CardFarming.tsx │ ├── customlists │ │ ├── AchievementOrderModal.tsx │ │ ├── CustomList.tsx │ │ ├── EditListModal.tsx │ │ ├── ManualAdd.tsx │ │ └── RecommendedCardDropsCarousel.tsx │ ├── gameslist │ │ ├── CardMenu.tsx │ │ ├── FreeGamesList.tsx │ │ ├── GamesList.tsx │ │ ├── IdlingGamesList.tsx │ │ ├── PageHeader.tsx │ │ ├── Private.tsx │ │ ├── RecentGamesCarousel.tsx │ │ └── RecommendedGamesCarousel.tsx │ ├── layout │ │ ├── Dashboard.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── Layout.tsx │ │ ├── SignIn.tsx │ │ └── Window.tsx │ ├── notifications │ │ └── Notifications.tsx │ ├── settings │ │ ├── AchievementSettings.tsx │ │ ├── CardSettings.tsx │ │ ├── ClearData.tsx │ │ ├── CustomizationSettings.tsx │ │ ├── ExportSettings.tsx │ │ ├── FreeGamesSettings.tsx │ │ ├── GameSettings.tsx │ │ ├── GeneralSettings.tsx │ │ ├── Logs.tsx │ │ ├── OpenSettings.tsx │ │ ├── ResetSettings.tsx │ │ ├── Settings.tsx │ │ ├── SettingsSwitch.tsx │ │ ├── SocialButtons.tsx │ │ ├── SteamCredentials.tsx │ │ └── TradingCardManagerSettings.tsx │ ├── trading-cards │ │ ├── PageHeader.tsx │ │ ├── PriceData.tsx │ │ ├── PriceInput.tsx │ │ └── TradingCardsList.tsx │ └── ui │ │ ├── AdSlot.tsx │ │ ├── Beta.tsx │ │ ├── ChangelogModal.tsx │ │ ├── CustomModal.tsx │ │ ├── CustomTooltip.tsx │ │ ├── ErrorToast.tsx │ │ ├── ExtLink.tsx │ │ ├── GameCard.tsx │ │ ├── GoProModal.tsx │ │ ├── IdleTimer.tsx │ │ ├── Loader.tsx │ │ ├── ProBadge.tsx │ │ ├── SearchBar.tsx │ │ ├── SideBar.tsx │ │ ├── SignInHero.tsx │ │ ├── SteamWarning.tsx │ │ ├── UpdateButton.tsx │ │ ├── WebviewWindow.tsx │ │ ├── header │ │ ├── GoPro.tsx │ │ ├── Header.tsx │ │ ├── HeaderMenu.tsx │ │ ├── HeaderTitle.tsx │ │ ├── HelpDesk.tsx │ │ └── Logo.tsx │ │ ├── i18n │ │ ├── CurrencySwitch.tsx │ │ ├── I18nProvider.tsx │ │ └── LanguageSwitch.tsx │ │ └── theme │ │ └── ThemeProvider.tsx ├── hooks │ ├── achievements │ │ ├── useAchievementButtons.ts │ │ ├── useAchievements.ts │ │ └── useStatisticButtons.ts │ ├── automation │ │ ├── useAchievementUnlocker.ts │ │ ├── useAutomateButtons.ts │ │ └── useCardFarming.ts │ ├── customlists │ │ ├── useCustomList.ts │ │ └── useManualAdd.ts │ ├── gameslist │ │ ├── useGamesList.ts │ │ └── usePageHeader.ts │ ├── layout │ │ ├── useSignIn.ts │ │ └── useWindow.ts │ ├── notifications │ │ └── useNotifications.ts │ ├── settings │ │ ├── useAchievementSettings.ts │ │ ├── useCardSettings.ts │ │ ├── useClearData.ts │ │ ├── useGameSettings.ts │ │ ├── useGeneralSettings.ts │ │ ├── useLogs.ts │ │ ├── useResetSettings.ts │ │ └── useSettings.ts │ ├── trading-cards │ │ └── useTradingCardsList.ts │ └── ui │ │ ├── useGameCard.ts │ │ ├── useHeader.ts │ │ └── useSideBar.ts ├── i18n │ ├── i18n.ts │ └── locales │ │ ├── bg-BG │ │ └── translation.json │ │ ├── cs-CZ │ │ └── translation.json │ │ ├── da-DK │ │ └── translation.json │ │ ├── de-DE │ │ └── translation.json │ │ ├── el-GR │ │ └── translation.json │ │ ├── en-US │ │ └── translation.json │ │ ├── es-ES │ │ └── translation.json │ │ ├── fi-FI │ │ └── translation.json │ │ ├── fr-FR │ │ └── translation.json │ │ ├── he-IL │ │ └── translation.json │ │ ├── hi-IN │ │ └── translation.json │ │ ├── hu-HU │ │ └── translation.json │ │ ├── id-ID │ │ └── translation.json │ │ ├── it-IT │ │ └── translation.json │ │ ├── ja-JP │ │ └── translation.json │ │ ├── ko-KR │ │ └── translation.json │ │ ├── nl-NL │ │ └── translation.json │ │ ├── no-NO │ │ └── translation.json │ │ ├── pl-PL │ │ └── translation.json │ │ ├── pt-BR │ │ └── translation.json │ │ ├── pt-PT │ │ └── translation.json │ │ ├── ro-RO │ │ └── translation.json │ │ ├── ru-RU │ │ └── translation.json │ │ ├── sv-SE │ │ └── translation.json │ │ ├── th-TH │ │ └── translation.json │ │ ├── tr-TR │ │ └── translation.json │ │ ├── uk-UA │ │ └── translation.json │ │ ├── vi-VN │ │ └── translation.json │ │ ├── zh-CN │ │ └── translation.json │ │ └── zh-TW │ │ └── translation.json ├── pages │ ├── _app.tsx │ └── index.tsx ├── stores │ ├── idleStore.ts │ ├── navigationStore.ts │ ├── searchStore.ts │ ├── stateStore.ts │ ├── updateStore.ts │ └── userStore.ts ├── styles │ ├── ChangelogModal.module.css │ └── globals.css ├── types │ ├── achievment.ts │ ├── game.ts │ ├── index.ts │ ├── invoke.ts │ ├── log.ts │ ├── navigation.ts │ ├── settings.ts │ ├── sort.ts │ ├── tradingcard.ts │ ├── update.ts │ └── user.ts └── utils │ ├── achievements.ts │ ├── automation.ts │ ├── idle.ts │ ├── supabaseClient.ts │ ├── tasks.ts │ └── toasts.tsx ├── tailwind.config.mjs └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [zevnda] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/ISSUE_TEMPLATE/issue_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/crowdin.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/workflows/crowdin.yml -------------------------------------------------------------------------------- /.github/workflows/discord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/workflows/discord.yml -------------------------------------------------------------------------------- /.github/workflows/labeler-history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/workflows/labeler-history.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | public-hoist-pattern[]=*@heroui/* -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/.prettierignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/app/(home)/changelog/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/(home)/changelog/[slug]/page.tsx -------------------------------------------------------------------------------- /docs/app/(home)/changelog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/(home)/changelog/page.tsx -------------------------------------------------------------------------------- /docs/app/(home)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/(home)/layout.tsx -------------------------------------------------------------------------------- /docs/app/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/(home)/page.tsx -------------------------------------------------------------------------------- /docs/app/alternatives/archisteamfarm/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/alternatives/archisteamfarm/page.tsx -------------------------------------------------------------------------------- /docs/app/alternatives/idle-master/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/alternatives/idle-master/page.tsx -------------------------------------------------------------------------------- /docs/app/alternatives/steam-achievement-manager/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/alternatives/steam-achievement-manager/page.tsx -------------------------------------------------------------------------------- /docs/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/api/search/route.ts -------------------------------------------------------------------------------- /docs/app/components/AdOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/AdOverlay.tsx -------------------------------------------------------------------------------- /docs/app/components/HelpDesk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/HelpDesk.tsx -------------------------------------------------------------------------------- /docs/app/components/TelemetryLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/TelemetryLoader.tsx -------------------------------------------------------------------------------- /docs/app/components/content/CardLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/content/CardLink.tsx -------------------------------------------------------------------------------- /docs/app/components/content/Cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/content/Cards.tsx -------------------------------------------------------------------------------- /docs/app/components/content/CopyableFAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/content/CopyableFAQ.tsx -------------------------------------------------------------------------------- /docs/app/components/content/DocsCTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/content/DocsCTA.tsx -------------------------------------------------------------------------------- /docs/app/components/content/MockButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/content/MockButton.tsx -------------------------------------------------------------------------------- /docs/app/components/home/CTASection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/home/CTASection.tsx -------------------------------------------------------------------------------- /docs/app/components/home/ComparisonSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/home/ComparisonSection.tsx -------------------------------------------------------------------------------- /docs/app/components/home/FAQSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/home/FAQSection.tsx -------------------------------------------------------------------------------- /docs/app/components/home/FeaturesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/home/FeaturesSection.tsx -------------------------------------------------------------------------------- /docs/app/components/home/FooterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/home/FooterSection.tsx -------------------------------------------------------------------------------- /docs/app/components/home/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/home/HeroSection.tsx -------------------------------------------------------------------------------- /docs/app/components/home/SecuritySection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/home/SecuritySection.tsx -------------------------------------------------------------------------------- /docs/app/components/home/StatsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/home/StatsSection.tsx -------------------------------------------------------------------------------- /docs/app/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/components/search.tsx -------------------------------------------------------------------------------- /docs/app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /docs/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/docs/layout.tsx -------------------------------------------------------------------------------- /docs/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/favicon.ico -------------------------------------------------------------------------------- /docs/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/globals.css -------------------------------------------------------------------------------- /docs/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/layout.tsx -------------------------------------------------------------------------------- /docs/app/llms-full.txt/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/llms-full.txt/route.ts -------------------------------------------------------------------------------- /docs/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/manifest.ts -------------------------------------------------------------------------------- /docs/app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/privacy/page.tsx -------------------------------------------------------------------------------- /docs/app/supported-games/[appName]/AdComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/supported-games/[appName]/AdComponent.tsx -------------------------------------------------------------------------------- /docs/app/supported-games/[appName]/AdComponentTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/supported-games/[appName]/AdComponentTwo.tsx -------------------------------------------------------------------------------- /docs/app/supported-games/[appName]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/supported-games/[appName]/page.tsx -------------------------------------------------------------------------------- /docs/app/tos/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/app/tos/page.tsx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.0.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.1.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.10.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.10.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.11.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.11.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.12.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.12.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.13.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.2.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.3.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.4.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.5.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.6.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.6.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.7.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.8.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.8.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.3.9.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.3.9.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.4.6.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.4.6.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.4.7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.4.7.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.0.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.0.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.1.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.10.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.10.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.11.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.11.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.12.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.12.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.13.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.13.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.14.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.14.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.15.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.15.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.2.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.3.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.4.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.5.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.6.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.6.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.7.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.8.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.8.mdx -------------------------------------------------------------------------------- /docs/content/changelog/2.5.9.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/changelog/2.5.9.mdx -------------------------------------------------------------------------------- /docs/content/docs/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/faq.mdx -------------------------------------------------------------------------------- /docs/content/docs/faqData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/faqData.ts -------------------------------------------------------------------------------- /docs/content/docs/features/achievement-manager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/achievement-manager.mdx -------------------------------------------------------------------------------- /docs/content/docs/features/achievement-unlocker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/achievement-unlocker.mdx -------------------------------------------------------------------------------- /docs/content/docs/features/auto-idler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/auto-idler.mdx -------------------------------------------------------------------------------- /docs/content/docs/features/card-farming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/card-farming.mdx -------------------------------------------------------------------------------- /docs/content/docs/features/free-games.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/free-games.mdx -------------------------------------------------------------------------------- /docs/content/docs/features/manual-add.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/manual-add.mdx -------------------------------------------------------------------------------- /docs/content/docs/features/playtime-booster.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/playtime-booster.mdx -------------------------------------------------------------------------------- /docs/content/docs/features/task-scheduling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/task-scheduling.mdx -------------------------------------------------------------------------------- /docs/content/docs/features/trading-card-manager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/features/trading-card-manager.mdx -------------------------------------------------------------------------------- /docs/content/docs/get-started/build-it-yourself.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/get-started/build-it-yourself.mdx -------------------------------------------------------------------------------- /docs/content/docs/get-started/how-to-sign-in.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/get-started/how-to-sign-in.mdx -------------------------------------------------------------------------------- /docs/content/docs/get-started/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/get-started/install.mdx -------------------------------------------------------------------------------- /docs/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/index.mdx -------------------------------------------------------------------------------- /docs/content/docs/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/meta.json -------------------------------------------------------------------------------- /docs/content/docs/settings/achievement-unlocker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/settings/achievement-unlocker.mdx -------------------------------------------------------------------------------- /docs/content/docs/settings/card-farming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/settings/card-farming.mdx -------------------------------------------------------------------------------- /docs/content/docs/settings/customization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/settings/customization.mdx -------------------------------------------------------------------------------- /docs/content/docs/settings/debug.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/settings/debug.mdx -------------------------------------------------------------------------------- /docs/content/docs/settings/free-games.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/settings/free-games.mdx -------------------------------------------------------------------------------- /docs/content/docs/settings/game-settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/settings/game-settings.mdx -------------------------------------------------------------------------------- /docs/content/docs/settings/general.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/settings/general.mdx -------------------------------------------------------------------------------- /docs/content/docs/settings/trading-card-manager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/settings/trading-card-manager.mdx -------------------------------------------------------------------------------- /docs/content/docs/steam-credentials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/steam-credentials.mdx -------------------------------------------------------------------------------- /docs/content/docs/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/content/docs/troubleshooting.mdx -------------------------------------------------------------------------------- /docs/lib/layout.shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/lib/layout.shared.tsx -------------------------------------------------------------------------------- /docs/lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/lib/source.ts -------------------------------------------------------------------------------- /docs/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/mdx-components.tsx -------------------------------------------------------------------------------- /docs/next-sitemap.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/next-sitemap.config.mjs -------------------------------------------------------------------------------- /docs/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/next.config.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/postcss.config.mjs -------------------------------------------------------------------------------- /docs/public/a99bafb2fec849c3abfd6d70326b67fa.txt: -------------------------------------------------------------------------------- 1 | a99bafb2fec849c3abfd6d70326b67fa -------------------------------------------------------------------------------- /docs/public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-8915288433444527, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /docs/public/asf-og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/public/asf-og-image.png -------------------------------------------------------------------------------- /docs/public/examples/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/public/examples/example.png -------------------------------------------------------------------------------- /docs/public/examples/profile-settings.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/public/examples/profile-settings.webp -------------------------------------------------------------------------------- /docs/public/im-og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/public/im-og-image.png -------------------------------------------------------------------------------- /docs/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/public/logo.svg -------------------------------------------------------------------------------- /docs/public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/public/og-image.png -------------------------------------------------------------------------------- /docs/public/sam-og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/public/sam-og-image.png -------------------------------------------------------------------------------- /docs/source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/source.config.ts -------------------------------------------------------------------------------- /docs/tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/tailwind.config.mjs -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/docs/vercel.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/latest.json -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/next.config.ts -------------------------------------------------------------------------------- /notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/notifications.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /public/app-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/app-logo.svg -------------------------------------------------------------------------------- /public/cover-art/1030300.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1030300.webp -------------------------------------------------------------------------------- /public/cover-art/1091500.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1091500.webp -------------------------------------------------------------------------------- /public/cover-art/1172470.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1172470.webp -------------------------------------------------------------------------------- /public/cover-art/1172710.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1172710.webp -------------------------------------------------------------------------------- /public/cover-art/1174180.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1174180.webp -------------------------------------------------------------------------------- /public/cover-art/1449110.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1449110.webp -------------------------------------------------------------------------------- /public/cover-art/1623730.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1623730.webp -------------------------------------------------------------------------------- /public/cover-art/1771300.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1771300.webp -------------------------------------------------------------------------------- /public/cover-art/1808500.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1808500.webp -------------------------------------------------------------------------------- /public/cover-art/1938090.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/1938090.webp -------------------------------------------------------------------------------- /public/cover-art/2001120.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/2001120.webp -------------------------------------------------------------------------------- /public/cover-art/221100.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/221100.webp -------------------------------------------------------------------------------- /public/cover-art/2246340.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/2246340.webp -------------------------------------------------------------------------------- /public/cover-art/230410.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/230410.webp -------------------------------------------------------------------------------- /public/cover-art/2322010.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/2322010.webp -------------------------------------------------------------------------------- /public/cover-art/236390.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/236390.webp -------------------------------------------------------------------------------- /public/cover-art/2507950.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/2507950.webp -------------------------------------------------------------------------------- /public/cover-art/252490.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/252490.webp -------------------------------------------------------------------------------- /public/cover-art/2531310.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/2531310.webp -------------------------------------------------------------------------------- /public/cover-art/2592160.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/2592160.webp -------------------------------------------------------------------------------- /public/cover-art/2651280.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/2651280.webp -------------------------------------------------------------------------------- /public/cover-art/271590.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/271590.webp -------------------------------------------------------------------------------- /public/cover-art/2767030.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/2767030.webp -------------------------------------------------------------------------------- /public/cover-art/3008130.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/3008130.webp -------------------------------------------------------------------------------- /public/cover-art/322170.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/322170.webp -------------------------------------------------------------------------------- /public/cover-art/3241660.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/3241660.webp -------------------------------------------------------------------------------- /public/cover-art/3564740.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/3564740.webp -------------------------------------------------------------------------------- /public/cover-art/381210.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/381210.webp -------------------------------------------------------------------------------- /public/cover-art/413150.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/413150.webp -------------------------------------------------------------------------------- /public/cover-art/578080.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/cover-art/578080.webp -------------------------------------------------------------------------------- /public/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/example.png -------------------------------------------------------------------------------- /public/fallback.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/fallback.webp -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/mock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/mock.webp -------------------------------------------------------------------------------- /public/powered-by-stripe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/powered-by-stripe.svg -------------------------------------------------------------------------------- /public/themes/black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/themes/black.webp -------------------------------------------------------------------------------- /public/themes/blue.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/themes/blue.webp -------------------------------------------------------------------------------- /public/themes/dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/themes/dark.webp -------------------------------------------------------------------------------- /public/themes/gold.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/themes/gold.webp -------------------------------------------------------------------------------- /public/themes/pink.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/themes/pink.webp -------------------------------------------------------------------------------- /public/themes/purple.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/themes/purple.webp -------------------------------------------------------------------------------- /public/themes/red.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/themes/red.webp -------------------------------------------------------------------------------- /public/webview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/public/webview.html -------------------------------------------------------------------------------- /src-tauri/.installed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/.installed -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/LICENSE -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/capabilities/desktop.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/icons/32x32_running.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/src/achievement_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/achievement_manager.rs -------------------------------------------------------------------------------- /src-tauri/src/automation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/automation.rs -------------------------------------------------------------------------------- /src-tauri/src/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/crypto.rs -------------------------------------------------------------------------------- /src-tauri/src/custom_lists.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/custom_lists.rs -------------------------------------------------------------------------------- /src-tauri/src/game_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/game_data.rs -------------------------------------------------------------------------------- /src-tauri/src/idling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/idling.rs -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/logging.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/process_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/process_handler.rs -------------------------------------------------------------------------------- /src-tauri/src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/settings.rs -------------------------------------------------------------------------------- /src-tauri/src/trading_cards.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/trading_cards.rs -------------------------------------------------------------------------------- /src-tauri/src/user_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/user_data.rs -------------------------------------------------------------------------------- /src-tauri/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/src/utils.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/components/achievements/AchievementButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/achievements/AchievementButtons.tsx -------------------------------------------------------------------------------- /src/components/achievements/Achievements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/achievements/Achievements.tsx -------------------------------------------------------------------------------- /src/components/achievements/AchievementsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/achievements/AchievementsList.tsx -------------------------------------------------------------------------------- /src/components/achievements/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/achievements/PageHeader.tsx -------------------------------------------------------------------------------- /src/components/achievements/StatisticButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/achievements/StatisticButtons.tsx -------------------------------------------------------------------------------- /src/components/achievements/StatisticsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/achievements/StatisticsList.tsx -------------------------------------------------------------------------------- /src/components/automation/AchievementUnlocker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/automation/AchievementUnlocker.tsx -------------------------------------------------------------------------------- /src/components/automation/CardFarming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/automation/CardFarming.tsx -------------------------------------------------------------------------------- /src/components/customlists/AchievementOrderModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/customlists/AchievementOrderModal.tsx -------------------------------------------------------------------------------- /src/components/customlists/CustomList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/customlists/CustomList.tsx -------------------------------------------------------------------------------- /src/components/customlists/EditListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/customlists/EditListModal.tsx -------------------------------------------------------------------------------- /src/components/customlists/ManualAdd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/customlists/ManualAdd.tsx -------------------------------------------------------------------------------- /src/components/customlists/RecommendedCardDropsCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/customlists/RecommendedCardDropsCarousel.tsx -------------------------------------------------------------------------------- /src/components/gameslist/CardMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/gameslist/CardMenu.tsx -------------------------------------------------------------------------------- /src/components/gameslist/FreeGamesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/gameslist/FreeGamesList.tsx -------------------------------------------------------------------------------- /src/components/gameslist/GamesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/gameslist/GamesList.tsx -------------------------------------------------------------------------------- /src/components/gameslist/IdlingGamesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/gameslist/IdlingGamesList.tsx -------------------------------------------------------------------------------- /src/components/gameslist/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/gameslist/PageHeader.tsx -------------------------------------------------------------------------------- /src/components/gameslist/Private.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/gameslist/Private.tsx -------------------------------------------------------------------------------- /src/components/gameslist/RecentGamesCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/gameslist/RecentGamesCarousel.tsx -------------------------------------------------------------------------------- /src/components/gameslist/RecommendedGamesCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/gameslist/RecommendedGamesCarousel.tsx -------------------------------------------------------------------------------- /src/components/layout/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/layout/Dashboard.tsx -------------------------------------------------------------------------------- /src/components/layout/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/layout/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/layout/Layout.tsx -------------------------------------------------------------------------------- /src/components/layout/SignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/layout/SignIn.tsx -------------------------------------------------------------------------------- /src/components/layout/Window.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/layout/Window.tsx -------------------------------------------------------------------------------- /src/components/notifications/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/notifications/Notifications.tsx -------------------------------------------------------------------------------- /src/components/settings/AchievementSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/AchievementSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/CardSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/CardSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/ClearData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/ClearData.tsx -------------------------------------------------------------------------------- /src/components/settings/CustomizationSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/CustomizationSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/ExportSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/ExportSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/FreeGamesSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/FreeGamesSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/GameSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/GameSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/GeneralSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/GeneralSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/Logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/Logs.tsx -------------------------------------------------------------------------------- /src/components/settings/OpenSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/OpenSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/ResetSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/ResetSettings.tsx -------------------------------------------------------------------------------- /src/components/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/Settings.tsx -------------------------------------------------------------------------------- /src/components/settings/SettingsSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/SettingsSwitch.tsx -------------------------------------------------------------------------------- /src/components/settings/SocialButtons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/SocialButtons.tsx -------------------------------------------------------------------------------- /src/components/settings/SteamCredentials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/SteamCredentials.tsx -------------------------------------------------------------------------------- /src/components/settings/TradingCardManagerSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/settings/TradingCardManagerSettings.tsx -------------------------------------------------------------------------------- /src/components/trading-cards/PageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/trading-cards/PageHeader.tsx -------------------------------------------------------------------------------- /src/components/trading-cards/PriceData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/trading-cards/PriceData.tsx -------------------------------------------------------------------------------- /src/components/trading-cards/PriceInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/trading-cards/PriceInput.tsx -------------------------------------------------------------------------------- /src/components/trading-cards/TradingCardsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/trading-cards/TradingCardsList.tsx -------------------------------------------------------------------------------- /src/components/ui/AdSlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/AdSlot.tsx -------------------------------------------------------------------------------- /src/components/ui/Beta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/Beta.tsx -------------------------------------------------------------------------------- /src/components/ui/ChangelogModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/ChangelogModal.tsx -------------------------------------------------------------------------------- /src/components/ui/CustomModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/CustomModal.tsx -------------------------------------------------------------------------------- /src/components/ui/CustomTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/CustomTooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/ErrorToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/ErrorToast.tsx -------------------------------------------------------------------------------- /src/components/ui/ExtLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/ExtLink.tsx -------------------------------------------------------------------------------- /src/components/ui/GameCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/GameCard.tsx -------------------------------------------------------------------------------- /src/components/ui/GoProModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/GoProModal.tsx -------------------------------------------------------------------------------- /src/components/ui/IdleTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/IdleTimer.tsx -------------------------------------------------------------------------------- /src/components/ui/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/Loader.tsx -------------------------------------------------------------------------------- /src/components/ui/ProBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/ProBadge.tsx -------------------------------------------------------------------------------- /src/components/ui/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/ui/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/SideBar.tsx -------------------------------------------------------------------------------- /src/components/ui/SignInHero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/SignInHero.tsx -------------------------------------------------------------------------------- /src/components/ui/SteamWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/SteamWarning.tsx -------------------------------------------------------------------------------- /src/components/ui/UpdateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/UpdateButton.tsx -------------------------------------------------------------------------------- /src/components/ui/WebviewWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/WebviewWindow.tsx -------------------------------------------------------------------------------- /src/components/ui/header/GoPro.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/header/GoPro.tsx -------------------------------------------------------------------------------- /src/components/ui/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/header/Header.tsx -------------------------------------------------------------------------------- /src/components/ui/header/HeaderMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/header/HeaderMenu.tsx -------------------------------------------------------------------------------- /src/components/ui/header/HeaderTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/header/HeaderTitle.tsx -------------------------------------------------------------------------------- /src/components/ui/header/HelpDesk.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/header/HelpDesk.tsx -------------------------------------------------------------------------------- /src/components/ui/header/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/header/Logo.tsx -------------------------------------------------------------------------------- /src/components/ui/i18n/CurrencySwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/i18n/CurrencySwitch.tsx -------------------------------------------------------------------------------- /src/components/ui/i18n/I18nProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/i18n/I18nProvider.tsx -------------------------------------------------------------------------------- /src/components/ui/i18n/LanguageSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/i18n/LanguageSwitch.tsx -------------------------------------------------------------------------------- /src/components/ui/theme/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/components/ui/theme/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/hooks/achievements/useAchievementButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/achievements/useAchievementButtons.ts -------------------------------------------------------------------------------- /src/hooks/achievements/useAchievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/achievements/useAchievements.ts -------------------------------------------------------------------------------- /src/hooks/achievements/useStatisticButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/achievements/useStatisticButtons.ts -------------------------------------------------------------------------------- /src/hooks/automation/useAchievementUnlocker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/automation/useAchievementUnlocker.ts -------------------------------------------------------------------------------- /src/hooks/automation/useAutomateButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/automation/useAutomateButtons.ts -------------------------------------------------------------------------------- /src/hooks/automation/useCardFarming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/automation/useCardFarming.ts -------------------------------------------------------------------------------- /src/hooks/customlists/useCustomList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/customlists/useCustomList.ts -------------------------------------------------------------------------------- /src/hooks/customlists/useManualAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/customlists/useManualAdd.ts -------------------------------------------------------------------------------- /src/hooks/gameslist/useGamesList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/gameslist/useGamesList.ts -------------------------------------------------------------------------------- /src/hooks/gameslist/usePageHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/gameslist/usePageHeader.ts -------------------------------------------------------------------------------- /src/hooks/layout/useSignIn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/layout/useSignIn.ts -------------------------------------------------------------------------------- /src/hooks/layout/useWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/layout/useWindow.ts -------------------------------------------------------------------------------- /src/hooks/notifications/useNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/notifications/useNotifications.ts -------------------------------------------------------------------------------- /src/hooks/settings/useAchievementSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/settings/useAchievementSettings.ts -------------------------------------------------------------------------------- /src/hooks/settings/useCardSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/settings/useCardSettings.ts -------------------------------------------------------------------------------- /src/hooks/settings/useClearData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/settings/useClearData.ts -------------------------------------------------------------------------------- /src/hooks/settings/useGameSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/settings/useGameSettings.ts -------------------------------------------------------------------------------- /src/hooks/settings/useGeneralSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/settings/useGeneralSettings.ts -------------------------------------------------------------------------------- /src/hooks/settings/useLogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/settings/useLogs.ts -------------------------------------------------------------------------------- /src/hooks/settings/useResetSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/settings/useResetSettings.ts -------------------------------------------------------------------------------- /src/hooks/settings/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/settings/useSettings.ts -------------------------------------------------------------------------------- /src/hooks/trading-cards/useTradingCardsList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/trading-cards/useTradingCardsList.ts -------------------------------------------------------------------------------- /src/hooks/ui/useGameCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/ui/useGameCard.ts -------------------------------------------------------------------------------- /src/hooks/ui/useHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/ui/useHeader.ts -------------------------------------------------------------------------------- /src/hooks/ui/useSideBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/hooks/ui/useSideBar.ts -------------------------------------------------------------------------------- /src/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/i18n.ts -------------------------------------------------------------------------------- /src/i18n/locales/bg-BG/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/bg-BG/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/cs-CZ/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/cs-CZ/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/da-DK/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/da-DK/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/de-DE/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/de-DE/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/el-GR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/el-GR/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/en-US/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/en-US/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/es-ES/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/es-ES/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/fi-FI/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/fi-FI/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/fr-FR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/fr-FR/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/he-IL/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/he-IL/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/hi-IN/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/hi-IN/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/hu-HU/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/hu-HU/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/id-ID/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/id-ID/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/it-IT/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/it-IT/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/ja-JP/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/ja-JP/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/ko-KR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/ko-KR/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/nl-NL/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/nl-NL/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/no-NO/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/no-NO/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/pl-PL/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/pl-PL/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/pt-BR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/pt-BR/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/pt-PT/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/pt-PT/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/ro-RO/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/ro-RO/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/ru-RU/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/ru-RU/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/sv-SE/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/sv-SE/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/th-TH/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/th-TH/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/tr-TR/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/tr-TR/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/uk-UA/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/uk-UA/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/vi-VN/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/vi-VN/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/zh-CN/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/zh-CN/translation.json -------------------------------------------------------------------------------- /src/i18n/locales/zh-TW/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/i18n/locales/zh-TW/translation.json -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/stores/idleStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/stores/idleStore.ts -------------------------------------------------------------------------------- /src/stores/navigationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/stores/navigationStore.ts -------------------------------------------------------------------------------- /src/stores/searchStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/stores/searchStore.ts -------------------------------------------------------------------------------- /src/stores/stateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/stores/stateStore.ts -------------------------------------------------------------------------------- /src/stores/updateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/stores/updateStore.ts -------------------------------------------------------------------------------- /src/stores/userStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/stores/userStore.ts -------------------------------------------------------------------------------- /src/styles/ChangelogModal.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/styles/ChangelogModal.module.css -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/achievment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/achievment.ts -------------------------------------------------------------------------------- /src/types/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/game.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/invoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/invoke.ts -------------------------------------------------------------------------------- /src/types/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/log.ts -------------------------------------------------------------------------------- /src/types/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/navigation.ts -------------------------------------------------------------------------------- /src/types/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/settings.ts -------------------------------------------------------------------------------- /src/types/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/sort.ts -------------------------------------------------------------------------------- /src/types/tradingcard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/tradingcard.ts -------------------------------------------------------------------------------- /src/types/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/update.ts -------------------------------------------------------------------------------- /src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/types/user.ts -------------------------------------------------------------------------------- /src/utils/achievements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/utils/achievements.ts -------------------------------------------------------------------------------- /src/utils/automation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/utils/automation.ts -------------------------------------------------------------------------------- /src/utils/idle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/utils/idle.ts -------------------------------------------------------------------------------- /src/utils/supabaseClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/utils/supabaseClient.ts -------------------------------------------------------------------------------- /src/utils/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/utils/tasks.ts -------------------------------------------------------------------------------- /src/utils/toasts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/src/utils/toasts.tsx -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zevnda/steam-game-idler/HEAD/tsconfig.json --------------------------------------------------------------------------------