├── .browserslistrc ├── .eslintrc.js ├── .firebaserc ├── .gitignore ├── .nvmrc ├── .prettierrc ├── Dockerfile ├── README.md ├── README_Linux.md ├── babel.config.js ├── database.rules.json ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── .gitignore ├── package-lock.json ├── package.json ├── src │ ├── environment.ts │ ├── index.ts │ └── template.ts ├── tsconfig.json ├── tslint.json └── ui-debug.log ├── package.json ├── public ├── favicon.ico ├── icon.png ├── img │ └── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── msapplication-icon-144x144.png │ │ └── mstile-150x150.png ├── index.html └── robots.txt ├── scripts └── notarize.js ├── src ├── assets │ ├── css │ │ └── snow.css │ ├── icons │ │ ├── clip.ai │ │ ├── clip.png │ │ ├── clip.svg │ │ ├── clips-small.ai │ │ ├── infiniti-opensource.ai │ │ ├── infiniti-opensource.svg │ │ ├── logo.svg │ │ └── watermark.png │ └── win-icons │ │ ├── close-k-10.png │ │ ├── close-k-12.png │ │ ├── close-k-15.png │ │ ├── close-k-20.png │ │ ├── close-k-24.png │ │ ├── close-k-30.png │ │ ├── close-w-10.png │ │ ├── close-w-12.png │ │ ├── close-w-15.png │ │ ├── close-w-20.png │ │ ├── close-w-24.png │ │ ├── close-w-30.png │ │ ├── max-k-10.png │ │ ├── max-k-12.png │ │ ├── max-k-15.png │ │ ├── max-k-20.png │ │ ├── max-k-24.png │ │ ├── max-k-30.png │ │ ├── max-w-10.png │ │ ├── max-w-12.png │ │ ├── max-w-15.png │ │ ├── max-w-20.png │ │ ├── max-w-24.png │ │ ├── max-w-30.png │ │ ├── min-k-10.png │ │ ├── min-k-12.png │ │ ├── min-k-15.png │ │ ├── min-k-20.png │ │ ├── min-k-24.png │ │ ├── min-k-30.png │ │ ├── min-w-10.png │ │ ├── min-w-12.png │ │ ├── min-w-15.png │ │ ├── min-w-20.png │ │ ├── min-w-24.png │ │ ├── min-w-30.png │ │ ├── restore-k-10.png │ │ ├── restore-k-12.png │ │ ├── restore-k-15.png │ │ ├── restore-k-20.png │ │ ├── restore-k-24.png │ │ ├── restore-k-30.png │ │ ├── restore-w-10.png │ │ ├── restore-w-12.png │ │ ├── restore-w-15.png │ │ ├── restore-w-20.png │ │ ├── restore-w-24.png │ │ └── restore-w-30.png ├── background.ts ├── electron │ ├── environment.ts │ ├── handlers │ │ ├── analytics.ts │ │ ├── clipboard.ts │ │ ├── configuration.ts │ │ ├── google-drive.ts │ │ ├── leveldown.ts │ │ ├── payments.ts │ │ ├── remote.ts │ │ ├── sign-in.ts │ │ └── socket-io.ts │ ├── index.ts │ ├── services │ │ ├── analytics.ts │ │ ├── auto-launcher.ts │ │ ├── auto-updater.ts │ │ ├── clipboard.ts │ │ ├── electron-store.ts │ │ ├── google-auth.ts │ │ ├── google-drive.ts │ │ ├── in-app-purachase.ts │ │ ├── shortcuts.ts │ │ ├── socket.io │ │ │ ├── client.ts │ │ │ ├── server.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ └── network.ts │ │ ├── tray.ts │ │ ├── windows │ │ │ ├── editor.ts │ │ │ └── main.ts │ │ └── with-editor.ts │ └── utils │ │ └── node.ts ├── global.d.ts ├── icons │ ├── clip.ai │ ├── clip.png │ ├── clip.svg │ ├── clips-small.ai │ ├── infiniti-opensource.ai │ └── infiniti-opensource.svg ├── main.ts ├── plugins │ └── vuetify.ts ├── registerServiceWorker.ts ├── renderer │ ├── App.vue │ ├── AppEditor.vue │ ├── components │ │ ├── AppBar.vue │ │ ├── AppBarSmall.vue │ │ ├── Grid.vue │ │ ├── NavDrawer.vue │ │ ├── NavDrawerConfig.vue │ │ ├── Room.vue │ │ ├── SearchBar.vue │ │ └── settings │ │ │ ├── Advanced.vue │ │ │ ├── General.vue │ │ │ └── Language.vue │ ├── environment.ts │ ├── invokers │ │ ├── analytics.ts │ │ ├── clipboard.ts │ │ ├── configuration.ts │ │ ├── google-drive.ts │ │ ├── leveldown.ts │ │ ├── payments.ts │ │ ├── remote.ts │ │ ├── sign-in.ts │ │ └── socket-io.ts │ ├── router │ │ └── index.ts │ ├── store │ │ ├── clips │ │ │ ├── actions.ts │ │ │ ├── getters.ts │ │ │ ├── index.ts │ │ │ └── mutations.ts │ │ ├── configuration │ │ │ ├── actions.ts │ │ │ ├── getters.ts │ │ │ ├── index.ts │ │ │ └── mutations.ts │ │ ├── index.ts │ │ ├── network │ │ │ ├── actions.ts │ │ │ ├── getters.ts │ │ │ ├── index.ts │ │ │ └── mutations.ts │ │ └── types.ts │ ├── subscriptions │ │ └── index.ts │ ├── utils │ │ ├── analytics-vue.ts │ │ ├── basevue.ts │ │ ├── firebase.ts │ │ ├── in-app-transaction.ts │ │ ├── renderer.ts │ │ └── translations │ │ │ ├── chinese.ts │ │ │ ├── english.ts │ │ │ ├── index.ts │ │ │ ├── italian.ts │ │ │ ├── japanese.ts │ │ │ └── types.ts │ └── views │ │ ├── About.vue │ │ ├── Account.vue │ │ ├── Editor.vue │ │ ├── GoogleDrive.vue │ │ ├── Home.vue │ │ ├── Note.vue │ │ ├── Settings.vue │ │ └── Share.vue ├── rxdb │ ├── clips │ │ ├── collection.ts │ │ ├── model.ts │ │ └── utils.ts │ ├── index.ts │ ├── message │ │ ├── collection.ts │ │ └── model.ts │ ├── room │ │ ├── collection.ts │ │ └── model.ts │ └── user │ │ ├── collection.ts │ │ └── model.ts ├── shims-tsx.d.ts ├── shims-vue.d.ts └── utils │ ├── common.ts │ ├── constants.ts │ ├── environment.ts │ ├── methods.ts │ ├── result.ts │ └── sentry.ts ├── storage.rules ├── tsconfig.json ├── ui-debug.log └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.13.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/README.md -------------------------------------------------------------------------------- /README_Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/README_Linux.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/babel.config.js -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/database.rules.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/.gitignore -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/src/environment.ts -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/src/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/src/template.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/tslint.json -------------------------------------------------------------------------------- /functions/ui-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/functions/ui-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/favicon.ico -------------------------------------------------------------------------------- /public/img/icons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/manifest.json -------------------------------------------------------------------------------- /public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/scripts/notarize.js -------------------------------------------------------------------------------- /src/assets/css/snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/css/snow.css -------------------------------------------------------------------------------- /src/assets/icons/clip.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/icons/clip.ai -------------------------------------------------------------------------------- /src/assets/icons/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/icons/clip.png -------------------------------------------------------------------------------- /src/assets/icons/clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/icons/clip.svg -------------------------------------------------------------------------------- /src/assets/icons/clips-small.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/icons/clips-small.ai -------------------------------------------------------------------------------- /src/assets/icons/infiniti-opensource.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/icons/infiniti-opensource.ai -------------------------------------------------------------------------------- /src/assets/icons/infiniti-opensource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/icons/infiniti-opensource.svg -------------------------------------------------------------------------------- /src/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/icons/logo.svg -------------------------------------------------------------------------------- /src/assets/icons/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/icons/watermark.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-k-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-k-10.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-k-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-k-12.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-k-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-k-15.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-k-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-k-20.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-k-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-k-24.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-k-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-k-30.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-w-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-w-10.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-w-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-w-12.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-w-15.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-w-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-w-20.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-w-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-w-24.png -------------------------------------------------------------------------------- /src/assets/win-icons/close-w-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/close-w-30.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-k-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-k-10.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-k-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-k-12.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-k-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-k-15.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-k-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-k-20.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-k-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-k-24.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-k-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-k-30.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-w-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-w-10.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-w-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-w-12.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-w-15.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-w-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-w-20.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-w-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-w-24.png -------------------------------------------------------------------------------- /src/assets/win-icons/max-w-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/max-w-30.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-k-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-k-10.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-k-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-k-12.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-k-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-k-15.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-k-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-k-20.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-k-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-k-24.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-k-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-k-30.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-w-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-w-10.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-w-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-w-12.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-w-15.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-w-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-w-20.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-w-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-w-24.png -------------------------------------------------------------------------------- /src/assets/win-icons/min-w-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/min-w-30.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-k-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-k-10.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-k-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-k-12.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-k-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-k-15.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-k-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-k-20.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-k-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-k-24.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-k-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-k-30.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-w-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-w-10.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-w-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-w-12.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-w-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-w-15.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-w-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-w-20.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-w-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-w-24.png -------------------------------------------------------------------------------- /src/assets/win-icons/restore-w-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/assets/win-icons/restore-w-30.png -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/electron/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/environment.ts -------------------------------------------------------------------------------- /src/electron/handlers/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/analytics.ts -------------------------------------------------------------------------------- /src/electron/handlers/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/clipboard.ts -------------------------------------------------------------------------------- /src/electron/handlers/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/configuration.ts -------------------------------------------------------------------------------- /src/electron/handlers/google-drive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/google-drive.ts -------------------------------------------------------------------------------- /src/electron/handlers/leveldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/leveldown.ts -------------------------------------------------------------------------------- /src/electron/handlers/payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/payments.ts -------------------------------------------------------------------------------- /src/electron/handlers/remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/remote.ts -------------------------------------------------------------------------------- /src/electron/handlers/sign-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/sign-in.ts -------------------------------------------------------------------------------- /src/electron/handlers/socket-io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/handlers/socket-io.ts -------------------------------------------------------------------------------- /src/electron/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/index.ts -------------------------------------------------------------------------------- /src/electron/services/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/analytics.ts -------------------------------------------------------------------------------- /src/electron/services/auto-launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/auto-launcher.ts -------------------------------------------------------------------------------- /src/electron/services/auto-updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/auto-updater.ts -------------------------------------------------------------------------------- /src/electron/services/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/clipboard.ts -------------------------------------------------------------------------------- /src/electron/services/electron-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/electron-store.ts -------------------------------------------------------------------------------- /src/electron/services/google-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/google-auth.ts -------------------------------------------------------------------------------- /src/electron/services/google-drive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/google-drive.ts -------------------------------------------------------------------------------- /src/electron/services/in-app-purachase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/in-app-purachase.ts -------------------------------------------------------------------------------- /src/electron/services/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/shortcuts.ts -------------------------------------------------------------------------------- /src/electron/services/socket.io/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/socket.io/client.ts -------------------------------------------------------------------------------- /src/electron/services/socket.io/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/socket.io/server.ts -------------------------------------------------------------------------------- /src/electron/services/socket.io/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/socket.io/types.ts -------------------------------------------------------------------------------- /src/electron/services/socket.io/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/socket.io/utils/network.ts -------------------------------------------------------------------------------- /src/electron/services/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/tray.ts -------------------------------------------------------------------------------- /src/electron/services/windows/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/windows/editor.ts -------------------------------------------------------------------------------- /src/electron/services/windows/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/windows/main.ts -------------------------------------------------------------------------------- /src/electron/services/with-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/services/with-editor.ts -------------------------------------------------------------------------------- /src/electron/utils/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/electron/utils/node.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/icons/clip.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/icons/clip.ai -------------------------------------------------------------------------------- /src/icons/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/icons/clip.png -------------------------------------------------------------------------------- /src/icons/clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/icons/clip.svg -------------------------------------------------------------------------------- /src/icons/clips-small.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/icons/clips-small.ai -------------------------------------------------------------------------------- /src/icons/infiniti-opensource.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/icons/infiniti-opensource.ai -------------------------------------------------------------------------------- /src/icons/infiniti-opensource.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/icons/infiniti-opensource.svg -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/plugins/vuetify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/plugins/vuetify.ts -------------------------------------------------------------------------------- /src/registerServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/registerServiceWorker.ts -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/AppEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/AppEditor.vue -------------------------------------------------------------------------------- /src/renderer/components/AppBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/AppBar.vue -------------------------------------------------------------------------------- /src/renderer/components/AppBarSmall.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/AppBarSmall.vue -------------------------------------------------------------------------------- /src/renderer/components/Grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/Grid.vue -------------------------------------------------------------------------------- /src/renderer/components/NavDrawer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/NavDrawer.vue -------------------------------------------------------------------------------- /src/renderer/components/NavDrawerConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/NavDrawerConfig.vue -------------------------------------------------------------------------------- /src/renderer/components/Room.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/Room.vue -------------------------------------------------------------------------------- /src/renderer/components/SearchBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/SearchBar.vue -------------------------------------------------------------------------------- /src/renderer/components/settings/Advanced.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/settings/Advanced.vue -------------------------------------------------------------------------------- /src/renderer/components/settings/General.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/settings/General.vue -------------------------------------------------------------------------------- /src/renderer/components/settings/Language.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/components/settings/Language.vue -------------------------------------------------------------------------------- /src/renderer/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/environment.ts -------------------------------------------------------------------------------- /src/renderer/invokers/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/analytics.ts -------------------------------------------------------------------------------- /src/renderer/invokers/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/clipboard.ts -------------------------------------------------------------------------------- /src/renderer/invokers/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/configuration.ts -------------------------------------------------------------------------------- /src/renderer/invokers/google-drive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/google-drive.ts -------------------------------------------------------------------------------- /src/renderer/invokers/leveldown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/leveldown.ts -------------------------------------------------------------------------------- /src/renderer/invokers/payments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/payments.ts -------------------------------------------------------------------------------- /src/renderer/invokers/remote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/remote.ts -------------------------------------------------------------------------------- /src/renderer/invokers/sign-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/sign-in.ts -------------------------------------------------------------------------------- /src/renderer/invokers/socket-io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/invokers/socket-io.ts -------------------------------------------------------------------------------- /src/renderer/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/router/index.ts -------------------------------------------------------------------------------- /src/renderer/store/clips/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/clips/actions.ts -------------------------------------------------------------------------------- /src/renderer/store/clips/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/clips/getters.ts -------------------------------------------------------------------------------- /src/renderer/store/clips/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/clips/index.ts -------------------------------------------------------------------------------- /src/renderer/store/clips/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/clips/mutations.ts -------------------------------------------------------------------------------- /src/renderer/store/configuration/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/configuration/actions.ts -------------------------------------------------------------------------------- /src/renderer/store/configuration/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/configuration/getters.ts -------------------------------------------------------------------------------- /src/renderer/store/configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/configuration/index.ts -------------------------------------------------------------------------------- /src/renderer/store/configuration/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/configuration/mutations.ts -------------------------------------------------------------------------------- /src/renderer/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/index.ts -------------------------------------------------------------------------------- /src/renderer/store/network/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/network/actions.ts -------------------------------------------------------------------------------- /src/renderer/store/network/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/network/getters.ts -------------------------------------------------------------------------------- /src/renderer/store/network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/network/index.ts -------------------------------------------------------------------------------- /src/renderer/store/network/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/network/mutations.ts -------------------------------------------------------------------------------- /src/renderer/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/store/types.ts -------------------------------------------------------------------------------- /src/renderer/subscriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/subscriptions/index.ts -------------------------------------------------------------------------------- /src/renderer/utils/analytics-vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/analytics-vue.ts -------------------------------------------------------------------------------- /src/renderer/utils/basevue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/basevue.ts -------------------------------------------------------------------------------- /src/renderer/utils/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/firebase.ts -------------------------------------------------------------------------------- /src/renderer/utils/in-app-transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/in-app-transaction.ts -------------------------------------------------------------------------------- /src/renderer/utils/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/renderer.ts -------------------------------------------------------------------------------- /src/renderer/utils/translations/chinese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/translations/chinese.ts -------------------------------------------------------------------------------- /src/renderer/utils/translations/english.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/translations/english.ts -------------------------------------------------------------------------------- /src/renderer/utils/translations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/translations/index.ts -------------------------------------------------------------------------------- /src/renderer/utils/translations/italian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/translations/italian.ts -------------------------------------------------------------------------------- /src/renderer/utils/translations/japanese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/translations/japanese.ts -------------------------------------------------------------------------------- /src/renderer/utils/translations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/utils/translations/types.ts -------------------------------------------------------------------------------- /src/renderer/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/views/About.vue -------------------------------------------------------------------------------- /src/renderer/views/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/views/Account.vue -------------------------------------------------------------------------------- /src/renderer/views/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/views/Editor.vue -------------------------------------------------------------------------------- /src/renderer/views/GoogleDrive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/views/GoogleDrive.vue -------------------------------------------------------------------------------- /src/renderer/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/views/Home.vue -------------------------------------------------------------------------------- /src/renderer/views/Note.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/views/Note.vue -------------------------------------------------------------------------------- /src/renderer/views/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/views/Settings.vue -------------------------------------------------------------------------------- /src/renderer/views/Share.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/renderer/views/Share.vue -------------------------------------------------------------------------------- /src/rxdb/clips/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/clips/collection.ts -------------------------------------------------------------------------------- /src/rxdb/clips/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/clips/model.ts -------------------------------------------------------------------------------- /src/rxdb/clips/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/clips/utils.ts -------------------------------------------------------------------------------- /src/rxdb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/index.ts -------------------------------------------------------------------------------- /src/rxdb/message/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/message/collection.ts -------------------------------------------------------------------------------- /src/rxdb/message/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/message/model.ts -------------------------------------------------------------------------------- /src/rxdb/room/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/room/collection.ts -------------------------------------------------------------------------------- /src/rxdb/room/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/room/model.ts -------------------------------------------------------------------------------- /src/rxdb/user/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/user/collection.ts -------------------------------------------------------------------------------- /src/rxdb/user/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/rxdb/user/model.ts -------------------------------------------------------------------------------- /src/shims-tsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/shims-tsx.d.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/utils/environment.ts -------------------------------------------------------------------------------- /src/utils/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/utils/methods.ts -------------------------------------------------------------------------------- /src/utils/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/utils/result.ts -------------------------------------------------------------------------------- /src/utils/sentry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/src/utils/sentry.ts -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/storage.rules -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/tsconfig.json -------------------------------------------------------------------------------- /ui-debug.log: -------------------------------------------------------------------------------- 1 | Web / API server started at http://localhost:4000 2 | -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azure06/clips/HEAD/vue.config.js --------------------------------------------------------------------------------