├── .github └── workflows │ └── release.yml ├── .gitignore ├── .nuxtignore ├── .nvmrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── app ├── app.config.ts ├── app.vue ├── assets │ ├── css │ │ └── main.css │ └── logo.svg ├── components │ ├── Design │ │ ├── BottomBlob.vue │ │ └── TopBlob.vue │ ├── Layout │ │ └── Tile.vue │ └── Site │ │ └── Navbar.vue ├── composables │ └── pages.ts ├── layouts │ ├── blank.vue │ ├── default.vue │ └── home.vue ├── modules │ └── tauri.ts ├── pages │ ├── [...all].vue │ ├── commands.vue │ ├── file.vue │ ├── index.vue │ ├── notifications.vue │ ├── os.vue │ ├── store.vue │ └── webview.vue └── router.options.ts ├── bump.config.ts ├── bun.lock ├── eslint.config.mjs ├── nuxt.config.ts ├── package.json ├── preview.md ├── public ├── logo.png ├── page-commands.png ├── page-file-system.png ├── page-notifications.png ├── page-os-info.png ├── page-storage.png ├── page-webview.png └── screenshot.png ├── src-tauri ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── main.json ├── gen │ └── schemas │ │ ├── acl-manifests.json │ │ ├── capabilities.json │ │ ├── desktop-schema.json │ │ └── macOS-schema.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── android │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── ios │ │ ├── AppIcon-20x20@1x.png │ │ ├── AppIcon-20x20@2x-1.png │ │ ├── AppIcon-20x20@2x.png │ │ ├── AppIcon-20x20@3x.png │ │ ├── AppIcon-29x29@1x.png │ │ ├── AppIcon-29x29@2x-1.png │ │ ├── AppIcon-29x29@2x.png │ │ ├── AppIcon-29x29@3x.png │ │ ├── AppIcon-40x40@1x.png │ │ ├── AppIcon-40x40@2x-1.png │ │ ├── AppIcon-40x40@2x.png │ │ ├── AppIcon-40x40@3x.png │ │ ├── AppIcon-512@2x.png │ │ ├── AppIcon-60x60@2x.png │ │ ├── AppIcon-60x60@3x.png │ │ ├── AppIcon-76x76@1x.png │ │ ├── AppIcon-76x76@2x.png │ │ └── AppIcon-83.5x83.5@2x.png ├── src │ ├── lib.rs │ └── main.rs └── tauri.conf.json ├── tsconfig.json └── types └── global.d.ts /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuxtignore: -------------------------------------------------------------------------------- 1 | ./* 2 | !./app/** -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 23.8.0 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/README.md -------------------------------------------------------------------------------- /app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/app.config.ts -------------------------------------------------------------------------------- /app/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/app.vue -------------------------------------------------------------------------------- /app/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/assets/css/main.css -------------------------------------------------------------------------------- /app/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/assets/logo.svg -------------------------------------------------------------------------------- /app/components/Design/BottomBlob.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/components/Design/BottomBlob.vue -------------------------------------------------------------------------------- /app/components/Design/TopBlob.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/components/Design/TopBlob.vue -------------------------------------------------------------------------------- /app/components/Layout/Tile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/components/Layout/Tile.vue -------------------------------------------------------------------------------- /app/components/Site/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/components/Site/Navbar.vue -------------------------------------------------------------------------------- /app/composables/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/composables/pages.ts -------------------------------------------------------------------------------- /app/layouts/blank.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/layouts/blank.vue -------------------------------------------------------------------------------- /app/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/layouts/default.vue -------------------------------------------------------------------------------- /app/layouts/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/layouts/home.vue -------------------------------------------------------------------------------- /app/modules/tauri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/modules/tauri.ts -------------------------------------------------------------------------------- /app/pages/[...all].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/pages/[...all].vue -------------------------------------------------------------------------------- /app/pages/commands.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/pages/commands.vue -------------------------------------------------------------------------------- /app/pages/file.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/pages/file.vue -------------------------------------------------------------------------------- /app/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/pages/index.vue -------------------------------------------------------------------------------- /app/pages/notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/pages/notifications.vue -------------------------------------------------------------------------------- /app/pages/os.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/pages/os.vue -------------------------------------------------------------------------------- /app/pages/store.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/pages/store.vue -------------------------------------------------------------------------------- /app/pages/webview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/pages/webview.vue -------------------------------------------------------------------------------- /app/router.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/app/router.options.ts -------------------------------------------------------------------------------- /bump.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/bump.config.ts -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/bun.lock -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/package.json -------------------------------------------------------------------------------- /preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/preview.md -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/page-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/public/page-commands.png -------------------------------------------------------------------------------- /public/page-file-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/public/page-file-system.png -------------------------------------------------------------------------------- /public/page-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/public/page-notifications.png -------------------------------------------------------------------------------- /public/page-os-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/public/page-os-info.png -------------------------------------------------------------------------------- /public/page-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/public/page-storage.png -------------------------------------------------------------------------------- /public/page-webview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/public/page-webview.png -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/public/screenshot.png -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/capabilities/main.json -------------------------------------------------------------------------------- /src-tauri/gen/schemas/acl-manifests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/gen/schemas/acl-manifests.json -------------------------------------------------------------------------------- /src-tauri/gen/schemas/capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/gen/schemas/capabilities.json -------------------------------------------------------------------------------- /src-tauri/gen/schemas/desktop-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/gen/schemas/desktop-schema.json -------------------------------------------------------------------------------- /src-tauri/gen/schemas/macOS-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/gen/schemas/macOS-schema.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-512@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolaSpadari/nuxtor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/global.d.ts: -------------------------------------------------------------------------------- 1 | declare interface ModuleOptions { 2 | prefix: false | string 3 | } 4 | --------------------------------------------------------------------------------