├── .babelrc ├── .env ├── .gitignore ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public ├── forum.png ├── gephlogo-rocket.png ├── gephlogo.png ├── github.svg ├── telegram.svg ├── twitter.png └── vite.svg ├── src ├── Announcements.svelte ├── App.svelte ├── Home.svelte ├── Login.svelte ├── Logs.svelte ├── Settings.svelte ├── Wizard.svelte ├── app.css ├── assets │ └── svelte.svg ├── graphs │ └── Graph.svelte ├── home │ ├── ActiveExit.svelte │ ├── BottomButtons.svelte │ ├── ExitSelector.svelte │ ├── Stats.svelte │ └── UserInfo.svelte ├── inter-font │ ├── Inter-Black.woff │ ├── Inter-Black.woff2 │ ├── Inter-BlackItalic.woff │ ├── Inter-BlackItalic.woff2 │ ├── Inter-Bold.woff │ ├── Inter-Bold.woff2 │ ├── Inter-BoldItalic.woff │ ├── Inter-BoldItalic.woff2 │ ├── Inter-ExtraBold.woff │ ├── Inter-ExtraBold.woff2 │ ├── Inter-ExtraBoldItalic.woff │ ├── Inter-ExtraBoldItalic.woff2 │ ├── Inter-ExtraLight.woff │ ├── Inter-ExtraLight.woff2 │ ├── Inter-ExtraLightItalic.woff │ ├── Inter-ExtraLightItalic.woff2 │ ├── Inter-Italic.woff │ ├── Inter-Italic.woff2 │ ├── Inter-Light.woff │ ├── Inter-Light.woff2 │ ├── Inter-LightItalic.woff │ ├── Inter-LightItalic.woff2 │ ├── Inter-Medium.woff │ ├── Inter-Medium.woff2 │ ├── Inter-MediumItalic.woff │ ├── Inter-MediumItalic.woff2 │ ├── Inter-Regular.woff │ ├── Inter-Regular.woff2 │ ├── Inter-SemiBold.woff │ ├── Inter-SemiBold.woff2 │ ├── Inter-SemiBoldItalic.woff │ ├── Inter-SemiBoldItalic.woff2 │ ├── Inter-Thin.woff │ ├── Inter-Thin.woff2 │ ├── Inter-ThinItalic.woff │ ├── Inter-ThinItalic.woff2 │ ├── Inter-italic.var.woff2 │ ├── Inter-roman.var.woff2 │ ├── Inter.var.woff2 │ └── inter.css ├── lib │ ├── Flag.svelte │ ├── GButton.svelte │ ├── Spinner.svelte │ ├── l10n.csv │ ├── l10n.ts │ ├── l10n_old.csv │ ├── modals.ts │ ├── prefs.ts │ └── utils.ts ├── login │ └── Register.svelte ├── main.ts ├── native-gate-mock-logs.ts ├── native-gate-mock-rss.ts ├── native-gate.ts ├── settings │ └── AppPicker.svelte ├── uPlot.min.css ├── vazirmatn-font │ ├── vazirmatn.css │ └── webfonts │ │ ├── Vazirmatn-Black.woff2 │ │ ├── Vazirmatn-Bold.woff2 │ │ ├── Vazirmatn-ExtraBold.woff2 │ │ ├── Vazirmatn-ExtraLight.woff2 │ │ ├── Vazirmatn-Light.woff2 │ │ ├── Vazirmatn-Medium.woff2 │ │ ├── Vazirmatn-Regular.woff2 │ │ ├── Vazirmatn-SemiBold.woff2 │ │ ├── Vazirmatn-Thin.woff2 │ │ └── Vazirmatn[wght].woff2 └── vite-env.d.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/.babelrc -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | GENERATE_SOURCEMAP=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/public/forum.png -------------------------------------------------------------------------------- /public/gephlogo-rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/public/gephlogo-rocket.png -------------------------------------------------------------------------------- /public/gephlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/public/gephlogo.png -------------------------------------------------------------------------------- /public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/public/github.svg -------------------------------------------------------------------------------- /public/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/public/telegram.svg -------------------------------------------------------------------------------- /public/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/public/twitter.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/Announcements.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/Announcements.svelte -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/Home.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/Home.svelte -------------------------------------------------------------------------------- /src/Login.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/Login.svelte -------------------------------------------------------------------------------- /src/Logs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/Logs.svelte -------------------------------------------------------------------------------- /src/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/Settings.svelte -------------------------------------------------------------------------------- /src/Wizard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/Wizard.svelte -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/app.css -------------------------------------------------------------------------------- /src/assets/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/assets/svelte.svg -------------------------------------------------------------------------------- /src/graphs/Graph.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/graphs/Graph.svelte -------------------------------------------------------------------------------- /src/home/ActiveExit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/home/ActiveExit.svelte -------------------------------------------------------------------------------- /src/home/BottomButtons.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/home/BottomButtons.svelte -------------------------------------------------------------------------------- /src/home/ExitSelector.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/home/ExitSelector.svelte -------------------------------------------------------------------------------- /src/home/Stats.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/home/Stats.svelte -------------------------------------------------------------------------------- /src/home/UserInfo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/home/UserInfo.svelte -------------------------------------------------------------------------------- /src/inter-font/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Black.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Black.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Bold.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Bold.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ExtraLight.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-ExtraLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ExtraLightItalic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-ExtraLightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ExtraLightItalic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Italic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Italic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Light.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Light.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-LightItalic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-LightItalic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Medium.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Medium.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Regular.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Regular.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-SemiBold.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Thin.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-Thin.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ThinItalic.woff -------------------------------------------------------------------------------- /src/inter-font/Inter-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter-roman.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter-roman.var.woff2 -------------------------------------------------------------------------------- /src/inter-font/Inter.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/Inter.var.woff2 -------------------------------------------------------------------------------- /src/inter-font/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/inter-font/inter.css -------------------------------------------------------------------------------- /src/lib/Flag.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/Flag.svelte -------------------------------------------------------------------------------- /src/lib/GButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/GButton.svelte -------------------------------------------------------------------------------- /src/lib/Spinner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/Spinner.svelte -------------------------------------------------------------------------------- /src/lib/l10n.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/l10n.csv -------------------------------------------------------------------------------- /src/lib/l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/l10n.ts -------------------------------------------------------------------------------- /src/lib/l10n_old.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/l10n_old.csv -------------------------------------------------------------------------------- /src/lib/modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/modals.ts -------------------------------------------------------------------------------- /src/lib/prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/prefs.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/login/Register.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/login/Register.svelte -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/native-gate-mock-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/native-gate-mock-logs.ts -------------------------------------------------------------------------------- /src/native-gate-mock-rss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/native-gate-mock-rss.ts -------------------------------------------------------------------------------- /src/native-gate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/native-gate.ts -------------------------------------------------------------------------------- /src/settings/AppPicker.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/settings/AppPicker.svelte -------------------------------------------------------------------------------- /src/uPlot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/uPlot.min.css -------------------------------------------------------------------------------- /src/vazirmatn-font/vazirmatn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/vazirmatn.css -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-Black.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-Bold.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-ExtraLight.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-Light.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-Medium.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-Regular.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-SemiBold.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn-Thin.woff2 -------------------------------------------------------------------------------- /src/vazirmatn-font/webfonts/Vazirmatn[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vazirmatn-font/webfonts/Vazirmatn[wght].woff2 -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geph-official/gephgui/HEAD/vite.config.ts --------------------------------------------------------------------------------