diff --git a/.babelrc b/.babelrc deleted file mode 100644 index 6fe96f01..00000000 --- a/.babelrc +++ /dev/null @@ -1,55 +0,0 @@ -{ - "comments": false, - "env": { - "test": { - "presets": [ - ["@babel/preset-env", { - "targets": { "node": 10 } - }] - ], - "plugins": [ - "istanbul", - "@babel/plugin-proposal-class-properties", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-transform-runtime" - ] - }, - "main": { - "presets": [ - ["@babel/preset-env", { - "targets": { "node": 10 } - }] - ], - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-transform-runtime" - ] - }, - "renderer": { - "presets": [ - ["@babel/preset-env", { - "modules": false, - "targets": { "electron": "6" } - }] - ], - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-transform-runtime" - ] - }, - "web": { - "presets": [ - ["@babel/preset-env", { - "modules": false - }] - ], - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-proposal-object-rest-spread", - "@babel/plugin-transform-runtime" - ] - } - } -} diff --git a/.electron-vue/build.js b/.electron-vue/build.js deleted file mode 100644 index 23df1ac3..00000000 --- a/.electron-vue/build.js +++ /dev/null @@ -1,95 +0,0 @@ -'use strict' - -process.env.NODE_ENV = 'production' - -const { say } = require('cfonts') -const chalk = require('chalk') -const del = require('del') -const { spawn } = require('child_process') -const webpack = require('webpack') -const Listr = require('listr') - -const mainConfig = require('./webpack.main.config') -const rendererConfig = require('./webpack.renderer.config') - -const doneLog = chalk.bgGreen.white(' DONE ') + ' ' -const errorLog = chalk.bgRed.white(' ERROR ') + ' ' -const okayLog = chalk.bgBlue.white(' OKAY ') + ' ' -const isCI = process.env.CI || false - -if (process.env.BUILD_TARGET === 'clean') clean() -else build() - -function clean() { - del.sync(['build/*', '!build/icons', '!build/icons/icon.*', '!build/sounds', '!build/sounds/*', '!build/notarize.js']) - del.sync(['packages/*', '!packages/universal.js', '!packages/packager.js', "!packages/socialwhalebirdapp_MAS.provisionprofile"]) - console.log(`\n${doneLog}\n`) - process.exit() -} - -async function build() { - del.sync(['dist/electron/*', '!.gitkeep']) - - let results = '' - - const tasks = new Listr( - [ - { - title: 'building master process', - task: async () => { - await pack(mainConfig).catch(err => { - console.log(`\n ${errorLog}failed to build main process`) - console.error(`\n${err}\n`) - }) - } - }, - { - title: 'building renderer process', - task: async () => { - await pack(rendererConfig).catch(err => { - console.log(`\n ${errorLog}failed to build renderer process`) - console.error(`\n${err}\n`) - }) - } - } - ], - { concurrent: 2 } - ) - - await tasks - .run() - .then(() => { - process.stdout.write('\x1B[2J\x1B[0f') - console.log(`\n\n${results}`) - process.exit() - }) - .catch(err => { - process.exit(1) - }) -} - -function pack(config) { - return new Promise((resolve, reject) => { - config.mode = 'production' - webpack(config, (err, stats) => { - if (err) reject(err.stack || err) - else if (stats.hasErrors()) { - let err = '' - - stats - .toString({ - chunks: false, - colors: true - }) - .split(/\r?\n/) - .forEach(line => { - err += ` ${line}\n` - }) - - reject(err) - } else { - resolve(null) - } - }) - }) -} diff --git a/.electron-vue/dev-client.js b/.electron-vue/dev-client.js deleted file mode 100644 index 2913ea4b..00000000 --- a/.electron-vue/dev-client.js +++ /dev/null @@ -1,40 +0,0 @@ -const hotClient = require('webpack-hot-middleware/client?noInfo=true&reload=true') - -hotClient.subscribe(event => { - /** - * Reload browser when HTMLWebpackPlugin emits a new index.html - * - * Currently disabled until jantimon/html-webpack-plugin#680 is resolved. - * https://github.com/SimulatedGREG/electron-vue/issues/437 - * https://github.com/jantimon/html-webpack-plugin/issues/680 - */ - // if (event.action === 'reload') { - // window.location.reload() - // } - - /** - * Notify `mainWindow` when `main` process is compiling, - * giving notice for an expected reload of the `electron` process - */ - if (event.action === 'compiling') { - document.body.innerHTML += ` - - -
- Compiling Main Process... -
- ` - } -}) diff --git a/.electron-vue/dev-runner.js b/.electron-vue/dev-runner.js deleted file mode 100644 index a4030975..00000000 --- a/.electron-vue/dev-runner.js +++ /dev/null @@ -1,177 +0,0 @@ -'use strict' - -const clc = require('cli-color') -const electron = require('electron') -const path = require('path') -const { say } = require('cfonts') -const { spawn } = require('child_process') -const webpack = require('webpack') -const WebpackDevServer = require('webpack-dev-server') -const webpackHotMiddleware = require('webpack-hot-middleware') - -const mainConfig = require('./webpack.main.config') -const rendererConfig = require('./webpack.renderer.config') - -let electronProcess = null -let manualRestart = false -let hotMiddleware - -function logStats(proc, data) { - let log = '' - - log += clc.yellow.bold(`┏ ${proc} Process ${new Array(19 - proc.length + 1).join('-')}`) - log += '\n\n' - - if (typeof data === 'object') { - data - .toString({ - colors: true, - chunks: false - }) - .split(/\r?\n/) - .forEach(line => { - log += ' ' + line + '\n' - }) - } else { - log += ` ${data}\n` - } - - log += '\n' + clc.yellow.bold(`┗ ${new Array(28 + 1).join('-')}`) + '\n' - - console.log(log) -} - -function startRenderer() { - return new Promise((resolve, reject) => { - rendererConfig.entry.renderer = [path.join(__dirname, 'dev-client')].concat(rendererConfig.entry.renderer) - rendererConfig.mode = 'development' - const compiler = webpack(rendererConfig) - hotMiddleware = webpackHotMiddleware(compiler, { - log: false, - heartbeat: 2500 - }) - - compiler.hooks.compilation.tap('compilation', compilation => { - const HtmlWebpackPlugin = require('html-webpack-plugin') - HtmlWebpackPlugin.getHooks(compilation).afterEmit.tapAsync('html-webpack-plugin-after-emit', (data, cb) => { - hotMiddleware.publish({ action: 'reload' }) - cb() - }) - }) - - compiler.hooks.done.tap('done', stats => { - logStats('Renderer', stats) - }) - - const server = new WebpackDevServer( - { - static: { - directory: path.resolve(__dirname, '../') - }, - setupMiddlewares: function (middlewares, devServer) { - middlewares.unshift(hotMiddleware) - devServer.middleware.waitUntilValid(() => { - resolve() - }) - return middlewares - }, - port: 9080 - }, - compiler - ) - - server.start() - }) -} - -function startMain() { - return new Promise((resolve, reject) => { - mainConfig.entry.main = [path.join(__dirname, '../src/main/index.dev.ts')].concat(mainConfig.entry.main) - mainConfig.mode = 'development' - const compiler = webpack(mainConfig) - - compiler.hooks.watchRun.tapAsync('watch-run', (compilation, done) => { - logStats('Main', clc.white.bold('compiling...')) - hotMiddleware.publish({ action: 'compiling' }) - done() - }) - - compiler.watch({}, (err, stats) => { - if (err) { - console.log(err) - return - } - - logStats('Main', stats) - - resolve() - }) - }) -} - -function startElectron() { - var args = ['--inspect=5858', path.join(__dirname, '../dist/electron/main.js')] - - // detect yarn or npm and process commandline args accordingly - if (process.env.npm_execpath.endsWith('yarn.js')) { - args = args.concat(process.argv.slice(3)) - } else if (process.env.npm_execpath.endsWith('npm-cli.js')) { - args = args.concat(process.argv.slice(2)) - } - - electronProcess = spawn(electron, args) - - electronProcess.stdout.on('data', data => { - electronLog(data, 'blue') - }) - electronProcess.stderr.on('data', data => { - electronLog(data, 'red') - }) - - electronProcess.on('close', () => { - if (!manualRestart) process.exit() - }) -} - -function electronLog(data, color) { - let log = '' - data = data.toString().split(/\r?\n/) - data.forEach(line => { - log += ` ${line}\n` - }) - if (/[0-9A-z]+/.test(log)) { - console.log(clc[color].bold('┏ Electron -------------------') + '\n\n' + log + clc[color].bold('┗ ----------------------------') + '\n') - } -} - -function greeting() { - const cols = process.stdout.columns - let text = '' - - if (cols > 104) text = 'electron-vue' - else if (cols > 76) text = 'electron-|vue' - else text = false - - if (text) { - say(text, { - colors: ['yellow'], - font: 'simple3d', - space: false - }) - } else console.log(clc.yellow.bold('\n electron-vue')) - console.log(clc.blue(' getting ready...') + '\n') -} - -function init() { - greeting() - - Promise.all([startRenderer(), startMain()]) - .then(() => { - startElectron() - }) - .catch(err => { - console.error(err) - }) -} - -init() diff --git a/.electron-vue/webpack.main.config.js b/.electron-vue/webpack.main.config.js deleted file mode 100644 index 3ca31471..00000000 --- a/.electron-vue/webpack.main.config.js +++ /dev/null @@ -1,105 +0,0 @@ -'use strict' - -process.env.BABEL_ENV = 'main' - -const path = require('path') -const { dependencies } = require('../package.json') -const webpack = require('webpack') - -const CopyWebpackPlugin = require('copy-webpack-plugin') - -let mainConfig = { - entry: { - main: path.join(__dirname, '../src/main/index.ts'), - preload: path.join(__dirname, '../src/main/preload.js') - }, - externals: [...Object.keys(dependencies || {})], - module: { - rules: [ - { - test: /\.ts$/, - exclude: /node_modules/, - use: [ - { - loader: 'ts-loader', - options: { - transpileOnly: true - } - } - ] - }, - { - test: /\.js$/, - use: 'babel-loader', - exclude: /node_modules/ - }, - { - test: /\.node$/, - use: 'node-loader' - }, - { - test: /\.json$/, - exclude: /node_modules/, - use: 'json-loader', - type: 'javascript/auto' - } - ] - }, - node: { - __dirname: process.env.NODE_ENV !== 'production', - __filename: process.env.NODE_ENV !== 'production' - }, - output: { - filename: '[name].js', - libraryTarget: 'commonjs2', - path: path.join(__dirname, '../dist/electron') - }, - plugins: [ - new webpack.NoEmitOnErrorsPlugin(), - new CopyWebpackPlugin({ - patterns: [ - { - from: path.join(__dirname, '../src/config/locales'), - to: path.join(__dirname, '../dist/electron/locales'), - globOptions: { - ignore: ['.*', '*~'] - } - } - ] - }) - ], - resolve: { - alias: { - // Same as tsconfig.json - '@': path.join(__dirname, '../src/renderer'), - '~': path.join(__dirname, '../') - }, - extensions: ['.js', '.json', '.node', '.ts'] - }, - target: 'electron-main' -} - -/** - * Adjust mainConfig for development settings - */ -if (process.env.NODE_ENV !== 'production') { - mainConfig.plugins.push( - new webpack.DefinePlugin({ - __static: `"${path.join(__dirname, '../static').replace(/\\/g, '\\\\')}"` - }) - ) -} - -/** - * Adjust mainConfig for production settings - */ -if (process.env.NODE_ENV === 'production') { - mainConfig.mode = 'production' - mainConfig.plugins.push( - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': '"production"' - }) - ) -} - -module.exports = mainConfig diff --git a/.electron-vue/webpack.renderer.config.js b/.electron-vue/webpack.renderer.config.js deleted file mode 100644 index 96d66111..00000000 --- a/.electron-vue/webpack.renderer.config.js +++ /dev/null @@ -1,262 +0,0 @@ -'use strict' - -process.env.BABEL_ENV = 'renderer' - -const path = require('path') -const { dependencies } = require('../package.json') -const webpack = require('webpack') - -const CopyWebpackPlugin = require('copy-webpack-plugin') -const MiniCssExtractPlugin = require('mini-css-extract-plugin') -const HtmlWebpackPlugin = require('html-webpack-plugin') -const { VueLoaderPlugin } = require('vue-loader') - -let rendererConfig = { - entry: { - renderer: path.join(__dirname, '../src/renderer/main.ts') - }, - module: { - rules: [ - { - test: /\.m?js$/, - resolve: { - fullySpecified: false - } - }, - { - test: /\.vue$/, - use: { - loader: 'vue-loader', - options: { - extractCSS: process.env.NODE_ENV === 'production', - esModule: true, - optimizeSSR: false - } - } - }, - { - test: /\.scss$/, - use: [ - 'vue-style-loader', - { - loader: 'css-loader', - options: { - modules: false, - esModule: false - } - }, - 'sass-loader' - ] - }, - { - test: /\.sass$/, - use: [ - 'vue-style-loader', - - { - loader: 'css-loader', - options: { - modules: false, - esModule: false - } - }, - 'sass-loader?indentedSyntax' - ] - }, - { - test: /\.less$/, - use: [ - 'vue-style-loader', - { - loader: 'css-loader', - options: { - modules: false, - esModule: false - } - }, - 'less-loader' - ] - }, - { - test: /\.css$/, - use: [ - 'vue-style-loader', - { - loader: 'css-loader', - options: { - modules: false, - esModule: false - } - } - ] - }, - { - test: /\.html$/, - use: 'vue-html-loader' - }, - { - test: /\.ts$/, - exclude: /node_modules/, - use: [ - { - loader: 'babel-loader?cacheDirectory' - }, - { - loader: 'ts-loader', - options: { - appendTsSuffixTo: [/\.vue$/], - transpileOnly: true - } - } - ] - }, - { - test: /\.js$/, - use: 'babel-loader?cacheDirectory', - exclude: /node_modules/ - }, - { - test: /\.node$/, - use: 'node-loader' - }, - { - test: /\.(png|jpe?g|gif|svg)(\?.*)?$/, - use: { - loader: 'url-loader', - options: { - limit: 10000, - name: 'imgs/[name]--[folder].[ext]', - esModule: false - } - } - }, - { - test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/, - loader: 'url-loader', - options: { - limit: 10000, - name: 'media/[name]--[folder].[ext]' - } - }, - { - test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/, - use: { - loader: 'url-loader', - options: { - limit: 10000, - name: 'fonts/[name]--[folder].[ext]' - } - } - }, - { - test: /\.json$/, - exclude: /node_modules/, - use: 'json-loader', - type: 'javascript/auto' - } - ] - }, - node: { - __dirname: process.env.NODE_ENV !== 'production', - __filename: process.env.NODE_ENV !== 'production' - }, - devServer: { - hot: true, - hotOnly: true - }, - plugins: [ - new VueLoaderPlugin(), - new MiniCssExtractPlugin({ filename: 'styles.css' }), - new HtmlWebpackPlugin({ - filename: 'index.html', - template: path.resolve(__dirname, '../src/index.ejs'), - minify: { - collapseWhitespace: true, - removeAttributeQuotes: true, - removeComments: true - }, - nodeModules: process.env.NODE_ENV !== 'production' ? path.resolve(__dirname, '../node_modules') : false - }), - new webpack.NoEmitOnErrorsPlugin(), - new webpack.DefinePlugin({ - 'process.browser': true, - 'process.env.NODE_DEBUG': false - }), - new webpack.ProvidePlugin({ - Buffer: ['buffer', 'Buffer'] - }), - new webpack.ProvidePlugin({ - process: 'process/browser' - }) - ], - output: { - filename: '[name].js', - path: path.join(__dirname, '../dist/electron') - }, - resolve: { - alias: { - // Same as tsconfig.json - '@': path.join(__dirname, '../src/renderer'), - '~': path.join(__dirname, '../') - }, - extensions: ['.ts', '.js', '.vue', '.json', '.css', '.node'], - fallback: { - timers: require.resolve('timers-browserify'), - url: require.resolve('url/'), - assert: require.resolve('assert/'), - buffer: require.resolve('buffer/'), - os: require.resolve('os-browserify/browser'), - path: require.resolve('path-browserify'), - crypto: require.resolve('crypto-browserify'), - http: require.resolve('stream-http'), - https: require.resolve('https-browserify'), - stream: require.resolve('stream-browserify'), - zlib: require.resolve('browserify-zlib'), - net: false, - tls: false, - fs: false, - dns: false - } - }, - target: 'web' -} - -/** - * Adjust rendererConfig for development settings - */ -if (process.env.NODE_ENV !== 'production') { - rendererConfig.plugins.push( - new webpack.DefinePlugin({ - __static: `"${path.join(__dirname, '../static').replace(/\\/g, '\\\\')}"` - }) - ) - rendererConfig.devtool = 'eval-cheap-module-source-map' -} - -/** - * Adjust rendererConfig for production settings - */ -if (process.env.NODE_ENV === 'production') { - rendererConfig.mode = 'production' - rendererConfig.plugins.push( - new CopyWebpackPlugin({ - patterns: [ - { - from: path.join(__dirname, '../static'), - to: path.join(__dirname, '../dist/electron/static'), - globOptions: { - ignore: ['.*', '*~'] - } - } - ] - }), - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': '"production"' - }), - new webpack.LoaderOptionsPlugin({ - minimize: true - }) - ) -} - -module.exports = rendererConfig diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 3659f1ad..00000000 --- a/.eslintignore +++ /dev/null @@ -1,2 +0,0 @@ -node_modules/* -dist/* diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 7f910044..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,42 +0,0 @@ -module.exports = { - root: true, - parser: 'vue-eslint-parser', - parserOptions: { - parser: '@typescript-eslint/parser', - sourceType: 'module', - ecmaVersion: 12 - }, - env: { - browser: true, - node: true, - es2021: true - }, - extends: ['eslint:recommended', 'plugin:vue/vue3-recommended', '@vue/typescript/recommended', 'prettier'], - globals: { - __static: true - }, - plugins: ['@typescript-eslint', 'vue'], - rules: { - // allow paren-less arrow functions - 'arrow-parens': 0, - // allow async-await - 'generator-star-spacing': 0, - // allow debugger during development - 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, - 'no-unused-vars': 'off', - '@typescript-eslint/no-unused-vars': [ - 'error', - { - argsIgnorePattern: '^_' - } - ], - '@typescript-eslint/no-explicit-any': 'off', - camelcase: 'off', - '@typescript-eslint/camelcase': 'off', - 'space-before-function-paren': 'off', - 'vue/multi-word-component-names': 'off', - 'vue/attributes-order': 'off', - 'vue/attribute-hyphenation': 'off', - 'vue/no-v-html': 'off' - } -} diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 65453a6f..00000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -github: h3poteto diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 02831e10..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '' - ---- - -## Description - - - -## How To Reproduce -1. -2. -3. - -## Your Environment - - OS: [e.g. MacOS] - - Whalebird Version: [e.g. 1.0.0] - - Instance: [e.g. mastodon.social] diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index a758b5e6..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: 'feature' -assignees: '' - ---- - -## Describe - - -## Why - diff --git a/.github/ISSUE_TEMPLATE/other-request.md b/.github/ISSUE_TEMPLATE/other-request.md deleted file mode 100644 index fa9546b8..00000000 --- a/.github/ISSUE_TEMPLATE/other-request.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Other request -about: Free format issue template -title: '' -labels: '' -assignees: '' - ---- - - diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index afcc71f8..00000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,8 +0,0 @@ -## Description - - -## Related Issues - - -## Appearance - diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 19939002..00000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build - -on: - push: - branches: - - master - - pull_request: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@master - - uses: actions/setup-node@v3 - with: - node-version: 18 - - name: Install - run: | - yarn install - - name: typecheck - run: | - yarn run typecheck - - name: Test - run: | - yarn run spec - - name: Compile main - run: | - yarn run pack:main - - name: Compile renderer - run: | - yarn run pack:renderer diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 02e9df87..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,110 +0,0 @@ -name: Release - -on: - push: - tags: - - 'v*' - -jobs: - release-linux: - runs-on: ubuntu-latest - timeout-minutes: 40 - - env: - SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.STORE_LOGIN }} - - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: '18' - cache: yarn - - name: Build - run: | - make install - make clean - make build - - - name: Install Snapcraft - uses: samuelmeuli/action-snapcraft@v2 - - - name: Release - uses: samuelmeuli/action-electron-builder@v1 - with: - skip_build: true - # GitHub token, automatically provided to the action - # (No need to define this secret in the repo settings) - github_token: ${{ secrets.github_token }} - - # If the commit is tagged with a version (e.g. "v1.0.0"), - # release the app after building - release: ${{ startsWith(github.ref, 'refs/tags/v') }} - - release-windows: - runs-on: windows-latest - timeout-minutes: 40 - - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: '18' - cache: yarn - - name: Build - run: | - make install - make clean - make build - - - name: Release - uses: samuelmeuli/action-electron-builder@v1 - with: - skip_build: true - # GitHub token, automatically provided to the action - # (No need to define this secret in the repo settings) - github_token: ${{ secrets.github_token }} - - # If the commit is tagged with a version (e.g. "v1.0.0"), - # release the app after building - release: ${{ startsWith(github.ref, 'refs/tags/v') }} - - - release-macos: - runs-on: macos-latest - timeout-minutes: 40 - - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: '18' - cache: yarn - - - name: Apple Codesigning - uses: apple-actions/import-codesign-certs@v2 - with: - p12-file-base64: ${{ secrets.CERTIFICATES_P12 }} - p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }} - - - name: Build - run: | - make install - make clean - make build - - - name: Release - uses: samuelmeuli/action-electron-builder@v1 - env: - APPLE_ID: ${{ secrets.APPLE_ID }} - APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_PASSWORD }} - ASC_PROVIDER: ${{ secrets.ASC_PROVIDER }} - TEAM_ID: ${{ secrets.ASC_PROVIDER }} - with: - skip_build: true - # GitHub token, automatically provided to the action - # (No need to define this secret in the repo settings) - github_token: ${{ secrets.github_token }} - - # If the commit is tagged with a version (e.g. "v1.0.0"), - # release the app after building - release: ${{ startsWith(github.ref, 'refs/tags/v') }} diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml deleted file mode 100644 index 691aa062..00000000 --- a/.github/workflows/reviewdog.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: reviewdog - -on: - pull_request: - -permissions: - pull-requests: write - -jobs: - eslint: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@master - - uses: actions/setup-node@v3 - with: - node-version: 18 - - name: Install - run: | - yarn install - - uses: reviewdog/action-setup@v1 - - name: Run eslint - env: - REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }} - run: | - yarn run lint:eslint | reviewdog -f=eslint -reporter=github-pr-review -fail-on-error=true - - stylelint: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@master - - uses: actions/setup-node@v3 - with: - node-version: 18 - - name: Install - run: | - yarn install - - uses: reviewdog/action-setup@v1 - - name: Run stylelint - env: - REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }} - run: | - yarn run lint:stylelint --no-color | reviewdog -f=stylelint -reporter=github-pr-review -level=error -filter-mode=nofilter -fail-on-error=false diff --git a/.github/workflows/thirdparty.yml b/.github/workflows/thirdparty.yml deleted file mode 100644 index dfa9de84..00000000 --- a/.github/workflows/thirdparty.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Thirdparty - -on: - schedule: - - cron: '54 10 * * *' - -permissions: - contents: write - pull-requests: write - -jobs: - update: - runs-on: ubuntu-latest - timeout-minutes: 10 - - steps: - - uses: actions/setup-node@v3 - with: - node-version: 18 - - uses: actions/checkout@v4 - - name: Install packages - run: | - yarn install - npm install -g license-checker - - name: Check - run: | - yarn run thirdparty - - uses: peter-evans/create-pull-request@v5 - with: - commit-message: "[Auto update] Thirdparty libraries list" - branch: auto-update/thirdparty - base: master - delete-branch: true - title: "[Auto update] Thirdparty libraries list" diff --git a/.gitignore b/.gitignore index e14ad718..956f56fc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,5 @@ -.DS_Store -dist/electron/* -dist/web/* -build/* -!build/icons -coverage -node_modules/ -npm-debug.log -npm-debug.log.* -thumbs.db -packages/* -!.gitkeep -*.db -*.provisionprofile -/thirdparty.json \ No newline at end of file +node_modules +*.log +.next +app +dist \ No newline at end of file diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 076d681c..00000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -@h3poteto:registry=https://npm.pkg.github.com diff --git a/.prettierrc b/.prettierrc index 93a4b3df..bb0bc5c3 100644 --- a/.prettierrc +++ b/.prettierrc @@ -5,4 +5,4 @@ "printWidth": 140, "trailingComma": "none", "arrowParens": "avoid" -} +} \ No newline at end of file diff --git a/.stylelintignore b/.stylelintignore deleted file mode 100644 index ee8ec9ea..00000000 --- a/.stylelintignore +++ /dev/null @@ -1,5 +0,0 @@ -node_modules -dist -build -packages -.electron-vue diff --git a/.stylelintrc.json b/.stylelintrc.json deleted file mode 100644 index cd47c3ad..00000000 --- a/.stylelintrc.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "extends": ["stylelint-config-html/vue", "stylelint-config-standard", "stylelint-config-prettier"], - "overrides": [ - { - "customSyntax": "postcss-scss", - "files": ["**/*.scss"] - } - ], - "rules": { - "alpha-value-notation": "number", - "color-function-notation": "legacy", - "color-hex-length": null, - "no-descending-specificity": null, - "no-empty-source": null, - "selector-class-pattern": "^(([a-z][a-zA-Z0-9_]+)|([a-z][a-z0-9]*)(-[a-zA-Z0-9_]+)*)$", - "selector-id-pattern": "^(([a-z][a-zA-Z0-9_]+)|([a-z][a-z0-9]*)(-[a-zA-Z0-9_]+)*)$", - "selector-pseudo-class-no-unknown": [ - true, - { - "ignorePseudoClasses": ["deep"] - } - ], - "shorthand-property-no-redundant-values": null - } -} diff --git a/.tool-versions b/.tool-versions deleted file mode 100644 index 8f2e342a..00000000 --- a/.tool-versions +++ /dev/null @@ -1 +0,0 @@ -nodejs 18.18.0 diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 4e7fc057..00000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,1884 +0,0 @@ -# Change Log - -## [4.3.4] - 2021-02-18 -### Changed -- [#2157](https://github.com/h3poteto/whalebird-desktop/pull/2157) build(deps): Bump i18next from 19.8.7 to 19.8.8 -- [#2154](https://github.com/h3poteto/whalebird-desktop/pull/2154) build(deps-dev): Bump @typescript-eslint/parser from 4.14.2 to 4.15.1 -- [#2147](https://github.com/h3poteto/whalebird-desktop/pull/2147) build(deps-dev): Bump eslint from 7.19.0 to 7.20.0 -- [#2152](https://github.com/h3poteto/whalebird-desktop/pull/2152) build(deps-dev): Bump @typescript-eslint/typescript-estree from 4.14.2 to 4.15.1 -- [#2150](https://github.com/h3poteto/whalebird-desktop/pull/2150) build(deps-dev): Bump @typescript-eslint/eslint-plugin from 4.14.2 to 4.15.1 -- [#2153](https://github.com/h3poteto/whalebird-desktop/pull/2153) build(deps-dev): Bump mini-css-extract-plugin from 1.3.5 to 1.3.7 -- [#2148](https://github.com/h3poteto/whalebird-desktop/pull/2148) build(deps-dev): Bump @types/node from 14.14.25 to 14.14.28 -- [#2142](https://github.com/h3poteto/whalebird-desktop/pull/2142) build(deps-dev): Bump stylelint from 13.9.0 to 13.10.0 -- [#2146](https://github.com/h3poteto/whalebird-desktop/pull/2146) build(deps-dev): Bump eslint-plugin-vue from 7.5.0 to 7.6.0 -- [#2144](https://github.com/h3poteto/whalebird-desktop/pull/2144) build(deps-dev): Bump @babel/preset-env from 7.12.13 to 7.12.16 -- [#2141](https://github.com/h3poteto/whalebird-desktop/pull/2141) build(deps-dev): Bump ajv from 7.0.4 to 7.1.0 -- [#2139](https://github.com/h3poteto/whalebird-desktop/pull/2139) build(deps-dev): Bump ts-loader from 8.0.15 to 8.0.17 -- [#2140](https://github.com/h3poteto/whalebird-desktop/pull/2140) build(deps-dev): Bump @babel/core from 7.12.13 to 7.12.16 -- [#2131](https://github.com/h3poteto/whalebird-desktop/pull/2131) build(deps-dev): Bump css-loader from 5.0.1 to 5.0.2 -- [#2138](https://github.com/h3poteto/whalebird-desktop/pull/2138) build(deps-dev): Bump eslint-plugin-promise from 4.2.1 to 4.3.1 -- [#2136](https://github.com/h3poteto/whalebird-desktop/pull/2136) build(deps-dev): Bump ts-jest from 26.5.0 to 26.5.1 -- [#2126](https://github.com/h3poteto/whalebird-desktop/pull/2126) build(deps-dev): Bump electron from 11.2.2 to 11.2.3 -- [#2156](https://github.com/h3poteto/whalebird-desktop/pull/2156) Use NotificationType of megalodon to handle notifications -- [#2155](https://github.com/h3poteto/whalebird-desktop/pull/2155) build(deps): Bump megalodon from 3.3.3 to 3.4.0 - -### Fixed -- [#2149](https://github.com/h3poteto/whalebird-desktop/pull/2149) refs #2145 Divide quit application menu item to quit app in macOS - -## [4.3.3] - 2021-02-08 -### Added -- [#2078](https://github.com/h3poteto/whalebird-desktop/pull/2078) refs #2024 Add help command for cli interface -- [#2075](https://github.com/h3poteto/whalebird-desktop/pull/2075) closes #2068 Add delete button for list -- [#2074](https://github.com/h3poteto/whalebird-desktop/pull/2074) closes #2028 Add a configuration item to disable spellchecker -- [#2071](https://github.com/h3poteto/whalebird-desktop/pull/2071) closes #2035 Add a notice for toot visibility settings - -### Changed -- [#2124](https://github.com/h3poteto/whalebird-desktop/pull/2124) build(deps-dev): Bump @types/node from 14.14.22 to 14.14.25 -- [#2123](https://github.com/h3poteto/whalebird-desktop/pull/2123) build(deps-dev): Bump @babel/plugin-transform-runtime from 7.12.13 to 7.12.15 -- [#2122](https://github.com/h3poteto/whalebird-desktop/pull/2122) build(deps-dev): Bump chai from 4.2.0 to 4.3.0 -- [#2120](https://github.com/h3poteto/whalebird-desktop/pull/2120) build(deps-dev): Bump @vue/test-utils from 1.1.2 to 1.1.3 -- [#2119](https://github.com/h3poteto/whalebird-desktop/pull/2119) build(deps-dev): Bump ts-loader from 8.0.14 to 8.0.15 -- [#2117](https://github.com/h3poteto/whalebird-desktop/pull/2117) build(deps): Bump vue-router from 3.4.9 to 3.5.1 -- [#2116](https://github.com/h3poteto/whalebird-desktop/pull/2116) Use unicode-emoji-json instead of emojilib -- [#2107](https://github.com/h3poteto/whalebird-desktop/pull/2107) build(deps-dev): Bump all-object-keys from 2.1.1 to 2.2.0 -- [#2105](https://github.com/h3poteto/whalebird-desktop/pull/2105) build(deps-dev): Bump eslint from 7.17.0 to 7.19.0 -- [#2115](https://github.com/h3poteto/whalebird-desktop/pull/2115) Use --node-env in webpack-cli instead of cross-env in pack command -- [#2101](https://github.com/h3poteto/whalebird-desktop/pull/2101) build(deps-dev): Bump electron from 11.2.0 to 11.2.2 -- [#2113](https://github.com/h3poteto/whalebird-desktop/pull/2113) build(deps-dev): Bump @babel/runtime from 7.12.5 to 7.12.13 -- [#2110](https://github.com/h3poteto/whalebird-desktop/pull/2110) build(deps-dev): Bump stylelint from 13.8.0 to 13.9.0 -- [#2108](https://github.com/h3poteto/whalebird-desktop/pull/2108) build(deps): Bump megalodon from 3.3.2 to 3.3.3 -- [#2106](https://github.com/h3poteto/whalebird-desktop/pull/2106) build(deps): Bump element-ui from 2.14.1 to 2.15.0 -- [#2114](https://github.com/h3poteto/whalebird-desktop/pull/2114) Bump @typescript-eslint from 3.10.1 to 4.14.2 -- [#2112](https://github.com/h3poteto/whalebird-desktop/pull/2112) build(deps-dev): Bump eslint-plugin-vue from 7.4.1 to 7.5.0 -- [#2111](https://github.com/h3poteto/whalebird-desktop/pull/2111) build(deps-dev): Bump core-js from 3.8.2 to 3.8.3 -- [#2104](https://github.com/h3poteto/whalebird-desktop/pull/2104) build(deps): Bump sanitize-html from 2.3.0 to 2.3.2 -- [#2103](https://github.com/h3poteto/whalebird-desktop/pull/2103) build(deps): Bump vuex from 3.6.0 to 3.6.2 -- [#2102](https://github.com/h3poteto/whalebird-desktop/pull/2102) build(deps-dev): Bump eslint-config-prettier from 7.1.0 to 7.2.0 -- [#2100](https://github.com/h3poteto/whalebird-desktop/pull/2100) build(deps-dev): Bump ts-jest from 26.4.4 to 26.5.0 -- [#2099](https://github.com/h3poteto/whalebird-desktop/pull/2099) build(deps-dev): Bump cfonts from 2.8.6 to 2.9.1 -- [#2098](https://github.com/h3poteto/whalebird-desktop/pull/2098) build(deps): Bump i18next from 19.8.4 to 19.8.7 -- [#2097](https://github.com/h3poteto/whalebird-desktop/pull/2097) build(deps): Bump electron-log from 4.3.0 to 4.3.1 -- [#2095](https://github.com/h3poteto/whalebird-desktop/pull/2095) build(deps-dev): Bump webpack-cli from 4.2.0 to 4.5.0 -- [#2094](https://github.com/h3poteto/whalebird-desktop/pull/2094) build(deps-dev): Bump @babel/plugin-transform-runtime from 7.12.1 to 7.12.13 -- [#2093](https://github.com/h3poteto/whalebird-desktop/pull/2093) build(deps-dev): Bump @babel/core from 7.12.9 to 7.12.13 -- [#2090](https://github.com/h3poteto/whalebird-desktop/pull/2090) build(deps-dev): Bump ajv from 6.12.6 to 7.0.4 -- [#2048](https://github.com/h3poteto/whalebird-desktop/pull/2048) build(deps-dev): Bump webpack-dev-server from 3.11.0 to 3.11.2 -- [#2092](https://github.com/h3poteto/whalebird-desktop/pull/2092) build(deps-dev): Bump @babel/preset-env from 7.12.7 to 7.12.13 -- [#2086](https://github.com/h3poteto/whalebird-desktop/pull/2086) build(deps-dev): Bump mini-css-extract-plugin from 1.3.3 to 1.3.5 -- [#2066](https://github.com/h3poteto/whalebird-desktop/pull/2066) build(deps-dev): Bump @types/node from 14.14.10 to 14.14.22 -- [#2064](https://github.com/h3poteto/whalebird-desktop/pull/2064) build(deps-dev): Bump @types/lodash from 4.14.165 to 4.14.168 -- [#2056](https://github.com/h3poteto/whalebird-desktop/pull/2056) build(deps-dev): Bump electron-debug from 3.1.0 to 3.2.0 -- [#2051](https://github.com/h3poteto/whalebird-desktop/pull/2051) build(deps): Bump electron-context-menu from 2.3.0 to 2.4.0 -- [#2085](https://github.com/h3poteto/whalebird-desktop/pull/2085) New Crowdin updates -- [#2055](https://github.com/h3poteto/whalebird-desktop/pull/2055) build(deps-dev): Bump sass-loader from 10.1.0 to 10.1.1 -- [#2053](https://github.com/h3poteto/whalebird-desktop/pull/2053) build(deps-dev): Bump @vue/test-utils from 1.1.1 to 1.1.2 -- [#2050](https://github.com/h3poteto/whalebird-desktop/pull/2050) build(deps-dev): Bump ts-loader from 8.0.11 to 8.0.14 -- [#2049](https://github.com/h3poteto/whalebird-desktop/pull/2049) build(deps-dev): Bump html-webpack-plugin from 4.5.0 to 4.5.1 -- [#2047](https://github.com/h3poteto/whalebird-desktop/pull/2047) build(deps-dev): Bump vue-loader from 15.9.5 to 15.9.6 -- [#2045](https://github.com/h3poteto/whalebird-desktop/pull/2045) build(deps): Bump vue-resize from 0.5.0 to 1.0.0 -- [#2044](https://github.com/h3poteto/whalebird-desktop/pull/2044) build(deps-dev): Bump webpack-merge from 5.4.0 to 5.7.3 -- [#2082](https://github.com/h3poteto/whalebird-desktop/pull/2082) New Crowdin updates -- [#2081](https://github.com/h3poteto/whalebird-desktop/pull/2081) closes #2079 Quit main application when press quit menu or Ctrl+Q -- [#2077](https://github.com/h3poteto/whalebird-desktop/pull/2077) New Crowdin updates -- [#2073](https://github.com/h3poteto/whalebird-desktop/pull/2073) New Crowdin updates -- [#2072](https://github.com/h3poteto/whalebird-desktop/pull/2072) New Crowdin updates - - -### Fixed -- [#2076](https://github.com/h3poteto/whalebird-desktop/pull/2076) Fix confirm message -- [#2070](https://github.com/h3poteto/whalebird-desktop/pull/2070) Don't wrap attachment previews in new toot -- [#2069](https://github.com/h3poteto/whalebird-desktop/pull/2069) closes #2033 Reject adding 5+ images before upload images in new toot - -## [4.3.2] - 2021-01-20 -### Changed -- [#2062](https://github.com/h3poteto/whalebird-desktop/pull/2062) New Crowdin updates -- [#2041](https://github.com/h3poteto/whalebird-desktop/pull/2041) build(deps-dev): Bump electron from 11.0.3 to 11.2.0 -- [#1996](https://github.com/h3poteto/whalebird-desktop/pull/1996) build(deps-dev): Bump typescript from 4.0.5 to 4.1.3 -- [#2031](https://github.com/h3poteto/whalebird-desktop/pull/2031) build(deps-dev): Bump eslint-plugin-prettier from 3.1.4 to 3.3.1 -- [#2027](https://github.com/h3poteto/whalebird-desktop/pull/2027) build(deps-dev): Bump eslint from 7.14.0 to 7.17.0 -- [#2026](https://github.com/h3poteto/whalebird-desktop/pull/2026) build(deps-dev): Bump core-js from 3.8.0 to 3.8.2 -- [#2040](https://github.com/h3poteto/whalebird-desktop/pull/2040) build(deps-dev): Bump @typescript-eslint/typescript-estree from 4.6.0 to 4.13.0 -- [#2034](https://github.com/h3poteto/whalebird-desktop/pull/2034) build(deps-dev): Bump @types/jest from 26.0.15 to 26.0.20 -- [#2004](https://github.com/h3poteto/whalebird-desktop/pull/2004) build(deps-dev): Bump eslint-config-prettier from 6.15.0 to 7.1.0 -- [#1969](https://github.com/h3poteto/whalebird-desktop/pull/1969) build(deps-dev): Bump cross-env from 7.0.2 to 7.0.3 -- [#2030](https://github.com/h3poteto/whalebird-desktop/pull/2030) build(deps-dev): Bump eslint-plugin-vue from 7.1.0 to 7.4.1 -- [#2029](https://github.com/h3poteto/whalebird-desktop/pull/2029) build(deps): [Security] Bump axios from 0.21.0 to 0.21.1 -- [#2001](https://github.com/h3poteto/whalebird-desktop/pull/2001) build(deps-dev): Bump copy-webpack-plugin from 6.3.2 to 6.4.1 -- [#2002](https://github.com/h3poteto/whalebird-desktop/pull/2002) build(deps): Bump sanitize-html from 2.1.2 to 2.3.0 -- [#1966](https://github.com/h3poteto/whalebird-desktop/pull/1966) build(deps-dev): Bump babel-jest from 26.6.1 to 26.6.3 -- [#2038](https://github.com/h3poteto/whalebird-desktop/pull/2038) New Crowdin updates -- [#1990](https://github.com/h3poteto/whalebird-desktop/pull/1990) build(deps-dev): Bump mini-css-extract-plugin from 1.2.1 to 1.3.3 -- [#1980](https://github.com/h3poteto/whalebird-desktop/pull/1980) build(deps-dev): Bump electron-packager from 15.1.0 to 15.2.0 -- [#1964](https://github.com/h3poteto/whalebird-desktop/pull/1964) build(deps-dev): Bump css-loader from 5.0.0 to 5.0.1 -- [#1961](https://github.com/h3poteto/whalebird-desktop/pull/1961) build(deps-dev): Bump jest from 26.6.1 to 26.6.3 -- [#1960](https://github.com/h3poteto/whalebird-desktop/pull/1960) build(deps-dev): Bump eslint-plugin-html from 6.1.0 to 6.1.1 -- [#2006](https://github.com/h3poteto/whalebird-desktop/pull/2006) build(deps): [Security] Bump node-notifier from 8.0.0 to 8.0.1 -- [#1992](https://github.com/h3poteto/whalebird-desktop/pull/1992) build(deps): [Security] Bump ini from 1.3.5 to 1.3.8 -- [#2019](https://github.com/h3poteto/whalebird-desktop/pull/2019) closes #1997 Add Sinhala in i18n -- [#2015](https://github.com/h3poteto/whalebird-desktop/pull/2015) New Crowdin updates -- [#2012](https://github.com/h3poteto/whalebird-desktop/pull/2012) New Crowdin updates -- [#2009](https://github.com/h3poteto/whalebird-desktop/pull/2009) Add Traditional Chinese in i18n -- [#2010](https://github.com/h3poteto/whalebird-desktop/pull/2010) New Crowdin updates -- [#2011](https://github.com/h3poteto/whalebird-desktop/pull/2011) Update crowdin config for zh-TW - -### Fixed -- [#2037](https://github.com/h3poteto/whalebird-desktop/pull/2037) Fix icon for mac app -- [#2020](https://github.com/h3poteto/whalebird-desktop/pull/2020) Fix cancel action for confirm in element-ui -- [#2016](https://github.com/h3poteto/whalebird-desktop/pull/2016) closes #2014 Display only predefined notification type in notifications -- [#2018](https://github.com/h3poteto/whalebird-desktop/pull/2018) refs #1997 Fix Sinhala language code for crowdin -- [#2013](https://github.com/h3poteto/whalebird-desktop/pull/2013) Fix typos - -## [4.3.1] - 2020-12-03 -### Changed -- [#1967](https://github.com/h3poteto/whalebird-desktop/pull/1967) Update node version to 14.15.1 -- [#1958](https://github.com/h3poteto/whalebird-desktop/pull/1958) Update definition type files -- [#1950](https://github.com/h3poteto/whalebird-desktop/pull/1950) Bump node-sass from 4.14.1 to 5.0.0 -- [#1954](https://github.com/h3poteto/whalebird-desktop/pull/1954) Bump electron from 10.1.5 to 11.0.3 -- [#1951](https://github.com/h3poteto/whalebird-desktop/pull/1951) Bump copy-webpack-plugin from 6.2.1 to 6.3.2 -- [#1946](https://github.com/h3poteto/whalebird-desktop/pull/1946) Bump vuex from 3.5.1 to 3.6.0 -- [#1941](https://github.com/h3poteto/whalebird-desktop/pull/1941) Bump eslint from 7.12.1 to 7.14.0 -- [#1945](https://github.com/h3poteto/whalebird-desktop/pull/1945) Bump electron-log from 4.2.4 to 4.3.0 -- [#1922](https://github.com/h3poteto/whalebird-desktop/pull/1922) Bump eslint-config-standard from 14.1.1 to 16.0.2 -- [#1956](https://github.com/h3poteto/whalebird-desktop/pull/1956) Bump @vue/test-utils from 1.1.0 to 1.1.1 -- [#1949](https://github.com/h3poteto/whalebird-desktop/pull/1949) Bump ts-jest from 26.4.3 to 26.4.4 -- [#1955](https://github.com/h3poteto/whalebird-desktop/pull/1955) Bump webpack-merge from 5.2.0 to 5.4.0 -- [#1953](https://github.com/h3poteto/whalebird-desktop/pull/1953) Bump prettier from 2.1.2 to 2.2.1 -- [#1952](https://github.com/h3poteto/whalebird-desktop/pull/1952) Bump core-js from 3.6.5 to 3.8.0 -- [#1948](https://github.com/h3poteto/whalebird-desktop/pull/1948) Bump sanitize-html from 2.1.1 to 2.1.2 -- [#1947](https://github.com/h3poteto/whalebird-desktop/pull/1947) Bump i18next from 19.8.3 to 19.8.4 -- [#1943](https://github.com/h3poteto/whalebird-desktop/pull/1943) Bump electron-json-storage from 4.2.0 to 4.3.0 -- [#1942](https://github.com/h3poteto/whalebird-desktop/pull/1942) Bump vue-router from 3.4.8 to 3.4.9 -- [#1940](https://github.com/h3poteto/whalebird-desktop/pull/1940) Bump babel-loader from 8.1.0 to 8.2.2 -- [#1939](https://github.com/h3poteto/whalebird-desktop/pull/1939) Bump stylelint from 13.7.2 to 13.8.0 -- [#1938](https://github.com/h3poteto/whalebird-desktop/pull/1938) refactor: Use invoke instead of send for ipc -- [#1930](https://github.com/h3poteto/whalebird-desktop/pull/1930) Bump @babel/core from 7.11.6 to 7.12.9 -- [#1931](https://github.com/h3poteto/whalebird-desktop/pull/1931) Bump @types/node from 14.14.5 to 14.14.10 -- [#1928](https://github.com/h3poteto/whalebird-desktop/pull/1928) Bump @babel/preset-env from 7.11.5 to 7.12.7 -- [#1927](https://github.com/h3poteto/whalebird-desktop/pull/1927) Bump eslint-plugin-standard from 4.0.1 to 5.0.0 -- [#1916](https://github.com/h3poteto/whalebird-desktop/pull/1916) Bump ts-loader from 8.0.4 to 8.0.11 -- [#1914](https://github.com/h3poteto/whalebird-desktop/pull/1914) Bump @types/lodash from 4.14.162 to 4.14.165 -- [#1911](https://github.com/h3poteto/whalebird-desktop/pull/1911) Bump webpack-cli from 3.3.12 to 4.2.0 -- [#1908](https://github.com/h3poteto/whalebird-desktop/pull/1908) Bump @babel/runtime from 7.11.2 to 7.12.5 -- [#1906](https://github.com/h3poteto/whalebird-desktop/pull/1906) Bump vue-loader from 15.9.3 to 15.9.5 -- [#1892](https://github.com/h3poteto/whalebird-desktop/pull/1892) Bump @babel/plugin-proposal-class-properties from 7.10.4 to 7.12.1 -- [#1919](https://github.com/h3poteto/whalebird-desktop/pull/1919) Bump sass-loader from 10.0.2 to 10.1.0 -- [#1895](https://github.com/h3poteto/whalebird-desktop/pull/1895) Bump node-loader from 1.0.1 to 1.0.2 -- [#1881](https://github.com/h3poteto/whalebird-desktop/pull/1881) Bump url-loader from 4.1.0 to 4.1.1 -- [#1890](https://github.com/h3poteto/whalebird-desktop/pull/1890) Bump @babel/plugin-transform-runtime from 7.11.5 to 7.12.1 -- [#1887](https://github.com/h3poteto/whalebird-desktop/pull/1887) Bump file-loader from 6.1.0 to 6.2.0 -- [#1885](https://github.com/h3poteto/whalebird-desktop/pull/1885) Bump @types/jest from 26.0.14 to 26.0.15 -- [#1877](https://github.com/h3poteto/whalebird-desktop/pull/1877) Bump electron-builder from 22.8.1 to 22.9.1 -- [#1913](https://github.com/h3poteto/whalebird-desktop/pull/1913) New Crowdin updates - -### Fixed -- [#1972](https://github.com/h3poteto/whalebird-desktop/pull/1972) clean: Remove unnecessary comments -- [#1971](https://github.com/h3poteto/whalebird-desktop/pull/1971) Fix build command for mas -- [#1970](https://github.com/h3poteto/whalebird-desktop/pull/1970) fix: Don't always render emoji picker and tool menu -- [#1959](https://github.com/h3poteto/whalebird-desktop/pull/1959) closes #1936 Fix compose window height when add poll options -- [#1937](https://github.com/h3poteto/whalebird-desktop/pull/1937) closes #1932 Use el-popper instead of vue-popper for emoji picker in statuses -- [#1935](https://github.com/h3poteto/whalebird-desktop/pull/1935) closes #1934 Use el-popper instead of vue-popper in Toot menu -- [#1933](https://github.com/h3poteto/whalebird-desktop/pull/1933) closes #1921 Re-render when update toot in timelines -- [#1924](https://github.com/h3poteto/whalebird-desktop/pull/1924) closes #1782 Avoid shortcut key on media description in new toot - -## [4.3.0] - 2020-10-31 -### Added -- [#1858](https://github.com/h3poteto/whalebird-desktop/pull/1858) closes #1804 Add columns under Toots in side menu -- [#1852](https://github.com/h3poteto/whalebird-desktop/pull/1852) closes #1845 Add Central Atlas Tamazight in i18n -- [#1842](https://github.com/h3poteto/whalebird-desktop/pull/1842) closes #1766 Introduce vue-virtual-scroll for all timelines - -### Changed -- [#1893](https://github.com/h3poteto/whalebird-desktop/pull/1893) Bump eslint-config-prettier from 6.14.0 to 6.15.0 -- [#1888](https://github.com/h3poteto/whalebird-desktop/pull/1888) Bump axios from 0.20.0 to 0.21.0 -- [#1886](https://github.com/h3poteto/whalebird-desktop/pull/1886) Bump webpack-merge from 5.1.4 to 5.2.0 -- [#1884](https://github.com/h3poteto/whalebird-desktop/pull/1884) Bump @babel/plugin-proposal-object-rest-spread from 7.11.0 to 7.12.1 -- [#1882](https://github.com/h3poteto/whalebird-desktop/pull/1882) Bump ajv from 6.12.5 to 6.12.6 -- [#1880](https://github.com/h3poteto/whalebird-desktop/pull/1880) Bump css-loader from 4.3.0 to 5.0.0 -- [#1879](https://github.com/h3poteto/whalebird-desktop/pull/1879) Bump mini-css-extract-plugin from 1.2.0 to 1.2.1 -- [#1878](https://github.com/h3poteto/whalebird-desktop/pull/1878) Bump typescript from 4.0.3 to 4.0.5 -- [#1876](https://github.com/h3poteto/whalebird-desktop/pull/1876) Bump @types/lodash from 4.14.161 to 4.14.162 -- [#1865](https://github.com/h3poteto/whalebird-desktop/pull/1865) Bump jest from 26.4.2 to 26.6.1 -- [#1875](https://github.com/h3poteto/whalebird-desktop/pull/1875) Bump @types/node from 14.11.1 to 14.14.5 -- [#1874](https://github.com/h3poteto/whalebird-desktop/pull/1874) Bump eslint from 7.9.0 to 7.12.1 -- [#1873](https://github.com/h3poteto/whalebird-desktop/pull/1873) Bump ts-jest from 26.4.0 to 26.4.3 -- [#1868](https://github.com/h3poteto/whalebird-desktop/pull/1868) Bump i18next from 19.7.0 to 19.8.3 -- [#1867](https://github.com/h3poteto/whalebird-desktop/pull/1867) Bump electron from 10.1.2 to 10.1.5 -- [#1872](https://github.com/h3poteto/whalebird-desktop/pull/1872) Bump vue-router from 3.4.3 to 3.4.8 -- [#1871](https://github.com/h3poteto/whalebird-desktop/pull/1871) Bump @typescript-eslint/typescript-estree from 4.1.1 to 4.6.0 -- [#1866](https://github.com/h3poteto/whalebird-desktop/pull/1866) Bump babel-jest from 26.3.0 to 26.6.1 -- [#1864](https://github.com/h3poteto/whalebird-desktop/pull/1864) Bump mini-css-extract-plugin from 0.11.2 to 1.2.0 -- [#1862](https://github.com/h3poteto/whalebird-desktop/pull/1862) Bump sanitize-html from 1.27.4 to 2.1.1 -- [#1859](https://github.com/h3poteto/whalebird-desktop/pull/1859) Bump eslint-config-prettier from 6.11.0 to 6.14.0 -- [#1848](https://github.com/h3poteto/whalebird-desktop/pull/1848) Bump eslint-plugin-vue from 6.2.2 to 7.1.0 -- [#1836](https://github.com/h3poteto/whalebird-desktop/pull/1836) Bump style-loader from 1.2.1 to 2.0.0 -- [#1827](https://github.com/h3poteto/whalebird-desktop/pull/1827) Bump moment from 2.28.0 to 2.29.1 -- [#1839](https://github.com/h3poteto/whalebird-desktop/pull/1839) Bump copy-webpack-plugin from 6.1.1 to 6.2.1 -- [#1806](https://github.com/h3poteto/whalebird-desktop/pull/1806) Bump del from 5.1.0 to 6.0.0 -- [#1805](https://github.com/h3poteto/whalebird-desktop/pull/1805) Bump eslint-plugin-import from 2.22.0 to 2.22.1 -- [#1803](https://github.com/h3poteto/whalebird-desktop/pull/1803) Bump stylelint from 13.7.1 to 13.7.2 -- [#1853](https://github.com/h3poteto/whalebird-desktop/pull/1853) New Crowdin updates -- [#1851](https://github.com/h3poteto/whalebird-desktop/pull/1851) New Crowdin updates -- [#1820](https://github.com/h3poteto/whalebird-desktop/pull/1820) Clean up unused method calling -- [#1813](https://github.com/h3poteto/whalebird-desktop/pull/1813) Fix changelog -- [#1812](https://github.com/h3poteto/whalebird-desktop/pull/1812) Update changelog - -### Fixed -- [#1819](https://github.com/h3poteto/whalebird-desktop/pull/1819) closes #1818 Change nodeIntegration to fix aboutWindow - -## [4.2.3] - 2020-09-25 -### Added -- [#1780](https://github.com/h3poteto/whalebird-desktop/pull/1780) closes #1351 Add theme color in new toot window - -### Changed - -- [#1795](https://github.com/h3poteto/whalebird-desktop/pull/1795) Update electron version to 10.1.2 for mas -- [#1786](https://github.com/h3poteto/whalebird-desktop/pull/1786) Bump typescript from 3.9.7 to 4.0.3 -- [#1793](https://github.com/h3poteto/whalebird-desktop/pull/1793) Bump ts-loader from 8.0.3 to 8.0.4 -- [#1774](https://github.com/h3poteto/whalebird-desktop/pull/1774) Bump @typescript-eslint/typescript-estree from 3.10.1 to 4.1.1 -- [#1773](https://github.com/h3poteto/whalebird-desktop/pull/1773) Bump electron from 10.1.0 to 10.1.2 -- [#1787](https://github.com/h3poteto/whalebird-desktop/pull/1787) Bump @types/node from 14.10.1 to 14.11.1 -- [#1794](https://github.com/h3poteto/whalebird-desktop/pull/1794) Bump ts-jest from 26.3.0 to 26.4.0 -- [#1792](https://github.com/h3poteto/whalebird-desktop/pull/1792) Bump html-webpack-plugin from 4.4.1 to 4.5.0 -- [#1788](https://github.com/h3poteto/whalebird-desktop/pull/1788) Bump copy-webpack-plugin from 6.1.0 to 6.1.1 -- [#1785](https://github.com/h3poteto/whalebird-desktop/pull/1785) Bump webpack from 4.44.1 to 4.44.2 -- [#1784](https://github.com/h3poteto/whalebird-desktop/pull/1784) Bump electron-builder from 22.8.0 to 22.8.1 -- [#1776](https://github.com/h3poteto/whalebird-desktop/pull/1776) Bump prettier from 2.1.1 to 2.1.2 -- [#1783](https://github.com/h3poteto/whalebird-desktop/pull/1783) Bump @types/jest from 26.0.13 to 26.0.14 -- [#1769](https://github.com/h3poteto/whalebird-desktop/pull/1769) Bump moment from 2.27.0 to 2.28.0 -- [#1770](https://github.com/h3poteto/whalebird-desktop/pull/1770) Bump ajv from 6.12.4 to 6.12.5 -- [#1740](https://github.com/h3poteto/whalebird-desktop/pull/1740) Bump axios from 0.19.2 to 0.20.0 -- [#1684](https://github.com/h3poteto/whalebird-desktop/pull/1784) Bump @babel/runtime from 7.11.0 to 7.11.2 -- [#1779](https://github.com/h3poteto/whalebird-desktop/pull/1779) Update issue templates -- [#1778](https://github.com/h3poteto/whalebird-desktop/pull/1778) closes #1349 Set line-height in body to change according to font-size -- [#1777](https://github.com/h3poteto/whalebird-desktop/pull/1777) closes #1755 Set backgroundColor to BrowserWindow to improve sub-pixel anti-aliasing -- [#1764](https://github.com/h3poteto/whalebird-desktop/pull/1764) Fix npm command to yarn -- [#1763](https://github.com/h3poteto/whalebird-desktop/pull/1763) Use yarn.lock to generate cache key in circleci -- [#1762](https://github.com/h3poteto/whalebird-desktop/pull/1762) Clean up unused packages -- [#1761](https://github.com/h3poteto/whalebird-desktop/pull/1761) Use yarn instead of npm -- [#1756](https://github.com/h3poteto/whalebird-desktop/pull/1756) New Crowdin updates - -### Fixed - -- [#1791](https://github.com/h3poteto/whalebird-desktop/pull/1791) closes #1285 Fix highlighted account icon -- [#1790](https://github.com/h3poteto/whalebird-desktop/pull/1790) Re-render compose window using v-if for resize handler event -- [#1781](https://github.com/h3poteto/whalebird-desktop/pull/1781) Fix window height of new toot when close window with some contents -- [#1765](https://github.com/h3poteto/whalebird-desktop/pull/1765) Fix types in integration spec - - - -## [4.2.2] - 2020-09-03 -### Added -- [#1732](https://github.com/h3poteto/whalebird-desktop/pull/1732) closes #1713 Support to add bookmarks -- [#1720](https://github.com/h3poteto/whalebird-desktop/pull/1320) closes #1714 Add bookmark list as timeline -- [#1715](https://github.com/h3poteto/whalebird-desktop/pull/1715) closes #1453 Support quotation reblog - -### Changed - -- [#1729](https://github.com/h3poteto/whalebird-desktop/pull/1729) Bump @typescript-eslint/typescript-estree from 3.7.1 to 3.10.1 -- [#1734](https://github.com/h3poteto/whalebird-desktop/pull/1734) Bump electron from 9.1.2 to 10.1.0 -- [#1728](https://github.com/h3poteto/whalebird-desktop/pull/1728) Bump @typescript-eslint/eslint-plugin from 3.7.1 to 3.10.1 -- [#1736](https://github.com/h3poteto/whalebird-desktop/pull/1736) New Crowdin updates -- [#1733](https://github.com/h3poteto/whalebird-desktop/pull/1733) Bump mini-css-extract-plugin from 0.9.0 to 0.11.0 -- [#1727](https://github.com/h3poteto/whalebird-desktop/pull/1727) Bump sass-loader from 9.0.2 to 10.0.1 -- [#1725](https://github.com/h3poteto/whalebird-desktop/pull/1725) Bump @types/lodash from 4.14.158 to 4.14.160 -- [#1724](https://github.com/h3poteto/whalebird-desktop/pull/1724) Bump @typescript-eslint/parser from 3.7.1 to 3.10.1 -- [#1723](https://github.com/h3poteto/whalebird-desktop/pull/1723) Bump jest from 26.2.2 to 26.4.2 -- [#1717](https://github.com/h3poteto/whalebird-desktop/pull/1717) Bump @babel/core from 7.11.0 to 7.11.4 -- [#1716](https://github.com/h3poteto/whalebird-desktop/pull/1716) Bump lodash from 4.17.19 to 4.17.20 -- [#1704](https://github.com/h3poteto/whalebird-desktop/pull/1704) Bump eslint from 7.5.0 to 7.7.0 -- [#1735](https://github.com/h3poteto/whalebird-desktop/pull/1735) New Crowdin updates -- [#1722](https://github.com/h3poteto/whalebird-desktop/pull/1722) Bump ts-loader from 8.0.1 to 8.0.3 -- [#1709](https://github.com/h3poteto/whalebird-desktop/pull/1709) Bump webpack-merge from 5.0.9 to 5.1.2 -- [#1701](https://github.com/h3poteto/whalebird-desktop/pull/1701) Bump vue-router from 3.3.4 to 3.4.3 -- [#1699](https://github.com/h3poteto/whalebird-desktop/pull/1599) Bump babel-jest from 26.2.2 to 26.3.0 -- [#1692](https://github.com/h3poteto/whalebird-desktop/pull/1682) Bump electron-context-menu from 2.2.0 to 2.3.0 -- [#1690](https://github.com/h3poteto/whalebird-desktop/pull/1690) Bump jsdom from 16.3.0 to 16.4.0 -- [#1689](https://github.com/h3poteto/whalebird-desktop/pull/1689) Bump eslint-plugin-html from 6.0.2 to 6.0.3 -- [#1731](https://github.com/h3poteto/whalebird-desktop/pull/1731) New Crowdin updates -- [#1721](https://github.com/h3poteto/whalebird-desktop/pull/1721) Remove unused nvmrc -- [#1688](https://github.com/h3poteto/whalebird-desktop/pull/1688) Bump css-loader from 3.6.0 to 4.2.1 -- [#1705](https://github.com/h3poteto/whalebird-desktop/pull/1705) [Security] Bump dot-prop from 4.2.0 to 4.2.1 - -### Fixed - -- [#1719](https://github.com/h3poteto/whalebird-desktop/pull/1719) refs #1694 Set limit height when new toot window height is resized -- [#1711](https://github.com/h3poteto/whalebird-desktop/pull/1711) Fix options for css-loader 4.0.0 - - -## [4.2.1] - 2020-08-07 -### Changed - -- [#1668](https://github.com/h3poteto/whalebird-desktop/pull/1668) Revert "Bump css-loader from 3.6.0 to 4.1.1" -- [#1669](https://github.com/h3poteto/whalebird-desktop/pull/1669) Update @typescript-eslint/parser and jest -- [#1664](https://github.com/h3poteto/whalebird-desktop/pull/1664) Bump @babel/plugin-proposal-object-rest-spread from 7.10.4 to 7.11.0 -- [#1654](https://github.com/h3poteto/whalebird-desktop/pull/1654) Bump megalodon from 3.2.3 to 3.2.4 -- [#1667](https://github.com/h3poteto/whalebird-desktop/pull/1667) Bump ts-jest from 24.3.0 to 26.1.4 -- [#1666](https://github.com/h3poteto/whalebird-desktop/pull/1666) Bump @typescript-eslint/eslint-plugin from 2.34.0 to 3.7.1 -- [#1665](https://github.com/h3poteto/whalebird-desktop/pull/1665) Bump eslint from 6.8.0 to 7.5.0 -- [#1663](https://github.com/h3poteto/whalebird-desktop/pull/1663) Bump @babel/preset-env from 7.10.4 to 7.11.0 -- [#1661](https://github.com/h3poteto/whalebird-desktop/pull/1661) Bump electron-builder from 22.7.0 to 22.8.0 -- [#1660](https://github.com/h3poteto/whalebird-desktop/pull/1660) Bump node-loader from 1.0.0 to 1.0.1 -- [#1659](https://github.com/h3poteto/whalebird-desktop/pull/1659) Bump @babel/runtime from 7.10.5 to 7.11.0 -- [#1658](https://github.com/h3poteto/whalebird-desktop/pull/1658) Bump babel-jest from 26.1.0 to 26.2.2 -- [#1657](https://github.com/h3poteto/whalebird-desktop/pull/1657) Bump blueimp-load-image from 5.13.0 to 5.14.0 -- [#1656](https://github.com/h3poteto/whalebird-desktop/pull/1656) Bump webpack from 4.43.0 to 4.44.1 -- [#1655](https://github.com/h3poteto/whalebird-desktop/pull/1655) Bump @babel/core from 7.10.5 to 7.11.0 -- [#1645](https://github.com/h3poteto/whalebird-desktop/pull/1645) Bump electron from 9.1.0 to 9.1.2 -- [#1653](https://github.com/h3poteto/whalebird-desktop/pull/1653) Bump @babel/plugin-transform-runtime from 7.10.4 to 7.11.0 -- [#1649](https://github.com/h3poteto/whalebird-desktop/pull/1649) Bump sanitize-html from 1.27.0 to 1.27.2 -- [#1648](https://github.com/h3poteto/whalebird-desktop/pull/1648) Bump css-loader from 3.6.0 to 4.1.1 -- [#1646](https://github.com/h3poteto/whalebird-desktop/pull/1646) [Security] Bump elliptic from 6.5.2 to 6.5.3 -- [#1644](https://github.com/h3poteto/whalebird-desktop/pull/1644) Bump @types/node from 14.0.20 to 14.0.27 -- [#1643](https://github.com/h3poteto/whalebird-desktop/pull/1643) Bump @typescript-eslint/typescript-estree from 3.6.0 to 3.7.1 -- [#1640](https://github.com/h3poteto/whalebird-desktop/pull/1640) Bump i18next from 19.5.6 to 19.6.3 -- [#1636](https://github.com/h3poteto/whalebird-desktop/pull/1636) Bump electron-mock-ipc from 0.3.6 to 0.3.7 -- [#1635](https://github.com/h3poteto/whalebird-desktop/pull/1635) Bump regenerator-runtime from 0.13.5 to 0.13.7 -- [#1634](https://github.com/h3poteto/whalebird-desktop/pull/1634) Bump @types/lodash from 4.14.157 to 4.14.158 -- [#1628](https://github.com/h3poteto/whalebird-desktop/pull/1628) Bump vue-awesome from 4.0.2 to 4.1.0 -- [#1626](https://github.com/h3poteto/whalebird-desktop/pull/1626) Bump electron-devtools-installer from 3.1.0 to 3.1.1 -- [#1624](https://github.com/h3poteto/whalebird-desktop/pull/1624) Bump typescript from 3.9.6 to 3.9.7 -- [#1625](https://github.com/h3poteto/whalebird-desktop/pull/1625) Bump cfonts from 2.8.5 to 2.8.6 -- [#1617](https://github.com/h3poteto/whalebird-desktop/pull/1617) Bump @babel/core from 7.10.4 to 7.10.5 -- [#1616](https://github.com/h3poteto/whalebird-desktop/pull/1616) Bump ts-loader from 8.0.0 to 8.0.1 -- [#1615](https://github.com/h3poteto/whalebird-desktop/pull/1615) Bump @babel/runtime from 7.10.4 to 7.10.5 -- [#1611](https://github.com/h3poteto/whalebird-desktop/pull/1611) Bump electron-context-menu from 2.1.0 to 2.2.0 -- [#1609](https://github.com/h3poteto/whalebird-desktop/pull/1609) Bump @types/nedb from 1.8.9 to 1.8.10 -- [#1623](https://github.com/h3poteto/whalebird-desktop/pull/1623) Add AUR badge in README -- [#1621](https://github.com/h3poteto/whalebird-desktop/pull/1621) Change AUR package in README - -### Fixed - -- [#1651](https://github.com/h3poteto/whalebird-desktop/pull/1651) closes #1647 Adjust status height when attachments are dropped -- [#1650](https://github.com/h3poteto/whalebird-desktop/pull/1650) closes #1642 Fix calculate diff in change list memberships -- [#1622](https://github.com/h3poteto/whalebird-desktop/pull/1622) Use target instead of linter.eslint.dir in sideci.yml - - - -## [4.2.0] - 2020-07-14 -### Added -- [#1555](https://github.com/h3poteto/whalebird-desktop/pull/1555) refs #1316 Allow resize new toot window - -### Changed -- [#1608](https://github.com/h3poteto/whalebird-desktop/pull/1608) Bump i18next from 19.5.5 to 19.5.6 -- [#1607](https://github.com/h3poteto/whalebird-desktop/pull/1607) Bump jsdom from 16.2.2 to 16.3.0 -- [#1583](https://github.com/h3poteto/whalebird-desktop/pull/1583) Bump electron from 9.0.3 to 9.1.0 -- [#1604](https://github.com/h3poteto/whalebird-desktop/pull/1604) Bump electron-json-storage from 4.1.8 to 4.2.0 -- [#1606](https://github.com/h3poteto/whalebird-desktop/pull/1606) Bump webpack-merge from 5.0.8 to 5.0.9 -- [#1605](https://github.com/h3poteto/whalebird-desktop/pull/1605) Bump electron-mock-ipc from 0.3.5 to 0.3.6 -- [#1601](https://github.com/h3poteto/whalebird-desktop/pull/1601) Bump ajv from 6.12.2 to 6.12.3 -- [#1598](https://github.com/h3poteto/whalebird-desktop/pull/1598) Bump @types/node from 14.0.13 to 14.0.20 -- [#1597](https://github.com/h3poteto/whalebird-desktop/pull/1597) Bump typescript from 3.9.5 to 3.9.6 -- [#1595](https://github.com/h3poteto/whalebird-desktop/pull/1595) Bump electron-devtools-installer from 3.0.0 to 3.1.0 -- [#1587](https://github.com/h3poteto/whalebird-desktop/pull/1587) Bump i18next from 19.5.4 to 19.5.5 -- [#1603](https://github.com/h3poteto/whalebird-desktop/pull/1603) Bump eslint-plugin-import from 2.21.2 to 2.22.0 -- [#1602](https://github.com/h3poteto/whalebird-desktop/pull/1602) Bump webpack-merge from 4.2.2 to 5.0.8 -- [#1600](https://github.com/h3poteto/whalebird-desktop/pull/1600) Bump ts-loader from 7.0.5 to 8.0.0 -- [#1599](https://github.com/h3poteto/whalebird-desktop/pull/1599) Bump electron-context-menu from 2.0.1 to 2.1.0 -- [#1596](https://github.com/h3poteto/whalebird-desktop/pull/1596) Bump sass-loader from 8.0.2 to 9.0.2 -- [#1592](https://github.com/h3poteto/whalebird-desktop/pull/1592) Bump @babel/plugin-proposal-class-properties from 7.10.1 to 7.10.4 -- [#1591](https://github.com/h3poteto/whalebird-desktop/pull/1591) Bump vuex from 3.4.0 to 3.5.1 -- [#1593](https://github.com/h3poteto/whalebird-desktop/pull/1593) Bump copy-webpack-plugin from 6.0.2 to 6.0.3 -- [#1594](https://github.com/h3poteto/whalebird-desktop/pull/1594) Bump vue-loader from 15.9.2 to 15.9.3 -- [#1590](https://github.com/h3poteto/whalebird-desktop/pull/1590) Bump babel-jest from 26.0.1 to 26.1.0 -- [#1589](https://github.com/h3poteto/whalebird-desktop/pull/1589) Bump node-loader from 0.6.0 to 1.0.0 -- [#1588](https://github.com/h3poteto/whalebird-desktop/pull/1588) Bump electron-packager from 14.2.1 to 15.0.0 -- [#1586](https://github.com/h3poteto/whalebird-desktop/pull/1586) Bump lodash from 4.17.15 to 4.17.19 -- [#1578](https://github.com/h3poteto/whalebird-desktop/pull/1578) Bump @babel/runtime from 7.10.2 to 7.10.4 -- [#1580](https://github.com/h3poteto/whalebird-desktop/pull/1580) Bump @babel/core from 7.10.2 to 7.10.4 -- [#1579](https://github.com/h3poteto/whalebird-desktop/pull/1579) Bump @babel/plugin-transform-runtime from 7.10.1 to 7.10.4 -- [#1582](https://github.com/h3poteto/whalebird-desktop/pull/1582) Bump i18next from 19.4.5 to 19.5.4 -- [#1585](https://github.com/h3poteto/whalebird-desktop/pull/1585) Bump @typescript-eslint/typescript-estree from 3.2.0 to 3.6.0 -- [#1577](https://github.com/h3poteto/whalebird-desktop/pull/1577) Bump @babel/preset-env from 7.10.2 to 7.10.4 -- [#1576](https://github.com/h3poteto/whalebird-desktop/pull/1576) Bump @babel/plugin-proposal-object-rest-spread from 7.10.1 to 7.10.4 -- [#1570](https://github.com/h3poteto/whalebird-desktop/pull/1570) Bump @types/lodash from 4.14.155 to 4.14.157 -- [#1563](https://github.com/h3poteto/whalebird-desktop/pull/1563) Bump blueimp-load-image from 5.12.0 to 5.13.0 -- [#1557](https://github.com/h3poteto/whalebird-desktop/pull/1557) Bump moment from 2.26.0 to 2.27.0 -- [#1556](https://github.com/h3poteto/whalebird-desktop/pull/1556) Bump webpack-cli from 3.3.11 to 3.3.12 -- [#1554](https://github.com/h3poteto/whalebird-desktop/pull/1554) Bump sanitize-html from 1.26.0 to 1.27.0 -- [#1553](https://github.com/h3poteto/whalebird-desktop/pull/1553) Bump stylelint from 13.6.0 to 13.6.1 -- [#1551](https://github.com/h3poteto/whalebird-desktop/pull/1551) Bump electron-log from 4.2.1 to 4.2.2 -- [#1549](https://github.com/h3poteto/whalebird-desktop/pull/1549) Bump eslint-plugin-prettier from 3.1.3 to 3.1.4 -- [#1548](https://github.com/h3poteto/whalebird-desktop/pull/1548) Bump vue-router from 3.3.3 to 3.3.4 -- [#1547](https://github.com/h3poteto/whalebird-desktop/pull/1547) Bump cfonts from 2.8.3 to 2.8.5 -- [#1545](https://github.com/h3poteto/whalebird-desktop/pull/1545) Bump css-loader from 3.5.3 to 3.6.0 -- [#1568](https://github.com/h3poteto/whalebird-desktop/pull/1568) New Crowdin updates - -### Fixed -- [#1573](https://github.com/h3poteto/whalebird-desktop/pull/1573) closes #1542 Set proxy config for BrowserWindow - -## [4.1.3] - 2020-06-16 -### Added -- [#1514](https://github.com/h3poteto/whalebird-desktop/pull/1514) closes #1348 Add a menu to hide menu bar -- [#1524](https://github.com/h3poteto/whalebird-desktop/pull/1524) closes #1427 Get and show identity proof of accounts - -### Changed -- [#1538](https://github.com/h3poteto/whalebird-desktop/pull/1538) Bump copy-webpack-plugin from 6.0.1 to 6.0.2 -- [#1543](https://github.com/h3poteto/whalebird-desktop/pull/1543) Bump cfonts from 2.8.2 to 2.8.3 -- [#1534](https://github.com/h3poteto/whalebird-desktop/pull/1534) Bump @babel/plugin-proposal-object-rest-spread from 7.9.6 to 7.10.1 -- [#1544](https://github.com/h3poteto/whalebird-desktop/pull/1544) Bump vue-router from 3.2.0 to 3.3.3 -- [#1541](https://github.com/h3poteto/whalebird-desktop/pull/1541) Bump moment from 2.24.0 to 2.26.0 -- [#1540](https://github.com/h3poteto/whalebird-desktop/pull/1540) Bump about-window from 1.13.2 to 1.13.4 -- [#1532](https://github.com/h3poteto/whalebird-desktop/pull/1532) Bump electron-packager from 14.0.6 to 14.2.1 -- [#1537](https://github.com/h3poteto/whalebird-desktop/pull/1537) Bump eslint-plugin-import from 2.20.2 to 2.21.2 -- [#1536](https://github.com/h3poteto/whalebird-desktop/pull/1536) Bump @types/lodash from 4.14.152 to 4.14.155 -- [#1533](https://github.com/h3poteto/whalebird-desktop/pull/1533) Bump typescript from 3.9.3 to 3.9.5 -- [#1531](https://github.com/h3poteto/whalebird-desktop/pull/1531) Bump stylelint from 13.5.0 to 13.6.0 -- [#1530](https://github.com/h3poteto/whalebird-desktop/pull/1530) Bump @babel/plugin-transform-runtime from 7.10.0 to 7.10.1 -- [#1529](https://github.com/h3poteto/whalebird-desktop/pull/1529) Bump electron-devtools-installer from 2.2.4 to 3.0.0 -- [#1528](https://github.com/h3poteto/whalebird-desktop/pull/1528) Bump chalk from 4.0.0 to 4.1.0 -- [#1501](https://github.com/h3poteto/whalebird-desktop/pull/1501) Bump i18next from 19.4.1 to 19.4.5 -- [#1526](https://github.com/h3poteto/whalebird-desktop/pull/1526) Bump webpack from 4.42.1 to 4.43.0 -- [#1525](https://github.com/h3poteto/whalebird-desktop/pull/1525) Bump @babel/core from 7.9.6 to 7.10.2 -- [#1519](https://github.com/h3poteto/whalebird-desktop/pull/1519) Bump @babel/preset-env from 7.9.6 to 7.10.2 -- [#1491](https://github.com/h3poteto/whalebird-desktop/pull/1491) Bump electron-builder from 22.4.1 to 22.7.0 -- [#1527](https://github.com/h3poteto/whalebird-desktop/pull/1527) Bump @types/node from 14.0.5 to 14.0.13 -- [#1489](https://github.com/h3poteto/whalebird-desktop/pull/1489) Bump animate.css from 3.7.2 to 4.1.0 -- [#1520](https://github.com/h3poteto/whalebird-desktop/pull/1520) Bump @typescript-eslint/typescript-estree from 2.33.0 to 3.2.0 -- [#1510](https://github.com/h3poteto/whalebird-desktop/pull/1510) Bump sanitize-html from 1.23.0 to 1.26.0 -- [#1509](https://github.com/h3poteto/whalebird-desktop/pull/1509) Bump electron-log from 4.1.1 to 4.2.1 -- [#1505](https://github.com/h3poteto/whalebird-desktop/pull/1505) Bump @babel/runtime from 7.9.6 to 7.10.2 -- [#1486](https://github.com/h3poteto/whalebird-desktop/pull/1486) Bump @typescript-eslint/parser from 2.33.0 to 2.34.0 -- [#1500](https://github.com/h3poteto/whalebird-desktop/pull/1500) Bump electron-debug from 3.0.1 to 3.1.0 -- [#1498](https://github.com/h3poteto/whalebird-desktop/pull/1498) Bump core-js from 3.6.4 to 3.6.5 -- [#1496](https://github.com/h3poteto/whalebird-desktop/pull/1496) Bump @panter/vue-i18next from 0.15.1 to 0.15.2 -- [#1493](https://github.com/h3poteto/whalebird-desktop/pull/1493) Bump vue-loader from 15.9.1 to 15.9.2 -- [#1492](https://github.com/h3poteto/whalebird-desktop/pull/1492) Bump @babel/plugin-proposal-class-properties from 7.8.3 to 7.10.1 -- [#1490](https://github.com/h3poteto/whalebird-desktop/pull/1490) Bump vuex from 3.1.3 to 3.4.0 -- [#1488](https://github.com/h3poteto/whalebird-desktop/pull/1488) Bump blueimp-load-image from 5.10.0 to 5.12.0 -- [#1484](https://github.com/h3poteto/whalebird-desktop/pull/1484) Bump @vue/test-utils from 1.0.0-beta.33 to 1.0.3 -- [#1523](https://github.com/h3poteto/whalebird-desktop/pull/1523) closes #1280 Enable spellchecker -- [#1443](https://github.com/h3poteto/whalebird-desktop/pull/1443) Bump electron-context-menu from 0.16.0 to 2.0.1 -- [#1522](https://github.com/h3poteto/whalebird-desktop/pull/1522) Bump electron from 7.2.1 to 9.0.3 -- [#1518](https://github.com/h3poteto/whalebird-desktop/pull/1518) New Crowdin translations -- [#1517](https://github.com/h3poteto/whalebird-desktop/pull/1517) New Crowdin translations -- [#1497](https://github.com/h3poteto/whalebird-desktop/pull/1497) Bump webpack-dev-server from 3.10.3 to 3.11.0 -- [#1515](https://github.com/h3poteto/whalebird-desktop/pull/1515) New Crowdin translations -- [#1512](https://github.com/h3poteto/whalebird-desktop/pull/1512) [Security] Bump websocket-extensions from 0.1.3 to 0.1.4 - -### Fixed -- [#1550](https://github.com/h3poteto/whalebird-desktop/pull/1550) Remove menu bar menu when platform is darwin -- [#1513](https://github.com/h3poteto/whalebird-desktop/pull/1513) closes #1507 Change blockquote style - -## [4.1.2] - 2020-06-01 -### Added -- [#1474](https://github.com/h3poteto/whalebird-desktop/pull/1474) closes #1471 Handle follow requests in notifications - -### Changed -- [#1475](https://github.com/h3poteto/whalebird-desktop/pull/1475) closes #1452 Emojify quoted contents -- [#1473](https://github.com/h3poteto/whalebird-desktop/pull/1473) Bump typescript from 3.8.3 to 3.9.3 -- [#1447](https://github.com/h3poteto/whalebird-desktop/pull/1447) Bump style-loader from 1.1.3 to 1.2.1 -- [#1480](https://github.com/h3poteto/whalebird-desktop/pull/1480) Bump @types/node from 13.13.4 to 14.0.5 -- [#1463](https://github.com/h3poteto/whalebird-desktop/pull/1463) Bump copy-webpack-plugin from 5.1.1 to 6.0.1 -- [#1478](https://github.com/h3poteto/whalebird-desktop/pull/1478) Bump ts-loader from 7.0.3 to 7.0.5 -- [#1479](https://github.com/h3poteto/whalebird-desktop/pull/1479) Bump @babel/plugin-transform-runtime from 7.8.3 to 7.10.0 -- [#1461](https://github.com/h3poteto/whalebird-desktop/pull/1461) Bump stylelint from 13.3.2 to 13.5.0 -- [#1477](https://github.com/h3poteto/whalebird-desktop/pull/1477) Bump element-ui from 2.13.0 to 2.13.2 -- [#1466](https://github.com/h3poteto/whalebird-desktop/pull/1466) Bump eslint-loader from 3.0.4 to 4.0.2 -- [#1465](https://github.com/h3poteto/whalebird-desktop/pull/1465) Bump @types/lodash from 4.14.149 to 4.14.152 -- [#1462](https://github.com/h3poteto/whalebird-desktop/pull/1462) Bump node-sass from 4.13.1 to 4.14.1 -- [#1460](https://github.com/h3poteto/whalebird-desktop/pull/1460) Bump vue-router from 3.1.6 to 3.2.0 -- [#1459](https://github.com/h3poteto/whalebird-desktop/pull/1459) Bump @typescript-eslint/eslint-plugin from 2.30.0 to 2.34.0 -- [#1457](https://github.com/h3poteto/whalebird-desktop/pull/1457) Bump css-loader from 3.5.2 to 3.5.3 -- [#1455](https://github.com/h3poteto/whalebird-desktop/pull/1455) Bump babel-loader from 8.0.6 to 8.1.0 -- [#1450](https://github.com/h3poteto/whalebird-desktop/pull/1450) Bump eslint-plugin-prettier from 3.1.2 to 3.1.3 -- [#1448](https://github.com/h3poteto/whalebird-desktop/pull/1448) Bump @babel/plugin-proposal-object-rest-spread from 7.9.5 to 7.9.6 -- [#1446](https://github.com/h3poteto/whalebird-desktop/pull/1446) Bump stylelint-config-standard from 19.0.0 to 20.0.0 -- [#1476](https://github.com/h3poteto/whalebird-desktop/pull/1476) Bump electron-mock-ipc from 0.3.3 to 0.3.5 -- [#1472](https://github.com/h3poteto/whalebird-desktop/pull/1472) New Crowdin translations - - -### Fixed -- [#1494](https://github.com/h3poteto/whalebird-desktop/pull/1494) closes #1438 Fix reblog target id when reblog using shortcut key -- [#1482](https://github.com/h3poteto/whalebird-desktop/pull/1482) Fix ignore option of copy-webpack-plugin -- [#1481](https://github.com/h3poteto/whalebird-desktop/pull/1481) Fix options for copy-webpack-plugin -- [#1470](https://github.com/h3poteto/whalebird-desktop/pull/1470) closes #1451 Fix quoted status notification in notifications - -## [4.1.1] - 2020-05-18 -### Added -- [#1435](https://github.com/h3poteto/whalebird-desktop/pull/1435) refs #1321 Show quoted status for fedibird -- [#1433](https://github.com/h3poteto/whalebird-desktop/pull/1433) refs #1321 Show quoted status in timelines for Misskey -- [#1431](https://github.com/h3poteto/whalebird-desktop/pull/1431) closes #1317 Show link preview in toot - -### Changed -- [#1445](https://github.com/h3poteto/whalebird-desktop/pull/1445) Fix lexical scope -- [#1437](https://github.com/h3poteto/whalebird-desktop/pull/1437) Bump html-webpack-plugin from 3.2.0 to 4.3.0 -- [#1444](https://github.com/h3poteto/whalebird-desktop/pull/1444) Add AUR link to install whalebird in README -- [#1441](https://github.com/h3poteto/whalebird-desktop/pull/1441) Bump @typescript-eslint/parser from 2.26.0 to 2.33.0 -- [#1438](https://github.com/h3poteto/whalebird-desktop/pull/1438) Bump @typescript-eslint/typescript-estree from 2.28.0 to 2.33.0 -- [#1428](https://github.com/h3poteto/whalebird-desktop/pull/1428) Bump babel-jest from 25.4.0 to 26.0.1 -- [#1418](https://github.com/h3poteto/whalebird-desktop/pull/1418) Bump @babel/preset-env from 7.7.1 to 7.9.6 -- [#1416](https://github.com/h3poteto/whalebird-desktop/pull/1416) Bump eslint-config-standard from 12.0.0 to 14.1.1 -- [#1436](https://github.com/h3poteto/whalebird-desktop/pull/1436) [Security] Bump handlebars from 4.5.3 to 4.7.6 -- [#1434](https://github.com/h3poteto/whalebird-desktop/pull/1434) Bump blueimp-load-image from 2.26.0 to 5.10.0 -- [#1429](https://github.com/h3poteto/whalebird-desktop/pull/1429) Bump ts-loader from 6.2.2 to 7.0.3 -- [#1413](https://github.com/h3poteto/whalebird-desktop/pull/1413) Bump prettier from 2.0.4 to 2.0.5 -- [#1423](https://github.com/h3poteto/whalebird-desktop/pull/1423) Bump @babel/core from 7.9.0 to 7.9.6 -- [#1422](https://github.com/h3poteto/whalebird-desktop/pull/1422) Bump request from 2.88.0 to 2.88.2 -- [#1420](https://github.com/h3poteto/whalebird-desktop/pull/1420) Bump cfonts from 2.8.1 to 2.8.2 -- [#1419](https://github.com/h3poteto/whalebird-desktop/pull/1419) Bump file-loader from 2.0.0 to 6.0.0 -- [#1417](https://github.com/h3poteto/whalebird-desktop/pull/1417) Bump @babel/runtime from 7.9.2 to 7.9.6 -- [#1412](https://github.com/h3poteto/whalebird-desktop/pull/1412) Bump eslint-config-prettier from 6.10.1 to 6.11.0 -- [#1411](https://github.com/h3poteto/whalebird-desktop/pull/1411) Bump @types/node from 13.13.2 to 13.13.4 -- [#1409](https://github.com/h3poteto/whalebird-desktop/pull/1409) Bump ajv from 6.6.1 to 6.12.2 -- [#1405](https://github.com/h3poteto/whalebird-desktop/pull/1405) Bump vue-popperjs from 2.2.0 to 2.3.0 -- [#1430](https://github.com/h3poteto/whalebird-desktop/pull/1430) Update megalodon version to 3.1.2 -- [#1424](https://github.com/h3poteto/whalebird-desktop/pull/1424) New Crowdin translations - -### Fixed -- [#1440](https://github.com/h3poteto/whalebird-desktop/pull/1440) Fix word-wrap in pre tag in status -- [#1426](https://github.com/h3poteto/whalebird-desktop/pull/1426) closes #1425 Fix update after react emoji to the statuses - -## [4.1.0] - 2020-05-05 -### Added -- [#1395](https://github.com/h3poteto/whalebird-desktop/pull/1395) New Crowdin translations -- [#1394](https://github.com/h3poteto/whalebird-desktop/pull/1394) refs #1281 Handle emoji reactions in web socket -- [#1393](https://github.com/h3poteto/whalebird-desktop/pull/1393) refs #1281 Add emoji reaction notification -- [#1392](https://github.com/h3poteto/whalebird-desktop/pull/1392) New translations translation.json (Polish) -- [#1391](https://github.com/h3poteto/whalebird-desktop/pull/1391) refs #1281 Add reaction button and refresh after reaction -- [#1389](https://github.com/h3poteto/whalebird-desktop/pull/1389) refs #1281 Send emoji reactions to statuses - -### Changed -- [#1375](https://github.com/h3poteto/whalebird-desktop/pull/1375) Bump eslint from 5.16.0 to 6.8.0 -- [#1401](https://github.com/h3poteto/whalebird-desktop/pull/1401) Bump @typescript-eslint/eslint-plugin from 2.24.0 to 2.30.0 -- [#1383](https://github.com/h3poteto/whalebird-desktop/pull/1383) Bump vue-router from 3.1.3 to 3.1.6 -- [#1380](https://github.com/h3poteto/whalebird-desktop/pull/1380) Bump eslint-plugin-node from 11.0.0 to 11.1.0 -- [#1379](https://github.com/h3poteto/whalebird-desktop/pull/1379) Bump cfonts from 2.4.6 to 2.8.1 -- [#1400](https://github.com/h3poteto/whalebird-desktop/pull/1400) Bump babel-jest from 25.3.0 to 25.4.0 -- [#1388](https://github.com/h3poteto/whalebird-desktop/pull/1388) Bump @types/node from 13.11.1 to 13.13.2 -- [#1386](https://github.com/h3poteto/whalebird-desktop/pull/1386) Bump @babel/plugin-proposal-object-rest-spread from 7.9.0 to 7.9.5 -- [#1385](https://github.com/h3poteto/whalebird-desktop/pull/1385) Bump axios from 0.19.1 to 0.19.2 -- [#1384](https://github.com/h3poteto/whalebird-desktop/pull/1384) Bump webpack-dev-server from 3.10.1 to 3.10.3 -- [#1382](https://github.com/h3poteto/whalebird-desktop/pull/1382) Bump css-loader from 3.2.0 to 3.5.2 -- [#1377](https://github.com/h3poteto/whalebird-desktop/pull/1377) Bump url-loader from 3.0.0 to 4.1.0 -- [#1376](https://github.com/h3poteto/whalebird-desktop/pull/1376) Bump vue-click-outside from 1.0.7 to 1.1.0 -- [#1374](https://github.com/h3poteto/whalebird-desktop/pull/1374) Bump sanitize-html from 1.22.0 to 1.23.0 -- [#1373](https://github.com/h3poteto/whalebird-desktop/pull/1373) Bump eslint-plugin-html from 6.0.0 to 6.0.2 -- [#1372](https://github.com/h3poteto/whalebird-desktop/pull/1372) Bump @vue/test-utils from 1.0.0-beta.32 to 1.0.0-beta.33 -- [#1370](https://github.com/h3poteto/whalebird-desktop/pull/1370) Bump eslint-plugin-standard from 4.0.0 to 4.0.1 -- [#1368](https://github.com/h3poteto/whalebird-desktop/pull/1368) Bump chalk from 3.0.0 to 4.0.0 -- [#1369](https://github.com/h3poteto/whalebird-desktop/pull/1369) Bump electron-mock-ipc from 0.3.2 to 0.3.3 -- [#1387](https://github.com/h3poteto/whalebird-desktop/pull/1387) Bump megalodon version to 3.1.1 - -### Fixed -- [#1398](https://github.com/h3poteto/whalebird-desktop/pull/1398) closes #1397 Fix opened user's timeline in sidebar -- [#1396](https://github.com/h3poteto/whalebird-desktop/pull/1396) refs #1390 Fix list memberships parser when add or remove list member - -## [4.0.2] - 2020-04-17 -### Added -- [#1347](https://github.com/h3poteto/whalebird-desktop/pull/1347) closes #1279 Generate sha256sum file after build - -### Changed -- [#1361](https://github.com/h3poteto/whalebird-desktop/pull/1361) Bump babel-jest from 24.9.0 to 25.3.0 -- [#1366](https://github.com/h3poteto/whalebird-desktop/pull/1366) Bump prettier from 1.19.1 to 2.0.4 -- [#1360](https://github.com/h3poteto/whalebird-desktop/pull/1360) Bump stylelint from 12.0.1 to 13.3.2 -- [#1363](https://github.com/h3poteto/whalebird-desktop/pull/1363) Bump eslint-plugin-import from 2.20.0 to 2.20.2 -- [#1334](https://github.com/h3poteto/whalebird-desktop/pull/1334) Bump webpack from 4.39.2 to 4.42.1 -- [#1364](https://github.com/h3poteto/whalebird-desktop/pull/1364) Bump @typescript-eslint/typescript-estree from 2.16.0 to 2.28.0 -- [#1342](https://github.com/h3poteto/whalebird-desktop/pull/1342) Bump @babel/core from 7.8.4 to 7.9.0 -- [#1353](https://github.com/h3poteto/whalebird-desktop/pull/1353) Bump @types/node from 13.1.6 to 13.11.1 -- [#1365](https://github.com/h3poteto/whalebird-desktop/pull/1365) Bump i18next from 19.0.3 to 19.4.1 -- [#1362](https://github.com/h3poteto/whalebird-desktop/pull/1362) Bump regenerator-runtime from 0.13.3 to 0.13.5 -- [#1352](https://github.com/h3poteto/whalebird-desktop/pull/1352) Bump eslint-loader from 2.1.1 to 3.0.4 -- [#1341](https://github.com/h3poteto/whalebird-desktop/pull/1341) Bump vuex from 3.1.2 to 3.1.3 -- [#1339](https://github.com/h3poteto/whalebird-desktop/pull/1339) Bump @typescript-eslint/parser from 2.18.0 to 2.26.0 -- [#1336](https://github.com/h3poteto/whalebird-desktop/pull/1336) Bump jsdom from 15.2.1 to 16.2.2 -- [#1333](https://github.com/h3poteto/whalebird-desktop/pull/1333) Bump ts-loader from 6.2.1 to 6.2.2 -- [#1331](https://github.com/h3poteto/whalebird-desktop/pull/1331) Bump webpack-cli from 3.3.10 to 3.3.11 -- [#1327](https://github.com/h3poteto/whalebird-desktop/pull/1327) Bump cross-env from 5.2.0 to 7.0.2 -- [#1330](https://github.com/h3poteto/whalebird-desktop/pull/1330) Bump babel-eslint from 10.0.3 to 10.1.0 -- [#1328](https://github.com/h3poteto/whalebird-desktop/pull/1328) Bump style-loader from 1.1.2 to 1.1.3 -- [#1322](https://github.com/h3poteto/whalebird-desktop/pull/1322) Bump @babel/plugin-proposal-object-rest-spread from 7.7.7 to 7.9.0 -- [#1359](https://github.com/h3poteto/whalebird-desktop/pull/1359) Update electron version to 7.2.1 -- [#1358](https://github.com/h3poteto/whalebird-desktop/pull/1358) Update typescript version to 3.8.3 -- [#1356](https://github.com/h3poteto/whalebird-desktop/pull/1356) Update electron-log to 4.1.1 and fix proxy spec - - -### Fixed -- [#1355](https://github.com/h3poteto/whalebird-desktop/pull/1355) closes #1263 Specify word-break to normal in New toot -- [#1354](https://github.com/h3poteto/whalebird-desktop/pull/1354) closes #1318 Apply font-size settings in New toot - - -## [4.0.1] - 2020-04-03 -### Added -- [#1337](https://github.com/h3poteto/whalebird-desktop/pull/1337) closes #1307 Confirm timelines after initialized -- [#1279](https://github.com/h3poteto/whalebird-desktop/pull/1279) closes #1279 Generate sha256sum file after build - -### Changed -- [#1319](https://github.com/h3poteto/whalebird-desktop/pull/1319) Bump @babel/runtime from 7.8.0 to 7.9.2 -- [#1305](https://github.com/h3poteto/whalebird-desktop/pull/1305) Bump vue-loader from 15.8.3 to 15.9.1 -- [#1315](https://github.com/h3poteto/whalebird-desktop/pull/1315) Bump eslint-config-prettier from 6.9.0 to 6.10.1 -- [#1311](https://github.com/h3poteto/whalebird-desktop/pull/1311) Bump @vue/test-utils from 1.0.0-beta.30 to 1.0.0-beta.32 -- [#1306](https://github.com/h3poteto/whalebird-desktop/pull/1306) Bump eslint-plugin-promise from 4.0.1 to 4.2.1 -- [#1274](https://github.com/h3poteto/whalebird-desktop/pull/1274) Bump mini-css-extract-plugin from 0.4.5 to 0.9.0 -- [#1304](https://github.com/h3poteto/whalebird-desktop/pull/1304) Bump mousetrap from 1.6.3 to 1.6.5 -- [#1303](https://github.com/h3poteto/whalebird-desktop/pull/1303) Bump @typescript-eslint/eslint-plugin from 2.19.0 to 2.24.0 -- [#1301](https://github.com/h3poteto/whalebird-desktop/pull/1301) Bump eslint-plugin-vue from 6.1.2 to 6.2.2 -- [#1299](https://github.com/h3poteto/whalebird-desktop/pull/1299) Bump webpack-merge from 4.1.4 to 4.2.2 -- [#1290](https://github.com/h3poteto/whalebird-desktop/pull/1290) Bump @types/jest from 24.9.1 to 25.1.4 -- [#1288](https://github.com/h3poteto/whalebird-desktop/pull/1288) Bump sanitize-html from 1.20.1 to 1.22.0 -- [#1272](https://github.com/h3poteto/whalebird-desktop/pull/1272) Bump babel-plugin-istanbul from 5.1.0 to 6.0.0 -- [#1271](https://github.com/h3poteto/whalebird-desktop/pull/1271) Bump node-sass from 4.13.0 to 4.13.1 -- [#1270](https://github.com/h3poteto/whalebird-desktop/pull/1270) Bump @trodi/electron-splashscreen from 0.3.4 to 1.0.0 - -### Fixed -- [#1345](https://github.com/h3poteto/whalebird-desktop/pull/1345) closes #1325 Update megalodon version to 3.0.1 - -## [4.0.0] - 2020-03-24 -### Added -- [#1298](https://github.com/h3poteto/whalebird-desktop/pull/1298) refs #816 Add support for Misskey login - -### Changed -- [#1314](https://github.com/h3poteto/whalebird-desktop/pull/1314) New Crowdin translations -- [#1312](https://github.com/h3poteto/whalebird-desktop/pull/1312) New Crowdin translations -- [#1309](https://github.com/h3poteto/whalebird-desktop/pull/1309) New Crowdin translations - -## [3.2.0] - 2020-03-17 -### Added -- [#1278](https://github.com/h3poteto/whalebird-desktop/pull/1278) Add bidi support -- [#1269](https://github.com/h3poteto/whalebird-desktop/pull/1269) Load system theme for dark mode - -### Changed -- [#1296](https://github.com/h3poteto/whalebird-desktop/pull/1296) Update electron-builder version to 22.4.0 -- [#1292](https://github.com/h3poteto/whalebird-desktop/pull/1292) Update megalodon version to 3.0.0-beta.4 -- [#1293](https://github.com/h3poteto/whalebird-desktop/pull/1293) Update sideci settings -- [#1291](https://github.com/h3poteto/whalebird-desktop/pull/1291) [Security] Bump acorn from 5.7.3 to 5.7.4 -- [#1268](https://github.com/h3poteto/whalebird-desktop/pull/1268) Upgrade Electron version to 7.1.11 -- [#1266](https://github.com/h3poteto/whalebird-desktop/pull/1266) Bump @typescript-eslint/eslint-plugin from 1.5.0 to 2.19.0 -- [#1264](https://github.com/h3poteto/whalebird-desktop/pull/1264) Bump electron-context-menu from 0.15.2 to 0.16.0 -- [#1262](https://github.com/h3poteto/whalebird-desktop/pull/1262) Bump vue-loader from 15.7.2 to 15.8.3 -- [#1261](https://github.com/h3poteto/whalebird-desktop/pull/1261) Bump electron-json-storage from 4.1.5 to 4.1.8 -- [#1260](https://github.com/h3poteto/whalebird-desktop/pull/1260) Bump eslint-plugin-import from 2.19.1 to 2.20.0 -- [#1259](https://github.com/h3poteto/whalebird-desktop/pull/1259) Bump prettier from 1.17.0 to 1.19.1 -- [#1254](https://github.com/h3poteto/whalebird-desktop/pull/1254) Bump @typescript-eslint/parser from 2.15.0 to 2.18.0 -- [#1256](https://github.com/h3poteto/whalebird-desktop/pull/1256) Bump @babel/core from 7.7.7 to 7.8.4 -- [#1252](https://github.com/h3poteto/whalebird-desktop/pull/1252) Bump @types/jest from 24.0.25 to 24.9.1 -- [#1248](https://github.com/h3poteto/whalebird-desktop/pull/1248) Bump sass-loader from 7.1.0 to 8.0.2 -- [#1246](https://github.com/h3poteto/whalebird-desktop/pull/1246) Bump core-js from 3.6.1 to 3.6.4 -- [#1244](https://github.com/h3poteto/whalebird-desktop/pull/1244) Bump @typescript-eslint/typescript-estree from 1.5.0 to 2.16.0 -- [#1241](https://github.com/h3poteto/whalebird-desktop/pull/1241) Bump @babel/plugin-proposal-class-properties from 7.7.0 to 7.8.3 - -## [3.1.0] - 2020-01-23 -### Added -- [#1223](https://github.com/h3poteto/whalebird-desktop/pull/1223) Read exif and rotate image for all attachment images - -### Changed - -- [#1239](https://github.com/h3poteto/whalebird-desktop/pull/1239) Bump all-object-keys from 1.1.1 to 2.1.1 -- [#1238](https://github.com/h3poteto/whalebird-desktop/pull/1238) Bump webpack-cli from 3.1.2 to 3.3.10 -- [#1237](https://github.com/h3poteto/whalebird-desktop/pull/1237) Bump @types/node from 11.11.4 to 13.1.6 -- [#1236](https://github.com/h3poteto/whalebird-desktop/pull/1236) Bump ts-jest from 24.2.0 to 24.3.0 -- [#1235](https://github.com/h3poteto/whalebird-desktop/pull/1235) Bump electron-context-menu from 0.15.1 to 0.15.2 -- [#1234](https://github.com/h3poteto/whalebird-desktop/pull/1234) Bump element-ui from 2.4.11 to 2.13.0 -- [#1233](https://github.com/h3poteto/whalebird-desktop/pull/1233) Bump @babel/plugin-transform-runtime from 7.6.2 to 7.8.3 -- [#1230](https://github.com/h3poteto/whalebird-desktop/pull/1230) Bump @babel/runtime from 7.7.7 to 7.8.0 -- [#1229](https://github.com/h3poteto/whalebird-desktop/pull/1229) Bump vuex from 3.0.1 to 3.1.2 -- [#1228](https://github.com/h3poteto/whalebird-desktop/pull/1238) Bump @mapbox/stylelint-processor-arbitrary-tags from 0.2.0 to 0.3.0 -- [#1227](https://github.com/h3poteto/whalebird-desktop/pull/1227) Bump @typescript-eslint/parser from 1.5.0 to 2.15.0 -- [#1224](https://github.com/h3poteto/whalebird-desktop/pull/1224) Hide detail menu in toot detail sidebar -- [#1217](https://github.com/h3poteto/whalebird-desktop/pull/1217) Update electron-builder version to >= 22.0.0 -- [#1215](https://github.com/h3poteto/whalebird-desktop/pull/1215) Bump moment from 2.22.2 to 2.24.0 -- [#1211](https://github.com/h3poteto/whalebird-desktop/pull/1211) Bump electron-mock-ipc from 0.3.1 to 0.3.2 -- [#1214](https://github.com/h3poteto/whalebird-desktop/pull/1214) Bump eslint-plugin-node from 10.0.0 to 11.0.0 -- [#1213](https://github.com/h3poteto/whalebird-desktop/pull/1213) Bump axios from 0.19.0 to 0.19.1 -- [#1212](https://github.com/h3poteto/whalebird-desktop/pull/1212) Bump i18next from 12.1.0 to 19.0.3 -- [#1210](https://github.com/h3poteto/whalebird-desktop/pull/1210) Bump url-loader from 2.2.0 to 3.0.0 -- [#1209](https://github.com/h3poteto/whalebird-desktop/pull/1209) Bump stylelint from 10.1.0 to 12.0.1 -- [#1208](https://github.com/h3poteto/whalebird-desktop/pull/1208) Bump vue-shortkey from 3.1.6 to 3.1.7 - -### Fixed - -- [#1232](https://github.com/h3poteto/whalebird-desktop/pull/1232) Fix url-loader for loading icon -- [#1231](https://github.com/h3poteto/whalebird-desktop/pull/1231) Catch error when can not load image in exifImageUrl -- [#1221](https://github.com/h3poteto/whalebird-desktop/pull/1221) Fix lazy loading for account timeline in sidebar -- [#1219](https://github.com/h3poteto/whalebird-desktop/pull/1219) Fix i18next namespace for new version - - - -## [3.0.3] - 2020-01-08 -### Changed -- [#1207](https://github.com/h3poteto/whalebird-desktop/pull/1207) Update electron version to 6.1.7 -- [#1201](https://github.com/h3poteto/whalebird-desktop/pull/1201) Bump @types/jest from 24.0.15 to 24.0.25 -- [#1204](https://github.com/h3poteto/whalebird-desktop/pull/1204) Bump animate.css from 3.7.0 to 3.7.2 -- [#1203](https://github.com/h3poteto/whalebird-desktop/pull/1203) Bump ts-jest from 24.0.2 to 24.2.0 -- [#1202](https://github.com/h3poteto/whalebird-desktop/pull/1202) Bump webpack-dev-server from 3.9.0 to 3.10.1 -- [#1200](https://github.com/h3poteto/whalebird-desktop/pull/1200) Bump @types/nedb from 1.8.7 to 1.8.9 -- [#1199](https://github.com/h3poteto/whalebird-desktop/pull/1199) Bump eslint-plugin-vue from 6.0.1 to 6.1.2 -- [#1198](https://github.com/h3poteto/whalebird-desktop/pull/1198) Bump cfonts from 2.4.5 to 2.4.6 -- [#1197](https://github.com/h3poteto/whalebird-desktop/pull/1197) Bump @babel/core from 7.4.3 to 7.7.7 -- [#1205](https://github.com/h3poteto/whalebird-desktop/pull/1205) New Crowdin translations -- [#1194](https://github.com/h3poteto/whalebird-desktop/pull/1194) Bump eslint-plugin-prettier from 3.0.1 to 3.1.2 -- [#1196](https://github.com/h3poteto/whalebird-desktop/pull/1196) Bump eslint-config-prettier from 6.7.0 to 6.9.0 -- [#1195](https://github.com/h3poteto/whalebird-desktop/pull/1195) Bump @babel/runtime from 7.7.4 to 7.7.7 -- [#1193](https://github.com/h3poteto/whalebird-desktop/pull/1193) Bump @vue/test-utils from 1.0.0-beta.29 to 1.0.0-beta.30 -- [#1192](https://github.com/h3poteto/whalebird-desktop/pull/1192) New Crowdin translations -- [#1191](https://github.com/h3poteto/whalebird-desktop/pull/1191) Bump core-js from 3.0.0 to 3.6.1 -- [#1186](https://github.com/h3poteto/whalebird-desktop/pull/1186) Bump vue and vue-template-compiler -- [#1190](https://github.com/h3poteto/whalebird-desktop/pull/1190) Bump style-loader from 1.0.0 to 1.1.2 -- [#1185](https://github.com/h3poteto/whalebird-desktop/pull/1185) Bump copy-webpack-plugin from 5.0.5 to 5.1.1 -- [#1183](https://github.com/h3poteto/whalebird-desktop/pull/1183) Bump eslint-plugin-vue from 5.2.2 to 6.0.1 -- [#1182](https://github.com/h3poteto/whalebird-desktop/pull/1182) Bump eslint-plugin-import from 2.18.2 to 2.19.1 -- [#1180](https://github.com/h3poteto/whalebird-desktop/pull/1180) Bump eslint-config-prettier from 4.1.0 to 6.7.0 -- [#1176](https://github.com/h3poteto/whalebird-desktop/pull/1176) Bump @babel/plugin-proposal-object-rest-spread from 7.7.4 to 7.7.7 - - - -## [3.0.2] - 2019-12-23 -### Changed -- [#1142](https://github.com/h3poteto/whalebird-desktop/pull/1142) Bump cfonts from 2.3.0 to 2.4.5 -- [#1160](https://github.com/h3poteto/whalebird-desktop/pull/1160) Bump @babel/plugin-proposal-object-rest-spread from 7.4.3 to 7.7.4 -- [#1153](https://github.com/h3poteto/whalebird-desktop/pull/1153) Bump @babel/runtime from 7.4.3 to 7.7.4 -- [#1151](https://github.com/h3poteto/whalebird-desktop/pull/1151) Bump regenerator-runtime from 0.13.1 to 0.13.3 -- [#1152](https://github.com/h3poteto/whalebird-desktop/pull/1152) Bump @types/i18next from 12.1.0 to 13.0.0 -- [#1150](https://github.com/h3poteto/whalebird-desktop/pull/1150) Bump stylelint-config-standard from 18.3.0 to 19.0.0 -- [#1141](https://github.com/h3poteto/whalebird-desktop/pull/1141) Bump sanitize-html from 1.19.3 to 1.20.1 -- [#1139](https://github.com/h3poteto/whalebird-desktop/pull/1139) Bump babel-loader from 8.0.5 to 8.0.6 -- [#1138](https://github.com/h3poteto/whalebird-desktop/pull/1138) Bump vue-popperjs from 1.6.1 to 2.2.0 - -### Fixed -- [#1177](https://github.com/h3poteto/whalebird-desktop/pull/1177) Fix loading css path for vue-popper.js -- [#1175](https://github.com/h3poteto/whalebird-desktop/pull/1175) Fix reading translation files japanese and italian - -## [3.0.1] - 2019-12-22 -### Added -- [#1169](https://github.com/h3poteto/whalebird-desktop/pull/1169) Search account in reply_to and context before account name search -- [#1129](https://github.com/h3poteto/whalebird-desktop/pull/1129) Add sponsor link in donate -- [#1128](https://github.com/h3poteto/whalebird-desktop/pull/1128) Add FUNDING.yml for sponsors -- [#1127](https://github.com/h3poteto/whalebird-desktop/pull/1127) Add dependabot badge in README -- [#1125](https://github.com/h3poteto/whalebird-desktop/pull/1125) Add some empty language translations -- [#1124](https://github.com/h3poteto/whalebird-desktop/pull/1124) Add explain for crowdin in readme -- [#1117](https://github.com/h3poteto/whalebird-desktop/pull/1117) Update crowdin to specify locale mapping -- [#1115](https://github.com/h3poteto/whalebird-desktop/pull/1115) Introduce Crowdin configuration - -### Changed -- [#1168](https://github.com/h3poteto/whalebird-desktop/pull/1168) Update node version to 12.13.1 in CircleCI -- [#1165](https://github.com/h3poteto/whalebird-desktop/pull/1165) New Crowdin translations -- [#1155](https://github.com/h3poteto/whalebird-desktop/pull/1155) Use ipcRenderer directly from electron -- [#1149](https://github.com/h3poteto/whalebird-desktop/pull/1149) Load translation json directly instead of i18next-sync-fs-backend -- [#1148](https://github.com/h3poteto/whalebird-desktop/pull/1148) Stop to specify libraryTarget for renderer in webpack -- [#1137](https://github.com/h3poteto/whalebird-desktop/pull/1137) Bump style-loader from 0.23.1 to 1.0.0 -- [#1143](https://github.com/h3poteto/whalebird-desktop/pull/1143) Bump @panter/vue-i18next from 0.13.0 to 0.15.1 -- [#1144](https://github.com/h3poteto/whalebird-desktop/pull/1144) Bump about-window from 1.13.1 to 1.13.2 -- [#1145](https://github.com/h3poteto/whalebird-desktop/pull/1145) Bump @types/lodash from 4.14.123 to 4.14.149 -- [#1146](https://github.com/h3poteto/whalebird-desktop/pull/1146) Bump eslint-plugin-import from 2.14.0 to 2.18.2 -- [#1147](https://github.com/h3poteto/whalebird-desktop/pull/1147) Use window object in index.ejs -- [#1135](https://github.com/h3poteto/whalebird-desktop/pull/1135) Use ipc, shell and clipboard from preload.js -- [#1133](https://github.com/h3poteto/whalebird-desktop/pull/1133) Bump axios from 0.18.1 to 0.19.0 -- [#1122](https://github.com/h3poteto/whalebird-desktop/pull/1122) Bump webpack-dev-server from 3.8.0 to 3.9.0 -- [#1130](https://github.com/h3poteto/whalebird-desktop/pull/1130) Bump jsdom from 13.0.0 to 15.2.1 -- [#1131](https://github.com/h3poteto/whalebird-desktop/pull/1131) Bump chalk from 2.4.2 to 3.0.0 -- [#1132](https://github.com/h3poteto/whalebird-desktop/pull/1132) Bump del from 3.0.0 to 5.1.0 -- [#1123](https://github.com/h3poteto/whalebird-desktop/pull/1123) Bump eslint-plugin-html from 4.0.6 to 6.0.0 -- [#1121](https://github.com/h3poteto/whalebird-desktop/pull/1121) Bump @babel/preset-env from 7.4.3 to 7.7.1 -- [#1134](https://github.com/h3poteto/whalebird-desktop/pull/1134) Bump vue-awesome from 3.2.0 to 4.0.2 -- [#1120](https://github.com/h3poteto/whalebird-desktop/pull/1120) Bump hoek from 6.1.2 to 6.1.3 -- [#1119](https://github.com/h3poteto/whalebird-desktop/pull/1119) Bump electron-context-menu from 0.12.0 to 0.15.1 -- [#1126](https://github.com/h3poteto/whalebird-desktop/pull/1126) New Crowdin translations -- [#1118](https://github.com/h3poteto/whalebird-desktop/pull/1118) New Crowdin translations -- [#1116](https://github.com/h3poteto/whalebird-desktop/pull/1116) New Crowdin translations -- [#1113](https://github.com/h3poteto/whalebird-desktop/pull/1113) Always fallback to English when the translation key is missing -- [#1108](https://github.com/h3poteto/whalebird-desktop/pull/1108) Bump mousetrap from 1.6.2 to 1.6.3 -- [#1109](https://github.com/h3poteto/whalebird-desktop/pull/1109) Bump url-loader from 1.1.2 to 2.2.0 -- [#1110](https://github.com/h3poteto/whalebird-desktop/pull/1110) Bump vue-router from 3.0.2 to 3.1.3 -- [#1111](https://github.com/h3poteto/whalebird-desktop/pull/1111) Bump electron-debug from 2.2.0 to 3.0.1 -- [#1112](https://github.com/h3poteto/whalebird-desktop/pull/1112) Bump eslint-plugin-node from 8.0.0 to 10.0.0 -- [#1104](https://github.com/h3poteto/whalebird-desktop/pull/1104) Bump @babel/plugin-proposal-class-properties from 7.4.0 to 7.7.0 -- [#1103](https://github.com/h3poteto/whalebird-desktop/pull/1103) Bump copy-webpack-plugin from 4.6.0 to 5.0.5 -- [#1105](https://github.com/h3poteto/whalebird-desktop/pull/1105) Update Italy translations -- [#1080](https://github.com/h3poteto/whalebird-desktop/pull/1080) Bump @babel/plugin-proposal-class-properties from 7.4.0 to 7.5.5 -- [#1082](https://github.com/h3poteto/whalebird-desktop/pull/1082) Bump css-loader from 3.0.0 to 3.2.0 -- [#1079](https://github.com/h3poteto/whalebird-desktop/pull/1079) Bump vue-loader from 15.4.2 to 15.7.2 -- [#1078](https://github.com/h3poteto/whalebird-desktop/pull/1079) Bump @babel/plugin-transform-runtime from 7.4.3 to 7.6.2 -- [#1073](https://github.com/h3poteto/whalebird-desktop/pull/1073) Bump ts-loader from 6.0.4 to 6.2.1 -- [#1074](https://github.com/h3poteto/whalebird-desktop/pull/1074) Bump node-sass from 4.12.0 to 4.13.0 -- [#1072](https://github.com/h3poteto/whalebird-desktop/pull/1072) Bump chalk from 2.4.1 to 2.4.2 -- [#1071](https://github.com/h3poteto/whalebird-desktop/pull/1071) Bump webpack-hot-middleware from 2.24.3 to 2.25.0 -- [#1070](https://github.com/h3poteto/whalebird-desktop/pull/1070) Bump babel-eslint from 10.0.1 to 10.0.3 - -### Fixed -- [#1174](https://github.com/h3poteto/whalebird-desktop/pull/1174) Remove babel-minify because webpack can minify using terser when production -- [#1172](https://github.com/h3poteto/whalebird-desktop/pull/1172) Build preload script for production -- [#1171](https://github.com/h3poteto/whalebird-desktop/pull/1171) Update megalodon version to 2.1.1 -- [#1167](https://github.com/h3poteto/whalebird-desktop/pull/1167) Add test for toot parser -- [#1166](https://github.com/h3poteto/whalebird-desktop/pull/1166) Remove word-break in toot -- [#1164](https://github.com/h3poteto/whalebird-desktop/pull/1164) Use default preference if the file does not exist when get proxy configuration -- [#1162](https://github.com/h3poteto/whalebird-desktop/pull/1162) Update megalodon version to 2.1.0 -- [#1159](https://github.com/h3poteto/whalebird-desktop/pull/1159) Update jest version to 24.9.0 and fix some tests -- [#1157](https://github.com/h3poteto/whalebird-desktop/pull/1157) Update electron-mock-ipc version to 0.3.1 - -## [3.0.0] - 2019-11-17 -### Added -- [#1090](https://github.com/h3poteto/whalebird-desktop/pull/1090) Add AppImage in release builds -- [#1081](https://github.com/h3poteto/whalebird-desktop/pull/1081) Add notice in login for users who use proxy server -- [#1069](https://github.com/h3poteto/whalebird-desktop/pull/1069) Reload proxy configuration after changed -- [#1066](https://github.com/h3poteto/whalebird-desktop/pull/1066) Load proxy information and apply for all network connection -- [#1060](https://github.com/h3poteto/whalebird-desktop/pull/1060) Add a tray menu to open window -- [#1064](https://github.com/h3poteto/whalebird-desktop/pull/1064) Add proxy configuration in preferences - -### Changed -- [#1094](https://github.com/h3poteto/whalebird-desktop/pull/1094) Use system proxy as default in preferences -- [#1093](https://github.com/h3poteto/whalebird-desktop/pull/1093) Update word instance to server -- [#1088](https://github.com/h3poteto/whalebird-desktop/pull/1088) Update translation when domain does not find -- [#1087](https://github.com/h3poteto/whalebird-desktop/pull/1087) Check instance API before request host-meta when confirm instance -- [#1067](https://github.com/h3poteto/whalebird-desktop/pull/1067) Update electron version to 6.1.0 -- [#1063](https://github.com/h3poteto/whalebird-desktop/pull/1063) Replace old Hiragino font for macOS -- [#1062](https://github.com/h3poteto/whalebird-desktop/pull/1062) Update megalodon version to 2.0.0 - -### Fixed -- [#1101](https://github.com/h3poteto/whalebird-desktop/pull/1101) fix: Codesign script for app store -- [#1100](https://github.com/h3poteto/whalebird-desktop/pull/1100) fix: Remove debugging code in websocket -- [#1099](https://github.com/h3poteto/whalebird-desktop/pull/1099) Update megalodon version to 2.0.1 -- [#1097](https://github.com/h3poteto/whalebird-desktop/pull/1097) Reject duplicated status when append statuses in mutations -- [#1089](https://github.com/h3poteto/whalebird-desktop/pull/1089) Trim authorization token and domain URL -- [#1068](https://github.com/h3poteto/whalebird-desktop/pull/1068) Fix comparison between login user and target account - - -## [2.9.0] - 2019-10-11 -### Added -- [#1056](https://github.com/h3poteto/whalebird-desktop/pull/1056) Upgrade electron version to 5.0.11 -- [#1045](https://github.com/h3poteto/whalebird-desktop/pull/1045) Add a preference to auto launch at login - -### Changed -- [#1057](https://github.com/h3poteto/whalebird-desktop/pull/1057) Update electron-builder version to 21.2.0 -- [#1053](https://github.com/h3poteto/whalebird-desktop/pull/1053) Allow resize sidebar using drag -- [#1049](https://github.com/h3poteto/whalebird-desktop/pull/1049) Through auto-launch in darwin -- [#1048](https://github.com/h3poteto/whalebird-desktop/pull/1048) Add shortcut description for reload -- [#1047](https://github.com/h3poteto/whalebird-desktop/pull/1047) Remove QR code for bitcoin - -### Fixed -- [#1052](https://github.com/h3poteto/whalebird-desktop/pull/1052) Fix scrollbar design for preferences and settings -- [#1050](https://github.com/h3poteto/whalebird-desktop/pull/1050) Fix loading color in preferences - - -## [2.8.6] - 2019-09-19 -### Added -- [#1043](https://github.com/h3poteto/whalebird-desktop/pull/1043) Start to pacman support in release package -- [#1038](https://github.com/h3poteto/whalebird-desktop/pull/1038) Add reload method in SideBar - -### Changed -- [#1044](https://github.com/h3poteto/whalebird-desktop/pull/1044) Update electron version to 5.0.10 -- [#1041](https://github.com/h3poteto/whalebird-desktop/pull/1041) Replace multispinner with another one -- [#1033](https://github.com/h3poteto/whalebird-desktop/pull/1033) Use authorized request to get instance information when start streamings -- [#1032](https://github.com/h3poteto/whalebird-desktop/pull/1032) Confirm ActivityPub instance to read host-meta before login - -### Fixed -- [#1042](https://github.com/h3poteto/whalebird-desktop/pull/1042) Do not enforce single instance in darwin -- [#1037](https://github.com/h3poteto/whalebird-desktop/pull/1037) Fix validation status when change the domain in Login - - -## [2.8.5] - 2019-09-09 -### Changed -- [#1029](https://github.com/h3poteto/whalebird-desktop/pull/1029) Block to root path when user use browser-back -- [#1024](https://github.com/h3poteto/whalebird-desktop/pull/1024) Update German translation -- [#1020](https://github.com/h3poteto/whalebird-desktop/pull/1020) audit: Update eslint-utils version to 1.4.2 -- [#1016](https://github.com/h3poteto/whalebird-desktop/pull/1016) Update megalodon version to 1.0.2 -- [#1015](https://github.com/h3poteto/whalebird-desktop/pull/1015) Update megalodon version to 1.0.1 -- [#1014](https://github.com/h3poteto/whalebird-desktop/pull/1014) Enforces single instance for linux and windows - -### Fixed -- [#1026](https://github.com/h3poteto/whalebird-desktop/pull/1026) Set word-break for toot content -- [#1023](https://github.com/h3poteto/whalebird-desktop/pull/1023) Update megalodon version to 1.0.3 -- [#1019](https://github.com/h3poteto/whalebird-desktop/pull/1019) fix: Close request when modal is closed -- [#1018](https://github.com/h3poteto/whalebird-desktop/pull/1018) fix: Remove cache file when load error -- [#1013](https://github.com/h3poteto/whalebird-desktop/pull/1013) Enable nodeIntegration in about window - - - -## [2.8.4] - 2019-08-23 -### Added -- [#1006](https://github.com/h3poteto/whalebird-desktop/pull/1006) Show tray icon only linux and windows, and append tray menu - -### Changed -- [#1008](https://github.com/h3poteto/whalebird-desktop/pull/1008) Set autoplay for movie attachments -- [#1007](https://github.com/h3poteto/whalebird-desktop/pull/1007) Update Electron version to 5.0.9 -- [#1004](https://github.com/h3poteto/whalebird-desktop/pull/1004) Cancel requests when suggestion is selected or closed -- [#1003](https://github.com/h3poteto/whalebird-desktop/pull/1003) Update changelog - -### Fixed -- [#1011](https://github.com/h3poteto/whalebird-desktop/pull/1011) Through close event when platform is darwin -- [#1005](https://github.com/h3poteto/whalebird-desktop/pull/1005) Update French translation - - - -## [2.8.3] - 2019-08-13 -### Added -- [#1000](https://github.com/h3poteto/whalebird-desktop/pull/1000) Add spec for zh_cn translation json -- [#998](https://github.com/h3poteto/whalebird-desktop/pull/998) Simplified Chinese translation -- [#995](https://github.com/h3poteto/whalebird-desktop/pull/995) Cache accounts and search cache when suggest -- [#990](https://github.com/h3poteto/whalebird-desktop/pull/990) Cache hashtags -- [#984](https://github.com/h3poteto/whalebird-desktop/pull/984) Add description for CSC_NAME in document - -### Changed -- [#997](https://github.com/h3poteto/whalebird-desktop/pull/997) Use v2 API for suggestion -- [#994](https://github.com/h3poteto/whalebird-desktop/pull/994) Move suggest logic to vuex -- [#986](https://github.com/h3poteto/whalebird-desktop/pull/986) Use websocket as default streaming method for all timelines - -### Fixed -- [#1001](https://github.com/h3poteto/whalebird-desktop/pull/1001) Fix API endpoint for direct messages, use conversations -- [#996](https://github.com/h3poteto/whalebird-desktop/pull/996) Fix uniqueness in suggestion -- [#987](https://github.com/h3poteto/whalebird-desktop/pull/987) Get streaming url for instance API before start streaming - - - -## [2.8.2] - 2019-07-25 -### Changed -- [#974](https://github.com/h3poteto/whalebird-desktop/pull/974) Notify notification in main process -- [#973](https://github.com/h3poteto/whalebird-desktop/pull/973) Update screenshot in README for recent updates - -### Fixed -- [#981](https://github.com/h3poteto/whalebird-desktop/pull/981) Set appId to notify in windows10 -- [#979](https://github.com/h3poteto/whalebird-desktop/pull/979) fix: Check webContents status when receive status in streaming -- [#978](https://github.com/h3poteto/whalebird-desktop/pull/978) Check webContent status before send event in all streamings -- [#977](https://github.com/h3poteto/whalebird-desktop/pull/977) Fix digits number of percentage in polls - - -## [2.8.1] - 2019-07-21 -### Added -- [#966](https://github.com/h3poteto/whalebird-desktop/pull/966) Add a spec for translation json files -- [#963](https://github.com/h3poteto/whalebird-desktop/pull/963) Add polls form in new toot modal -- [#962](https://github.com/h3poteto/whalebird-desktop/pull/962) Add poll form in Toot - -## Changed -- [#961](https://github.com/h3poteto/whalebird-desktop/pull/961) Update megalodon version to 0.8.2 -- [#960](https://github.com/h3poteto/whalebird-desktop/pull/960) Update outdated packages -- [#959](https://github.com/h3poteto/whalebird-desktop/pull/959) Update megalodon version to 0.8.1 - -## Fixed -- [#971](https://github.com/h3poteto/whalebird-desktop/pull/971) Clear polls after close new toot modal -- [#970](https://github.com/h3poteto/whalebird-desktop/pull/970) Attach only polls if it is specified -- [#968](https://github.com/h3poteto/whalebird-desktop/pull/968) Fix code link in README which explain who to add new language -- [#967](https://github.com/h3poteto/whalebird-desktop/pull/967) Add default fonts for emoji in Linux - - - -## [2.8.0] - 2019-07-13 -### Added -- [#946](https://github.com/h3poteto/whalebird-desktop/pull/946) Run all userstreaming in background and notify for all accounts - -### Changed -- [#955](https://github.com/h3poteto/whalebird-desktop/pull/955) Remove unused tests and packages -- [#954](https://github.com/h3poteto/whalebird-desktop/pull/954) Update outdated packages -- [#953](https://github.com/h3poteto/whalebird-desktop/pull/953) Use electron-mock-ipc instead of electron-ipc-mock -- [#951](https://github.com/h3poteto/whalebird-desktop/pull/951) Update node version to 10.16.0 -- [#950](https://github.com/h3poteto/whalebird-desktop/pull/950) Update megalodon version to 0.8.0 - -### Fixed -- [#957](https://github.com/h3poteto/whalebird-desktop/pull/957) Stop user streaming after remove account association - - - -## [2.7.5] - 2019-06-20 -### Changed -- [#945](https://github.com/h3poteto/whalebird-desktop/pull/945) Update Electron version to 4.2.4 -- [#944](https://github.com/h3poteto/whalebird-desktop/pull/944) Allow up to 72pt font in Appearance -- [#939](https://github.com/h3poteto/whalebird-desktop/pull/939) Add integration tests for Contents - -### Fixed -- [#942](https://github.com/h3poteto/whalebird-desktop/pull/942) Update megalodon version to 0.7.5 - - -## [2.7.4] - 2019-06-12 -### Added - -- [#935](https://github.com/h3poteto/whalebird-desktop/pull/935) Customize toot padding -- [#929](https://github.com/h3poteto/whalebird-desktop/pull/929) Add arm architecture in build target - -### Changed - -- [#938](https://github.com/h3poteto/whalebird-desktop/pull/938) Update megalodon version to 0.7.2 -- [#937](https://github.com/h3poteto/whalebird-desktop/pull/937) refactor: Use type instead of interface -- [#936](https://github.com/h3poteto/whalebird-desktop/pull/936) refactor: Replace any type and organize preference -- [#931](https://github.com/h3poteto/whalebird-desktop/pull/931) Update megalodon version to 0.7.1 -- [#930](https://github.com/h3poteto/whalebird-desktop/pull/930) Handle delete event of streamings - -### Fixed - -- [#941](https://github.com/h3poteto/whalebird-desktop/pull/941) Update megalodon for User Agent and add User Agent in streaming -- [#933](https://github.com/h3poteto/whalebird-desktop/pull/933) Fix hashtag when it is fixed -- [#928](https://github.com/h3poteto/whalebird-desktop/pull/928) Upgrade megalodon and fix id type - - - -## [2.7.3] - 2019-05-27 -### Added -- [#925](https://github.com/h3poteto/whalebird-desktop/pull/925) Update access token using refresh token when expire the token - -### Fixed - -- [#927](https://github.com/h3poteto/whalebird-desktop/pull/927) Downgrade electron version to 4.2.2 -- [#924](https://github.com/h3poteto/whalebird-desktop/pull/924) Stop loading after initialized in direct messages -- [#922](https://github.com/h3poteto/whalebird-desktop/pull/922) Unbind streaming for mentions when change accounts - - -## [2.7.2] - 2019-05-21 -### Added -- [#911](https://github.com/h3poteto/whalebird-desktop/pull/911) Add a menu to read follow requests, and accept/reject it -- [#903](https://github.com/h3poteto/whalebird-desktop/pull/903) Add Italian translation -- [#902](https://github.com/h3poteto/whalebird-desktop/pull/902) Add request loading circle -### Changed -- [#917](https://github.com/h3poteto/whalebird-desktop/pull/917) Change loading in order to change channel while loading -- [#916](https://github.com/h3poteto/whalebird-desktop/pull/916) Stop loading after fetch home timeline -- [#914](https://github.com/h3poteto/whalebird-desktop/pull/914) refactor: Move logics to vuex store in new toot -- [#910](https://github.com/h3poteto/whalebird-desktop/pull/910) Update electron version to 5.0.1 for mas -- [#900](https://github.com/h3poteto/whalebird-desktop/pull/900) Update electron version to 5.0.1 -- [#899](https://github.com/h3poteto/whalebird-desktop/pull/899) Use accounts/search API instead of v2/search -### Fixed -- [#919](https://github.com/h3poteto/whalebird-desktop/pull/919) Fix favourite and reblog event -- [#918](https://github.com/h3poteto/whalebird-desktop/pull/918) Update favourited, Reblogged toot in all timelines -- [#912](https://github.com/h3poteto/whalebird-desktop/pull/912) Update pinned hashtags if tags are exist -- [#908](https://github.com/h3poteto/whalebird-desktop/pull/908) Remove commas between pinned hashtags in new toot - - -## [2.7.1] - 2019-04-25 -### Added -- [#898](https://github.com/h3poteto/whalebird-desktop/pull/898) Build package for 32bit -- [#891](https://github.com/h3poteto/whalebird-desktop/pull/891) Introduce prettier combined eslint -- [#862](https://github.com/h3poteto/whalebird-desktop/pull/862) Add detail link on timestamp in toot - -### Changed - -- [#888](https://github.com/h3poteto/whalebird-desktop/pull/888) Change scrollbar design -- [#887](https://github.com/h3poteto/whalebird-desktop/pull/887) Remove unused setting files -- [#850](https://github.com/h3poteto/whalebird-desktop/issues/850) Use typescript in store - -### Fixed - -- [#897](https://github.com/h3poteto/whalebird-desktop/pull/897) Show a menu item for save image in context menu -- [#407](https://github.com/h3poteto/whalebird-desktop/issues/407) Can not remove the list members - - - -## [2.7.0] - 2019-03-25 -### Added - -- [#849](https://github.com/h3poteto/whalebird-desktop/pull/849) Add mentions timeline -- [#847](https://github.com/h3poteto/whalebird-desktop/pull/847) Add integration tests for ListMembership modal -- [#846](https://github.com/h3poteto/whalebird-desktop/pull/846) Add integration tests for AddListMember modal - -### Changed - -- [#855](https://github.com/h3poteto/whalebird-desktop/pull/855) Add mention timeline to jump list -- [#853](https://github.com/h3poteto/whalebird-desktop/pull/853) Update electron-builder version to 20.39.0 -- [#845](https://github.com/h3poteto/whalebird-desktop/pull/845) Update electron version to 4.0.8 - -### Fixed - -- [#856](https://github.com/h3poteto/whalebird-desktop/pull/856) Hide long username and instance name in side menu -- [#854](https://github.com/h3poteto/whalebird-desktop/pull/854) Fix validation which checks toot max length -- [#852](https://github.com/h3poteto/whalebird-desktop/pull/852) Add ttfinfo -- [#842](https://github.com/h3poteto/whalebird-desktop/pull/842) Merge french translation missing file to translation -- [#841](https://github.com/h3poteto/whalebird-desktop/pull/841) Fix package.json for Windows -- [#839](https://github.com/h3poteto/whalebird-desktop/pull/839) Completing French translation - - - -## [2.6.3] - 2019-02-25 -### Added -- [#836](https://github.com/h3poteto/whalebird-desktop/pull/836) Add option to hide all attachments -- [#833](https://github.com/h3poteto/whalebird-desktop/pull/833) Add tests for Jump modal -- [#827](https://github.com/h3poteto/whalebird-desktop/pull/827) Add option to ignore CW and NSFW -- [#824](https://github.com/h3poteto/whalebird-desktop/pull/824) Add unit/integration tests for TimelineSpace -- [#823](https://github.com/h3poteto/whalebird-desktop/pull/823) Add unit tests for Home -- [#820](https://github.com/h3poteto/whalebird-desktop/pull/820) Add integration tests for Contents/Home - -### Changed -- [#838](https://github.com/h3poteto/whalebird-desktop/pull/838) Update megalodon version to 0.5.0 -- [#828](https://github.com/h3poteto/whalebird-desktop/pull/828) refactor: Use computed instead of methods in Toot -- [#819](https://github.com/h3poteto/whalebird-desktop/pull/819) Update Korean translation - -### Fixed -- [#837](https://github.com/h3poteto/whalebird-desktop/pull/837) Reload app general config after change preferences -- [#835](https://github.com/h3poteto/whalebird-desktop/pull/835) Adjust z-index for emoji picker in NewTootModal -- [#834](https://github.com/h3poteto/whalebird-desktop/pull/834) Fix state definition in integration spec -- [#826](https://github.com/h3poteto/whalebird-desktop/pull/826) Merge and lint ko translation json - - - -## [2.6.2] - 2019-01-08 - -### Added -- [#818](https://github.com/h3poteto/whalebird-desktop/pull/818) Add Makefile to build release files -- [#786](https://github.com/h3poteto/whalebird-desktop/pull/786) Add a button to switch websocket for streaming - -### Changed -- [#817](https://github.com/h3poteto/whalebird-desktop/pull/817) Add integration/unit tests for TimelineSpace/HeaderMenu -- [#815](https://github.com/h3poteto/whalebird-desktop/pull/815) Add unit/integration tests for SideMenu -- [#814](https://github.com/h3poteto/whalebird-desktop/pull/814) Add unit/integration tests for GlobalHeader -- [#813](https://github.com/h3poteto/whalebird-desktop/pull/813) Add Preferences store tests -- [#812](https://github.com/h3poteto/whalebird-desktop/pull/812) Add Authorize store tests -- [#811](https://github.com/h3poteto/whalebird-desktop/pull/811) Fix Login spec to use ipc mock -- [#810](https://github.com/h3poteto/whalebird-desktop/pull/810) Add Login store unit tests -- [#809](https://github.com/h3poteto/whalebird-desktop/pull/809) Use jest for unit tests instead of mocha - -### Fixed -- [#808](https://github.com/h3poteto/whalebird-desktop/pull/808) Fix cursor position when user types arrow keys on image description -- [#807](https://github.com/h3poteto/whalebird-desktop/pull/807) Don't send event to webContents when window is already closed -- [#806](https://github.com/h3poteto/whalebird-desktop/pull/806) Fix typo when stop direct messages streaming -- [#805](https://github.com/h3poteto/whalebird-desktop/pull/805) Use same arrow icon for collapse buttons -- [#803](https://github.com/h3poteto/whalebird-desktop/pull/803) Use same arrow icon for collapse buttons -- [#799](https://github.com/h3poteto/whalebird-desktop/pull/799) Rescue parser error after streaming listener is closed -- [#790](https://github.com/h3poteto/whalebird-desktop/pull/790) Emojify display name in follow notification -- [#787](https://github.com/h3poteto/whalebird-desktop/pull/787) Updated English Text - - - -## [2.6.1] - 2018-12-14 - -### Added -- [#773](https://github.com/h3poteto/whalebird-desktop/pull/773) Add instance icon in account header - -### Changed - -- [#785](https://github.com/h3poteto/whalebird-desktop/pull/785) Make UI a bit more accessible -- [#779](https://github.com/h3poteto/whalebird-desktop/pull/779) Bump megalodon to version 0.4.6 -- [#771](https://github.com/h3poteto/whalebird-desktop/pull/771) Update more packages -- [#770](https://github.com/h3poteto/whalebird-desktop/pull/770) Upgrade Electron version to 3.0.10 - -### Fixed - -- [#783](https://github.com/h3poteto/whalebird-desktop/pull/783) Close sidebar before changing account -- [#782](https://github.com/h3poteto/whalebird-desktop/pull/782) Add Pinned toot update handler -- [#781](https://github.com/h3poteto/whalebird-desktop/pull/781) Fix RTL content leaking direction -- [#777](https://github.com/h3poteto/whalebird-desktop/pull/777) Fix media description again -- [#776](https://github.com/h3poteto/whalebird-desktop/pull/776) Keep an error listener after stopping socket -- [#774](https://github.com/h3poteto/whalebird-desktop/pull/774) Update README for node version -- [#766](https://github.com/h3poteto/whalebird-desktop/pull/766) Fix retrieving a retoot's toot tree - - - -## [2.6.0] - 2018-12-04 -### Added - -- [#759](https://github.com/h3poteto/whalebird-desktop/pull/759) Enable searching toots by link -- [#756](https://github.com/h3poteto/whalebird-desktop/pull/756) Switch focus between Timelines and Account Profile using shortcut keys -- [#755](https://github.com/h3poteto/whalebird-desktop/pull/755) Switch focus between Timeline and Toot Detail using shortcut keys - -### Changed - -- [#751](https://github.com/h3poteto/whalebird-desktop/pull/751) Change help command of shortcut -- [#748](https://github.com/h3poteto/whalebird-desktop/pull/748) Enable account dropdown in narrow sidebar menu -- [#747](https://github.com/h3poteto/whalebird-desktop/pull/747) Increase sidebar to 360px - -### Fixed - -- [#764](https://github.com/h3poteto/whalebird-desktop/pull/764) Update shortcut help for switching focus -- [#761](https://github.com/h3poteto/whalebird-desktop/pull/761) Stylelint fixes -- [#757](https://github.com/h3poteto/whalebird-desktop/pull/757) Fix moving cursor in CW input -- [#754](https://github.com/h3poteto/whalebird-desktop/pull/754) Fix undoing retoots/favourites -- [#753](https://github.com/h3poteto/whalebird-desktop/pull/753) Keep timestamp up-to-date and accessible -- [#752](https://github.com/h3poteto/whalebird-desktop/pull/752) Fix user layout in Follow(ers) tab -- [#746](https://github.com/h3poteto/whalebird-desktop/pull/746) Fix editing media description -- [#745](https://github.com/h3poteto/whalebird-desktop/pull/745) Clear sidebar timeline also when component changed -- [#744](https://github.com/h3poteto/whalebird-desktop/pull/744) Emojify account profile - - - -## [2.5.3] - 2018-11-26 -### Added - -- [#740](https://github.com/h3poteto/whalebird-desktop/pull/740) Add tag as search target and show results of search tags -- [#733](https://github.com/h3poteto/whalebird-desktop/pull/733) Enable adding a media description - -### Changed - -- [#739](https://github.com/h3poteto/whalebird-desktop/pull/739) Update more packages -- [#736](https://github.com/h3poteto/whalebird-desktop/pull/736) Update Noto Sans -- [#730](https://github.com/h3poteto/whalebird-desktop/pull/730) Update more node.js packages -- [#729](https://github.com/h3poteto/whalebird-desktop/pull/729) Upgrade megalodon version to 0.4.5 - -### Fixed - -- [#743](https://github.com/h3poteto/whalebird-desktop/pull/743) Change header width when open global header and side menu -- [#738](https://github.com/h3poteto/whalebird-desktop/pull/738) Remove spinner after image has been loaded -- [#737](https://github.com/h3poteto/whalebird-desktop/pull/737) Fix header length when not using narrow menu -- [#735](https://github.com/h3poteto/whalebird-desktop/pull/735) Fix json style in locales -- [#732](https://github.com/h3poteto/whalebird-desktop/pull/732) Fix Whalebird font stack -- [#731](https://github.com/h3poteto/whalebird-desktop/pull/731) Fix typo in Follow component - - -## [2.5.2] - 2018-11-19 -### Added -- [#728](https://github.com/h3poteto/whalebird-desktop/pull/728) Add donate buttons for Patreon and Liberapay -- [#722](https://github.com/h3poteto/whalebird-desktop/pull/722) Enable a vue-loading overlay for the media viewer -- [#721](https://github.com/h3poteto/whalebird-desktop/pull/721) Show loading spinner when loading images -- [#719](https://github.com/h3poteto/whalebird-desktop/pull/719) Add settings button on header menu - -### Changed -- [#723](https://github.com/h3poteto/whalebird-desktop/pull/723) Update toot modal to copy CWs -- [#716](https://github.com/h3poteto/whalebird-desktop/pull/716) Update Toot layout -- [#715](https://github.com/h3poteto/whalebird-desktop/pull/715) Update vue and most related dependencies -- [#712](https://github.com/h3poteto/whalebird-desktop/pull/712) Update most related dependencies -- [#711](https://github.com/h3poteto/whalebird-desktop/pull/711) Update i18next and @panter/vue-i18next - -### Fixed -- [#726](https://github.com/h3poteto/whalebird-desktop/pull/726) Always clear timeline between switches/refreshes -- [#725](https://github.com/h3poteto/whalebird-desktop/pull/725) Fix failover image refresh -- [#724](https://github.com/h3poteto/whalebird-desktop/pull/724) Fix username emojification in sidebar -- [#720](https://github.com/h3poteto/whalebird-desktop/pull/720) fix: Stop unbind events when reload, and call unbind when destroy -- [#718](https://github.com/h3poteto/whalebird-desktop/pull/718) Check acct when parse account -- [#717](https://github.com/h3poteto/whalebird-desktop/pull/717) fix: Await initialize when TimelineSpace is created -- [#709](https://github.com/h3poteto/whalebird-desktop/pull/709) Fix timeline header width when account sidebar is collapsed - - - -## [2.5.1] - 2018-11-16 -### Added -- [#705](https://github.com/h3poteto/whalebird-desktop/pull/705) Render emojis in username - -### Changed -- [#706](https://github.com/h3poteto/whalebird-desktop/pull/706) Show substitute image when can not load the image -- [#704](https://github.com/h3poteto/whalebird-desktop/pull/704) Don't load emoji picker as default for performance -- [#701](https://github.com/h3poteto/whalebird-desktop/pull/701) Upgrade Webpack version to 4.x -- [#700](https://github.com/h3poteto/whalebird-desktop/pull/700) Upgrade electron version to 3.0.8 - -### Fixed -- [#707](https://github.com/h3poteto/whalebird-desktop/pull/707) refactor: Cage Cards components in molecules according to atomic design -- [#703](https://github.com/h3poteto/whalebird-desktop/pull/703) Fix toot parser for account, tag and link -- [#699](https://github.com/h3poteto/whalebird-desktop/pull/699) Improve performance issue when users type new status - - - -## [2.5.0] - 2018-11-11 -### Added -- [#694](https://github.com/h3poteto/whalebird-desktop/pull/694) Allow customize unread notification of timelines -- [#689](https://github.com/h3poteto/whalebird-desktop/pull/689) Add emoji picker in new toot modal -- [#688](https://github.com/h3poteto/whalebird-desktop/pull/688) Enable Direct Messages timeline - -### Changed -- [#693](https://github.com/h3poteto/whalebird-desktop/pull/693) Add streaming update for direct message -- [#686](https://github.com/h3poteto/whalebird-desktop/pull/686) Enable playback of animated media - -### Fixed -- [#697](https://github.com/h3poteto/whalebird-desktop/pull/697) Fix unread mark on side menu when public timeline is updated -- [#692](https://github.com/h3poteto/whalebird-desktop/pull/692) Block changing account when the modal is active -- [#690](https://github.com/h3poteto/whalebird-desktop/pull/690) Fix tag parser in tootParser for Pleroma's tag -- [#687](https://github.com/h3poteto/whalebird-desktop/pull/687) Do not position the :arrow_up: button behind the sidebar - - -## [2.4.4] - 2018-11-01 -### Added -- [#682](https://github.com/h3poteto/whalebird-desktop/pull/682) Add sensitive settings and sync to each instance - -### Changed -- [#678](https://github.com/h3poteto/whalebird-desktop/pull/678) Move visibility settings to sync instance settings - -### Fixed -- [#684](https://github.com/h3poteto/whalebird-desktop/pull/684) Open the links in meta fields in the default browser -- [#683](https://github.com/h3poteto/whalebird-desktop/pull/683) Remove duplicated emojis when suggest -- [#679](https://github.com/h3poteto/whalebird-desktop/pull/679) Remove unnecessary state to fix preference's menu - - - -## [2.4.3] - 2018-10-26 -### Added -- [#675](https://github.com/h3poteto/whalebird-desktop/pull/675) Add option to hide/show global header -- [#661](https://github.com/h3poteto/whalebird-desktop/pull/661) Show follow/unfollow button in follow/followers tab in profile - -### Changed -- [#669](https://github.com/h3poteto/whalebird-desktop/pull/669) Save refresh token if it exists - -### Fixed -- [#676](https://github.com/h3poteto/whalebird-desktop/pull/676) Load hide/show status when reopen app -- [#674](https://github.com/h3poteto/whalebird-desktop/pull/674) Fix side menu design for narrow style -- [#672](https://github.com/h3poteto/whalebird-desktop/pull/672) Clear notification badge on app icon when reload or scroll -- [#671](https://github.com/h3poteto/whalebird-desktop/pull/671) Add role and alt tag for accessibility -- [#670](https://github.com/h3poteto/whalebird-desktop/pull/670) Block to open account profile when the account is not found - -## [2.4.2] -2018-10-14 -### Added -- [#656](https://github.com/h3poteto/whalebird-desktop/pull/656) Show profile's metadata in account profile - -### Changed -- [#653](https://github.com/h3poteto/whalebird-desktop/pull/653) Update Korean translation - -### Fixed -- [#659](https://github.com/h3poteto/whalebird-desktop/pull/659) Fix order of unique when initialize -- [#658](https://github.com/h3poteto/whalebird-desktop/pull/658) Fix searching account when open my profile -- [#655](https://github.com/h3poteto/whalebird-desktop/pull/655) Fix accounts order on global header -- [#654](https://github.com/h3poteto/whalebird-desktop/pull/654) Reorder accounts and fix order method -- [#652](https://github.com/h3poteto/whalebird-desktop/pull/652) Fix toot parser for Pleroma - - -## [2.4.1] - 2018-10-10 -### Fixed -- [#649](https://github.com/h3poteto/whalebird-desktop/pull/649) Add menu to reopen window after close window in macOS -- [#645](https://github.com/h3poteto/whalebird-desktop/pull/645) Fix calling unbind local streaming in timeline space - - - -## [2.4.0] - 2018-10-09 - -### Added -- [#638](https://github.com/h3poteto/whalebird-desktop/pull/638) Connect to Pleroma with Web Socket to streaming update -- [#631](https://github.com/h3poteto/whalebird-desktop/pull/631) Add reporting method and mute/block method on toot - -### Changed -- [#642](https://github.com/h3poteto/whalebird-desktop/pull/642) Update megalodon version to 0.4.3 for reconnect -- [#636](https://github.com/h3poteto/whalebird-desktop/pull/636) Update too max characters if the API responds toot_max_chars - -### Fixed -- [#643](https://github.com/h3poteto/whalebird-desktop/pull/643) Fix bind method when reloading -- [#641](https://github.com/h3poteto/whalebird-desktop/pull/641) Fix protocol of websocket in streaming -- [#640](https://github.com/h3poteto/whalebird-desktop/pull/640) Fix hashtag and list streaming of Pleroma -- [#639](https://github.com/h3poteto/whalebird-desktop/pull/639) Fix message id in timeline -- [#637](https://github.com/h3poteto/whalebird-desktop/pull/637) Open toot detail when user click favourited or rebloged notifications - - -## [2.3.1] - 2018-09-29 -### Fixed -- [#629](https://github.com/h3poteto/whalebird-desktop/pull/629) [hotfix] Use system-font-families instead of font-manager because it is native module - - - -## [2.3.0] - 2018-09-28 -### Added -- [#626](https://github.com/h3poteto/whalebird-desktop/pull/626) Change default fonts in preferences -- [#624](https://github.com/h3poteto/whalebird-desktop/pull/624) Add some color themes -- [#623](https://github.com/h3poteto/whalebird-desktop/pull/623) Allow to use customize color theme in preferences -- [#620](https://github.com/h3poteto/whalebird-desktop/pull/620) Show toot design sample in appearance setting page - -### Changed -- [#622](https://github.com/h3poteto/whalebird-desktop/pull/622) Update electron version to 2.0.10 -- [#621](https://github.com/h3poteto/whalebird-desktop/pull/621) Update deprecated packages for audit - -### Fixed -- [#627](https://github.com/h3poteto/whalebird-desktop/pull/627) Update Korean localization - -## [2.2.2] - 2018-09-22 -### Added -- [#617](https://github.com/h3poteto/whalebird-desktop/pull/617) Pin hashtag in new toot -- [#614](https://github.com/h3poteto/whalebird-desktop/pull/614) Suggest hashtags in new toot - -### Changed -- [#615](https://github.com/h3poteto/whalebird-desktop/pull/615) Reduce statuses when merge timeline - -### Fixed -- [#616](https://github.com/h3poteto/whalebird-desktop/pull/616) Fix line height for font icons -- [#613](https://github.com/h3poteto/whalebird-desktop/pull/613) Call close confirm when cancel new toot -- [#612](https://github.com/h3poteto/whalebird-desktop/pull/612) Stop shortcut when jump modal is hidden -- [#608](https://github.com/h3poteto/whalebird-desktop/pull/608) Set nowrap for domain name in side menu - - - -## [2.2.1] - 2018-09-17 -### Added -- [#602](https://github.com/h3poteto/whalebird-desktop/pull/602) Add mute/block menu -- [#599](https://github.com/h3poteto/whalebird-desktop/pull/599) Add shortcut events for notification -- [#596](https://github.com/h3poteto/whalebird-desktop/pull/596) Minimize to tray for win32 - -### Changed - -- [#606](https://github.com/h3poteto/whalebird-desktop/pull/606) Show tags in side menu -- [#593](https://github.com/h3poteto/whalebird-desktop/pull/593) Update Korean localization - -### Fixed - -- [#605](https://github.com/h3poteto/whalebird-desktop/pull/605) Fix losing focused toot in timeline -- [#604](https://github.com/h3poteto/whalebird-desktop/pull/604) Fix typo in doc -- [#603](https://github.com/h3poteto/whalebird-desktop/pull/603) Fix popper design -- [#600](https://github.com/h3poteto/whalebird-desktop/pull/600) Fix default fonts for japanese -- [#591](https://github.com/h3poteto/whalebird-desktop/pull/591) Fix circleci badge - - - -## [2.2.0] - 2018-09-01 -### Added -- [#590](https://github.com/h3poteto/whalebird-desktop/pull/590) Change time format and set in preferences -- [#586](https://github.com/h3poteto/whalebird-desktop/pull/586) Switch notification in preferences -- [#583](https://github.com/h3poteto/whalebird-desktop/pull/583) Suggest native emoji in New Toot modal -- [#576](https://github.com/h3poteto/whalebird-desktop/pull/576) Add shortcut keys to read image and contents warning - -### Changed -- [#585](https://github.com/h3poteto/whalebird-desktop/pull/585) Update packages for node 10.x -- [#584](https://github.com/h3poteto/whalebird-desktop/pull/584) Update electron version to 2.0.8 -- [#580](https://github.com/h3poteto/whalebird-desktop/pull/580) Update Korean localization -- [#573](https://github.com/h3poteto/whalebird-desktop/pull/573) Update shortcut description - -### Fixed -- [#589](https://github.com/h3poteto/whalebird-desktop/pull/589) Fix bug for save preference in general -- [#588](https://github.com/h3poteto/whalebird-desktop/pull/588) Fix closing image modal using esc -- [#587](https://github.com/h3poteto/whalebird-desktop/pull/587) Fix closing sidebar when overlaid -- [#575](https://github.com/h3poteto/whalebird-desktop/pull/575) New Korean localization - -## [2.1.2] - 2018-08-27 -### Added -- [#562](https://github.com/h3poteto/whalebird-desktop/pull/562) Add shortcut help modal -- [#557](https://github.com/h3poteto/whalebird-desktop/pull/557) Add shortcut keys to control toot -- [#552](https://github.com/h3poteto/whalebird-desktop/pull/552) Set shortcut keys to move toot on timeline -- [#547](https://github.com/h3poteto/whalebird-desktop/pull/547) Add title to display description when hover icon - -### Changed -- [#571](https://github.com/h3poteto/whalebird-desktop/pull/571) Add donate link and QR code in README -- [#565](https://github.com/h3poteto/whalebird-desktop/pull/565) Close preference page with esc -- [#559](https://github.com/h3poteto/whalebird-desktop/pull/559) Add description of shortcut in README - -### Fixed -- [#570](https://github.com/h3poteto/whalebird-desktop/pull/570) Fix reply visibility level -- [#566](https://github.com/h3poteto/whalebird-desktop/pull/566) Fix shortcut events -- [#560](https://github.com/h3poteto/whalebird-desktop/pull/560) Set active tab to first when close preferences -- [#556](https://github.com/h3poteto/whalebird-desktop/pull/556) Update Korean localization - - - -## [2.1.1] - 2018-08-21 -### Added -- [#534](https://github.com/h3poteto/whalebird-desktop/pull/534) Add Korean localization -- [#532](https://github.com/h3poteto/whalebird-desktop/pull/532) Support clipboard picture -- [#528](https://github.com/h3poteto/whalebird-desktop/pull/528) Add Polish translation - -### Fixed -- [#546](https://github.com/h3poteto/whalebird-desktop/pull/546) Fix username to include domain when the user is another instance -- [#545](https://github.com/h3poteto/whalebird-desktop/pull/545) Fix boost icon when the toot is direct -- [#544](https://github.com/h3poteto/whalebird-desktop/pull/544) Fix domain validation for short domain -- [#539](https://github.com/h3poteto/whalebird-desktop/pull/539) Focus on new toot modal after change account -- [#538](https://github.com/h3poteto/whalebird-desktop/pull/538) Jump only modal is opened -- [#535](https://github.com/h3poteto/whalebird-desktop/pull/535) Fix typo in README.md -- [#529](https://github.com/h3poteto/whalebird-desktop/pull/529) Fix some minor typos - - -## [2.1.0] - 2018-08-20 -### Added -- [#519](https://github.com/h3poteto/whalebird-desktop/pull/519) Suggest custom emojis in new toot -- [#516](https://github.com/h3poteto/whalebird-desktop/pull/516) Parse emoji and show emoji in toot -- [#514](https://github.com/h3poteto/whalebird-desktop/pull/514) Add description how to add language in README -- [#513](https://github.com/h3poteto/whalebird-desktop/pull/513) Add show profile menu - -### Fixed -- [#524](https://github.com/h3poteto/whalebird-desktop/pull/524) Fix space in notifications -- [#523](https://github.com/h3poteto/whalebird-desktop/pull/523) Control CW, NSFW, and emoji in notification - - -## [2.0.1] - 2018-08-18 -### Added -- [#503](https://github.com/h3poteto/whalebird-desktop/pull/503) Add confirm modal when close new toot -- [#502](https://github.com/h3poteto/whalebird-desktop/pull/502) Added German translation -- [#500](https://github.com/h3poteto/whalebird-desktop/pull/500) Show account name when hovering on global header - -### Changed -- [#510](https://github.com/h3poteto/whalebird-desktop/pull/510) Change location of follow/unfollow and more info button in account profile -- [#498](https://github.com/h3poteto/whalebird-desktop/pull/498) Add minimum requirements for contribution in README -- [#496](https://github.com/h3poteto/whalebird-desktop/pull/496) Update README - -### Fixed -- [#511](https://github.com/h3poteto/whalebird-desktop/pull/511) Fix Deutsch for close confirm modal -- [#509](https://github.com/h3poteto/whalebird-desktop/pull/509) Update default toot visibility of new toot -- [#499](https://github.com/h3poteto/whalebird-desktop/pull/499) Hide follower menu for own user account -- [#497](https://github.com/h3poteto/whalebird-desktop/pull/497) Translate loading message for each languages - - -## [2.0.0] - 2018-08-15 -### Added -- [#492](https://github.com/h3poteto/whalebird-desktop/pull/492) i18n + English spelling typos + French l10n -- [#488](https://github.com/h3poteto/whalebird-desktop/pull/488) Switch language in preferences -- [#483](https://github.com/h3poteto/whalebird-desktop/pull/483) Translate languages using i18next -- [#472](https://github.com/h3poteto/whalebird-desktop/pull/472) Support for arrow keys when display medias -- [#471](https://github.com/h3poteto/whalebird-desktop/pull/471) Suggest account name in new toot - -### Changed -- [#489](https://github.com/h3poteto/whalebird-desktop/pull/489) Update electron version to 2.0.7 -- [#476](https://github.com/h3poteto/whalebird-desktop/pull/476) Check and submit instance with enter key in login form - -### Fixed -- [#495](https://github.com/h3poteto/whalebird-desktop/pull/495) Fix loading message for japanese -- [#494](https://github.com/h3poteto/whalebird-desktop/pull/494) Handle arrowleft and arrowright key in textarea -- [#490](https://github.com/h3poteto/whalebird-desktop/pull/490) Fix build setting for locales -- [#487](https://github.com/h3poteto/whalebird-desktop/pull/487) spelling typos -- [#486](https://github.com/h3poteto/whalebird-desktop/pull/486) Fix API response of lists -- [#475](https://github.com/h3poteto/whalebird-desktop/pull/475) Use vue-shortkey in jump modal because sometimes jump modal is freeze -- [#474](https://github.com/h3poteto/whalebird-desktop/pull/474) Disable transparent because user can not change window size - - - -## [1.5.6] - 2018-08-07 -### Added -- [#461](https://github.com/h3poteto/whalebird-desktop/pull/461) Add toot visibility setting and use it in new toot modal - -### Changed -- [#468](https://github.com/h3poteto/whalebird-desktop/pull/468) Close new toot modal immediately after post toot - -### Fixed -- [#470](https://github.com/h3poteto/whalebird-desktop/pull/470)Rescue error in lazy loading in favourite -- [#467](https://github.com/h3poteto/whalebird-desktop/pull/467) Catch raise when the response does not have link header of favourites - - - -## [1.5.5] - 208-07-31 -### Fixed -- [#465](https://github.com/h3poteto/whalebird-desktop/pull/457) Fix account switching in global header menu -- [#464](https://github.com/h3poteto/whalebird-desktop/pull/457) Fix electron, and electron-json-storage version -- [#462](https://github.com/h3poteto/whalebird-desktop/pull/457) Fix scroll of splash screen - - - -## [1.5.4] - 2018-07-29 -### Added -- [#457](https://github.com/h3poteto/whalebird-desktop/pull/457) Add splash screen when starting the window - -### Changed -- [#460](https://github.com/h3poteto/whalebird-desktop/pull/460) Update eslint-config-standard -- [#459](https://github.com/h3poteto/whalebird-desktop/pull/459) Update eslint -- [#456](https://github.com/h3poteto/whalebird-desktop/pull/456) Update deprecated plugins - -### Fixed -- [#458](https://github.com/h3poteto/whalebird-desktop/pull/458) Corrected typo in webpack config -- [#454](https://github.com/h3poteto/whalebird-desktop/pull/454) Update megalodon and fix lazy loading in favourite - -## [1.5.3] - 2018-07-23 -### Added -- [#446](https://github.com/h3poteto/whalebird-desktop/pull/446) Hide and show application in mac - -### Changed -- [#448](https://github.com/h3poteto/whalebird-desktop/pull/448) Update electron version to 2.0.5 - -### Fixed -- [#450](https://github.com/h3poteto/whalebird-desktop/pull/450) Fix scroll-behavior because custom scroll function is already defined -- [#449](https://github.com/h3poteto/whalebird-desktop/pull/449) Disable some menu item when window is hidden in mac -- [#445](https://github.com/h3poteto/whalebird-desktop/pull/445) Fix scroll speed when range is too small - - - -## [1.5.2] - 2018-07-20 -### Added -- [#443](https://github.com/h3poteto/whalebird-desktop/pull/443) Add scroll top button in timeline - -### Changed -- [#440](https://github.com/h3poteto/whalebird-desktop/pull/440) Update megalodon version to 0.2.0 -- [#438](https://github.com/h3poteto/whalebird-desktop/pull/438) Change boost icon when the status is private - -### Fixed -- [#437](https://github.com/h3poteto/whalebird-desktop/pull/437) Use v-show instead of v-if where it is not necessary - - - -## [1.5.1] - 2018-07-13 -### Fixed -- [#436](https://github.com/h3poteto/whalebird-desktop/pull/436) Use flex box instead of float at side menu -- [#435](https://github.com/h3poteto/whalebird-desktop/pull/435) Allow subdomain when login - -## [1.5.0] - 2018-07-12 -### Added -- [#431](https://github.com/h3poteto/whalebird-desktop/pull/431) Show authorization url to rescue it is not opened -- [#429](https://github.com/h3poteto/whalebird-desktop/pull/429) Add filter for timelines based on regexp - -### Fixed -- [#432](https://github.com/h3poteto/whalebird-desktop/pull/432) Close popover after do some actions - -## [1.4.3] - 2018-07-06 -### Added -- [#428](https://github.com/h3poteto/whalebird-desktop/pull/428) Add stylelint and check in sider -- [#427](https://github.com/h3poteto/whalebird-desktop/pull/427) Allow drop file to upload the media to mastodon -- [#425](https://github.com/h3poteto/whalebird-desktop/pull/425) Validate domain name at login - -### Changed -- [#426](https://github.com/h3poteto/whalebird-desktop/pull/426) Change color of collapse button - - -## [1.4.2] - 2018-07-04 -### Added -- [#422](https://github.com/h3poteto/whalebird-desktop/pull/422) Add small window layout menu - -### Changed -- [#421](https://github.com/h3poteto/whalebird-desktop/pull/421) Use Lato font in textarea because backtick is broken in Noto -- [#420](https://github.com/h3poteto/whalebird-desktop/pull/420) Display loading on the timeline space instead of loading covering the whole - -### Fixed -- [#419](https://github.com/h3poteto/whalebird-desktop/pull/419) Fix target message when the message is reblogged in toot menu -- [#418](https://github.com/h3poteto/whalebird-desktop/pull/418) Skip stop streaming if the object is not initialized - - -## [1.4.1] - 2018-06-28 -### Added -- [#412](https://github.com/h3poteto/whalebird-desktop/pull/412) Add reload button and reload each timeline -- [#381](https://github.com/h3poteto/whalebird-desktop/pull/381) Allow reload pages with shortcut keys - -### Fixed -- [#411](https://github.com/h3poteto/whalebird-desktop/pull/411) Fix display state of loading in side bar -- [#410](https://github.com/h3poteto/whalebird-desktop/pull/410) Fix findLink method to detect link, tag, and account - -## [1.4.0] - 2018-06-20 -### Added -- [#403](https://github.com/h3poteto/whalebird-desktop/pull/403) Create list editing page which can manage list memberships -- [#401](https://github.com/h3poteto/whalebird-desktop/pull/401) Create lists in lists page -- [#398](https://github.com/h3poteto/whalebird-desktop/pull/398) Add lists page -- [#395](https://github.com/h3poteto/whalebird-desktop/pull/395) Open the manage lists window of an account on account profile - -### Changed -- [#404](https://github.com/h3poteto/whalebird-desktop/pull/404) Set visibility from source message when reply -- [#399](https://github.com/h3poteto/whalebird-desktop/pull/399) Update toot icon - -### Fixed -- [#408](https://github.com/h3poteto/whalebird-desktop/pull/408) Reload side menu after create a list -- [#400](https://github.com/h3poteto/whalebird-desktop/pull/400) Allow video to post toot - -## [1.3.4] - 2018-06-15 -### Added -- [#394](https://github.com/h3poteto/whalebird-desktop/pull/394) Show icon badge when receive notifications -- [#391](https://github.com/h3poteto/whalebird-desktop/pull/391) Remove all account associations - -### Changed -- [#392](https://github.com/h3poteto/whalebird-desktop/pull/392) Allow movies as media when post toot - -### Fixed -- [#389](https://github.com/h3poteto/whalebird-desktop/pull/389) Block to login the same account of the same domain -- [#384](https://github.com/h3poteto/whalebird-desktop/pull/384) Encode tags for non ascii tags - -## [1.3.3] - 2018-06-10 -### Changed -- [#379](https://github.com/h3poteto/whalebird-desktop/pull/379) Use megalodon instead of mastodon-api as mastodon api client - -### Fixed -- [#384](https://github.com/h3poteto/whalebird-desktop/pull/384) Encode tag for non ascii tags - - -## [1.3.2] - 2018-06-06 -### Fixed -- [#376](https://github.com/h3poteto/whalebird-desktop/pull/376) Remove global shortcut and use mousetrap - -## [1.3.1] - 2018-06-06 -### Added -- [#373](https://github.com/h3poteto/whalebird-desktop/pull/373) Open account profile when click account name in toot -- [#372](https://github.com/h3poteto/whalebird-desktop/pull/372) Add shortcut key to jump - -### Fixed -- [#371](https://github.com/h3poteto/whalebird-desktop/pull/371) Add hashtag and search page in jump list -- [#369](https://github.com/h3poteto/whalebird-desktop/pull/369) Enable scroll in side menu - -## [1.3.0] - 2018-06-04 -### Added -- [#362](https://github.com/h3poteto/whalebird-desktop/pull/362) Remove registered hashtag -- [#359](https://github.com/h3poteto/whalebird-desktop/pull/359) Add hashtag page and show tag timeline -- [#354](https://github.com/h3poteto/whalebird-desktop/pull/354) Set context menu -- [#349](https://github.com/h3poteto/whalebird-desktop/pull/349) Add toot button on header menu - -### Changed -- [#364](https://github.com/h3poteto/whalebird-desktop/pull/364) Open tag timeline page when click tag in toot - -### Fixed -- [#348](https://github.com/h3poteto/whalebird-desktop/pull/348) Add a space after username in reply - -## [1.2.0] - 2018-05-29 -### Added -- [#343](https://github.com/h3poteto/whalebird-desktop/pull/343) Allow drag & drop action to upload files -- [#338](https://github.com/h3poteto/whalebird-desktop/pull/338) Set spoiler text when new toot -- [#337](https://github.com/h3poteto/whalebird-desktop/pull/337) Set sensitive in new toot modal -- [#336](https://github.com/h3poteto/whalebird-desktop/pull/336) Hide sensitive medias by default -- [#331](https://github.com/h3poteto/whalebird-desktop/pull/331) Show content warning status and control visibility - -### Changed -- [#339](https://github.com/h3poteto/whalebird-desktop/pull/339) Hide application when can not detect application - -### Fixed -- [#346](https://github.com/h3poteto/whalebird-desktop/pull/346) Fix float setting in toot view -- [#345](https://github.com/h3poteto/whalebird-desktop/pull/345) Fix font and color of placeholder in new toot modal -- [#340](https://github.com/h3poteto/whalebird-desktop/pull/340) Fix typo in list streaming -- [#335](https://github.com/h3poteto/whalebird-desktop/pull/335) Guard duplicate username in reply - -## [1.1.1] - 2018-05-22 -### Changed -- [#321](https://github.com/h3poteto/whalebird-desktop/pull/321) Quit application when window is closed -- [#320](https://github.com/h3poteto/whalebird-desktop/pull/320) Use forked repository for mastodon-api - -### Fixed -- [#324](https://github.com/h3poteto/whalebird-desktop/pull/324) Show image as a picture if the extension is unknown in Media -- [#322](https://github.com/h3poteto/whalebird-desktop/pull/322) Fix image size in image viewer - - -## [1.1.0] - 2018-05-18 -### Added -- [#304](https://github.com/h3poteto/whalebird-desktop/pull/304) Add a background streaming for local timeline - -### Changed -- [#315](https://github.com/h3poteto/whalebird-desktop/pull/315) Show movie on Image Viewer -- [#307](https://github.com/h3poteto/whalebird-desktop/pull/307) Fill all account name when the status is multiple replied -- [#305](https://github.com/h3poteto/whalebird-desktop/pull/305) Show the application from which the status was posted - -### Fixed - -- [#313](https://github.com/h3poteto/whalebird-desktop/pull/313) Clear unread mark when change account -- [#310](https://github.com/h3poteto/whalebird-desktop/pull/310) Update icon when user add a new account -- [#308](https://github.com/h3poteto/whalebird-desktop/pull/308) Fix application name, and add comment for website - - -## [1.0.1] - 2018-05-13 -### Added -- [#296](https://github.com/h3poteto/whalebird-desktop/pull/296) Add lazyLoading in account profile timeline -- [#295](https://github.com/h3poteto/whalebird-desktop/pull/295) Add following status for requested - -### Changed -- [#294](https://github.com/h3poteto/whalebird-desktop/pull/294) Show original status timestamp in reblogged toot -- [#292](https://github.com/h3poteto/whalebird-desktop/pull/292) Update toot status in SideBar - -### Fixed -- [#298](https://github.com/h3poteto/whalebird-desktop/pull/298) Ran the new 'npm audit' and updated some of the packages that are mentioned -- [#297](https://github.com/h3poteto/whalebird-desktop/pull/297) Fix image list arrow -- [#289](https://github.com/h3poteto/whalebird-desktop/pull/289) Add asar unpacked resource for sounds in electron packager - - -## [1.0.0] - 2018-05-05 -### Changed -- [#280](https://github.com/h3poteto/whalebird-desktop/pull/280) Updated package lists to update vue-router & vuex versions to 3.0.1 - -### Fixed -- [#281](https://github.com/h3poteto/whalebird-desktop/pull/281) Fix loading circle in sidebar - - -## [0.6.2] - 2018-04-30 -### Added -- [#279](https://github.com/h3poteto/whalebird-desktop/pull/279) Add toot delete button -- [#277](https://github.com/h3poteto/whalebird-desktop/pull/277) Show favourites count in toot -- [#272](https://github.com/h3poteto/whalebird-desktop/pull/272) Show reblogs count in toot -- [#270](https://github.com/h3poteto/whalebird-desktop/pull/270) Move image list of a toot -- [#268](https://github.com/h3poteto/whalebird-desktop/pull/268) Add a button which copy link to toot - -### Changed -- [#269](https://github.com/h3poteto/whalebird-desktop/pull/269) Add favourite effect - -### Fixed -- [#278](https://github.com/h3poteto/whalebird-desktop/pull/278) Stop streaming when window is closed in macOS -- [#275](https://github.com/h3poteto/whalebird-desktop/pull/275) Wording changes - -## [0.6.1] - 2018-04-25 -### Changed -- [#248](https://github.com/h3poteto/whalebird-desktop/pull/248) Add transition effect to timeline - -### Fixed -- [#266](https://github.com/h3poteto/whalebird-desktop/pull/266) Insert error of timeline when lazy loading -- [#265](https://github.com/h3poteto/whalebird-desktop/pull/265) Fix change status in home and notifications -- [#263](https://github.com/h3poteto/whalebird-desktop/pull/263) Background color of focused in notifications - -## [0.6.0] - 2018-04-22 -### Added -- [#261](https://github.com/h3poteto/whalebird-desktop/pull/261) Add profile dropdown menu for user's profile -- [#250](https://github.com/h3poteto/whalebird-desktop/pull/250) Allow to change font-size -- [#239](https://github.com/h3poteto/whalebird-desktop/pull/239) Add about window for linux and windows - -### Changed -- [#260](https://github.com/h3poteto/whalebird-desktop/pull/260) Display avatar in global header -- [#249](https://github.com/h3poteto/whalebird-desktop/pull/249) Add image viewer transition -- [#247](https://github.com/h3poteto/whalebird-desktop/pull/247) Archive timeline and store unread timeline -- [#246](https://github.com/h3poteto/whalebird-desktop/pull/246) Disable renderer backgrounding of chromium -- [#243](https://github.com/h3poteto/whalebird-desktop/pull/243) Change format of username -- [#240](https://github.com/h3poteto/whalebird-desktop/pull/240) Hide overflowed username when width is narrow - -### Fixed -- [#245](https://github.com/h3poteto/whalebird-desktop/pull/245) Block changing account when loading timeline -- [#238](https://github.com/h3poteto/whalebird-desktop/pull/238) Close side bar when user change account -- [#236](https://github.com/h3poteto/whalebird-desktop/pull/236) Clear timeline after components are destroyed - -## [0.5.0] - 2018-04-18 -### Added -- [#232](https://github.com/h3poteto/whalebird-desktop/pull/232) Search page to find account -- [#231](https://github.com/h3poteto/whalebird-desktop/pull/231) Add menu in account profile to open account in browser -- [#226](https://github.com/h3poteto/whalebird-desktop/pull/226) Open toot detail in browser -- [#222](https://github.com/h3poteto/whalebird-desktop/pull/222) Add lists channels in jump modal -- [#214](https://github.com/h3poteto/whalebird-desktop/pull/214) Set theme color and setting theme in preferences - - -### Changed -- [#218](https://github.com/h3poteto/whalebird-desktop/pull/218) Open toot detail when double click -- [#216](https://github.com/h3poteto/whalebird-desktop/pull/216) Add side bar transition effect - -### Fixed -- [#230](https://github.com/h3poteto/whalebird-desktop/pull/230) Change popover library because vue-js-popover has some bugs -- [#221](https://github.com/h3poteto/whalebird-desktop/pull/221) Change link color for dark theme -- [#220](https://github.com/h3poteto/whalebird-desktop/pull/220) Handle error when lazy loading -- [#219](https://github.com/h3poteto/whalebird-desktop/pull/219) Selected background color when dark theme -- [#217](https://github.com/h3poteto/whalebird-desktop/pull/217) Fix label in side menu - -## [0.4.0] - 2018-04-12 -### Added -- [#207](https://github.com/h3poteto/whalebird-desktop/pull/207) Change visibility level of toot -- [#206](https://github.com/h3poteto/whalebird-desktop/pull/206) Allow user view toot detail at sidebar -- [#200](https://github.com/h3poteto/whalebird-desktop/pull/200) Show lists in side menu - -### Changed -- [#201](https://github.com/h3poteto/whalebird-desktop/pull/201) Show loading when user post new toot - -### Fixed -- [#208](https://github.com/h3poteto/whalebird-desktop/pull/208) Block toot when new toot modal is closed -- [#204](https://github.com/h3poteto/whalebird-desktop/pull/204) Set focus in watch directive on newToot -- [#198](https://github.com/h3poteto/whalebird-desktop/pull/198) Fix image position in ImageViewer - -## [0.3.1] - 2018-04-08 -### Added -- [#196](https://github.com/h3poteto/whalebird-desktop/pull/196) Add sound setting in preferences, and save setting data in json -- [#195](https://github.com/h3poteto/whalebird-desktop/pull/195) Show follows/followers in account profile -- [#194](https://github.com/h3poteto/whalebird-desktop/pull/194) Show user's timeline in account profile - -### Changed -- [#191](https://github.com/h3poteto/whalebird-desktop/pull/191) Sound a system sound when user favourite or reblog - -### Fixed -- [#192](https://github.com/h3poteto/whalebird-desktop/pull/192) Rescue order when account order is unexpected value -- [#189](https://github.com/h3poteto/whalebird-desktop/pull/189) Show loading when user actions -- [#187](https://github.com/h3poteto/whalebird-desktop/pull/187) fix: Open user profile on reblogger icon and reblogger name -- [#185](https://github.com/h3poteto/whalebird-desktop/pull/185) fix: Set font size of close button in login -- [#184](https://github.com/h3poteto/whalebird-desktop/pull/184) Set limit to attachment height - -## [0.3.0] - 2018-04-03 -### Added -- [#176](https://github.com/h3poteto/whalebird-desktop/pull/176) Set accounts order in preferences -- [#172](https://github.com/h3poteto/whalebird-desktop/pull/172) Create account preferences page - -### Changed -- [#182](https://github.com/h3poteto/whalebird-desktop/pull/180) Use vue-shortkey at shortcut when post new toot -- [#175](https://github.com/h3poteto/whalebird-desktop/pull/175) Save account username in local db - -### Fixed -- [#180](https://github.com/h3poteto/whalebird-desktop/pull/180) Show error message when failed to start streaming -- [#179](https://github.com/h3poteto/whalebird-desktop/pull/179) Set global background color to white -- [#177](https://github.com/h3poteto/whalebird-desktop/pull/177) Skip removeEvents when dom does not have a target element -- [#170](https://github.com/h3poteto/whalebird-desktop/pull/170) Fix click event on reblog in notifications -- [#169](https://github.com/h3poteto/whalebird-desktop/pull/169) Set build category for mac and linux - -## [0.2.3] - 2018-03-31 -### Added -- [#155](https://github.com/h3poteto/whalebird-desktop/pull/155) [#157](https://github.com/h3poteto/whalebird-desktop/pull/157) [#158](https://github.com/h3poteto/whalebird-desktop/pull/158) Add account profile page in side bar - -### Fixed -- [#166](https://github.com/h3poteto/whalebird-desktop/pull/166) Reset ctrl key event handler when close new toot modal -- [#162](https://github.com/h3poteto/whalebird-desktop/pull/162) Remove html tags in reply notifications -- [#159](https://github.com/h3poteto/whalebird-desktop/pull/159) Set max height in the image viewer - -## [0.2.2] - 2018-03-29 -### Added -- [#153](https://github.com/h3poteto/whalebird-desktop/pull/153) Attach images in toot -- [#152](https://github.com/h3poteto/whalebird-desktop/pull/152) Open images in modal window when click the preview -- [#150](https://github.com/h3poteto/whalebird-desktop/pull/150) Add lazy loading in timelines - -### Changed -- [#147](https://github.com/h3poteto/whalebird-desktop/pull/147) Archive old statuses when close timeline, because it is too heavy - -## [0.2.1] - 2018-03-27 -### Added -- [#142](https://github.com/h3poteto/whalebird-desktop/pull/142) Show unread marks in side menu - -### Changed -- [#137](https://github.com/h3poteto/whalebird-desktop/pull/137) Use electron-builder instead of electron-packager when build release packages - -### Fixed -- [#144](https://github.com/h3poteto/whalebird-desktop/pull/144) Open link on the default browser in notifications -- [#140](https://github.com/h3poteto/whalebird-desktop/pull/140) Refactor closing modal window when post new toot -- [#139](https://github.com/h3poteto/whalebird-desktop/pull/139) Show username if display_name is blank - -## [0.2.0] - 2018-03-26 -### Added - -- [#135](https://github.com/h3poteto/whalebird-desktop/pull/135) Release the Windows version -- [#125](https://github.com/h3poteto/whalebird-desktop/pull/125), #126 Show attached images of toot in timeline -- [#124](https://github.com/h3poteto/whalebird-desktop/pull/124) Save window state when close - -### Changed - -- [#113](https://github.com/h3poteto/whalebird-desktop/pull/113) Add electron-log for production logs -- [#109](https://github.com/h3poteto/whalebird-desktop/pull/109) Get recently timeline in local and public when it is opened - -### Fixed - -- [#134](https://github.com/h3poteto/whalebird-desktop/pull/134) Clear the domain name in login form after login -- [#130](https://github.com/h3poteto/whalebird-desktop/pull/130), [#128](https://github.com/h3poteto/whalebird-desktop/pull/128) Set NotoSans as the default font. And remove google-fonts-webpack-plugin because the API has been dead. -- [#114](https://github.com/h3poteto/whalebird-desktop/pull/114) Allow application to be draggable for Mac -- [#111](https://github.com/h3poteto/whalebird-desktop/pull/111) Fix text overflow in side menu -- [#110](https://github.com/h3poteto/whalebird-desktop/pull/110) Clear old status after close new toot modal - - -## [0.1.0] - 2018-03-23 -This is the first release diff --git a/CODEOWNERS b/CODEOWNERS deleted file mode 100644 index 5bd9a8ae..00000000 --- a/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @h3poteto diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f288702d..00000000 --- a/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/Makefile b/Makefile deleted file mode 100644 index d732f15c..00000000 --- a/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -.PHONY: all install clean - -VERSION = 1.0.0 - -all: build mac linux win32 win64 - -install: package.json - yarn install - -build: install - yarn run build - -mac: - yarn run package:mac - mv build/Whalebird-${VERSION}-mac-x64.dmg build/Whalebird-${VERSION}-darwin-x64.dmg - mv build/Whalebird-${VERSION}-mac-arm64.dmg build/Whalebird-${VERSION}-darwin-arm64.dmg - cd build; shasum -a 256 Whalebird-${VERSION}-darwin-x64.dmg | awk '{ print $1 }' > Whalebird-${VERSION}-darwin-x64.dmg.shasum - cd build; shasum -a 256 Whalebird-${VERSION}-darwin-arm64.dmg | awk '{ print $1 }' > Whalebird-${VERSION}-darwin-arm64.dmg.shasum - -mas: - yarn run build:clean - yarn run package:mas - -linux: - yarn run package:linux - mv build/Whalebird-${VERSION}-linux-amd64.deb build/Whalebird-${VERSION}-linux-x64.deb - mv build/Whalebird-${VERSION}-linux-x86_64.rpm build/Whalebird-${VERSION}-linux-x64.rpm - mv build/Whalebird-${VERSION}-linux-x86_64.AppImage build/Whalebird-${VERSION}-linux-x64.AppImage - cd build; sha256sum Whalebird-${VERSION}-linux-arm64.tar.bz2 | awk '{ print $1 }' > Whalebird-${VERSION}-linux-arm64.tar.bz2.shasum - cd build; sha256sum Whalebird-${VERSION}-linux-x64.AppImage | awk '{ print $1 }' > Whalebird-${VERSION}-linux-x64.AppImage.shasum - cd build; sha256sum Whalebird-${VERSION}-linux-x64.deb | awk '{ print $1 }' > Whalebird-${VERSION}-linux-x64.deb.shasum - cd build; sha256sum Whalebird-${VERSION}-linux-x64.rpm | awk '{ print $1 }' > Whalebird-${VERSION}-linux-x64.rpm.shasum - cd build; sha256sum Whalebird-${VERSION}-linux-x64.tar.bz2 | awk '{ print $1 }' > Whalebird-${VERSION}-linux-x64.tar.bz2.shasum - -win32: - yarn run package:win32 - mv build/Whalebird-${VERSION}-win-ia32.exe build/Whalebird-${VERSION}-windows-ia32.exe - cd build; sha256sum Whalebird-${VERSION}-windows-ia32.exe | awk '{ print $1 }' > Whalebird-${VERSION}-windows-ia32.exe.shasum - -win64: - yarn run package:win64 - mv build/Whalebird-${VERSION}-win-x64.exe build/Whalebird-${VERSION}-windows-x64.exe - cd build; sha256sum Whalebird-${VERSION}-windows-x64.exe | awk '{ print $1 }' > Whalebird-${VERSION}-windows-x64.exe.shasum - -clean: - yarn run build:clean diff --git a/README.md b/README.md index 2955b4f1..3f8b5348 100644 --- a/README.md +++ b/README.md @@ -1,135 +1,38 @@ -# Whalebird -[![Build](https://github.com/h3poteto/whalebird-desktop/actions/workflows/build.yml/badge.svg)](https://github.com/h3poteto/whalebird-desktop/actions/workflows/build.yml) -[![GitHub release](http://img.shields.io/github/release/h3poteto/whalebird-desktop.svg)](https://github.com/h3poteto/whalebird-desktop/releases) -[![Mac App Store](https://img.shields.io/itunes/v/6445864587)](https://apps.apple.com/us/app/whalebird/id6445864587) -[![AUR version](https://img.shields.io/aur/version/whalebird)](https://aur.archlinux.org/packages/whalebird/) -[![Dependabot](https://img.shields.io/badge/Dependabot-enabled-blue.svg)](https://dependabot.com) -[![Crowdin](https://badges.crowdin.net/whalebird/localized.svg)](https://crowdin.com/project/whalebird) +

+## Usage -Whalebird is a Fediverse client app for desktop. - -![demo](screenshot.png) - -## Feature - -- An interface like slack -- Notify to desktop -- Streaming -- Many keyboard shortcuts -- Manage multiple accounts -- Supporting - - Mastodon - - Pleroma - - Friendica - - Firefish - -### Shortcuts - - - - - - - - - - - - - - - - - - - - - - -
MacLinux, Windows
Toot, Reply Cmd + Enter Ctrl + Enter
Change accounts Cmd + 1, 2, 3... Ctrl + 1, 2, 3...
Jump to another timeline Cmd + k Ctrl + k
Reload current timeline Cmd + r Ctrl + r
Select next post j j
Select previous post k k
Reply to the post r r
Reblog the post b b
Favourite the post f f
Open details of the post o o
Open account profile of the post p p
Open the images i i
Show/hide CW and NSFW x x
Close current page esc esc
Show shortcut keys ? ?
- -## Install -### Mac -[![App Store](app-store.svg)](https://itunes.apple.com/us/app/whalebird/id1378283354) - -Or you can download `.dmg` from [release page](https://github.com/h3poteto/whalebird-desktop/releases). - -So on, you can install from Homebrew: +### Create an App ``` -$ brew update -$ brew install --cask whalebird +# with npx +$ npx create-nextron-app my-app --example with-tailwindcss + +# with yarn +$ yarn create nextron-app my-app --example with-tailwindcss + +# with pnpm +$ pnpm dlx create-nextron-app my-app --example with-tailwindcss ``` -:sparkles: Thanks to [@singingwolfboy](https://github.com/singingwolfboy) for adding it to [homebrew-cask](https://github.com/Homebrew/homebrew-cask/blob/cf568882b6e012956ca404a16be2db36ca873002/Casks/whalebird.rb). - - -### Linux -There are some packages in [release page](https://github.com/h3poteto/whalebird-desktop/releases), for example `.deb`, `.rpm` and `.AppImage`. -If you do not want to use the package manager, please download `.tar.bz2` file and decompress it. - -If you are using snap, please install from [snapcraft.io](https://snapcraft.io/whalebird). +### Install Dependencies ``` -$ sudo snap install whalebird +$ cd my-app + +# using yarn or npm +$ yarn (or `npm install`) + +# using pnpm +$ pnpm install --shamefully-hoist ``` -If you are using flatpak, please install from -[flathub.org](https://flathub.org/apps/details/social.whalebird.WhalebirdDesktop). +### Use it ``` -$ flatpak install social.whalebird.WhalebirdDesktop +# development mode +$ yarn dev (or `npm run dev` or `pnpm run dev`) + +# production build +$ yarn build (or `npm run build` or `pnpm run build`) ``` - -Or you can install from [Arch User Repository](https://aur.archlinux.org/packages/whalebird/). - -``` -$ yay -S whalebird -``` - - -### Windows -Windows Store - - -We prepared winget package and `.exe` [files](https://github.com/h3poteto/whalebird-desktop/releases), **but we don't recommend these ways**. -Because these binary is not code signed, so you will get warnings when you launch. Only Windows Store version is signed, so please use it. - -``` -$ winget show "Whalebird" --versions -``` - -## Translation -If you can speak multiple languages, could you please help with translation in [Crowdin](https://crowdin.com/project/whalebird)? - -Or if you want add new language, please create an issue. I will add it. - -## Development - -We'd love you to contribute to Whalebird. - -### Minimum requirements for development - -* Node.js greater than or equal version 15.0.0 (16.x is recommended) -* npm or yarn - -### Getting started - -``` bash -# clone this repository -$ git clone https://github.com/h3poteto/whalebird-desktop.git -$ cd whalebird-desktop - -# Install font config -$ sudo apt-get install libfontconfig-dev - -# install dependencies -$ yarn install - -# serve with hot reload at localhost:9080 -$ yarn run dev -``` - -# License -The software is available as open source under the terms of the [GPL-3.0 License](https://www.gnu.org/licenses/gpl-3.0.en.html). However, icons do not comply with this license, © Miho Fukuda. diff --git a/app-store.svg b/app-store.svg deleted file mode 100755 index c36a76a5..00000000 --- a/app-store.svg +++ /dev/null @@ -1,51 +0,0 @@ - - Download_on_the_Mac_App_Store_Badge_US-UK_RGB_blk_092917 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/notarize.js b/build/notarize.js deleted file mode 100644 index 0a3ca4f1..00000000 --- a/build/notarize.js +++ /dev/null @@ -1,20 +0,0 @@ -const { notarize } = require('@electron/notarize') - -exports.default = async function notarizing(context) { - const { electronPlatformName, appOutDir } = context - if (electronPlatformName !== 'darwin') { - return - } - - const appName = context.packager.appInfo.productFilename - - return await notarize({ - tool: 'notarytool', - appBundleId: 'social.whalebird.app', - ascProvider: process.env.ASC_PROVIDER, - appPath: `${appOutDir}/${appName}.app`, - appleId: process.env.APPLE_ID, - appleIdPassword: process.env.APPLE_APP_SPECIFIC_PASSWORD, - teamId: process.env.TEAM_ID - }) -} diff --git a/build/sounds/operation_sound01.wav b/build/sounds/operation_sound01.wav deleted file mode 100644 index 3520ea3d..00000000 Binary files a/build/sounds/operation_sound01.wav and /dev/null differ diff --git a/build/sounds/operation_sound02.wav b/build/sounds/operation_sound02.wav deleted file mode 100644 index dbbdf8f4..00000000 Binary files a/build/sounds/operation_sound02.wav and /dev/null differ diff --git a/crowdin.yml b/crowdin.yml deleted file mode 100644 index 70726419..00000000 --- a/crowdin.yml +++ /dev/null @@ -1,27 +0,0 @@ -files: - - source: /src/config/locales/en/translation.json - translation: /src/config/locales/%locale%/translation.json - languages_mapping: - locale: - cs: cs - de: de - es-ES: es_es - eu: eu - fa: fa - fr: fr - gd: gd - hu: hu - id: id - is: is - it: it - ja: ja - ko: ko - 'no': 'no' - pl: pl - pt-PT: pt_pt - ru: ru - si-LK: si - sv-SE: sv_se - tzm: tzm - zh-CN: zh_cn - zh-TW: zh_tw diff --git a/dist/electron/.gitkeep b/dist/electron/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/dist/web/.gitkeep b/dist/web/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/electron-builder.json b/electron-builder.json deleted file mode 100644 index ee48a601..00000000 --- a/electron-builder.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "productName": "Whalebird", - "appId": "social.whalebird.app", - "artifactName": "${productName}-${version}-${os}-${arch}.${ext}", - "directories": { - "output": "build" - }, - "extraResources": [ - "build/sounds/*", - "build/icons/*" - ], - "files": [ - "dist/electron/**/*", - "build/icons/*" - ], - "afterSign": "build/notarize.js", - "dmg": { - "sign": false, - "contents": [ - { - "x": 410, - "y": 150, - "type": "link", - "path": "/Applications" - }, - { - "x": 130, - "y": 150, - "type": "file" - } - ] - }, - "mac": { - "icon": "build/icons/icon.icns", - "target": [ - { - "target": "dmg", - "arch": [ - "x64", - "arm64" - ] - } - ], - "category": "public.app-category.social-networking", - "entitlements": "plist/entitlements.mac.plist", - "entitlementsInherit": "plist/entitlements.mac.plist", - "entitlementsLoginHelper": "plist/loginhelper.plist", - "hardenedRuntime": true, - "gatekeeperAssess": false, - "darkModeSupport": true, - "mergeASARs": false, - "asarUnpack": "node_modules/**/*.node" - }, - "win": { - "icon": "build/icons/icon.ico", - "target": "nsis" - }, - "nsis": { - "oneClick": false, - "allowToChangeInstallationDirectory": true - }, - "linux": { - "icon": "build/icons", - "target": [ - { - "target": "AppImage", - "arch": [ - "x64" - ] - }, - { - "target": "deb", - "arch": [ - "x64" - ] - }, - { - "target": "rpm", - "arch": [ - "x64" - ] - }, - { - "target": "tar.bz2", - "arch": [ - "x64" - ] - }, - { - "target": "snap", - "arch": [ - "x64" - ] - } - ], - "category": "Network" - } -} diff --git a/electron-builder.mas.json b/electron-builder.mas.json deleted file mode 100644 index 4d19c067..00000000 --- a/electron-builder.mas.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "productName": "Whalebird", - "appId": "social.whalebird.app", - "artifactName": "${productName}-${version}-${os}-${arch}.${ext}", - "buildVersion": "168", - "directories": { - "output": "build" - }, - "extraResources": [ - "build/sounds/*", - "build/icons/*" - ], - "files": [ - "dist/electron/**/*", - "build/icons/*" - ], - "mas": { - "type": "distribution", - "entitlements": "plist/parent.plist", - "entitlementsInherit": "plist/child.plist", - "entitlementsLoginHelper": "plist/loginhelper.plist", - "hardenedRuntime": false, - "gatekeeperAssess": false, - "extendInfo": { - "ITSAppUsesNonExemptEncryption": "false" - }, - "provisioningProfile": "./packages/socialwhalebirdapp_MAS.provisionprofile" - }, - "mac": { - "icon": "build/icons/icon.icns", - "target": [ - { - "target": "mas", - "arch": [ - "universal" - ] - } - ], - "category": "public.app-category.social-networking", - "hardenedRuntime": true, - "gatekeeperAssess": false, - "darkModeSupport": true, - "extendInfo": { - "ITSAppUsesNonExemptEncryption": "false" - }, - "mergeASARs": false, - "asarUnpack": "node_modules/**/*.node" - } -} diff --git a/electron-builder.yml b/electron-builder.yml new file mode 100644 index 00000000..68ecf68d --- /dev/null +++ b/electron-builder.yml @@ -0,0 +1,15 @@ +appId: social.whalebird.app +productName: Whalebird +copyright: Copyright © 2023 Akira Fukushima +directories: + output: dist + buildResources: resources +files: + - from: . + filter: + - package.json + - app +linux: + target: AppImage + category: Network +publish: null diff --git a/flatpak-data/social.whalebird.WhalebirdDesktop.desktop b/flatpak-data/social.whalebird.WhalebirdDesktop.desktop deleted file mode 100644 index 8506c688..00000000 --- a/flatpak-data/social.whalebird.WhalebirdDesktop.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Version=1.0 -Type=Application -Name=Whalebird -Comment=Electron-based Mastodon/Pleroma/Misskey client -Exec=start-whalebird.sh %U -Icon=social.whalebird.WhalebirdDesktop -Categories=Network; -Terminal=false - diff --git a/flatpak-data/social.whalebird.WhalebirdDesktop.metainfo.xml b/flatpak-data/social.whalebird.WhalebirdDesktop.metainfo.xml deleted file mode 100644 index 9d17cc7e..00000000 --- a/flatpak-data/social.whalebird.WhalebirdDesktop.metainfo.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - social.whalebird.WhalebirdDesktop - - Whalebird - Whalebird is a Mastodon, Pleroma, and Misskey client for the desktop - - CC0-1.0 - MIT - https://whalebird.social/en/desktop/contents - - intense - intense - - - - -

Whalebird is a Mastodon, Pleroma, and Misskey client for the desktop

-

Features

-
    -
  • An interface like slack
  • -
  • Notify to desktop
  • -
  • Streaming
  • -
  • Many keyboard shortcuts
  • -
  • Manage multiple accounts
  • -
-
- - social.whalebird.WhalebirdDesktop.desktop - - - https://github.com/h3poteto/whalebird-desktop/raw/master/screenshot.png - - - - - -

Updated

-
    -
  • Whalebird 5.x doesn't migrate your local databases from version 4. So please re-authenticate all servers when you upgrade Whalebird from 4.7.4.
  • -
-
-
-
-
diff --git a/main/background.ts b/main/background.ts new file mode 100644 index 00000000..6e82c2d2 --- /dev/null +++ b/main/background.ts @@ -0,0 +1,47 @@ +import path from 'path' +import { app, ipcMain, shell, IpcMainInvokeEvent } from 'electron' +import serve from 'electron-serve' +import { createWindow } from './helpers' + +const isProd = process.env.NODE_ENV === 'production' + +if (isProd) { + serve({ directory: 'app' }) +} else { + app.setPath('userData', `${app.getPath('userData')} (development)`) +} + +;(async () => { + await app.whenReady() + + const mainWindow = createWindow('main', { + width: 1000, + height: 600, + webPreferences: { + nodeIntegration: false, + contextIsolation: true, + webSecurity: false, + preload: path.join(__dirname, 'preload.js') + } + }) + + if (isProd) { + await mainWindow.loadURL('app://./') + } else { + const port = process.argv[2] + await mainWindow.loadURL(`http://localhost:${port}/`) + mainWindow.webContents.openDevTools() + } +})() + +app.on('window-all-closed', () => { + app.quit() +}) + +ipcMain.on('message', async (event, arg) => { + event.reply('message', `${arg} World!`) +}) + +ipcMain.handle('open-browser', (_event: IpcMainInvokeEvent, url: string) => { + shell.openExternal(url) +}) diff --git a/main/helpers/create-window.ts b/main/helpers/create-window.ts new file mode 100644 index 00000000..b4deda5f --- /dev/null +++ b/main/helpers/create-window.ts @@ -0,0 +1,86 @@ +import { + screen, + BrowserWindow, + BrowserWindowConstructorOptions, + Rectangle, +} from 'electron' +import Store from 'electron-store' + +export const createWindow = ( + windowName: string, + options: BrowserWindowConstructorOptions +): BrowserWindow => { + const key = 'window-state' + const name = `window-state-${windowName}` + const store = new Store({ name }) + const defaultSize = { + width: options.width, + height: options.height, + } + let state = {} + + const restore = () => store.get(key, defaultSize) + + const getCurrentPosition = () => { + const position = win.getPosition() + const size = win.getSize() + return { + x: position[0], + y: position[1], + width: size[0], + height: size[1], + } + } + + const windowWithinBounds = (windowState, bounds) => { + return ( + windowState.x >= bounds.x && + windowState.y >= bounds.y && + windowState.x + windowState.width <= bounds.x + bounds.width && + windowState.y + windowState.height <= bounds.y + bounds.height + ) + } + + const resetToDefaults = () => { + const bounds = screen.getPrimaryDisplay().bounds + return Object.assign({}, defaultSize, { + x: (bounds.width - defaultSize.width) / 2, + y: (bounds.height - defaultSize.height) / 2, + }) + } + + const ensureVisibleOnSomeDisplay = (windowState) => { + const visible = screen.getAllDisplays().some((display) => { + return windowWithinBounds(windowState, display.bounds) + }) + if (!visible) { + // Window is partially or fully not visible now. + // Reset it to safe defaults. + return resetToDefaults() + } + return windowState + } + + const saveState = () => { + if (!win.isMinimized() && !win.isMaximized()) { + Object.assign(state, getCurrentPosition()) + } + store.set(key, state) + } + + state = ensureVisibleOnSomeDisplay(restore()) + + const win = new BrowserWindow({ + ...state, + ...options, + webPreferences: { + nodeIntegration: false, + contextIsolation: true, + ...options.webPreferences, + }, + }) + + win.on('close', saveState) + + return win +} diff --git a/main/helpers/index.ts b/main/helpers/index.ts new file mode 100644 index 00000000..e1b9aad0 --- /dev/null +++ b/main/helpers/index.ts @@ -0,0 +1 @@ +export * from './create-window' diff --git a/main/preload.ts b/main/preload.ts new file mode 100644 index 00000000..4657da4f --- /dev/null +++ b/main/preload.ts @@ -0,0 +1,22 @@ +import { contextBridge, ipcRenderer, IpcRendererEvent } from 'electron' + +const handler = { + invoke(channel: string, value: any) { + ipcRenderer.invoke(channel, value) + }, + send(channel: string, value: unknown) { + ipcRenderer.send(channel, value) + }, + on(channel: string, callback: (...args: unknown[]) => void) { + const subscription = (_event: IpcRendererEvent, ...args: unknown[]) => callback(...args) + ipcRenderer.on(channel, subscription) + + return () => { + ipcRenderer.removeListener(channel, subscription) + } + } +} + +contextBridge.exposeInMainWorld('ipc', handler) + +export type IpcHandler = typeof handler diff --git a/package.json b/package.json index d8e567db..5de2a660 100644 --- a/package.json +++ b/package.json @@ -1,205 +1,36 @@ { - "name": "Whalebird", - "version": "5.1.1", - "author": "AkiraFukushima ", - "description": "An Electron based Mastodon client for Windows, Mac and Linux", - "keywords": [ - "mastodon", - "client", - "electron", - "vue" - ], - "repository": { - "type": "git", - "url": "https://github.com/h3poteto/whalebird-desktop.git" - }, - "main": "./dist/electron/main.js", + "private": true, + "name": "whalebird", + "description": "Electron based Fediverse client application", + "version": "1.0.0", + "author": "Akira Fukushima ", + "main": "app/background.js", "scripts": { - "dev": "node .electron-vue/dev-runner.js", - "dev:main": "webpack --node-env=development --mode development --progress --config .electron-vue/webpack.main.config.js", - "dev:renderer": "webpack --node-env=development --mode development --progress --config .electron-vue/webpack.renderer.config.js", - "lint:eslint": "eslint -c .eslintrc.js --ext .js,.vue,.ts src spec", - "lint:stylelint": "stylelint '**/*.vue'", - "build": "node .electron-vue/build.js", - "build:clean": "cross-env BUILD_TARGET=clean node .electron-vue/build.js", - "build:web": "cross-env BUILD_TARGET=web node .electron-vue/build.js", - "package:mas": "electron-builder --mac --publish never --config electron-builder.mas.json", - "package:mac": "electron-builder --mac --publish never --config electron-builder.json", - "package:linux": "electron-builder --linux --publish never --config electron-builder.json", - "package:win32": "electron-builder --win --ia32 --publish never --config electron-builder.json", - "package:win64": "electron-builder --win --x64 --publish never --config electron-builder.json", - "package:pacman": "electron-builder --linux pacman --publish never --config electron-builder.json", - "package:appx2": "electron-builder --win --x64 --config electron-builder.json && electron-windows-store --assets .\\build\\icons --input-directory .\\build\\win-unpacked --output-directory .\\build\\appx --package-name Whalebird --package-display-name Whalebird --package-version 5.1.1.0 --publisher-display-name h3poteto --identity-name 45610h3poteto.Whalebird", - "pack": "yarn run pack:main && yarn run pack:renderer", - "pack:main": "webpack --node-env=production --mode production --progress --config .electron-vue/webpack.main.config.js", - "pack:renderer": "webpack --node-env=production --mode production --progress --config .electron-vue/webpack.renderer.config.js", - "typecheck": "tsc -p . --noEmit && vue-tsc --noEmit", - "spec": "NODE_ENV=test jest -u --maxWorkers=3", - "postinstall": "electron-builder install-app-deps", - "thirdparty": "license-checker --production --json > thirdparty.json && node scripts/thirdparty.js" - }, - "jest": { - "moduleFileExtensions": [ - "ts", - "js", - "json" - ], - "moduleNameMapper": { - "@/router": "/spec/mock/router.ts", - "^@/(.+)": "/src/renderer/$1", - "^~/(.+)": "/$1", - "axios": "axios/dist/node/axios.cjs" - }, - "testMatch": [ - "**/spec/**/*.spec.ts" - ], - "preset": "ts-jest/presets/js-with-ts", - "transform": { - "^.+\\.(js|jsx)$": "babel-jest", - "^.+\\.(ts|tsx)$": "ts-jest" - }, - "transformIgnorePatterns": [ - "/node_modules/(?!axios)" - ], - "setupFiles": [ - "core-js", - "/spec/setupJest.ts" - ], - "globals": { - "ts-jest": { - "tsconfig": "tsconfig.json" - } - } + "dev": "nextron", + "build": "nextron build", + "postinstall": "electron-builder install-app-deps" }, "dependencies": { - "@fortawesome/fontawesome-svg-core": "^6.4.0", - "@fortawesome/free-regular-svg-icons": "^6.4.0", - "@fortawesome/free-solid-svg-icons": "^6.4.0", - "@fortawesome/vue-fontawesome": "^3.0.3", - "@trodi/electron-splashscreen": "^1.0.2", - "@vueuse/core": "10.4.1", - "@vueuse/math": "^10.1.2", - "about-window": "^1.15.2", - "animate.css": "^4.1.0", - "auto-launch": "^5.0.5", - "axios": "1.5.1", - "better-sqlite3": "8.2.0", - "electron-context-menu": "^3.6.1", - "electron-json-storage": "^4.6.0", - "electron-log": "^4.4.8", - "electron-window-state": "^5.0.3", - "element-plus": "^2.3.14", - "emoji-mart-vue-fast": "^15.0.0", - "i18next": "^23.0.0", - "i18next-vue": "^2.1.1", - "megalodon": "8.1.4", - "minimist": "^1.2.8", - "mitt": "^3.0.0", - "moment": "^2.29.4", - "mousetrap": "^1.6.5", - "object-assign-deep": "^0.4.0", - "parse-link-header": "^2.0.0", - "sanitize-html": "^2.10.0", - "simplayer": "0.0.8", - "system-font-families": "^0.6.0", - "unicode-emoji-json": "^0.4.0", - "vue": "^3.3.4", - "vue-popperjs": "^2.3.0", - "vue-resize": "^2.0.0-alpha.1", - "vue-router": "^4.2.2", - "vue-virtual-scroller": "2.0.0-beta.8", - "vuex": "^4.1.0", - "vuex-router-sync": "^6.0.0-rc.1" + "dexie": "^3.2.4", + "electron-serve": "^1.1.0", + "electron-store": "^8.1.0", + "flowbite": "^2.0.0", + "flowbite-react": "^0.6.4", + "megalodon": "^9.1.1" }, "devDependencies": { - "@babel/core": "^7.22.1", - "@babel/eslint-parser": "^7.21.8", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.7", - "@babel/plugin-transform-runtime": "^7.21.4", - "@babel/preset-env": "^7.21.5", - "@babel/register": "^7.21.0", - "@babel/runtime": "7.23.1", - "@electron/notarize": "^2.0.0", - "@types/auto-launch": "^5.0.2", - "@types/better-sqlite3": "^7.6.3", - "@types/electron-json-storage": "^4.5.0", - "@types/jest": "27.5.2", - "@types/jsdom": "^21.1.1", - "@types/node": "^20.2.5", - "@types/parse-link-header": "^2.0.1", - "@typescript-eslint/eslint-plugin": "^6.0.0", - "@typescript-eslint/parser": "^6.0.0", - "@vue/compiler-sfc": "^3.3.4", - "@vue/eslint-config-prettier": "^8.0.0", - "@vue/eslint-config-typescript": "^12.0.0", - "all-object-keys": "^2.2.0", - "assert": "^2.0.0", - "babel-jest": "^29.5.0", - "babel-loader": "^9.1.2", - "babel-plugin-istanbul": "^6.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^6.0.3", - "bufferutil": "^4.0.7", - "cfonts": "^3.2.0", - "cli-color": "^2.0.3", - "copy-webpack-plugin": "^11.0.0", - "core-js": "^3.30.2", - "cross-env": "^7.0.3", - "crypto-browserify": "^3.12.0", - "css-loader": "^6.7.3", - "del": "^6.1.1", - "devtron": "^1.4.0", - "electron": "22.3.25", - "electron-builder": "23.6.0", - "electron-debug": "^3.2.0", - "electron-devtools-installer": "^3.2.0", - "electron-mock-ipc": "^0.3.12", - "electron-windows-store": "^2.1.0", - "eslint": "^8.49.0", - "eslint-plugin-vue": "^9.14.1", - "file-loader": "^6.2.0", - "html-webpack-plugin": "^5.5.1", - "https-browserify": "^1.0.0", - "jest": "^26.6.3", - "jsdom": "^22.1.0", - "json-loader": "^0.5.7", - "listr": "^0.14.3", - "mini-css-extract-plugin": "^2.7.5", - "node-loader": "^2.0.0", - "node-sass": "^9.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "^1.0.1", - "postcss": "^8.4.23", - "postcss-html": "^1.5.0", - "postcss-scss": "^4.0.6", - "prettier": "^3.0.3", - "process": "^0.11.10", - "regenerator-runtime": "^0.14.0", - "sass-loader": "^13.2.2", - "stream-browserify": "^3.0.0", - "stream-http": "^3.2.0", - "style-loader": "^3.3.2", - "stylelint": "^14.16.1", - "stylelint-config-html": "^1.1.0", - "stylelint-config-prettier": "^9.0.4", - "stylelint-config-standard": "^34.0.0", - "stylelint-scss": "^5.2.0", - "timers-browserify": "^2.0.12", - "ts-jest": "^26.5.6", - "ts-loader": "^9.4.2", - "ttfinfo": "^0.2.0", - "typescript": "^4.9.5", - "url": "^0.11.0", - "url-loader": "^4.1.1", - "utf-8-validate": "^6.0.3", - "vue-html-loader": "^1.2.4", - "vue-loader": "^17.2.2", - "vue-style-loader": "^4.1.3", - "vue-tsc": "^1.6.5", - "webpack": "^5.82.1", - "webpack-cli": "^5.1.1", - "webpack-dev-server": "^4.15.0", - "webpack-hot-middleware": "^2.25.3" + "@babel/runtime-corejs3": "^7.23.2", + "@types/node": "^18.11.18", + "@types/react": "^18.0.26", + "autoprefixer": "^10.4.16", + "electron": "^26.2.2", + "electron-builder": "^24.6.4", + "next": "^12.3.4", + "nextron": "^8.12.0", + "postcss": "^8.4.31", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "tailwindcss": "^3.3.3", + "typescript": "^5.2.2" } } diff --git a/packages/.gitkeep b/packages/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/plist/child.plist b/plist/child.plist deleted file mode 100644 index d8dc69e8..00000000 --- a/plist/child.plist +++ /dev/null @@ -1,10 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.inherit - - - diff --git a/plist/entitlements.mac.plist b/plist/entitlements.mac.plist deleted file mode 100644 index 55f37a69..00000000 --- a/plist/entitlements.mac.plist +++ /dev/null @@ -1,10 +0,0 @@ - - - - - com.apple.security.cs.allow-jit - - com.apple.security.cs.allow-unsigned-executable-memory - - - diff --git a/plist/loginhelper.plist b/plist/loginhelper.plist deleted file mode 100644 index 8e31f755..00000000 --- a/plist/loginhelper.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - com.apple.security.app-sandbox - - - diff --git a/plist/parent.plist b/plist/parent.plist deleted file mode 100644 index 6bc4d0cd..00000000 --- a/plist/parent.plist +++ /dev/null @@ -1,12 +0,0 @@ - - - - - com.apple.security.app-sandbox - - com.apple.security.files.user-selected.read-only - - com.apple.security.network.client - - - diff --git a/renderer/app.css b/renderer/app.css new file mode 100644 index 00000000..b5c61c95 --- /dev/null +++ b/renderer/app.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/build/icons/256x256.png b/renderer/assets/256x256.png similarity index 100% rename from build/icons/256x256.png rename to renderer/assets/256x256.png diff --git a/renderer/components/accounts/New.tsx b/renderer/components/accounts/New.tsx new file mode 100644 index 00000000..2840158a --- /dev/null +++ b/renderer/components/accounts/New.tsx @@ -0,0 +1,83 @@ +import { Label, Modal, TextInput, Button } from 'flowbite-react' +import generator, { MegalodonInterface, detector } from 'megalodon' +import { useState } from 'react' +import { db } from '@/db' + +type NewProps = { + opened: boolean + close: () => void +} + +export default function New(props: NewProps) { + const [sns, setSNS] = useState<'mastodon' | 'pleroma' | 'firefish' | 'friendica' | null>(null) + const [domain, setDomain] = useState('') + const [client, setClient] = useState() + const [clientId, setClientId] = useState() + const [clientSecret, setClientSecret] = useState() + + const checkDomain = async () => { + const input = document.getElementById('domain') as HTMLInputElement + setDomain(input.value) + const url = `https://${input.value}` + const sns = await detector(url) + setSNS(sns) + const client = generator(sns, url) + setClient(client) + const appData = await client.registerApp('Whalebird', {}) + setClientId(appData.client_id) + setClientSecret(appData.client_secret) + global.ipc.invoke('open-browser', appData.url) + } + + const authorize = async () => { + const input = document.getElementById('authorization') as HTMLInputElement + if (!client || !clientId || !clientSecret) return + const tokenData = await client.fetchAccessToken(clientId, clientSecret, input.value) + if (!sns) return + const cli = generator(sns, `https://${domain}`, tokenData.access_token, 'Whalebird') + const acct = await cli.verifyAccountCredentials() + await db.accounts.add({ + username: acct.data.username, + account_id: acct.data.id, + avatar: acct.data.avatar, + client_id: clientId, + client_secret: clientSecret, + access_token: tokenData.access_token, + refresh_token: tokenData.refresh_token, + url: `https://${domain}`, + domain: domain, + sns: sns + }) + props.close() + } + + return ( + <> + props.close()}> + Add account + +
+ {sns === null && ( + <> +
+
+ + {' '} + + )} + {sns && ( + <> +
+
+ + {' '} + + )} + +
+
+ + ) +} diff --git a/renderer/components/layouts/account.tsx b/renderer/components/layouts/account.tsx new file mode 100644 index 00000000..8a0bfad8 --- /dev/null +++ b/renderer/components/layouts/account.tsx @@ -0,0 +1,48 @@ +import { useEffect, useState } from 'react' +import { FaPlus } from 'react-icons/fa6' +import { Account, db } from '@/db' +import NewAccount from '@/components/accounts/New' +import { Avatar } from 'flowbite-react' + +type LayoutProps = { + children: React.ReactNode +} + +export default function Layout({ children }: LayoutProps) { + const [accounts, setAccounts] = useState>([]) + const [openNewModal, setOpenNewModal] = useState(false) + + useEffect(() => { + const fn = async () => { + const acct = await db.accounts.toArray() + setAccounts(acct) + if (acct.length === 0) { + setOpenNewModal(true) + } + } + fn() + }, []) + + const closeNewModal = async () => { + const acct = await db.accounts.toArray() + setAccounts(acct) + setOpenNewModal(false) + } + + return ( +
+
+ + {children} +
+
+ ) +} diff --git a/renderer/components/layouts/timelines.tsx b/renderer/components/layouts/timelines.tsx new file mode 100644 index 00000000..28ee4a1c --- /dev/null +++ b/renderer/components/layouts/timelines.tsx @@ -0,0 +1,82 @@ +import { Account, db } from '@/db' +import { CustomFlowbiteTheme, Flowbite, Sidebar } from 'flowbite-react' +import { useRouter } from 'next/router' +import { useEffect, useState } from 'react' + +type LayoutProps = { + children: React.ReactNode +} + +const customTheme: CustomFlowbiteTheme = { + sidebar: { + root: { + inner: 'h-full overflow-y-auto overflow-x-hidden bg-blue-950 py-4 px-3 dark:bg-blue-950' + }, + item: { + base: 'flex items-center justify-center rounded-lg p-2 text-base font-normal text-blue-200 hover:bg-blue-900 dark:text-blue-200 dark:hover:bg-blue-900 cursor-pointer', + active: 'bg-blue-400 text-gray-800 hover:bg-blue-300' + } + } +} + +export default function Layout({ children }: LayoutProps) { + const router = useRouter() + + const [account, setAccount] = useState(null) + useEffect(() => { + if (router.query.id) { + const f = async () => { + const acct = await db.accounts.get(parseInt(router.query.id as string)) + if (!acct) return + setAccount(acct) + } + f() + } + }, [router.query.id]) + + const pages = [ + { + id: 'home', + title: 'Home', + path: `/accounts/${router.query.id}/home` + }, + { + id: 'notifications', + title: 'Notifications', + path: `/accounts/${router.query.id}/notifications` + }, + { + id: 'local', + title: 'Local', + path: `/accounts/${router.query.id}/local` + }, + { + id: 'public', + title: 'Public', + path: `/accounts/${router.query.id}/public` + } + ] + + return ( +
+ + +
+

{account?.username}

+

@{account?.domain}

+
+ + + {pages.map(page => ( + router.push(page.path)}> + {page.title} + + ))} + + +
+
+ {children} +
+ ) +} diff --git a/renderer/db.ts b/renderer/db.ts new file mode 100644 index 00000000..e5ab2593 --- /dev/null +++ b/renderer/db.ts @@ -0,0 +1,30 @@ +import Dexie, { type Table } from 'dexie' + +export type Account = { + id?: number + username: string + account_id: string + avatar: string + client_id: string + client_secret: string + access_token: string + refresh_token: string | null + url: string + domain: string + sns: 'mastodon' | 'pleroma' | 'friendica' | 'firefish' +} + +export class SubClassedDexie extends Dexie { + // 'friends' is added by dexie when declaring the stores() + // We just tell the typing system this is the case + accounts!: Table + + constructor() { + super('whalebird') + this.version(1).stores({ + accounts: '++id, username, account_id, avatar, client_id, client_secret, access_token, refresh_token, url, domain, sns' + }) + } +} + +export const db = new SubClassedDexie() diff --git a/renderer/interfaces/index.ts b/renderer/interfaces/index.ts new file mode 100644 index 00000000..fc5d69b9 --- /dev/null +++ b/renderer/interfaces/index.ts @@ -0,0 +1,16 @@ +// You can include shared interfaces/types in a separate file +// and then use them in any component by importing them. For +// example, to import the interface below do: +// +// import User from 'path/to/interfaces'; +// eslint-disable-next-line @typescript-eslint/no-unused-vars +import { IpcRenderer } from 'electron' + +declare global { + // eslint-disable-next-line @typescript-eslint/no-namespace + namespace NodeJS { + interface Global { + ipc: IpcRenderer + } + } +} diff --git a/renderer/next-env.d.ts b/renderer/next-env.d.ts new file mode 100644 index 00000000..4f11a03d --- /dev/null +++ b/renderer/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/renderer/next.config.js b/renderer/next.config.js new file mode 100644 index 00000000..60e1d31c --- /dev/null +++ b/renderer/next.config.js @@ -0,0 +1,10 @@ +/** @type {import('next').NextConfig} */ +module.exports = { + trailingSlash: true, + images: { + unoptimized: true, + }, + webpack: (config) => { + return config + }, +} diff --git a/renderer/pages/_app.tsx b/renderer/pages/_app.tsx new file mode 100644 index 00000000..4225bc18 --- /dev/null +++ b/renderer/pages/_app.tsx @@ -0,0 +1,14 @@ +import type { AppProps } from 'next/app' +import '../app.css' +import AccountLayout from '@/components/layouts/account' +import TimelineLayout from '@/components/layouts/timelines' + +export default function MyApp({ Component, pageProps }: AppProps) { + return ( + + + + + + ) +} diff --git a/renderer/pages/accounts/[id]/[timeline].tsx b/renderer/pages/accounts/[id]/[timeline].tsx new file mode 100644 index 00000000..438920e4 --- /dev/null +++ b/renderer/pages/accounts/[id]/[timeline].tsx @@ -0,0 +1,6 @@ +import { useRouter } from 'next/router' + +export default function Timeline() { + const router = useRouter() + return
{router.query.timeline}
+} diff --git a/renderer/pages/accounts/[id]/index.tsx b/renderer/pages/accounts/[id]/index.tsx new file mode 100644 index 00000000..647fc63b --- /dev/null +++ b/renderer/pages/accounts/[id]/index.tsx @@ -0,0 +1,15 @@ +import { useRouter } from 'next/router' + +type AccountProps = {} + +export default function Account(props: AccountProps) { + const router = useRouter() + const lastTimeline = localStorage.getItem(`${router.query.id}_lastTimeline`) + if (lastTimeline) { + router.push(`/accounts/${router.query.id}/${lastTimeline}`) + } else { + router.push(`/accounts/${router.query.id}/home`) + } + + return <>{router.query.id} +} diff --git a/renderer/pages/index.tsx b/renderer/pages/index.tsx new file mode 100644 index 00000000..5db02c80 --- /dev/null +++ b/renderer/pages/index.tsx @@ -0,0 +1,25 @@ +import Image from 'next/image' +import { useRouter } from 'next/router' +import { useEffect } from 'react' +import Icon from '@/assets/256x256.png' +import { db } from '@/db' + +export default function Index() { + const router = useRouter() + + useEffect(() => { + const f = async () => { + const accounts = await db.accounts.toArray() + if (accounts.length > 0) { + router.push(`/accounts/${accounts[0].id}`) + } + } + f() + }, []) + + return ( +
+ icon +
+ ) +} diff --git a/renderer/postcss.config.js b/renderer/postcss.config.js new file mode 100644 index 00000000..af3ba26c --- /dev/null +++ b/renderer/postcss.config.js @@ -0,0 +1,8 @@ +module.exports = { + plugins: { + tailwindcss: { + config: './renderer/tailwind.config.js', + }, + autoprefixer: {}, + }, +} diff --git a/renderer/preload.d.ts b/renderer/preload.d.ts new file mode 100644 index 00000000..74dce32f --- /dev/null +++ b/renderer/preload.d.ts @@ -0,0 +1,7 @@ +import { IpcHandler } from '../main/preload' + +declare global { + interface Window { + ipc: IpcHandler + } +} diff --git a/renderer/tailwind.config.js b/renderer/tailwind.config.js new file mode 100644 index 00000000..2ad94aac --- /dev/null +++ b/renderer/tailwind.config.js @@ -0,0 +1,25 @@ +module.exports = { + content: ['./node_modules/flowbite-react/**/*.js', './renderer/pages/**/*.{js,ts,jsx,tsx}', './renderer/components/**/*.{js,ts,jsx,tsx}'], + plugins: [require('flowbite/plugin')], + darkMode: 'class', + theme: { + extend: { + colors: { + // flowbite-svelte + // Refs: https://github.com/themesberg/flowbite-svelte/blob/main/tailwind.config.cjs + primary: { + 50: '#eff6ff', + 100: '#dbeafe', + 200: '#bfdbfe', + 300: '#93c5fd', + 400: '#60a5fa', + 500: '#3b82f6', + 600: '#2563eb', + 700: '#1d4ed8', + 800: '#1e40af', + 900: '#1e3a8a' + } + } + } + } +} diff --git a/renderer/tsconfig.json b/renderer/tsconfig.json new file mode 100644 index 00000000..ddc2c4f2 --- /dev/null +++ b/renderer/tsconfig.json @@ -0,0 +1,13 @@ +{ + "extends": "../tsconfig.json", + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "exclude": ["node_modules"], + "compilerOptions": { + "baseUrl": "./", + "paths": { + "@/*": [ + "./*" + ] + } + } +} diff --git a/renovate.json b/renovate.json deleted file mode 100644 index a66c83d4..00000000 --- a/renovate.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ], - "prConcurrentLimit": 20, - "prHourlyLimit": 20, - "packageRules": [ - { - "matchPackageNames": ["better-sqlite3"], - "allowedVersions": "< 8.3.0" - },{ - "matchPackageNames": ["electron"], - "matchUpdateTypes": ["minor", "patch", "pin", "pinDigest"], - "enabled": false - } - ] -} diff --git a/static/images/icon.png b/resources/icons/256x256.png similarity index 100% rename from static/images/icon.png rename to resources/icons/256x256.png diff --git a/build/icons/SampleAppx.150x150.png b/resources/icons/SampleAppx.150x150.png similarity index 100% rename from build/icons/SampleAppx.150x150.png rename to resources/icons/SampleAppx.150x150.png diff --git a/build/icons/SampleAppx.310x150.png b/resources/icons/SampleAppx.310x150.png similarity index 100% rename from build/icons/SampleAppx.310x150.png rename to resources/icons/SampleAppx.310x150.png diff --git a/build/icons/SampleAppx.44x44.png b/resources/icons/SampleAppx.44x44.png similarity index 100% rename from build/icons/SampleAppx.44x44.png rename to resources/icons/SampleAppx.44x44.png diff --git a/build/icons/SampleAppx.50x50.png b/resources/icons/SampleAppx.50x50.png similarity index 100% rename from build/icons/SampleAppx.50x50.png rename to resources/icons/SampleAppx.50x50.png diff --git a/build/icons/icon.icns b/resources/icons/icon.icns similarity index 100% rename from build/icons/icon.icns rename to resources/icons/icon.icns diff --git a/build/icons/icon.ico b/resources/icons/icon.ico similarity index 100% rename from build/icons/icon.ico rename to resources/icons/icon.ico diff --git a/build/icons/icon.iconset/icon_128x128.png b/resources/icons/icon.iconset/icon_128x128.png similarity index 100% rename from build/icons/icon.iconset/icon_128x128.png rename to resources/icons/icon.iconset/icon_128x128.png diff --git a/build/icons/icon.iconset/icon_128x128@2x.png b/resources/icons/icon.iconset/icon_128x128@2x.png similarity index 100% rename from build/icons/icon.iconset/icon_128x128@2x.png rename to resources/icons/icon.iconset/icon_128x128@2x.png diff --git a/build/icons/icon.iconset/icon_16x16.png b/resources/icons/icon.iconset/icon_16x16.png similarity index 100% rename from build/icons/icon.iconset/icon_16x16.png rename to resources/icons/icon.iconset/icon_16x16.png diff --git a/build/icons/icon.iconset/icon_16x16@2x.png b/resources/icons/icon.iconset/icon_16x16@2x.png similarity index 100% rename from build/icons/icon.iconset/icon_16x16@2x.png rename to resources/icons/icon.iconset/icon_16x16@2x.png diff --git a/build/icons/icon.iconset/icon_256x256.png b/resources/icons/icon.iconset/icon_256x256.png similarity index 100% rename from build/icons/icon.iconset/icon_256x256.png rename to resources/icons/icon.iconset/icon_256x256.png diff --git a/build/icons/icon.iconset/icon_256x256@2x.png b/resources/icons/icon.iconset/icon_256x256@2x.png similarity index 100% rename from build/icons/icon.iconset/icon_256x256@2x.png rename to resources/icons/icon.iconset/icon_256x256@2x.png diff --git a/build/icons/icon.iconset/icon_32x32.png b/resources/icons/icon.iconset/icon_32x32.png similarity index 100% rename from build/icons/icon.iconset/icon_32x32.png rename to resources/icons/icon.iconset/icon_32x32.png diff --git a/build/icons/icon.iconset/icon_32x32@2x.png b/resources/icons/icon.iconset/icon_32x32@2x.png similarity index 100% rename from build/icons/icon.iconset/icon_32x32@2x.png rename to resources/icons/icon.iconset/icon_32x32@2x.png diff --git a/build/icons/icon.iconset/icon_512x512.png b/resources/icons/icon.iconset/icon_512x512.png similarity index 100% rename from build/icons/icon.iconset/icon_512x512.png rename to resources/icons/icon.iconset/icon_512x512.png diff --git a/build/icons/icon.iconset/icon_512x512@2x.png b/resources/icons/icon.iconset/icon_512x512@2x.png similarity index 100% rename from build/icons/icon.iconset/icon_512x512@2x.png rename to resources/icons/icon.iconset/icon_512x512@2x.png diff --git a/build/icons/tray_icon.png b/resources/icons/tray_icon.png similarity index 100% rename from build/icons/tray_icon.png rename to resources/icons/tray_icon.png diff --git a/screenshot.png b/screenshot.png deleted file mode 100644 index ea0a6bba..00000000 Binary files a/screenshot.png and /dev/null differ diff --git a/scripts/thirdparty.js b/scripts/thirdparty.js deleted file mode 100644 index be42b78a..00000000 --- a/scripts/thirdparty.js +++ /dev/null @@ -1,27 +0,0 @@ -const path = require('path') -const fs = require('fs') - -const npmPath = path.join(__dirname, '../thirdparty.json') -const outPath = path.join(__dirname, '../', 'src', 'config', 'thirdparty.json') - -const npmData = JSON.parse(fs.readFileSync(npmPath)) - -let npm = Object.keys(npmData).map(k => { - let r = { - package_name: k, - license: npmData[k].licenses - } - if (npmData[k].publisher) { - r = Object.assign(r, { - publisher: npmData[k].publisher - }) - } - if (npmData[k].repository) { - r = Object.assign(r, { - repository: npmData[k].repository - }) - } - return r -}) - -fs.writeFileSync(outPath, JSON.stringify(npm)) diff --git a/spec/.eslintrc b/spec/.eslintrc deleted file mode 100644 index 7bc296da..00000000 --- a/spec/.eslintrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "env": { - "jest": true - } -} \ No newline at end of file diff --git a/spec/config/i18n.spec.ts b/spec/config/i18n.spec.ts deleted file mode 100644 index d8340289..00000000 --- a/spec/config/i18n.spec.ts +++ /dev/null @@ -1,43 +0,0 @@ -import * as path from 'path' -import fs from 'fs' -import keys from 'all-object-keys' - -const locales = [ - 'de', - 'fr', - 'gd', - 'it', - 'ja', - 'ko', - 'pl', - 'is', - 'it', - 'zh_cn', - 'zh_tw', - 'cs', - 'es_es', - 'no', - 'pt_pt', - 'ru', - 'si', - 'sv_se', - 'tzm', - 'fa' -] - -describe('i18n', () => { - describe('should not define duplicate keys', () => { - locales.forEach(locale => { - it(`${locale} translation`, () => { - const targetJson = JSON.parse( - fs.readFileSync(path.resolve(__dirname, `../../src/config/locales/${locale}/translation.json`), 'utf8') - ) - const allKeys = keys(targetJson) - const duplicates: Array = allKeys.filter( - (x: string, _: number, self: Array) => self.indexOf(x) !== self.lastIndexOf(x) - ) - expect(duplicates).toEqual([]) - }) - }) - }) -}) diff --git a/spec/main/unit/proxy.spec.ts b/spec/main/unit/proxy.spec.ts deleted file mode 100644 index db179717..00000000 --- a/spec/main/unit/proxy.spec.ts +++ /dev/null @@ -1,69 +0,0 @@ -import path from 'path' -import ProxyConfiguration from '~/src/main/proxy' -import { ManualProxy, ProxyProtocol } from '~/src/types/proxy' - -const preferencesDBPath = path.resolve(__dirname, '../../preferences.json') -const proxyConfiguration = new ProxyConfiguration(preferencesDBPath) - -jest.mock('electron', () => ({ - app: { - // getVersion is used by electron-log - getVersion: jest.fn(), - // getName is used by electron-json-storage - getName: jest.fn() - } -})) - -describe('Parser', () => { - it('do not use proxy', () => { - proxyConfiguration.setSystemProxy('DIRECT') - const proxy = proxyConfiguration.parseSystemProxy() - expect(proxy).toEqual(false) - }) - - it('HTTP and HTTPS proxy', () => { - proxyConfiguration.setSystemProxy('PROXY hoge.example.com:8080') - const proxy = proxyConfiguration.parseSystemProxy() - expect(proxy).not.toBe(false) - const manualProxy = proxy as ManualProxy - expect(manualProxy.protocol).toEqual(ProxyProtocol.http) - expect(manualProxy.host).toEqual('hoge.example.com') - expect(manualProxy.port).toEqual('8080') - }) - - it('SOCKS4 proxy', () => { - proxyConfiguration.setSystemProxy('SOCKS4 hoge.example.com:8080') - const proxy = proxyConfiguration.parseSystemProxy() - expect(proxy).not.toBe(false) - const manualProxy = proxy as ManualProxy - expect(manualProxy.protocol).toEqual(ProxyProtocol.socks4) - }) - it('SOCKS4A proxy', () => { - proxyConfiguration.setSystemProxy('SOCKS4A hoge.example.com:8080') - const proxy = proxyConfiguration.parseSystemProxy() - expect(proxy).not.toBe(false) - const manualProxy = proxy as ManualProxy - expect(manualProxy.protocol).toEqual(ProxyProtocol.socks4a) - }) - it('SOCKS5 proxy', () => { - proxyConfiguration.setSystemProxy('SOCKS5 hoge.example.com:8080') - const proxy = proxyConfiguration.parseSystemProxy() - expect(proxy).not.toBe(false) - const manualProxy = proxy as ManualProxy - expect(manualProxy.protocol).toEqual(ProxyProtocol.socks5) - }) - it('SOCKS5H proxy', () => { - proxyConfiguration.setSystemProxy('SOCKS5H hoge.example.com:8080') - const proxy = proxyConfiguration.parseSystemProxy() - expect(proxy).not.toBe(false) - const manualProxy = proxy as ManualProxy - expect(manualProxy.protocol).toEqual(ProxyProtocol.socks5h) - }) - it('SOCKS proxy', () => { - proxyConfiguration.setSystemProxy('SOCKS hoge.example.com:8080') - const proxy = proxyConfiguration.parseSystemProxy() - expect(proxy).not.toBe(false) - const manualProxy = proxy as ManualProxy - expect(manualProxy.protocol).toEqual(ProxyProtocol.socks5) - }) -}) diff --git a/spec/mock/electron.ts b/spec/mock/electron.ts deleted file mode 100644 index 5e3846fb..00000000 --- a/spec/mock/electron.ts +++ /dev/null @@ -1,8 +0,0 @@ -import createIPCMock from 'electron-mock-ipc' -import { IpcRenderer, IpcMain } from 'electron' - -const mocked = createIPCMock() -const ipcMain = mocked.ipcMain as IpcMain -const ipcRenderer = mocked.ipcRenderer as IpcRenderer - -export { ipcMain, ipcRenderer } diff --git a/spec/mock/router.ts b/spec/mock/router.ts deleted file mode 100644 index 23cdcf5a..00000000 --- a/spec/mock/router.ts +++ /dev/null @@ -1,3 +0,0 @@ -export default { - push: jest.fn() -} diff --git a/spec/preferences.json b/spec/preferences.json deleted file mode 100644 index 0967ef42..00000000 --- a/spec/preferences.json +++ /dev/null @@ -1 +0,0 @@ -{} diff --git a/spec/renderer/integration/store/App.spec.ts b/spec/renderer/integration/store/App.spec.ts deleted file mode 100644 index e63d27cc..00000000 --- a/spec/renderer/integration/store/App.spec.ts +++ /dev/null @@ -1,107 +0,0 @@ -import { createStore, Store } from 'vuex' -import { ipcMain, ipcRenderer } from '~/spec/mock/electron' -import App from '@/store/App' -import DisplayStyle from '~/src/constants/displayStyle' -import { LightTheme, DarkTheme } from '~/src/constants/themeColor' -import Theme from '~/src/constants/theme' -import TimeFormat from '~/src/constants/timeFormat' -import Language from '~/src/constants/language' -import DefaultFonts from '@/utils/fonts' -import { MyWindow } from '~/src/types/global' -import { RootState } from '@/store' -;(window as any as MyWindow).ipcRenderer = ipcRenderer - -const state = () => { - return { - theme: LightTheme, - fontSize: 14, - displayNameStyle: DisplayStyle.DisplayNameAndUsername.value, - notify: { - reply: true, - reblog: true, - favourite: true, - follow: true - }, - timeFormat: TimeFormat.Absolute.value, - language: Language.en.key, - defaultFonts: DefaultFonts, - ignoreCW: false, - ignoreNSFW: false, - hideAllAttachments: false - } -} - -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: App.actions, - mutations: App.mutations - } -} - -describe('App', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - App: initStore() - } - }) - }) - - describe('loadPreferences', () => { - describe('error', () => { - it('should not change', async () => { - ipcMain.handle('get-preferences', async () => { - throw new Error() - }) - await store.dispatch('App/loadPreferences').catch(err => { - expect(err instanceof Error).toEqual(true) - expect(store.state.App.theme).toEqual(LightTheme) - }) - ipcMain.removeHandler('get-preferences') - }) - }) - describe('success', () => { - it('should be changed', async () => { - ipcMain.handle('get-preferences', () => { - return { - general: { - timeline: { - cw: true, - nsfw: true - } - }, - language: { - language: Language.en.key - }, - notification: { - notify: { - reply: true, - reblog: true, - favourite: true, - follow: true - } - }, - appearance: { - theme: Theme.Dark.key, - fontSize: 13, - displayNameStyle: DisplayStyle.DisplayNameAndUsername.value, - timeFormat: TimeFormat.Absolute.value, - customThemeColor: LightTheme, - font: DefaultFonts[0] - } - } - }) - await store.dispatch('App/loadPreferences') - expect(store.state.App.fontSize).toEqual(13) - expect(store.state.App.theme).toEqual(DarkTheme) - expect(store.state.App.ignoreCW).toEqual(true) - expect(store.state.App.ignoreNSFW).toEqual(true) - ipcMain.removeHandler('get-preferences') - }) - }) - }) -}) diff --git a/spec/renderer/integration/store/GlobalHeader.spec.ts b/spec/renderer/integration/store/GlobalHeader.spec.ts deleted file mode 100644 index a7e64b5b..00000000 --- a/spec/renderer/integration/store/GlobalHeader.spec.ts +++ /dev/null @@ -1,97 +0,0 @@ -import { RootState } from '@/store' -import { createStore, Store } from 'vuex' -import { ipcMain, ipcRenderer } from '~/spec/mock/electron' -import GlobalHeader, { GlobalHeaderState } from '~/src/renderer/store/GlobalHeader' -import { MyWindow } from '~/src/types/global' -;((window as any) as MyWindow).ipcRenderer = ipcRenderer - -const state = (): GlobalHeaderState => { - return { - accounts: [], - changing: false, - hide: false - } -} - -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: GlobalHeader.actions, - mutations: GlobalHeader.mutations - } -} - -const routerState = { - namespaced: true, - state: { - params: { - id: 'account_id' - } - } -} - -describe('GlobalHeader', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - GlobalHeader: initStore(), - route: routerState - } - }) - }) - - describe('listAccounts', () => { - beforeEach(() => { - ipcMain.handle('list-accounts', () => { - return ['account'] - }) - }) - afterEach(() => { - ipcMain.removeHandler('list-accounts') - }) - it('should be updated', async () => { - await store.dispatch('GlobalHeader/listAccounts') - expect(store.state.GlobalHeader.accounts).toEqual(['account']) - }) - }) - - describe('removeShortcutEvents', () => { - it('should be removed', async () => { - const removed = await store.dispatch('GlobalHeader/removeShortcutEvents') - expect(removed).toEqual(true) - }) - }) - - describe('loadHide', () => { - beforeEach(() => { - ipcMain.handle('get-global-header', () => { - return true - }) - }) - afterEach(() => { - ipcMain.removeHandler('get-global-header') - }) - it('should be changed', async () => { - await store.dispatch('GlobalHeader/loadHide') - expect(store.state.GlobalHeader.hide).toEqual(true) - }) - }) - - describe('switchHide', () => { - beforeEach(() => { - ipcMain.handle('change-global-header', (_, value) => { - return value - }) - }) - afterEach(() => { - ipcMain.removeHandler('change-global-header') - }) - it('should be switched', async () => { - const hide = await store.dispatch('GlobalHeader/switchHide', true) - expect(hide).toEqual(true) - }) - }) -}) diff --git a/spec/renderer/integration/store/Preferences/Appearance.spec.ts b/spec/renderer/integration/store/Preferences/Appearance.spec.ts deleted file mode 100644 index aa0efa15..00000000 --- a/spec/renderer/integration/store/Preferences/Appearance.spec.ts +++ /dev/null @@ -1,146 +0,0 @@ -import { IpcMainInvokeEvent } from 'electron' -import { createStore, Store } from 'vuex' -import Theme from '~/src/constants/theme' -import DisplayStyle from '~/src/constants/displayStyle' -import TimeFormat from '~/src/constants/timeFormat' -import { LightTheme, DarkTheme } from '~/src/constants/themeColor' -import DefaultFonts from '@/utils/fonts' -import Appearance, { AppearanceState } from '@/store/Preferences/Appearance' -import { ipcMain, ipcRenderer } from '~/spec/mock/electron' -import { MyWindow } from '~/src/types/global' -import { RootState } from '@/store' -;(window as any as MyWindow).ipcRenderer = ipcRenderer - -const state = (): AppearanceState => { - return { - appearance: { - theme: Theme.Light.key, - fontSize: 14, - displayNameStyle: DisplayStyle.DisplayNameAndUsername.value, - timeFormat: TimeFormat.Absolute.value, - customThemeColor: LightTheme, - font: DefaultFonts[0], - tootPadding: 8 - }, - fonts: [] - } -} - -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: Appearance.actions, - mutations: Appearance.mutations - } -} - -const preferencesStore = () => ({ - namespaced: true, - modules: { - Appearance: initStore() - } -}) - -const App = { - namespaced: true, - actions: { - loadPreferences: jest.fn() - } -} - -describe('Preferences/Appearance', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - Preferences: preferencesStore(), - App: App - } - }) - }) - - describe('load', () => { - describe('loadAppearance', () => { - beforeEach(() => { - ipcMain.handle('get-preferences', () => { - return { - appearance: { - theme: Theme.Dark.key, - fontSize: 15 - } - } - }) - }) - afterEach(() => { - ipcMain.removeHandler('get-preferences') - }) - it('should be loaded', async () => { - await store.dispatch('Preferences/Appearance/loadAppearance') - expect(store.state.Preferences.Appearance.appearance.theme).toEqual(Theme.Dark.key) - expect(store.state.Preferences.Appearance.appearance.fontSize).toEqual(15) - }) - }) - describe('loadFonts', () => { - beforeEach(() => { - ipcMain.handle('list-fonts', () => { - return ['my-font'] - }) - }) - afterEach(() => { - ipcMain.removeHandler('list-fonts') - }) - it('should be loaded', async () => { - await store.dispatch('Preferences/Appearance/loadFonts') - expect(store.state.Preferences.Appearance.fonts).toEqual([DefaultFonts[0], 'my-font']) - }) - }) - }) - - describe('update', () => { - beforeEach(() => { - ipcMain.handle('update-preferences', (_: IpcMainInvokeEvent, config: any) => { - return config - }) - }) - afterEach(() => { - ipcMain.removeHandler('update-preferences') - }) - it('updateTheme', async () => { - await store.dispatch('Preferences/Appearance/updateTheme', Theme.Dark.key) - expect(store.state.Preferences.Appearance.appearance.theme).toEqual(Theme.Dark.key) - expect(App.actions.loadPreferences).toBeCalled() - }) - - it('updateFontSize', async () => { - await store.dispatch('Preferences/Appearance/updateFontSize', 15) - expect(store.state.Preferences.Appearance.appearance.fontSize).toEqual(15) - expect(App.actions.loadPreferences).toBeCalled() - }) - - it('updateDisplayNameStyle', async () => { - await store.dispatch('Preferences/Appearance/updateDisplayNameStyle', DisplayStyle.DisplayName.value) - expect(store.state.Preferences.Appearance.appearance.displayNameStyle).toEqual(DisplayStyle.DisplayName.value) - expect(App.actions.loadPreferences).toBeCalled() - }) - - it('updateTimeFormat', async () => { - await store.dispatch('Preferences/Appearance/updateTimeFormat', TimeFormat.Relative.value) - expect(store.state.Preferences.Appearance.appearance.timeFormat).toEqual(TimeFormat.Relative.value) - expect(App.actions.loadPreferences).toBeCalled() - }) - - it('updateCustomThemeColor', async () => { - await store.dispatch('Preferences/Appearance/updateCustomThemeColor', DarkTheme) - expect(store.state.Preferences.Appearance.appearance.customThemeColor).toEqual(DarkTheme) - expect(App.actions.loadPreferences).toBeCalled() - }) - - it('updateFont', async () => { - await store.dispatch('Preferences/Appearance/updateFont', DefaultFonts[1]) - expect(store.state.Preferences.Appearance.appearance.font).toEqual(DefaultFonts[1]) - expect(App.actions.loadPreferences).toBeCalled() - }) - }) -}) diff --git a/spec/renderer/integration/store/Preferences/General.spec.ts b/spec/renderer/integration/store/Preferences/General.spec.ts deleted file mode 100644 index aebee162..00000000 --- a/spec/renderer/integration/store/Preferences/General.spec.ts +++ /dev/null @@ -1,131 +0,0 @@ -import { createStore, Store } from 'vuex' -import { ipcMain, ipcRenderer } from '~/spec/mock/electron' -import General, { GeneralState } from '@/store/Preferences/General' -import { MyWindow } from '~/src/types/global' -import { IpcMainInvokeEvent } from 'electron' -import { RootState } from '@/store' -;(window as any as MyWindow).ipcRenderer = ipcRenderer - -const state = (): GeneralState => { - return { - general: { - sound: { - fav_rb: true, - toot: true - }, - timeline: { - cw: false, - nsfw: false, - hideAllAttachments: false - }, - other: { - launch: false, - hideOnLaunch: false - } - }, - loading: false - } -} -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: General.actions, - mutations: General.mutations - } -} - -const preferencesStore = () => ({ - namespaced: true, - modules: { - General: initStore() - } -}) - -const app = { - namespaced: true, - actions: { - loadPreferences(_) { - return true - } - } -} - -describe('Preferences/General', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - Preferences: preferencesStore(), - App: app - } - }) - }) - - describe('loadGeneral', () => { - beforeEach(() => { - ipcMain.handle('get-preferences', () => { - return { - general: { - sound: { - fav_rb: false, - toot: false - } - } - } - }) - }) - afterEach(() => { - ipcMain.removeHandler('get-preferences') - }) - it('should be updated', async () => { - await store.dispatch('Preferences/General/loadGeneral') - expect(store.state.Preferences.General.general.sound.fav_rb).toEqual(false) - expect(store.state.Preferences.General.general.sound.toot).toEqual(false) - expect(store.state.Preferences.General.loading).toEqual(false) - }) - }) - - describe('updateSound', () => { - beforeEach(() => { - ipcMain.handle('update-preferences', (_: IpcMainInvokeEvent, config: any) => { - return config - }) - }) - afterEach(() => { - ipcMain.removeHandler('update-preferences') - }) - it('should be updated', async () => { - await store.dispatch('Preferences/General/updateSound', { - fav_rb: false, - toot: false - }) - expect(store.state.Preferences.General.general.sound.fav_rb).toEqual(false) - expect(store.state.Preferences.General.general.sound.toot).toEqual(false) - expect(store.state.Preferences.General.loading).toEqual(false) - }) - }) - - describe('updateTimeline', () => { - beforeEach(() => { - ipcMain.handle('update-preferences', (_: IpcMainInvokeEvent, config: any) => { - return config - }) - }) - afterEach(() => { - ipcMain.removeHandler('update-preferences') - }) - it('should be updated', async () => { - await store.dispatch('Preferences/General/updateTimeline', { - cw: true, - nsfw: true, - hideAllAttachments: true - }) - expect(store.state.Preferences.General.general.timeline.cw).toEqual(true) - expect(store.state.Preferences.General.general.timeline.nsfw).toEqual(true) - expect(store.state.Preferences.General.general.timeline.hideAllAttachments).toEqual(true) - expect(store.state.Preferences.General.loading).toEqual(false) - }) - }) -}) diff --git a/spec/renderer/integration/store/Preferences/Language.spec.ts b/spec/renderer/integration/store/Preferences/Language.spec.ts deleted file mode 100644 index 0fb432f9..00000000 --- a/spec/renderer/integration/store/Preferences/Language.spec.ts +++ /dev/null @@ -1,85 +0,0 @@ -import { createStore, Store } from 'vuex' -import { ipcMain, ipcRenderer } from '~/spec/mock/electron' -import Language, { LanguageState } from '@/store/Preferences/Language' -import DefaultLanguage from '~/src/constants/language' -import { MyWindow } from '~/src/types/global' -import { RootState } from '@/store' -;(window as any as MyWindow).ipcRenderer = ipcRenderer - -const state = (): LanguageState => { - return { - language: { - language: DefaultLanguage.en.key, - spellchecker: { - enabled: true, - languages: [] - } - } - } -} - -const initStore = () => { - return { - namespaced: true, - state: state, - actions: Language.actions, - mutations: Language.mutations - } -} - -const preferencesStore = () => ({ - namespaced: true, - modules: { - Language: initStore() - } -}) - -describe('Preferences/Language', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - Preferences: preferencesStore() - } - }) - }) - - describe('loadLanguage', () => { - beforeEach(() => { - ipcMain.handle('get-preferences', () => { - return { - language: { - language: DefaultLanguage.ja.key, - spellchecker: { - enabled: true, - languages: [] - } - } - } - }) - }) - afterEach(() => { - ipcMain.removeHandler('get-preferences') - }) - it('should be updated', async () => { - await store.dispatch('Preferences/Language/loadLanguage') - expect(store.state.Preferences.Language.language.language).toEqual(DefaultLanguage.ja.key) - }) - }) - - describe('changeLanguage', () => { - beforeEach(() => { - ipcMain.handle('change-language', (_, key: string) => { - return key - }) - }) - afterEach(() => { - ipcMain.removeHandler('change-language') - }) - it('should be changed', async () => { - await store.dispatch('Preferences/Language/changeLanguage', DefaultLanguage.ja.key) - expect(store.state.Preferences.Language.language.language).toEqual(DefaultLanguage.ja.key) - }) - }) -}) diff --git a/spec/renderer/integration/store/Preferences/Notification.spec.ts b/spec/renderer/integration/store/Preferences/Notification.spec.ts deleted file mode 100644 index cdb52c4d..00000000 --- a/spec/renderer/integration/store/Preferences/Notification.spec.ts +++ /dev/null @@ -1,132 +0,0 @@ -import { createStore, Store } from 'vuex' -import { ipcMain, ipcRenderer } from '~/spec/mock/electron' -import Notification, { NotificationState } from '@/store/Preferences/Notification' -import { MyWindow } from '~/src/types/global' -import { RootState } from '@/store' -;(window as any as MyWindow).ipcRenderer = ipcRenderer - -const state = (): NotificationState => { - return { - notification: { - notify: { - reply: true, - reblog: true, - favourite: true, - follow: true, - follow_request: true, - reaction: true, - status: true, - poll_vote: true, - poll_expired: true - } - } - } -} - -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: Notification.actions, - mutations: Notification.mutations - } -} - -const preferencesStore = () => ({ - namespaced: true, - modules: { - Notification: initStore() - } -}) - -const App = { - namespaced: true, - actions: { - loadPreferences: jest.fn() - } -} - -describe('Preferences/Notification', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - Preferences: preferencesStore(), - App: App - } - }) - }) - - describe('loadNotification', () => { - beforeEach(() => { - ipcMain.handle('get-preferences', () => { - return { - notification: { - notify: { - reply: false, - reblog: false, - favourite: false, - follow: false, - follow_request: false, - reaction: false, - status: false, - poll_vote: false, - poll_expired: false - } - } - } - }) - afterEach(() => { - ipcMain.removeHandler('get-preferences') - }) - it('should be updated', async () => { - await store.dispatch('Preferences/Notification/loadNotification') - expect(store.state.Preferences.Notification.notification).toEqual({ - notify: { - reply: false, - reblog: false, - favourite: false, - follow: false, - follow_request: false, - reaction: false, - status: false, - poll_vote: false, - poll_expired: false - } - }) - }) - }) - }) - - describe('updateNotify', () => { - beforeEach(() => { - ipcMain.handle('update-preferences', (_, conf: object) => { - return conf - }) - }) - afterEach(() => { - ipcMain.removeHandler('update-preferences') - }) - it('should be updated', async () => { - await store.dispatch('Preferences/Notification/updateNotify', { - reply: false, - reblog: false - }) - expect(store.state.Preferences.Notification.notification).toEqual({ - notify: { - reply: false, - reblog: false, - favourite: true, - follow: true, - follow_request: true, - reaction: true, - status: true, - poll_vote: true, - poll_expired: true - } - }) - expect(App.actions.loadPreferences).toBeCalled() - }) - }) -}) diff --git a/spec/renderer/integration/store/TimelineSpace/HeaderMenu.spec.ts b/spec/renderer/integration/store/TimelineSpace/HeaderMenu.spec.ts deleted file mode 100644 index d94bedb1..00000000 --- a/spec/renderer/integration/store/TimelineSpace/HeaderMenu.spec.ts +++ /dev/null @@ -1,91 +0,0 @@ -import { RootState } from '@/store' -import { Response, Entity } from 'megalodon' -import { createStore, Store } from 'vuex' -import HeaderMenu, { HeaderMenuState } from '~/src/renderer/store/TimelineSpace/HeaderMenu' - -const list: Entity.List = { - id: '1', - title: 'example', - replies_policy: null -} - -const mockClient = { - getList: (_listID: string) => { - return new Promise>(resolve => { - const res: Response = { - data: list, - status: 200, - statusText: 'OK', - headers: {} - } - resolve(res) - }) - } -} - -jest.mock('megalodon', () => ({ - ...jest.requireActual('megalodon'), - default: jest.fn(() => mockClient), - __esModule: true -})) - -const state = (): HeaderMenuState => { - return { - title: 'Home', - reload: false, - loading: false - } -} - -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: HeaderMenu.actions, - mutations: HeaderMenu.mutations - } -} - -const timelineStore = () => ({ - namespaced: true, - state: { - account: { - accessToken: 'token' - }, - server: { - sns: 'mastodon', - baseURL: 'http://localhost' - } - }, - modules: { - HeaderMenu: initStore() - } -}) - -const appState = { - namespaced: true, - state: { - proxyConfiguration: false - } -} - -describe('HeaderMenu', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - TimelineSpace: timelineStore(), - App: appState - } - }) - }) - - describe('fetchLists', () => { - it('should be updated', async () => { - const l = await store.dispatch('TimelineSpace/HeaderMenu/fetchList', list.id) - expect(l).toEqual(list) - expect(store.state.TimelineSpace.HeaderMenu.title).toEqual(`#${list.title}`) - }) - }) -}) diff --git a/spec/renderer/integration/store/TimelineSpace/Modals/AddListMember.spec.ts b/spec/renderer/integration/store/TimelineSpace/Modals/AddListMember.spec.ts deleted file mode 100644 index ebaf9a81..00000000 --- a/spec/renderer/integration/store/TimelineSpace/Modals/AddListMember.spec.ts +++ /dev/null @@ -1,143 +0,0 @@ -import { Response, Entity } from 'megalodon' -import { createStore, Store } from 'vuex' -import AddListMember, { AddListMemberState } from '@/store/TimelineSpace/Modals/AddListMember' -import { RootState } from '@/store' - -const mockClient = { - searchAccount: () => { - return new Promise>(resolve => { - const res: Response = { - data: [account], - status: 200, - statusText: 'OK', - headers: {} - } - resolve(res) - }) - }, - addAccountsToList: () => { - return new Promise(resolve => { - const res: Response = { - data: {}, - status: 200, - statusText: 'OK', - headers: {} - } - resolve(res) - }) - } -} - -jest.mock('megalodon', () => ({ - ...jest.requireActual('megalodon'), - default: jest.fn(() => mockClient), - __esModule: true -})) - -const account: Entity.Account = { - id: '1', - username: 'h3poteto', - acct: 'h3poteto@pleroma.io', - display_name: 'h3poteto', - locked: false, - group: false, - created_at: '2019-03-26T21:30:32', - followers_count: 10, - following_count: 10, - statuses_count: 100, - note: 'engineer', - url: 'https://pleroma.io', - avatar: '', - avatar_static: '', - header: '', - header_static: '', - emojis: [], - moved: null, - fields: [], - bot: false, - noindex: null, - suspended: null, - limited: null -} - -const state = (): AddListMemberState => { - return { - modalOpen: false, - accounts: [], - targetListId: null - } -} - -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: AddListMember.actions, - mutations: AddListMember.mutations - } -} - -const modalsStore = () => ({ - namespaced: true, - modules: { - AddListMember: initStore() - } -}) - -const timelineStore = () => ({ - namespaced: true, - state: { - account: { - id: 0, - accessToken: 'token' - }, - server: { - sns: 'mastodon' - } - }, - modules: { - Modals: modalsStore() - } -}) - -const appState = { - namespaced: true, - state: { - proxyConfiguration: false - } -} - -describe('AddListMember', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - AddListMember: initStore(), - TimelineSpace: timelineStore(), - App: appState - } - }) - }) - - describe('changeModal', () => { - it('should change modal', () => { - store.dispatch('TimelineSpace/Modals/AddListMember/changeModal', true) - expect(store.state.TimelineSpace.Modals.AddListMember.modalOpen).toEqual(true) - }) - }) - - describe('search', () => { - it('should be searched', async () => { - await store.dispatch('TimelineSpace/Modals/AddListMember/search', 'akira') - expect(store.state.TimelineSpace.Modals.AddListMember.accounts).toEqual([account]) - }) - }) - - describe('add', () => { - it('should be added a member to the list', async () => { - const result = await store.dispatch('TimelineSpace/Modals/AddListMember/add', 'akira') - expect(result).toEqual({}) - }) - }) -}) diff --git a/spec/renderer/integration/store/TimelineSpace/Modals/ImageViewer.spec.ts b/spec/renderer/integration/store/TimelineSpace/Modals/ImageViewer.spec.ts deleted file mode 100644 index c15dfe8b..00000000 --- a/spec/renderer/integration/store/TimelineSpace/Modals/ImageViewer.spec.ts +++ /dev/null @@ -1,219 +0,0 @@ -import { RootState } from '@/store' -import { createStore, Store } from 'vuex' -import ImageViewer, { ImageViewerState } from '~/src/renderer/store/TimelineSpace/Modals/ImageViewer' - -const state = (): ImageViewerState => { - return { - modalOpen: false, - currentIndex: -1, - mediaList: [], - loading: false - } -} - -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: ImageViewer.actions, - mutations: ImageViewer.mutations, - getters: ImageViewer.getters - } -} - -const modalsStore = () => ({ - namespaced: true, - modules: { - ImageViewer: initStore() - } -}) - -const timelineStore = () => ({ - namespaced: true, - modules: { - Modals: modalsStore() - } -}) - -describe('ImageViewer', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - TimelineSpace: timelineStore() - } - }) - }) - - // Actions - describe('openModal', () => { - it('should be changed', () => { - store.dispatch('TimelineSpace/Modals/ImageViewer/openModal', { - currentIndex: 1, - mediaList: ['media1', 'media2'] - }) - expect(store.state.TimelineSpace.Modals.ImageViewer.modalOpen).toEqual(true) - expect(store.state.TimelineSpace.Modals.ImageViewer.currentIndex).toEqual(1) - expect(store.state.TimelineSpace.Modals.ImageViewer.mediaList).toEqual(['media1', 'media2']) - expect(store.state.TimelineSpace.Modals.ImageViewer.loading).toEqual(true) - }) - }) - - describe('closeModal', () => { - beforeEach(() => { - store.dispatch('TimelineSpace/Modals/ImageViewer/openModal', { - currentIndex: 1, - mediaList: ['media1', 'media2'] - }) - }) - it('should be changed', () => { - store.dispatch('TimelineSpace/Modals/ImageViewer/closeModal') - expect(store.state.TimelineSpace.Modals.ImageViewer.modalOpen).toEqual(false) - expect(store.state.TimelineSpace.Modals.ImageViewer.currentIndex).toEqual(-1) - expect(store.state.TimelineSpace.Modals.ImageViewer.mediaList).toEqual([]) - expect(store.state.TimelineSpace.Modals.ImageViewer.loading).toEqual(false) - }) - }) - - describe('incrementIndex', () => { - it('should be changed', () => { - store.dispatch('TimelineSpace/Modals/ImageViewer/incrementIndex') - expect(store.state.TimelineSpace.Modals.ImageViewer.currentIndex).toEqual(0) - expect(store.state.TimelineSpace.Modals.ImageViewer.loading).toEqual(true) - }) - }) - - describe('decrementIndex', () => { - it('should be changed', () => { - store.dispatch('TimelineSpace/Modals/ImageViewer/decrementIndex') - expect(store.state.TimelineSpace.Modals.ImageViewer.currentIndex).toEqual(-2) - expect(store.state.TimelineSpace.Modals.ImageViewer.loading).toEqual(true) - }) - }) - - // Getters - describe('imageURL', () => { - describe('currentIndex exists', () => { - beforeEach(() => { - store.dispatch('TimelineSpace/Modals/ImageViewer/openModal', { - currentIndex: 0, - mediaList: [ - { - url: 'http://joinmastodon.org' - }, - { - url: 'https://docs-develop.pleroma.social' - } - ] - }) - }) - it('should return url', () => { - const url = store.getters['TimelineSpace/Modals/ImageViewer/imageURL'] - expect(url).toEqual('http://joinmastodon.org') - }) - }) - }) - - describe('imageType', () => { - describe('currentIndex exists', () => { - beforeEach(() => { - store.dispatch('TimelineSpace/Modals/ImageViewer/openModal', { - currentIndex: 0, - mediaList: [ - { - type: 'image/png' - }, - { - type: 'image/jpg' - } - ] - }) - }) - it('should return type', () => { - const type = store.getters['TimelineSpace/Modals/ImageViewer/imageType'] - expect(type).toEqual('image/png') - }) - }) - }) - - describe('showLeft', () => { - describe('currentIndex > 0', () => { - describe('mediaList > 1', () => { - beforeEach(() => { - store.dispatch('TimelineSpace/Modals/ImageViewer/openModal', { - currentIndex: 1, - mediaList: [ - { - type: 'image/png' - }, - { - type: 'image/jpg' - } - ] - }) - }) - it('should return true', () => { - const left = store.getters['TimelineSpace/Modals/ImageViewer/showLeft'] - expect(left).toEqual(true) - }) - }) - describe('mediaList < 1', () => { - beforeEach(() => { - store.dispatch('TimelineSpace/Modals/ImageViewer/openModal', { - currentIndex: 0, - mediaList: [ - { - type: 'image/png' - } - ] - }) - }) - it('should not return true', () => { - const left = store.getters['TimelineSpace/Modals/ImageViewer/showLeft'] - expect(left).toEqual(false) - }) - }) - }) - }) - - describe('showRight', () => { - describe('current index is lower than media list length', () => { - describe('media list length > 1', () => { - beforeEach(() => { - store.dispatch('TimelineSpace/Modals/ImageViewer/openModal', { - currentIndex: 0, - mediaList: [ - { - type: 'image/png' - }, - { - type: 'image/jpeg' - } - ] - }) - }) - it('should return true', () => { - const right = store.getters['TimelineSpace/Modals/ImageViewer/showRight'] - expect(right).toEqual(true) - }) - }) - describe('media list length <= 1', () => { - beforeEach(() => { - store.dispatch('TimelineSpace/Modals/ImageViewer/openModal', { - currentIndex: 0, - mediaList: [ - { - type: 'image/png' - } - ] - }) - }) - it('should not return true', () => { - const right = store.getters['TimelineSpace/Modals/ImageViewer/showRight'] - expect(right).toEqual(false) - }) - }) - }) - }) -}) diff --git a/spec/renderer/integration/store/TimelineSpace/Modals/Jump.spec.ts b/spec/renderer/integration/store/TimelineSpace/Modals/Jump.spec.ts deleted file mode 100644 index 6f4aa9ae..00000000 --- a/spec/renderer/integration/store/TimelineSpace/Modals/Jump.spec.ts +++ /dev/null @@ -1,109 +0,0 @@ -import { createStore, Store } from 'vuex' -import i18n from '~/src/config/i18n' -import router from '@/router' -import Jump, { JumpState, Channel } from '~/src/renderer/store/TimelineSpace/Modals/Jump' -import { RootState } from '@/store' - -const state = (): JumpState => { - return { - modalOpen: true, - channel: '', - defaultChannelList: [ - { - name: i18n.t('side_menu.home'), - path: 'home' - }, - { - name: i18n.t('side_menu.notification'), - path: 'notifications' - }, - { - name: i18n.t('side_menu.favourite'), - path: 'favourites' - }, - { - name: i18n.t('side_menu.local'), - path: 'local' - }, - { - name: i18n.t('side_menu.public'), - path: 'public' - }, - { - name: i18n.t('side_menu.hashtag'), - path: 'hashtag' - }, - { - name: i18n.t('side_menu.search'), - path: 'search' - }, - { - name: i18n.t('side_menu.direct'), - path: 'direct-messages' - } - ], - selectedChannel: { - name: i18n.t('side_menu.home'), - path: 'home' - } - } -} -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: Jump.actions, - mutations: Jump.mutations - } -} - -const modalsStore = () => ({ - namespaced: true, - modules: { - Jump: initStore() - } -}) - -const timelineStore = () => ({ - namespaced: true, - state: { - account: { - id: 0 - } - }, - modules: { - Modals: modalsStore() - } -}) - -describe('Jump', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - TimelineSpace: timelineStore() - } - }) - }) - - describe('jumpCurrentSelected', () => { - it('should be changed', () => { - store.dispatch('TimelineSpace/Modals/Jump/jumpCurrentSelected') - expect(store.state.TimelineSpace.Modals.Jump.modalOpen).toEqual(false) - expect(router.push).toHaveBeenCalledWith({ path: '/0/home' }) - }) - }) - - describe('jump', () => { - it('should be changed', () => { - const channel: Channel = { - name: 'public', - path: 'public' - } - store.dispatch('TimelineSpace/Modals/Jump/jump', channel) - expect(store.state.TimelineSpace.Modals.Jump.modalOpen).toEqual(false) - expect(router.push).toHaveBeenCalledWith({ path: '/0/public' }) - }) - }) -}) diff --git a/spec/renderer/integration/store/TimelineSpace/Modals/ListMembership.spec.ts b/spec/renderer/integration/store/TimelineSpace/Modals/ListMembership.spec.ts deleted file mode 100644 index 43477346..00000000 --- a/spec/renderer/integration/store/TimelineSpace/Modals/ListMembership.spec.ts +++ /dev/null @@ -1,204 +0,0 @@ -import { Response, Entity } from 'megalodon' -import { createStore, Store } from 'vuex' -import ListMembership, { ListMembershipState } from '@/store/TimelineSpace/Modals/ListMembership' -import { RootState } from '@/store' - -const mockClient = { - getAccountLists: () => { - return new Promise>(resolve => { - const res: Response = { - data: [list1, list2], - status: 200, - statusText: 'OK', - headers: {} - } - resolve(res) - }) - }, - getLists: () => { - return new Promise>(resolve => { - const res: Response = { - data: [list1, list2], - status: 200, - statusText: 'OK', - headers: {} - } - resolve(res) - }) - }, - deleteAccountsFromList: (id: string, account_ids: Array) => { - if (id === list3.id && account_ids[0]) { - return new Promise(resolve => { - const res: Response = { - data: {}, - status: 200, - statusText: 'OK', - headers: {} - } - resolve(res) - }) - } else { - return Promise.reject(new Error('list id or account id is not match')) - } - }, - addAccountsToList: (id: string, account_ids: Array) => { - if (id === list1.id && account_ids[0] === account.id) { - return new Promise(resolve => { - const res: Response = { - data: {}, - status: 200, - statusText: 'OK', - headers: {} - } - resolve(res) - }) - } else { - return Promise.reject(new Error('list id or account id is not match')) - } - } -} - -jest.mock('megalodon', () => ({ - ...jest.requireActual('megalodon'), - default: jest.fn(() => mockClient), - __esModule: true -})) - -const account: Entity.Account = { - id: '1', - username: 'h3poteto', - acct: 'h3poteto@pleroma.io', - display_name: 'h3poteto', - locked: false, - group: false, - created_at: '2019-03-26T21:30:32', - followers_count: 10, - following_count: 10, - statuses_count: 100, - note: 'engineer', - url: 'https://pleroma.io', - avatar: '', - avatar_static: '', - header: '', - header_static: '', - emojis: [], - moved: null, - fields: [], - bot: false, - noindex: null, - suspended: null, - limited: null -} - -const list1: Entity.List = { - id: '1', - title: 'list1', - replies_policy: null -} - -const list2: Entity.List = { - id: '2', - title: 'list2', - replies_policy: null -} - -const list3: Entity.List = { - id: '3', - title: 'list3', - replies_policy: null -} - -let state = (): ListMembershipState => { - return { - modalOpen: false, - account: null, - lists: [], - belongToLists: [] - } -} - -const initStore = () => { - return { - namespaced: true, - state: state(), - actions: ListMembership.actions, - mutations: ListMembership.mutations - } -} - -const modalsStore = () => ({ - namespaced: true, - modules: { - ListMembership: initStore() - } -}) - -const timelineStore = () => ({ - namespaced: true, - state: { - account: { - id: 0, - accessToken: 'token' - }, - server: { - sns: 'mastodon', - baseURL: 'http://localhost' - } - }, - modules: { - Modals: modalsStore() - } -}) - -const appState = { - namespaced: true, - state: { - proxyConfiguration: false - } -} - -describe('ListMembership', () => { - let store: Store - - beforeEach(() => { - store = createStore({ - modules: { - TimelineSpace: timelineStore(), - App: appState - } - }) - }) - - describe('fetchListMembership', () => { - it('should get', async () => { - await store.dispatch('TimelineSpace/Modals/ListMembership/fetchListMembership', { - id: '5' - }) - expect(store.state.TimelineSpace.Modals.ListMembership.belongToLists).toEqual([list1, list2]) - }) - }) - - describe('fetchLists', () => { - it('should be changed', async () => { - await store.dispatch('TimelineSpace/Modals/ListMembership/fetchLists') - expect(store.state.TimelineSpace.Modals.ListMembership.lists).toEqual([list1, list2]) - }) - }) - - describe('changeBelongToLists', () => { - beforeAll(() => { - state = () => { - return { - modalOpen: false, - account: account, - lists: [], - belongToLists: [list2, list3] - } - } - }) - it('should be changed', async () => { - await store.dispatch('TimelineSpace/Modals/ListMembership/changeBelongToLists', [list1.id, list2.id]) - expect(store.state.TimelineSpace.Modals.ListMembership.belongToLists).toEqual([list1, list2]) - }) - }) -}) diff --git a/spec/renderer/unit/store/TimelineSpace.spec.ts b/spec/renderer/unit/store/TimelineSpace.spec.ts deleted file mode 100644 index f73ce71f..00000000 --- a/spec/renderer/unit/store/TimelineSpace.spec.ts +++ /dev/null @@ -1,34 +0,0 @@ -import TimelineSpace, { TimelineSpaceState, MUTATION_TYPES } from '~/src/renderer/store/TimelineSpace' -import { DefaultSetting } from '~/src/constants/initializer/setting' - -describe('TimelineSpace', () => { - describe('mutations', () => { - let state: TimelineSpaceState - beforeEach(() => { - state = { - account: null, - server: null, - loading: false, - emojis: [], - tootMax: 500, - setting: DefaultSetting, - filters: [] - } - }) - - describe('updateTootMax', () => { - describe('value is null', () => { - it('should be updated with 500', () => { - TimelineSpace.mutations![MUTATION_TYPES.UPDATE_TOOT_MAX](state, null) - expect(state.tootMax).toEqual(500) - }) - }) - describe('value is not null', () => { - it('should be updated', () => { - TimelineSpace.mutations![MUTATION_TYPES.UPDATE_TOOT_MAX](state, 1200) - expect(state.tootMax).toEqual(1200) - }) - }) - }) - }) -}) diff --git a/spec/renderer/unit/store/TimelineSpace/HeaderMenu.spec.ts b/spec/renderer/unit/store/TimelineSpace/HeaderMenu.spec.ts deleted file mode 100644 index caed8457..00000000 --- a/spec/renderer/unit/store/TimelineSpace/HeaderMenu.spec.ts +++ /dev/null @@ -1,20 +0,0 @@ -import HeaderMenu, { HeaderMenuState, MUTATION_TYPES } from '@/store/TimelineSpace/HeaderMenu' - -describe('TimelineSpace/HeaderMenu', () => { - describe('mutations', () => { - let state: HeaderMenuState - beforeEach(() => { - state = { - title: 'Home', - reload: false, - loading: false - } - }) - describe('changeReload', () => { - it('should be changed', () => { - HeaderMenu.mutations![MUTATION_TYPES.CHANGE_RELOAD](state, true) - expect(state.reload).toEqual(true) - }) - }) - }) -}) diff --git a/spec/renderer/unit/utils/emojify.spec.ts b/spec/renderer/unit/utils/emojify.spec.ts deleted file mode 100644 index 96da3591..00000000 --- a/spec/renderer/unit/utils/emojify.spec.ts +++ /dev/null @@ -1,61 +0,0 @@ -import emojify from '@/utils/emojify' - -describe('emojify', () => { - const emoji = [ - { - shortcode: 'python', - static_url: 'https://example.com/python', - url: 'https://example.com/python', - visible_in_picker: true, - category: '' - }, - { - shortcode: 'nodejs', - static_url: 'https://example.com/nodejs', - url: 'https://example.com/nodejs', - visible_in_picker: true, - category: '' - }, - { - shortcode: 'slack', - static_url: 'https://example.com/slack', - url: 'https://example.com/slack', - visible_in_picker: true, - category: '' - } - ] - describe('Does not contain shortcode', () => { - const str = 'I have a pen.' - it('should not change', () => { - const result = emojify(str, emoji) - expect(result).toEqual(str) - }) - }) - describe('Contain a shortcode', () => { - const str = 'I like :python:' - it('should replace', () => { - const result = emojify(str, emoji) - expect(result).toEqual( - 'I like python' - ) - }) - }) - describe('Contain some shortcodes', () => { - const str = 'I like :python: , :nodejs: and :slack:' - it('should replace', () => { - const result = emojify(str, emoji) - expect(result).toEqual( - 'I like python , nodejs and slack' - ) - }) - }) - describe('Contain same shortcodes', () => { - const str = 'I like :python: , I love :python:' - it('should replace', () => { - const result = emojify(str, emoji) - expect(result).toEqual( - 'I like python , I love python' - ) - }) - }) -}) diff --git a/spec/renderer/unit/utils/filter.spec.ts b/spec/renderer/unit/utils/filter.spec.ts deleted file mode 100644 index defdc326..00000000 --- a/spec/renderer/unit/utils/filter.spec.ts +++ /dev/null @@ -1,106 +0,0 @@ -import filtered from '@/utils/filter' -import { Entity } from 'megalodon' - -describe('filter', () => { - describe('whole word is enabled', () => { - describe('Only asci', () => { - const filters = [ - { - id: '1', - phrase: 'Fedi', - context: ['home'], - expires_at: null, - irreversible: false, - whole_word: true - } as Entity.Filter - ] - it('should not be matched', () => { - const status = - 'Pleroma is social networking software compatible with other Fediverse software such as Mastodon, Misskey, Pixelfed and many others.' - const res = filtered(status, filters) - expect(res).toBeFalsy() - }) - it('should be matched', () => { - const status = - 'Pleroma is social networking software compatible with other Fedi software such as Mastodon, Misskey, Pixelfed and many others.' - const res = filtered(status, filters) - expect(res).toBeTruthy() - }) - }) - describe('With Japanese', () => { - const filters = [ - { - id: '1', - phrase: 'ミニブログ', - context: ['home'], - expires_at: null, - irreversible: false, - whole_word: true - } as Entity.Filter - ] - it('should be matched', () => { - const status = - 'マストドン (Mastodon) はミニブログサービスを提供するためのフリーソフトウェア、またはこれが提供する連合型のソーシャルネットワークサービスである' - const res = filtered(status, filters) - expect(res).toBeTruthy() - }) - it('should not be matched', () => { - const status = - '「脱中央集権型」 (decentralized) のマストドンのサーバーはだれでも自由に運用する事が可能であり、利用者は通常このサーバーの一つを選んで所属するが、異なるサーバーに属する利用者間のコミュニケーションも容易である' - const res = filtered(status, filters) - expect(res).toBeFalsy() - }) - }) - }) - - describe('whole word is disabled', () => { - describe('Only asci', () => { - const filters = [ - { - id: '1', - phrase: 'Fedi', - context: ['home'], - expires_at: null, - irreversible: false, - whole_word: false - } as Entity.Filter - ] - it('should be matched', () => { - const status = - 'Pleroma is social networking software compatible with other Fediverse software such as Mastodon, Misskey, Pixelfed and many others.' - const res = filtered(status, filters) - expect(res).toBeTruthy() - }) - it('should be matched', () => { - const status = - 'Pleroma is social networking software compatible with other Fedi software such as Mastodon, Misskey, Pixelfed and many others.' - const res = filtered(status, filters) - expect(res).toBeTruthy() - }) - }) - describe('With Japanese', () => { - const filters = [ - { - id: '1', - phrase: 'ミニブログ', - context: ['home'], - expires_at: null, - irreversible: false, - whole_word: true - } as Entity.Filter - ] - it('should be matched', () => { - const status = - 'マストドン (Mastodon) はミニブログサービスを提供するためのフリーソフトウェア、またはこれが提供する連合型のソーシャルネットワークサービスである' - const res = filtered(status, filters) - expect(res).toBeTruthy() - }) - it('should not be matched', () => { - const status = - '「脱中央集権型」 (decentralized) のマストドンのサーバーはだれでも自由に運用する事が可能であり、利用者は通常このサーバーの一つを選んで所属するが、異なるサーバーに属する利用者間のコミュニケーションも容易である' - const res = filtered(status, filters) - expect(res).toBeFalsy() - }) - }) - }) -}) diff --git a/spec/renderer/unit/utils/suggestText.spec.ts b/spec/renderer/unit/utils/suggestText.spec.ts deleted file mode 100644 index 0918c174..00000000 --- a/spec/renderer/unit/utils/suggestText.spec.ts +++ /dev/null @@ -1,44 +0,0 @@ -import suggestText from '@/utils/suggestText' - -describe('account', () => { - describe('Only account name', () => { - const str = '@h3pote' - it('should match', () => { - const [start, word] = suggestText(str, 7) - expect(str).toEqual(word) - expect(start).toEqual(1) - }) - }) - describe('Beginning of the sentence', () => { - const str = '@h3pote toot body' - it('should match', () => { - const [start, word] = suggestText(str, 7) - expect(word).toEqual('@h3pote') - expect(start).toEqual(1) - }) - }) - describe('Halfway of the sentence', () => { - const str = 'toot body @h3pote toot' - it('should match', () => { - const [start, word] = suggestText(str, 17) - expect(word).toEqual('@h3pote') - expect(start).toEqual(11) - }) - }) - describe('End of the sentence', () => { - const str = 'toot body @h3pote' - it('should match', () => { - const [start, word] = suggestText(str, 17) - expect(word).toEqual('@h3pote') - expect(start).toEqual(11) - }) - }) - describe('No space', () => { - const str = 'tootbody@h3pote' - it('should not match', () => { - const [start, word] = suggestText(str, 15) - expect(word).toEqual(null) - expect(start).toEqual(null) - }) - }) -}) diff --git a/spec/renderer/unit/utils/tootParser.spec.ts b/spec/renderer/unit/utils/tootParser.spec.ts deleted file mode 100644 index 5e6e49ee..00000000 --- a/spec/renderer/unit/utils/tootParser.spec.ts +++ /dev/null @@ -1,125 +0,0 @@ -import { JSDOM } from 'jsdom' -import { findLink, findTag, findAccount } from '@/utils/tootParser' - -describe('findLink', () => { - describe('Pleroma', () => { - const doc = new JSDOM(` -
-

-I released Whalebird version 2.4.1. In version 2.4.0, Whalebird supports streaming update of Pleroma. But it contains a bug, so it is resolved in version 2.4.1.
https://github.com/h3poteto/whalebird-desktop/releases/tag/2.4.1
#Whalebird -

-
- -`).window.document - - const target = doc.getElementById('link') - it('should find', () => { - const res = findLink(target) - expect(res).toEqual('https://github.com/h3poteto/whalebird-desktop/releases/tag/2.4.1') - }) - }) -}) - -describe('findTag', () => { - describe('Pleroma', () => { - const doc = new JSDOM(` -
-

-I released Whalebird version 2.4.1. In version 2.4.0, Whalebird supports streaming update of Pleroma. But it contains a bug, so it is resolved in version 2.4.1.
https://github.com/h3poteto/whalebird-desktop/releases/tag/2.4.1
#Whalebird -

-
- -`).window.document - const target = doc.getElementById('tag') - it('should find', () => { - expect(target).not.toBeNull() - const res = findTag(target!) - expect(res).toEqual('whalebird') - }) - }) - - describe('Mastodon', () => { - const doc = new JSDOM(` -
-

-I released Whalebird version 2.4.1. In version 2.4.0, Whalebird supports streaming update of Pleroma. But it contains a bug, so it is resolved in version 2.4.1.
https://github.com/h3poteto/whalebird-desktop/releases/tag/2.4.1
#Whalebird -

-
- -`).window.document - const target = doc.getElementById('tag') - it('should find', () => { - expect(target).not.toBeNull() - const res = findTag(target!) - expect(res).toEqual('whalebird') - }) - }) -}) - -describe('findAccount', () => { - describe('in Pleroma', () => { - describe('from Mastodon', () => { - const doc = new JSDOM(` -
-

@h3_poteto hogehoge

-
- -`).window.document - const target = doc.getElementById('user') - it('should find', () => { - expect(target).not.toBeNull() - const res = findAccount(target!) - expect(res).not.toBeNull() - expect(res!.username).toEqual('@h3_poteto') - expect(res!.acct).toEqual('@h3_poteto@social.mikutter.hachune.net') - }) - }) - - describe('from Pleroma', () => { - const doc = new JSDOM(` -
-

@h3_poteto hogehoge

-
- -`).window.document - const target = doc.getElementById('user') - it('should find', () => { - expect(target).not.toBeNull() - const res = findAccount(target!) - expect(res).not.toBeNull() - expect(res!.username).toEqual('@h3poteto') - expect(res!.acct).toEqual('@h3poteto@pleroma.io') - }) - }) - - describe('toot link in Mastodon', () => { - const doc = new JSDOM(` - - -`).window.document - const target = doc.getElementById('status') - it('should not find', () => { - expect(target).not.toBeNull() - const res = findAccount(target!) - expect(res).toBeNull() - }) - }) - - describe('toot link in Pleroma', () => { - const doc = new JSDOM(` - - -`).window.document - const target = doc.getElementById('status') - it('should not find', () => { - expect(target).not.toBeNull() - const res = findAccount(target!) - expect(res).toBeNull() - }) - }) - }) -}) diff --git a/spec/renderer/unit/utils/validator.spec.ts b/spec/renderer/unit/utils/validator.spec.ts deleted file mode 100644 index b01214f0..00000000 --- a/spec/renderer/unit/utils/validator.spec.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { domainFormat } from '@/utils/validator' - -describe('validator', () => { - describe('domainFormat', () => { - describe('single character domain name', () => { - const domain = 'c.im' - it('should match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(0) - }) - }) - describe('string contains protocol', () => { - const domain = 'https://mastodon.social' - it('should not match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(-1) - }) - }) - describe('string contains account name', () => { - const domain = 'h3_poteto@mastodon.social' - it('should not match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(-1) - }) - }) - describe('string is gTLD domain', () => { - const domain = 'mastodon.social' - it('should match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(0) - }) - }) - describe('string is subdomain', () => { - const domain = 'music.mastodon.social' - it('should match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(0) - }) - }) - describe('string is subdomain', () => { - const domain = 'social.tchncs.de' - it('should match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(0) - }) - }) - describe('string is jp domain', () => { - const domain = 'mstdn.co.jp' - it('should match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(0) - }) - }) - describe('string contains hyphen', () => { - const domain = 'music-mastodon.social' - it('should match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(0) - }) - }) - describe('string is short domain', () => { - const domain = 'id.cc' - it('should match', () => { - const res = domain.search(domainFormat) - expect(res).toEqual(0) - }) - }) - }) -}) diff --git a/spec/setupJest.ts b/spec/setupJest.ts deleted file mode 100644 index 53aeb4ed..00000000 --- a/spec/setupJest.ts +++ /dev/null @@ -1,10 +0,0 @@ -// This code is to resolve errors on tootParser.spec. -// TextEncoder and TextDecoder are used in jsdom, but these object is defined in Browser js. -import { TextEncoder, TextDecoder } from 'util' -if (typeof global.TextEncoder === 'undefined') { - global.TextEncoder = TextEncoder -} - -if (typeof global.TextDecoder === 'undefined') { - ;(global.TextDecoder as any) = TextDecoder -} diff --git a/src/config/i18n.ts b/src/config/i18n.ts deleted file mode 100644 index c2b33301..00000000 --- a/src/config/i18n.ts +++ /dev/null @@ -1,106 +0,0 @@ -import i18next, { InitOptions } from 'i18next' -import cs from '~/src/config/locales/cs/translation.json' -import de from '~/src/config/locales/de/translation.json' -import en from '~/src/config/locales/en/translation.json' -import eu from '~/src/config/locales/eu/translation.json' -import es_es from '~/src/config/locales/es_es/translation.json' -import fa from '~/src/config/locales/fa/translation.json' -import fr from '~/src/config/locales/fr/translation.json' -import gd from '~/src/config/locales/gd/translation.json' -import id from '~/src/config/locales/id/translation.json' -import hu from '~/src/config/locales/hu/translation.json' -import it from '~/src/config/locales/it/translation.json' -import is from '~/src/config/locales/is/translation.json' -import ja from '~/src/config/locales/ja/translation.json' -import ko from '~/src/config/locales/ko/translation.json' -import no from '~/src/config/locales/no/translation.json' -import pl from '~/src/config/locales/pl/translation.json' -import pt_pt from '~/src/config/locales/pt_pt/translation.json' -import ru from '~/src/config/locales/ru/translation.json' -import sv_se from '~/src/config/locales/sv_se/translation.json' -import si from '~/src/config/locales/si/translation.json' -import tzm from '~/src/config/locales/tzm/translation.json' -import zh_cn from '~/src/config/locales/zh_cn/translation.json' -import zh_tw from '~/src/config/locales/zh_tw/translation.json' - -const options: InitOptions = { - initImmediate: false, - lng: 'en', - fallbackLng: 'en', - saveMissing: true, - resources: { - cs: { - translation: cs - }, - de: { - translation: de - }, - en: { - translation: en - }, - eu: { - translation: eu - }, - es_es: { - translation: es_es - }, - fa: { - translation: fa - }, - fr: { - translation: fr - }, - gd: { - translation: gd - }, - hu: { - translation: hu - }, - id: { - translation: id - }, - it: { - translation: it - }, - is: { - translation: is - }, - ja: { - translation: ja - }, - ko: { - translation: ko - }, - no: { - translation: no - }, - pl: { - translation: pl - }, - pt_pt: { - translation: pt_pt - }, - ru: { - translation: ru - }, - si: { - translation: si - }, - sv_se: { - translation: sv_se - }, - tzm: { - translation: tzm - }, - zh_cn: { - translation: zh_cn - }, - zh_tw: { - translation: zh_tw - } - } -} - -i18next.init(options) - -export default i18next diff --git a/src/config/locales/cs/translation.json b/src/config/locales/cs/translation.json deleted file mode 100644 index 143cc8ba..00000000 --- a/src/config/locales/cs/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "About Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Services", - "hide": "Hide Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Ukončit" - }, - "edit": { - "name": "Upravit", - "undo": "Vrátit zpět", - "redo": "Vykonat znovu", - "cut": "Vyjmout", - "copy": "Kopírovat", - "paste": "Vložit", - "select_all": "Vybrat vše" - }, - "view": { - "name": "Zobrazit", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Okno", - "close": "Zavřít okno", - "open": "Otevřít okno", - "minimize": "Minimalizovat", - "jump_to": "Jump to" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Add new account" - }, - "side_menu": { - "profile": "Profil", - "show_profile": "Zobrazit profil", - "edit_profile": "Upravit profil", - "settings": "Account settings", - "collapse": "Sbalit", - "expand": "Rozbalit", - "home": "Domů", - "notification": "Notifications", - "direct": "Soukromé zprávy", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Místní časová osa", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Vyhledat", - "lists": "Seznamy" - }, - "header_menu": { - "home": "Domů", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists", - "members": "Members", - "reload": "Reload" - }, - "settings": { - "title": "Settings", - "general": { - "title": "General", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Public", - "unlisted": "Unlisted", - "private": "Private", - "direct": "Direct" - }, - "sensitive": { - "description": "Mark media as sensitive by default" - } - } - }, - "timeline": { - "title": "Timeline", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Nikdy", - "30_minutes": "30 minut", - "1_hour": "1 hodina", - "6_hours": "6 hodin", - "12_hours": "12 hodin", - "1_day": "1 den", - "1_week": "1 týden" - }, - "new": { - "title": "Nový" - }, - "edit": { - "title": "Upravit" - }, - "delete": { - "title": "Vymazat", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Vymazat", - "confirm_cancel": "Zrušit" - } - } - }, - "preferences": { - "title": "Předvolby", - "general": { - "title": "Všeobecné", - "sounds": { - "title": "Zvuky", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Časová osa", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Ostatní možnosti", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Obnovit výchozí nastavení" - } - }, - "appearance": { - "title": "Vzhled", - "theme_color": "Colour themes", - "theme": { - "system": "Systémový", - "light": "Světlý", - "dark": "Tmavý", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Custom" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Side menu", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Secondary font", - "border_color": "Okraj", - "header_menu_color": "Záhlavní menu", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Velikost písma", - "font_family": "Font family", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Display name and username", - "display_name": "Display name", - "username": "Username" - }, - "time_format": { - "title": "Time format", - "absolute": "Absolute", - "relative": "Relative" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Account", - "connected": "Connected accounts", - "username": "Username", - "domain": "Domain", - "association": "Association", - "order": "Order", - "remove_association": "Remove association", - "remove_all_associations": "Remove all associations", - "confirm": "Potvrdit", - "cancel": "Zrušit", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Síť", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "Protokol", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Save" - }, - "language": { - "title": "Language", - "language": { - "title": "Language", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Kontrola pravopisu", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Přejít na..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Název účtu" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Zrušit", - "ok": "Mute" - }, - "shortcut": { - "title": "Keyboard shortcuts", - "ctrl_number": "Switch accounts", - "ctrl_k": "Jump to other timelines", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Ukázat více", - "hide": "Skrýt", - "sensitive": "Zobrazit citlivý obsah", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Ignorovat", - "block": "Blokovat", - "report": "Nahlásit", - "delete": "Smazat", - "via": "přes {{application}}", - "reply": "Odpovědět", - "reblog": "Boost", - "fav": "Oblíbit", - "detail": "Post details", - "bookmark": "Záložka", - "pinned": "Pinned post", - "poll": { - "vote": "Hlasovat", - "votes_count": "hlasů", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Obnovit" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Následuje vás", - "doesnt_follow_you": "Nesleduje vás", - "detail": "Podrobnosti", - "follow": "Sledujte tohoto uživatele", - "unfollow": "Přestat sledovat tohoto uživatele", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Follow requested", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Ignorovat", - "unmute": "Unmute", - "unblock": "Odblokovat", - "block": "Blokovat", - "toots": "Posts", - "follows": "Sledovaní", - "followers": "Sledující" - } - }, - "follow_requests": { - "accept": "Přijmout", - "reject": "Odmítnout" - }, - "hashtag": { - "tag_name": "Název štítku", - "delete_tag": "Smazat štítek", - "save_tag": "Uložit štítek" - }, - "search": { - "search": "Vyhledat", - "account": "Účet", - "tag": "Štítek", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Nový seznam", - "edit": "Edit", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "Search", - "login": "Login" - }, - "authorize": { - "manually_1": "An authorization page has opened in your browser.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Submit" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Failed to load accounts", - "account_remove_error": "Failed to remove the account", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Can not login the same account of the same domain", - "authorize_error": "Failed to authorize", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Failed to follow the user", - "unfollow_error": "Failed to unfollow the user", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Failed to remove the user", - "find_account_error": "Account not found", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Failed to search", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Failed to add user", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Loading...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/de/translation.json b/src/config/locales/de/translation.json deleted file mode 100644 index f5d3ffef..00000000 --- a/src/config/locales/de/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Über Whalebird", - "preferences": "Einstellungen", - "shortcuts": "Tastenkürzel", - "services": "Dienste", - "hide": "Whalebird ausblenden", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Beenden" - }, - "edit": { - "name": "Bearbeiten", - "undo": "Rückgängig", - "redo": "Wiederholen", - "cut": "Ausschneiden", - "copy": "Kopieren", - "paste": "Einfügen", - "select_all": "Alles Auswählen" - }, - "view": { - "name": "Ansicht", - "toggle_full_screen": "Vollbildmodus umschalten" - }, - "window": { - "always_show_menu_bar": "Menüleiste immer anzeigen", - "name": "Fenster", - "close": "Fenster schließen", - "open": "Fenster öffnen", - "minimize": "Minimieren", - "jump_to": "Gehe zu" - }, - "help": { - "name": "Hilfe", - "thirdparty": "Drittanbieter-Lizenzen" - } - }, - "global_header": { - "add_new_account": "Neues Konto hinzufügen" - }, - "side_menu": { - "profile": "Profil", - "show_profile": "Profil ansehen", - "edit_profile": "Profil bearbeiten", - "settings": "Kontoeinstellungen", - "collapse": "Einklappen", - "expand": "Ausklappen", - "home": "Start", - "notification": "Mitteilungen", - "direct": "Direktnachrichten", - "follow_requests": "Follower-Anfragen", - "favourite": "Favoriten", - "bookmark": "Lesezeichen", - "local": "Lokale Timeline", - "public": "Föderierte Timeline", - "hashtag": "Hashtags", - "search": "Suche", - "lists": "Listen" - }, - "header_menu": { - "home": "Start", - "notification": "Mitteilungen", - "favourite": "Favoriten", - "bookmark": "Lesezeichen", - "follow_requests": "Follow-Anfragen", - "direct_messages": "Direktnachrichten", - "local": "Lokale Timeline", - "public": "Föderierte Timeline", - "hashtag": "Hashtags", - "search": "Suche", - "lists": "Listen", - "members": "Mitglieder", - "reload": "Neu laden" - }, - "settings": { - "title": "Einstellungen", - "general": { - "title": "Allgemein", - "toot": { - "title": "Beiträge", - "visibility": { - "description": "Standard Post-Sichtbarkeit", - "notice": "Diese Einstellung gilt nur für neue Beiträge; für Antworten gelten die Sichtbarkeitseinstellungen des übergeordneten Beitrags.", - "public": "Öffenlich", - "unlisted": "Nicht gelistet", - "private": "Privat", - "direct": "Direkt" - }, - "sensitive": { - "description": "Medien standardmäßig als sensibel markieren" - } - } - }, - "timeline": { - "title": "Zeitleiste", - "use_marker": { - "title": "Lade die Zeitleiste von der letzten Lese-Position", - "home": "Start", - "notifications": "Benachrichtigungen" - } - }, - "filters": { - "title": "Filter", - "form": { - "phrase": "Schlagwort oder Phrase", - "expire": "Verfällt nach", - "context": "Kontext filtern", - "irreversible": "Entfernen anstatt zu verstecken", - "whole_word": "Ganzes Wort", - "submit": "Absenden", - "cancel": "Abbrechen" - }, - "expires": { - "never": "Niemals", - "30_minutes": "30 Minuten", - "1_hour": "1 Stunde", - "6_hours": "6 Stunde", - "12_hours": "12 Stunde", - "1_day": "1 Tag", - "1_week": "1 Woche" - }, - "new": { - "title": "Neu" - }, - "edit": { - "title": "Bearbeiten" - }, - "delete": { - "title": "Löschen", - "confirm": "Sind Sie sicher, dass Sie diesen Filter löschen möchten?", - "confirm_ok": "Löschen", - "confirm_cancel": "Abbrechen" - } - } - }, - "preferences": { - "title": "Einstellungen", - "general": { - "title": "Allgemein", - "sounds": { - "title": "Klänge", - "description": "Klänge abspielen, wenn", - "fav_rb": "Du einen Beitrag favorisierst oder boostest", - "toot": "Du einen Beitrag postest" - }, - "timeline": { - "title": "Zeitleiste", - "description": "Passe an, wie Deine Timelines angezeigt werden", - "cw": "Beiträge mit Inhaltswarnungen immer ausklappen.", - "nsfw": "Medien immer anzeigen.", - "hideAllAttachments": "Medien immer verstecken." - }, - "other": { - "title": "Andere Optionen", - "launch": "Whalebird beim Systemstart ausführen", - "hideOnLaunch": "Whalebird-Fenster beim Start verstecken" - }, - "reset": { - "button": "Einstellungen zurücksetzen" - } - }, - "appearance": { - "title": "Anzeige", - "theme_color": "Farbschemata", - "theme": { - "system": "System", - "light": "Hell", - "dark": "Dunkel", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDunkel", - "kimbie_dark": "KimbieDark", - "custom": "Angepasst" - }, - "custom_theme": { - "background_color": "Basis-Hintergrund", - "selected_background_color": "Fokussierter Hintergrund", - "global_header_color": "Konto-Menü", - "side_menu_color": "Seitenmenü", - "primary_color": "Primäre Schriftart", - "regular_color": "Normale Schriftart", - "secondary_color": "Sekundäre Schriftart", - "border_color": "Rand", - "header_menu_color": "Kopfzeilen-Menü", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Schriftgröße", - "font_family": "Schriftfamilie", - "toot_padding": "Abstand zwischen den Posts", - "display_style": { - "title": "Benutzernamen Darstellung", - "display_name_and_username": "Anzeige- und Benutzername", - "display_name": "Angezeigter Name", - "username": "Benutzername" - }, - "time_format": { - "title": "Zeitformat", - "absolute": "Absolut", - "relative": "Relativ" - } - }, - "notification": { - "title": "Mitteilungen", - "enable": { - "description": "Benachrichtigen bei…", - "reply": "Antworten", - "reblog": "Boosts", - "favourite": "Favoriten", - "follow": "neuen Followern", - "reaction": "Emoji-Reaktionen", - "follow_request": "Follower-Anfragen", - "status": "Statusmeldungen", - "poll_vote": "Umfrage-Stimmen", - "poll_expired": "wenn eine Umfrage abläuft" - } - }, - "account": { - "title": "Benutzerkonto", - "connected": "Verknüpfte Konten", - "username": "Benutzername", - "domain": "Domain", - "association": "Verbindung", - "order": "Reihenfolge", - "remove_association": "Verbindung trennen", - "remove_all_associations": "Alle Verbindungen trennen", - "confirm": "Bestätigen", - "cancel": "Abbrechen", - "confirm_message": "Möchtest du wirklich alle Verbindungen trennen?" - }, - "network": { - "title": "Netzwerk", - "proxy": { - "title": "Proxy-Konfiguration", - "no": "Kein Proxy", - "system": "Systemproxy verwenden", - "manual": "Manuelle Proxy-Konfiguration", - "protocol": "Protokoll", - "host": "Proxy-Server", - "port": "Proxy-Port", - "username": "Proxy-Benutzername", - "password": "Proxy-Passwort", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "Socks4a", - "socks5": "Socks5", - "socks5h": "Socks5h" - } - }, - "save": "Speichern" - }, - "language": { - "title": "Sprache", - "language": { - "title": "Sprache", - "description": "Wählen Sie die Sprache, die Sie mit Whalebird verwenden möchten." - }, - "spellchecker": { - "title": "Rechtschreibprüfung", - "enabled": "Rechtschreibprüfung aktivieren" - } - } - }, - "modals": { - "jump": { - "jump_to": "Springe zu..." - }, - "add_list_member": { - "title": "Mitglied zur Liste hinzufügen", - "account_name": "Kontoname" - }, - "list_membership": { - "title": "Mitgliedschaften auflisten" - }, - "mute_confirm": { - "title": "Nutzer stummschalten", - "body": "Bist du sicher, dass du die Benachrichtigungen dieses Benutzers stummschalten möchtest?", - "cancel": "Abbrechen", - "ok": "Stummschalten" - }, - "shortcut": { - "title": "Tastenkürzel", - "ctrl_number": "Wechsel zu einem anderen Konto", - "ctrl_k": "Zu anderen Zeitleisten springen", - "ctrl_enter": "Post absenden", - "ctrl_r": "aktuelle Timeline aktualisieren", - "j": "Nächsten Beitrag auswählen", - "k": "Vorherigen Beitrag auswählen", - "r": "Auf den ausgewählten Beitrag antworten", - "b": "Den ausgewählten Beitrag teilen", - "f": "Ausgewählten Beitrag favorisieren", - "o": "Details des ausgewählten Beitrags anzeigen", - "p": "Profil des Autors des ausgewählten Beitrages anzeigen", - "i": "Die Bilder des ausgewählten Beitrags öffnen", - "x": "Ein-/Ausblenden eines Beitrags mit Inhaltswarnung", - "?": "Diesen Dialog anzeigen", - "esc": "Aktuelle Seite schließen" - }, - "report": { - "title": "Benutzer melden", - "comment": "Warum soll geblockt werden?", - "cancel": "Abbrechen", - "ok": "Senden" - }, - "thirdparty": { - "title": "Drittanbieter-Lizenzen" - } - }, - "cards": { - "toot": { - "show_more": "Mehr anzeigen", - "hide": "Verbergen", - "sensitive": "Sensible inhalte anzeigen", - "view_toot_detail": "Post-Details anzeigen", - "open_in_browser": "Im Browser öffnen", - "copy_link_to_toot": "Link zum Post kopieren", - "mute": "Stummschalten", - "block": "Blockieren", - "report": "Melden", - "delete": "Löschen", - "via": "über {{application}}", - "reply": "Antworten", - "reblog": "Boost", - "fav": "Favorit", - "detail": "Mehr", - "bookmark": "Lesezeichen", - "pinned": "Angehefteter Beitrag", - "poll": { - "vote": "Abstimmen", - "votes_count": "Abstimmungen", - "until": "bis {{datetime}}", - "left": "{{datetime}} verstrichen", - "refresh": "Aktualisieren" - }, - "open_account": { - "title": "Account nicht gefunden", - "text": "{{account}} konnte nicht auf dem Server gefunden werden. Möchten Sie das Konto stattdessen in einem Browser öffnen?", - "ok": "Öffnen", - "cancel": "Abbrechen" - } - }, - "status_loading": { - "message": "Mehr Status laden" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Folgt dir", - "doesnt_follow_you": "Folgt dir nicht", - "detail": "Details", - "follow": "Diesem Benutzer folgen", - "unfollow": "Diesem Benutzer nicht mehr folgen", - "subscribe": "Diesen Benutzer abonnieren", - "unsubscribe": "Diesen Benutzer abbestellen", - "follow_requested": "Follower Anfrage gestellt", - "open_in_browser": "Im Browser öffnen", - "manage_list_memberships": "Listenmitgliedschaften verwalten", - "mute": "Stummschalten", - "unmute": "Stummschaltung aufheben", - "unblock": "Freigeben", - "block": "Blocken", - "toots": "Posts", - "follows": "Folgt", - "followers": "Folgende" - } - }, - "follow_requests": { - "accept": "Annehmen", - "reject": "Ablehnen" - }, - "hashtag": { - "tag_name": "Tag-Name", - "delete_tag": "Tag löschen", - "save_tag": "Tag speichern" - }, - "search": { - "search": "Suchen", - "account": "Benutzerkonto", - "tag": "Hashtag", - "keyword": "Schlüsselwort", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Neue Liste", - "edit": "Bearbeiten", - "delete": { - "confirm": { - "title": "Bestätigen", - "message": "Diese Liste wird dauerhaft gelöscht. Sind Sie sicher, dass Sie fortfahren möchten?", - "ok": "Löschen", - "cancel": "Abbrechen" - } - } - } - }, - "login": { - "domain_name_label": "Willkommen bei Whalebird! Geben Sie einen Server-Domain-Namen ein, um sich bei einem Konto einzuloggen.", - "proxy_info": "Wenn Sie einen Proxy-Server verwenden möchten, richten Sie ihn bitte ein", - "proxy_here": " hier", - "search": "Suche", - "login": "Anmelden" - }, - "authorize": { - "manually_1": "Jetzt wird die Zugriffsseite in deinem Browser geöffnet.", - "manually_2": "Falls nicht, öffne bitte die folgende URL von Hand:", - "code_label": "Gib den Autorisierungscode ein:", - "misskey_label": "Bitte senden Sie das Formular ab, nachdem Sie sich in Ihrem Browser autorisiert haben.", - "submit": "Absenden" - }, - "receive_drop": { - "drop_message": "Hierher ziehen, um eine Datei anzuhängen" - }, - "message": { - "account_load_error": "Konten konnten nicht geladen werden", - "account_remove_error": "Das Konto konnte nicht entfernt werden.", - "preferences_load_error": "Einstellungen konnten nicht geladen werden", - "timeline_fetch_error": "Timeline konnte nicht abgerufen werden", - "notification_fetch_error": "Benachrichtigung konnte nicht abgerufen werden", - "favourite_fetch_error": "Favorit konnte nicht abgerufen werden", - "bookmark_fetch_error": "Lesezeichen konnten nicht abgerufen werden", - "follow_request_accept_error": "Anfrage konnte nicht angenommen werden", - "follow_request_reject_error": "Ablehnung der geteilten Anfrage fehlgeschlagen", - "attach_error": "Kontte Datei nicht anhängen", - "authorize_duplicate_error": "Kann nicht das gleiche Konto der gleichen Domain einloggen", - "authorize_error": "Autorisierung fehlgeschlagen", - "followers_fetch_error": "Follower konnten nicht abgerufen werden", - "follows_fetch_error": "Follows konnten nicht abgerufen werden", - "toot_fetch_error": "Laden der Beitragsdetails fehlgeschlagen", - "follow_error": "Konnte dem Benutzer nicht folgen", - "unfollow_error": "Konnte das Folgen des Benutzer nicht beenden", - "subscribe_error": "Abonnierung von %s fehlgeschlagen", - "unsubscribe_error": "Abmeldung von %s fehlgeschlagen", - "lists_fetch_error": "Konte Listen nicht abrufen", - "list_create_error": "Konnte keine Liste erstellen", - "members_fetch_error": "Konnte Mitglieder nicht abrufen", - "remove_user_error": "Entfernen des Benutzers fehlgeschlagen", - "find_account_error": "Konto nicht gefunden", - "reblog_error": "Boost fehlgeschlagen", - "unreblog_error": "Ent-Boosten fehlgeschlagen", - "favourite_error": "Favorisieren fehlgeschlagen", - "unfavourite_error": "Widerruf des Favorisierens fehlgeschlagen", - "bookmark_error": "Hinzufügen des Lesezeichens fehlgeschlagen", - "unbookmark_error": "Löschen des Lesezeichens fehlgeschlagen", - "delete_error": "Löschen des Beitrags fehlgeschlagen", - "search_error": "Suche fehlgeschlagen", - "toot_error": "Erstellen des Beitrags fehlgeschlagen", - "update_list_memberships_error": "Konnte Listen-Mitgliedschaften nicht aktualisieren", - "add_user_error": "Benutzer konnte nicht hinzugefügt werden", - "authorize_url_error": "Fehler beim Abrufen der Autorisierungs-URL", - "domain_confirmed": "{{domain}} wurde bestätigt, bitte melde dich an", - "domain_doesnt_exist": "Fehler beim Verbinden mit {{domain}}. Stelle sicher, dass die Server-URL gültig oder korrekt ist.", - "loading": "Laden...", - "language_not_support_spellchecker_error": "Diese Sprache wird von der Rechtschreibprüfung nicht unterstützt", - "update_filter_error": "Aktualisierung des Filters fehlgeschlagen", - "create_filter_error": "Fehler beim Erstellen des Filters" - }, - "validation": { - "login": { - "require_domain_name": "Domainname wird benötigt", - "domain_format": "Bitte gib nur den Domainnamen an" - }, - "compose": { - "toot_length": "Die Beitragslänge sollte zwischen {{min}} und {{max}} liegen", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "Du kannst maximal {{max}} Bilder anhängen", - "attach_image": "Du kannst nur Bilder oder Videos anhängen", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} hat deinen Beitrag favorisiert" - }, - "follow": { - "title": "Neue Follower", - "body": "{{username}} folgt dir jetzt" - }, - "follow_request": { - "title": "Neue Follower-Anfrage", - "body": "Follower-Anfrage von {{username}} erhalten" - }, - "reblog": { - "title": "Neuer Boost", - "body": "{{username}} hat deinen Beitrag geteilt" - }, - "quote": { - "title": "Neues Zitat", - "body": "{{username}} hat deinen Beitrag zitiert" - }, - "reaction": { - "title": "Neue Reaktion", - "body": "{{username}} hat auf deinen Beitrag reagiert" - }, - "status": { - "title": "Neuer Post", - "body": "{{username}} hat einen neuen Beitrag gepostet" - }, - "poll_vote": { - "title": "Neue Umfrage-Abstimmung", - "body": "{{username}} hat in deiner Umfrage abgestimmt" - }, - "poll_expired": { - "title": "Umfrage abgelaufen", - "body": "Die Umfrage von {{username}} ist abgelaufen" - } - }, - "compose": { - "title": "Neuer Post", - "cw": "Trage hier deine Warnung ein", - "status": "Was gibt's Neues?", - "cancel": "Abbrechen", - "toot": "Posten", - "description": "Alternativtext für diese Mediendatei hinzufügen", - "footer": { - "add_image": "Bilder hinzufügen", - "poll": "Umfrage erstellen", - "change_visibility": "Sichtbarkeit ändern", - "change_sensitive": "Medien als heikel markieren", - "add_cw": "Inhaltswarnung bzw. Triggerwarnung hinzufügen", - "pined_hashtag": "angepinntes Hashtag" - }, - "poll": { - "add_choice": "Neue Option hinzufügen", - "expires": { - "5_minutes": "5 Minuten", - "30_minutes": "30 Minuten", - "1_hour": "1 Stunde", - "6_hours": "6 Stunden", - "1_day": "1 Tag", - "3_days": "3 Tage", - "7_days": "7 Tage" - } - } - } -} diff --git a/src/config/locales/en/translation.json b/src/config/locales/en/translation.json deleted file mode 100644 index 28818446..00000000 --- a/src/config/locales/en/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "About Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Services", - "hide": "Hide Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Quit" - }, - "edit": { - "name": "Edit", - "undo": "Undo", - "redo": "Redo", - "cut": "Cut", - "copy": "Copy", - "paste": "Paste", - "select_all": "Select All" - }, - "view": { - "name": "View", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Window", - "close": "Close Window", - "open": "Open Window", - "minimize": "Minimize", - "jump_to": "Jump to" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Add new account" - }, - "side_menu": { - "profile": "Profile", - "show_profile": "Show profile", - "edit_profile": "Edit profile", - "settings": "Account settings", - "collapse": "Collapse", - "expand": "Expand", - "home": "Home", - "notification": "Notifications", - "direct": "Direct messages", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists" - }, - "header_menu": { - "home": "Home", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists", - "members": "Members", - "reload": "Reload" - }, - "settings": { - "title": "Settings", - "general": { - "title": "General", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Public", - "unlisted": "Unlisted", - "private": "Private", - "direct": "Direct" - }, - "sensitive": { - "description": "Mark media as sensitive by default" - } - } - }, - "timeline": { - "title": "Timeline", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Never", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "12_hours": "12 hours", - "1_day": "1 day", - "1_week": "1 week" - }, - "new": { - "title": "New" - }, - "edit": { - "title": "Edit" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "Cancel" - } - } - }, - "preferences": { - "title": "Preferences", - "general": { - "title": "General", - "sounds": { - "title": "Sounds", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Timeline", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Other options", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Appearance", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Light", - "dark": "Dark", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Custom" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Side menu", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Secondary font", - "border_color": "Border", - "header_menu_color": "Header menu", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Font size", - "font_family": "Font family", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Display name and username", - "display_name": "Display name", - "username": "Username" - }, - "time_format": { - "title": "Time format", - "absolute": "Absolute", - "relative": "Relative" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Account", - "connected": "Connected accounts", - "username": "Username", - "domain": "Domain", - "association": "Association", - "order": "Order", - "remove_association": "Remove association", - "remove_all_associations": "Remove all associations", - "confirm": "Confirm", - "cancel": "Cancel", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Network", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "Protocol", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Save" - }, - "language": { - "title": "Language", - "language": { - "title": "Language", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Jump to..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Account name" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Cancel", - "ok": "Mute" - }, - "shortcut": { - "title": "Keyboard shortcuts", - "ctrl_number": "Switch accounts", - "ctrl_k": "Jump to other timelines", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Show more", - "hide": "Hide", - "sensitive": "Show sensitive content", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mute", - "block": "Block", - "report": "Report", - "delete": "Delete", - "via": "via {{application}}", - "reply": "Reply", - "reblog": "Boost", - "fav": "Favourite", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Refresh" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Follows you", - "doesnt_follow_you": "Doesn't follow you", - "detail": "Detail", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Follow requested", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mute", - "unmute": "Unmute", - "unblock": "Unblock", - "block": "Block", - "toots": "Posts", - "follows": "Follows", - "followers": "Followers" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Reject" - }, - "hashtag": { - "tag_name": "Tag name", - "delete_tag": "Delete tag", - "save_tag": "Save tag" - }, - "search": { - "search": "Search", - "account": "Account", - "tag": "Hashtag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "New List", - "edit": "Edit", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "Search", - "login": "Login" - }, - "authorize": { - "manually_1": "An authorization page has opened in your browser.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Submit" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Failed to load accounts", - "account_remove_error": "Failed to remove the account", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Can not login the same account of the same domain", - "authorize_error": "Failed to authorize", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Failed to follow the user", - "unfollow_error": "Failed to unfollow the user", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Failed to remove the user", - "find_account_error": "Account not found", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Failed to search", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Failed to add user", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Loading...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/es_es/translation.json b/src/config/locales/es_es/translation.json deleted file mode 100644 index e5327551..00000000 --- a/src/config/locales/es_es/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Acerca de Whalebird", - "preferences": "Preferencias", - "shortcuts": "Atajos de teclado", - "services": "Servicios", - "hide": "Ocultar Whalebird", - "hide_others": "Ocultar otros", - "show_all": "Mostrar todos", - "open": "Abrir ventana", - "quit": "Salir" - }, - "edit": { - "name": "Editar", - "undo": "Deshacer", - "redo": "Rehacer", - "cut": "Cortar", - "copy": "Copiar", - "paste": "Pegar", - "select_all": "Seleccionar todo" - }, - "view": { - "name": "Ver", - "toggle_full_screen": "Conmutar pantalla completa" - }, - "window": { - "always_show_menu_bar": "Mostrar siempre la barra de menú", - "name": "Ventana", - "close": "Cerrar ventana", - "open": "Abrir ventana", - "minimize": "Minimizar", - "jump_to": "Ir a" - }, - "help": { - "name": "Ayuda", - "thirdparty": "Licencias de terceros" - } - }, - "global_header": { - "add_new_account": "Añadir nueva cuenta" - }, - "side_menu": { - "profile": "Perfil", - "show_profile": "Mostrar perfil", - "edit_profile": "Editar perfil", - "settings": "Opciones de cuenta", - "collapse": "Ocultar", - "expand": "Expandir", - "home": "Inicio", - "notification": "Notificaciones", - "direct": "Mensajes directos", - "follow_requests": "Siguiendo", - "favourite": "Favoritos", - "bookmark": "Marcadores", - "local": "Línea de tiempo local", - "public": "Línea de tiempo federal", - "hashtag": "Hashtags", - "search": "Buscar", - "lists": "Listas" - }, - "header_menu": { - "home": "Inicio", - "notification": "Notificaciones", - "favourite": "Favoritos", - "bookmark": "Marcadores", - "follow_requests": "Solicitudes de seguimiento", - "direct_messages": "Mensajes directos", - "local": "Línea de tiempo local", - "public": "Línea de tiempo federada", - "hashtag": "Hashtags", - "search": "Buscar", - "lists": "Listas", - "members": "Miembros", - "reload": "Recargar" - }, - "settings": { - "title": "Configuración", - "general": { - "title": "General", - "toot": { - "title": "Publicación", - "visibility": { - "description": "Visibilidad de publicación por defecto", - "notice": "Esta configuración sólo se aplica a las publicaciones nuevas; Las respuestas seguirán la configuración de visibilidad de la publicación principal.", - "public": "Público", - "unlisted": "Sin listar", - "private": "Privado", - "direct": "Directo" - }, - "sensitive": { - "description": "Marcar medio como sensible por defecto" - } - } - }, - "timeline": { - "title": "Línea de tiempo", - "use_marker": { - "title": "Cargar la línea de tiempo desde la última posición de lectura", - "home": "Principal", - "notifications": "Notificaciones" - } - }, - "filters": { - "title": "Filtros", - "form": { - "phrase": "Palabra clave o frase", - "expire": "Expirar después de", - "context": "Filtrar contextos", - "irreversible": "Soltar en lugar de ocultar", - "whole_word": "Palabra entera", - "submit": "Enviar", - "cancel": "Cancelar" - }, - "expires": { - "never": "Nunca", - "30_minutes": "30 minutos", - "1_hour": "1 hora", - "6_hours": "6 horas", - "12_hours": "12 horas", - "1_day": "1 día", - "1_week": "1 semana" - }, - "new": { - "title": "Nuevo" - }, - "edit": { - "title": "Editar" - }, - "delete": { - "title": "Suprimir", - "confirm": "¿Está seguro de que desea suprimir este filtro?", - "confirm_ok": "Suprimir", - "confirm_cancel": "Cancelar" - } - } - }, - "preferences": { - "title": "Preferencias", - "general": { - "title": "General", - "sounds": { - "title": "Sonidos", - "description": "Reproducir sonidos cuando", - "fav_rb": "Marca como favorito o impulsa una publicación", - "toot": "Haces una publicación" - }, - "timeline": { - "title": "Línea de tiempo", - "description": "Personaliza cómo se muestran tus líneas de tiempo", - "cw": "Expandir siempre los mensajes etiquetados con advertencias de contenido.", - "nsfw": "Mostrar siempre los medios.", - "hideAllAttachments": "Ocultar siempre los medios." - }, - "other": { - "title": "Otras opciones", - "launch": "Iniciar Whalebird al arrancar", - "hideOnLaunch": "Ocultar la ventana de Whalebird en el lanzamiento" - }, - "reset": { - "button": "Restaurar preferencias" - } - }, - "appearance": { - "title": "Apariencia", - "theme_color": "Temas de color", - "theme": { - "system": "Sistema", - "light": "Claro", - "dark": "Oscuro", - "solarized_light": "Soleado Claro", - "solarized_dark": "Soleado oscuro", - "kimbie_dark": "KimbieDark", - "custom": "Personalizado" - }, - "custom_theme": { - "background_color": "Color de fondo", - "selected_background_color": "Color de fondo de selección", - "global_header_color": "Menú de cuenta", - "side_menu_color": "Menú lateral", - "primary_color": "Fuente primaria", - "regular_color": "Fuente habitual", - "secondary_color": "Fuente secundaria", - "border_color": "Borde", - "header_menu_color": "Menú de encabezamiento", - "wrapper_mask_color": "Envoltorio de diálogo" - }, - "font_size": "Tamaño de letra", - "font_family": "Tipo de letra", - "toot_padding": "Relleno alrededor de las publicaciones", - "display_style": { - "title": "Estilo de visualización del nombre de usuario", - "display_name_and_username": "Nombre y nombre de usuario", - "display_name": "Mostrar nombre", - "username": "Nombre de usuario" - }, - "time_format": { - "title": "Formato de hora", - "absolute": "Absoluta", - "relative": "Relativa" - } - }, - "notification": { - "title": "Notificaciones", - "enable": { - "description": "Notificarme cuando reciba...", - "reply": "Respuestas", - "reblog": "Impulsos", - "favourite": "Favoritos", - "follow": "Nuevos seguidores", - "reaction": "Reacciones de emoji", - "follow_request": "Solicitudes de seguimiento", - "status": "Notificaciones de estado", - "poll_vote": "Votos de encuesta", - "poll_expired": "Cuando una encuesta expira" - } - }, - "account": { - "title": "Cuenta", - "connected": "Cuentas conectadas", - "username": "Nombre de usuario", - "domain": "Dominio", - "association": "Asociación", - "order": "Orden", - "remove_association": "Eliminar asociación", - "remove_all_associations": "Eliminar todas las asociaciones", - "confirm": "Confirmar", - "cancel": "Cancelar", - "confirm_message": "¿Estás seguro de que quieres eliminar todas las asociaciones?" - }, - "network": { - "title": "Red", - "proxy": { - "title": "Configuración del proxy", - "no": "Sin proxy", - "system": "Usar proxy del sistema", - "manual": "Configuración manual del proxy", - "protocol": "Protocolo", - "host": "Servidor proxy", - "port": "Puerto del proxy", - "username": "Nombre de usuario del Proxy", - "password": "Contraseña del proxy", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Guardar" - }, - "language": { - "title": "Idioma", - "language": { - "title": "Lengua", - "description": "Elija el idioma que desea utilizar con Whalebird." - }, - "spellchecker": { - "title": "Corrector ortográfico", - "enabled": "Activar el corrector ortográfico" - } - } - }, - "modals": { - "jump": { - "jump_to": "Ir a..." - }, - "add_list_member": { - "title": "Añadir miembro a la lista", - "account_name": "Nombre de cuenta" - }, - "list_membership": { - "title": "Listar membresías" - }, - "mute_confirm": { - "title": "Silenciar usuario", - "body": "¿Estás seguro de que quieres silenciar las notificaciones de este usuario?", - "cancel": "Cancelar", - "ok": "Silenciar" - }, - "shortcut": { - "title": "Atajos del teclado", - "ctrl_number": "Cambiar de cuenta", - "ctrl_k": "Ir a otras líneas de tiempo", - "ctrl_enter": "Enviar la publicación", - "ctrl_r": "Actualizar la línea de tiempo actual", - "j": "Seleccionar publicación siguiente", - "k": "Seleccionar publicación anterior", - "r": "Responder a la publicación seleccionada", - "b": "Impulsar la publicación seleccionada", - "f": "Calificar la publicación seleccionada como favorito", - "o": "Ver detalles de la publicación seleccionada", - "p": "Mostrar el perfil del autor de la publicación seleccionada", - "i": "Abrir las imágenes de la publicación seleccionada", - "x": "Mostrar/ocultar una publicación avisada de contenido", - "?": "Mostrar este diálogo", - "esc": "Cerrar página actual" - }, - "report": { - "title": "Denunciar a este usuario", - "comment": "Comentarios adicionales", - "cancel": "Cancelar", - "ok": "Denunciar" - }, - "thirdparty": { - "title": "Licencias de terceros" - } - }, - "cards": { - "toot": { - "show_more": "Mostrar más", - "hide": "Ocultar", - "sensitive": "Mostrar contenido sensible", - "view_toot_detail": "Ver detalles de publicación", - "open_in_browser": "Abrir en navegador", - "copy_link_to_toot": "Copiar enlace de publicación", - "mute": "Silenciar", - "block": "Bloquear", - "report": "Denunciar", - "delete": "Borrar", - "via": "vía {{application}}", - "reply": "Responder", - "reblog": "Impulsar", - "fav": "Favorito", - "detail": "Detalles de publicación", - "bookmark": "Favorito", - "pinned": "Publicación anclada", - "poll": { - "vote": "Voto", - "votes_count": "votos", - "until": "hasta {{datetime}}", - "left": "Quedan {{datetime}}", - "refresh": "Actualizar" - }, - "open_account": { - "title": "Cuenta no encontrada", - "text": "No se pudo encontrar {{account}} en el servidor. ¿Desea abrir la cuenta en un navegador?", - "ok": "Abrir", - "cancel": "Cancelar" - } - }, - "status_loading": { - "message": "Cargar más estado" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Te sigue", - "doesnt_follow_you": "No te sigue", - "detail": "Detalle", - "follow": "Seguir a este usuario", - "unfollow": "Dejar de seguir este usuario", - "subscribe": "Suscribirse a este usuario", - "unsubscribe": "Desuscribir de este usuario", - "follow_requested": "Seguimiento solicitado", - "open_in_browser": "Abrir en el navegador", - "manage_list_memberships": "Gestionar lista de membresías", - "mute": "Silenciar", - "unmute": "Desactivar Silencio", - "unblock": "Desbloquear", - "block": "Bloquear", - "toots": "Publicaciones", - "follows": "Seguimientos", - "followers": "Seguidores" - } - }, - "follow_requests": { - "accept": "Aceptar", - "reject": "Rechazar" - }, - "hashtag": { - "tag_name": "Nombre de etiqueta", - "delete_tag": "Borrar etiqueta", - "save_tag": "Guardar etiqueta" - }, - "search": { - "search": "Buscar", - "account": "Cuenta", - "tag": "Etiqueta", - "keyword": "Palabra clabe", - "toot": "Publicación" - }, - "lists": { - "index": { - "new_list": "Nueva lista", - "edit": "Editar", - "delete": { - "confirm": { - "title": "Confirmar", - "message": "Esta lista se borrará permanentemente. ¿Seguro que quieres continuar?", - "ok": "Eliminar", - "cancel": "Cancelar" - } - } - } - }, - "login": { - "domain_name_label": "¡Bienvenido a Whalebird! Introduzca un nombre de dominio de servidor para acceder a una cuenta.", - "proxy_info": "Si necesita utilizar un servidor proxy, configúrelo", - "proxy_here": " aquí", - "search": "Buscar", - "login": "Ingresar" - }, - "authorize": { - "manually_1": "Se ha abierto una página de autorización en su navegador.", - "manually_2": "Si aún no se ha abierto, diríjase manualmente a la siguiente URL:", - "code_label": "Introduzca su código de autorización:", - "misskey_label": "Por favor, enviar después de autorizarlo en su navegador.", - "submit": "Enviar" - }, - "receive_drop": { - "drop_message": "Suelte aquí para adjuntar un archivo" - }, - "message": { - "account_load_error": "Error al cargar las cuentas", - "account_remove_error": "Error al eliminar la cuenta", - "preferences_load_error": "Error al cargar las preferencias", - "timeline_fetch_error": "Error al obtener la línea de tiempo", - "notification_fetch_error": "Error al obtener la notificación", - "favourite_fetch_error": "Error al buscar favorito", - "bookmark_fetch_error": "Error al recuperar marcadores", - "follow_request_accept_error": "Error al aceptar la solicitud", - "follow_request_reject_error": "No se ha podido rechazar la solicitud", - "attach_error": "No se pudo adjuntar el archivo", - "authorize_duplicate_error": "No se puede iniciar sesión en la misma cuenta del mismo dominio", - "authorize_error": "Error al autorizar", - "followers_fetch_error": "No se pudo obtener seguidores", - "follows_fetch_error": "No se pudo obtener seguidos", - "toot_fetch_error": "Error al obtener los detalles del puesto", - "follow_error": "Error al seguir el usuario", - "unfollow_error": "Error al dejar de seguir al usuario", - "subscribe_error": "Error al suscribir el usuario", - "unsubscribe_error": "Error al darse de baja el usuario", - "lists_fetch_error": "No se pudo obtener listas", - "list_create_error": "Error al crear una lista", - "members_fetch_error": "No se pudo obtener miembros", - "remove_user_error": "Error al eliminar el usuario", - "find_account_error": "Cuenta no encontrada", - "reblog_error": "No se ha impulsado", - "unreblog_error": "No se ha dejado de impulsar", - "favourite_error": "Error al favorecer", - "unfavourite_error": "Error al no favorecer", - "bookmark_error": "Error al añadir el marcador", - "unbookmark_error": "Error al eliminar el marcador", - "delete_error": "Error al borrar la publicación", - "search_error": "Error al buscar", - "toot_error": "Error al crear publicación", - "update_list_memberships_error": "Error al actualizar la lista de miembros", - "add_user_error": "Error al agregar usuario", - "authorize_url_error": "Error al obtener la url autorizada", - "domain_confirmed": "{{dominio}} está confirmado, por favor conéctese", - "domain_doesnt_exist": "Error al conectar con {{domain}}, asegúrese de que la URL del servidor es válida o correcta.", - "loading": "Cargando...", - "language_not_support_spellchecker_error": "Este idioma no es compatible con el corrector ortográfico", - "update_filter_error": "Error al actualizar el filtro", - "create_filter_error": "Error al crear el filtro" - }, - "validation": { - "login": { - "require_domain_name": "Se requiere un nombre de dominio", - "domain_format": "Por favor, introduzca sólo el nombre de dominio" - }, - "compose": { - "toot_length": "Su publicación debe tener entre {{min}} y {{max}} caracteres", - "attach_length": "Solo puedes adjuntar {{max}} imagen", - "attach_length_plural": "Solo puedes adjuntar hasta {{max}} imágenes", - "attach_image": "Solo puedes adjuntar imágenes o videos", - "poll_invalid": "Elección de voto inválidas" - } - }, - "notification": { - "favourite": { - "title": "Nuevo favorito", - "body": "{{username}} calificó tu publicación como favorito" - }, - "follow": { - "title": "Nuevo seguidor", - "body": "{{username}} ahora te está siguiendo" - }, - "follow_request": { - "title": "Nueva solicitud de seguimiento", - "body": "Se recibió una solicitud de seguimiento desde {{username}}" - }, - "reblog": { - "title": "Nuevo impulso", - "body": "{{username}} impulsó tu publicación" - }, - "quote": { - "title": "Nueva cita", - "body": "{{username}} citó tu publicación" - }, - "reaction": { - "title": "Nueva reacción", - "body": "{{username}} reaccionó a tu publicación" - }, - "status": { - "title": "Nueva publicación", - "body": "{{username}} hizo una publicación" - }, - "poll_vote": { - "title": "Nuevo voto de encuesta", - "body": "{{username}} votó en tu encuesta" - }, - "poll_expired": { - "title": "Encuesta expirada", - "body": "La encuesta de {{username}} finalizó" - } - }, - "compose": { - "title": "Nueva publicación", - "cw": "Escriba su alerta aquí", - "status": "¿En qué piensas?", - "cancel": "Cancelar", - "toot": "Publicar", - "description": "Añadir texto alterno para este medio", - "footer": { - "add_image": "Añadir imagen", - "poll": "Añadir encuesta", - "change_visibility": "Cambiar visibilidad", - "change_sensitive": "Marcar medio como sensible", - "add_cw": "Agregar alerta de contenido", - "pined_hashtag": "Hashtag anclado" - }, - "poll": { - "add_choice": "Agregar una opción", - "expires": { - "5_minutes": "5 minutos", - "30_minutes": "30 minutos", - "1_hour": "1 hora", - "6_hours": "6 horas", - "1_day": "1 día", - "3_days": "3 días", - "7_days": "7 días" - } - } - } -} diff --git a/src/config/locales/eu/translation.json b/src/config/locales/eu/translation.json deleted file mode 100644 index d7541bb6..00000000 --- a/src/config/locales/eu/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Whalebirdi buruz", - "preferences": "Hobespenak", - "shortcuts": "Teklatuaren lasterbideak", - "services": "Zerbitzuak", - "hide": "Ezkutatu Whalebird", - "hide_others": "Ezkutatu besteak", - "show_all": "Erakutsi guztia", - "open": "Ireki leihoa", - "quit": "Itxi" - }, - "edit": { - "name": "Editatu", - "undo": "Desegin", - "redo": "Berregin", - "cut": "Ebaki", - "copy": "Kopiatu", - "paste": "Itsatsi", - "select_all": "Hautatu guztia" - }, - "view": { - "name": "Ikusi", - "toggle_full_screen": "Pantaila osoa bai/ez" - }, - "window": { - "always_show_menu_bar": "Erakutsi beti menu barra", - "name": "Leihoa", - "close": "Itxi leihoa", - "open": "Ireki leihoa", - "minimize": "Minimizatu", - "jump_to": "Joan hona" - }, - "help": { - "name": "Laguntza", - "thirdparty": "Hirugarrenen lizentziak" - } - }, - "global_header": { - "add_new_account": "Gehitu kontu berria" - }, - "side_menu": { - "profile": "Profila", - "show_profile": "Erakutsi profila", - "edit_profile": "Editatu profila", - "settings": "Kontuaren ezarpenak", - "collapse": "Tolestu", - "expand": "Hedatu", - "home": "Hasiera", - "notification": "Jakinarazpenak", - "direct": "Mezu zuzenak", - "follow_requests": "Jarraipen-eskaerak", - "favourite": "Gogokoak", - "bookmark": "Laster-markak", - "local": "Lokala", - "public": "Federatutakoa", - "hashtag": "Traolak", - "search": "Bilaketa", - "lists": "Zerrendak" - }, - "header_menu": { - "home": "Hasiera", - "notification": "Jakinarazpenak", - "favourite": "Gogokoak", - "bookmark": "Laster-markak", - "follow_requests": "Jarraipen-eskaerak", - "direct_messages": "Mezu zuzenak", - "local": "Denbora-lerro lokala", - "public": "Federatutako denbora-lerroa", - "hashtag": "Traolak", - "search": "Bilaketa", - "lists": "Zerrendak", - "members": "Kideak", - "reload": "Birkargatu" - }, - "settings": { - "title": "Ezarpenak", - "general": { - "title": "Orokorra", - "toot": { - "title": "Bidalketak", - "visibility": { - "description": "Ikusgaitasuna, defektuz", - "notice": "Ezarpen honek bidalketa berriei bakarrik eragiten die; erantzunek bidalketa nagusiaren ikusgaitasun ezarpenak jarraituko ditu.", - "public": "Publikoa", - "unlisted": "Zerrendatu gabea", - "private": "Jarraitzaileak soilik", - "direct": "Aipatutako jendea soilik" - }, - "sensitive": { - "description": "Markatu edukia hunkigarri gisa, defektuz" - } - } - }, - "timeline": { - "title": "Denbora-lerroa", - "use_marker": { - "title": "Kargatu denbora-lerroa irakurritako azken kokapenetik", - "home": "Hasiera", - "notifications": "Jakinarazpenak" - } - }, - "filters": { - "title": "Iragazkiak", - "form": { - "phrase": "Hitz-gakoa edo esaldia", - "expire": "Iraungitze-data", - "context": "Iragazkien testuinguruak", - "irreversible": "Desagerrarazi ezkutatu beharrean", - "whole_word": "Hitz osoa", - "submit": "Bidali", - "cancel": "Utzi" - }, - "expires": { - "never": "Inoiz ez", - "30_minutes": "30 minutu", - "1_hour": "Ordubete", - "6_hours": "6 ordu", - "12_hours": "12 ordu", - "1_day": "Egun 1", - "1_week": "Astebete" - }, - "new": { - "title": "Berria" - }, - "edit": { - "title": "Editatu" - }, - "delete": { - "title": "Ezabatu", - "confirm": "Ziur zaude iragazki hau ezabatu nahi duzula?", - "confirm_ok": "Bai, ezabatu", - "confirm_cancel": "Ez, utzi" - } - } - }, - "preferences": { - "title": "Hobespenak", - "general": { - "title": "Orokorra", - "sounds": { - "title": "Soinuak", - "description": "Jo soinuak", - "fav_rb": "Bidalketa bat gogoko egin edo bultzatzerakoan", - "toot": "Bidalketa bat argitaratzerakoan" - }, - "timeline": { - "title": "Denbora-lerroa", - "description": "Erabaki nola erakutsiko diren denbora-lerroak", - "cw": "Hedatu beti edukiari buruzko oharra duten bidalketak.", - "nsfw": "Erakutsi beti multimedia.", - "hideAllAttachments": "Ezkutatu beti multimedia." - }, - "other": { - "title": "Beste aukera batzuk", - "launch": "Abiarazi Whalebird ordenagailua pizterakoan", - "hideOnLaunch": "Ezkutatu Whalebird-en leihoa abiarazterakoan" - }, - "reset": { - "button": "Berrezarri hobespenak" - } - }, - "appearance": { - "title": "Itxura", - "theme_color": "Kolorea", - "theme": { - "system": "Sistemak darabilena", - "light": "Argia", - "dark": "Iluna", - "solarized_light": "Horixka", - "solarized_dark": "Urdinxka", - "kimbie_dark": "Marroixka", - "custom": "Pertsonalizatua" - }, - "custom_theme": { - "background_color": "Hondoa", - "selected_background_color": "Fokatuta dagoen hondoa", - "global_header_color": "Kontuaren menua", - "side_menu_color": "Alboko menua", - "primary_color": "Letra-tipo nagusia", - "regular_color": "Letra-tipo arrunta", - "secondary_color": "Bigarren mailako letra-tipoa", - "border_color": "Ertza", - "header_menu_color": "Goiburuko menua", - "wrapper_mask_color": "Goiburuko hondoa" - }, - "font_size": "Letraren tamaina", - "font_family": "Letra-tipoaren familia", - "toot_padding": "Bidalketen arteko espazioa", - "display_style": { - "title": "Erabiltzaileen izenaren itxura", - "display_name_and_username": "Izena eta erabiltzaile-izena", - "display_name": "Izena soilik", - "username": "Erabiltzaile-izena soilik" - }, - "time_format": { - "title": "Orduaren formatua", - "absolute": "Absolutua", - "relative": "Erlatiboa" - } - }, - "notification": { - "title": "Jakinarazpenak", - "enable": { - "description": "Jakinarazi honakoak jasotzerakoan:", - "reply": "Erantzunak", - "reblog": "Bultzadak", - "favourite": "Gogokoak", - "follow": "Jarraitzaile berriak", - "reaction": "Emoji erreakzioak", - "follow_request": "Jarraipen-eskaerak", - "status": "Egoera jakinarazpenak", - "poll_vote": "Inkestaren botoak", - "poll_expired": "Bozketen amaiera" - } - }, - "account": { - "title": "Kontua", - "connected": "Konektatutako kontuak", - "username": "Erabiltzaile-izena", - "domain": "Domeinua", - "association": "Asoziazioa", - "order": "Ordena", - "remove_association": "Kendu asoziazioa", - "remove_all_associations": "Kendu asoziazio guztiak", - "confirm": "Baieztatu", - "cancel": "Utzi", - "confirm_message": "Ziur zaude asoziazio guztiak kendu nahi dituzula?" - }, - "network": { - "title": "Sarea", - "proxy": { - "title": "Proxy ezarpenak", - "no": "Proxyrik ez", - "system": "Erabili sistemaren proxya", - "manual": "Eskuzko proxy konfigurazioa", - "protocol": "Protokoloa", - "host": "Proxy ostalaria", - "port": "Proxy ataka", - "username": "Proxy erabiltzaile-izena", - "password": "Proxy pasahitza", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Gorde" - }, - "language": { - "title": "Hizkuntza", - "language": { - "title": "Hizkuntza", - "description": "Aukeratu Whalebirdek erabiltzea nahi duzun hizkuntza." - }, - "spellchecker": { - "title": "Ortografia-egiaztatzea", - "enabled": "Gaitu ortografia-egiaztatzailea" - } - } - }, - "modals": { - "jump": { - "jump_to": "Joan hona…" - }, - "add_list_member": { - "title": "Gehitu kidea zerrendara", - "account_name": "Kontuaren izena" - }, - "list_membership": { - "title": "Zerrendaren kideak" - }, - "mute_confirm": { - "title": "Mututu erabiltzailea", - "body": "Ziur zaude erabiltzaile honen jakinarazpenak mututu nahi dituzula?", - "cancel": "Ez, utzi", - "ok": "Bai, mututu" - }, - "shortcut": { - "title": "Teklatuaren lasterbideak", - "ctrl_number": "Aldatu kontuak", - "ctrl_k": "Egin jauzi beste denbora-lerro batzuetara", - "ctrl_enter": "Argitaratu", - "ctrl_r": "Freskatu oraingo denbora-lerroa", - "j": "Hautatu hurrengo bidalketa", - "k": "Hautatu aurreko bidalketa", - "r": "Erantzun hautatutako bidalketari", - "b": "Bultzatu hautatutako bidalketa", - "f": "Egin gogoko hautatutako bidalketa", - "o": "Ikusi hautatutako bidalketaren xehetasunak", - "p": "Erakutsi hautatutako bidalketaren autorearen profila", - "i": "Ikusi hautatutako bidalketaren irudiak", - "x": "Erakutsi/Ezkutatu edukiari buruzko abisua duen bidalketa", - "?": "Erakutsi leiho hau", - "esc": "Itxi oraingo orria" - }, - "report": { - "title": "Salatu erabiltzailea", - "comment": "Iruzkin gehigarriak", - "cancel": "Utzi", - "ok": "Salatu" - }, - "thirdparty": { - "title": "Hirugarrenen lizentziak" - } - }, - "cards": { - "toot": { - "show_more": "Erakutsi gehiago", - "hide": "Ezkutatu", - "sensitive": "Erakutsi eduki hunkigarria", - "view_toot_detail": "Ikusi bidalketaren xehetasunak", - "open_in_browser": "Ireki nabigatzailean", - "copy_link_to_toot": "Kopiatu bidalketaren esteka", - "mute": "Mututu", - "block": "Blokeatu", - "report": "Salatu", - "delete": "Ezabatu", - "via": "{{application}}(e)n bidez", - "reply": "Erantzun", - "reblog": "Bultzatu", - "fav": "Egin gogoko", - "detail": "Bidalketaren xehetasunak", - "bookmark": "Jarri laster-marka", - "pinned": "Finkatutako bidalketa", - "poll": { - "vote": "Bozkatu", - "votes_count": "boto", - "until": "{{datetime}} arte", - "left": "epemuga: {{datetime}}", - "refresh": "Freskatu" - }, - "open_account": { - "title": "Ez da kontua aurkitu", - "text": "Ezin izan da {{account}} kontua zerbitzarian aurkitu. Nabigatzailean ireki nahi al duzu kontu hori?", - "ok": "Bai, ireki", - "cancel": "Ez, utzi" - } - }, - "status_loading": { - "message": "Kargatu egoera gehiago" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Jarraitzen zaitu", - "doesnt_follow_you": "Ez zaitu jarraitzen", - "detail": "Xehetasunak", - "follow": "Jarraitu", - "unfollow": "Utzi jarraitzeari", - "subscribe": "Harpidetu", - "unsubscribe": "Utzi harpidetza", - "follow_requested": "Eskaera bidalita", - "open_in_browser": "Ireki nabigatzailean", - "manage_list_memberships": "Kudeatu zerrendaren kideak", - "mute": "Mututu", - "unmute": "Utzi mututzeari", - "unblock": "Utzi blokeatzeari", - "block": "Blokeatu", - "toots": "Bidalketak", - "follows": "Jarraitzen", - "followers": "Jarraitzaile" - } - }, - "follow_requests": { - "accept": "Onartu", - "reject": "Baztertu" - }, - "hashtag": { - "tag_name": "Bilatu traola", - "delete_tag": "Ezabatu traola", - "save_tag": "Gorde traola" - }, - "search": { - "search": "Bilatu", - "account": "Kontua", - "tag": "Traola", - "keyword": "Hitz-gakoa", - "toot": "Bidalketa" - }, - "lists": { - "index": { - "new_list": "Zerrenda berria", - "edit": "Editatu", - "delete": { - "confirm": { - "title": "Baieztatu", - "message": "Zerrenda betiko ezabatuko da. Ziur al zaude jarraitu nahi duzula?", - "ok": "Bai, ezabatu", - "cancel": "Ez, utzi" - } - } - } - }, - "login": { - "domain_name_label": "Ongi etorri Whalebird-era! Saioa hasteko idatzi zerbitzariaren domeinua.", - "proxy_info": "Proxy zerbitzaria behar baduzu, konfiguratu", - "proxy_here": " hemen", - "search": "Bilatu", - "login": "Hasi saioa" - }, - "authorize": { - "manually_1": "Baimena emateko leiho berri bat ireki da nabigatzailean.", - "manually_2": "Automatikoki ireki ez bada, joan ondorengo helbidera:", - "code_label": "Sartu baimen-kodea:", - "misskey_label": "Bidali nabigatzailean baimena eman ondoren.", - "submit": "Bidali" - }, - "receive_drop": { - "drop_message": "Ekarri hona fitxategia eransteko" - }, - "message": { - "account_load_error": "Kontuak kargatzeak huts egin du", - "account_remove_error": "Kontua ezabatzeak huts egin du", - "preferences_load_error": "Hobespenak kargatzeak huts egin du", - "timeline_fetch_error": "Denbora-lerroa eskuratzeak huts egin du", - "notification_fetch_error": "Jakinarazpenak eskuratzeak huts egin du", - "favourite_fetch_error": "Gogokoak eskuratzeak huts egin du", - "bookmark_fetch_error": "Laster-markak eskuratzeak huts egin du", - "follow_request_accept_error": "Eskaera onartzeak huts egin du", - "follow_request_reject_error": "Eskaera baztertzeak huts egin du", - "attach_error": "Ezin izan da fitxategia erantsi", - "authorize_duplicate_error": "Ezin da kontu bera birritan gehitu", - "authorize_error": "Baimentzeak huts egin du", - "followers_fetch_error": "Jarraitzaileak eskuratzeak huts egin du", - "follows_fetch_error": "Jarraitzen dituenak eskuratzeak huts egin du", - "toot_fetch_error": "Bidalketaren xehetasunak eskuratzeak huts egin du", - "follow_error": "Erabiltzailea jarraitzeak huts egin du", - "unfollow_error": "Erabiltzailea jarraitzeari uzteak huts egin du", - "subscribe_error": "Erabiltzailera harpidetzeak huts egin du", - "unsubscribe_error": "Erabiltzailearen harpidetza uzteak huts egin du", - "lists_fetch_error": "Zerrendak eskuratzeak huts egin du", - "list_create_error": "Zerrenda sortzeak huts egin du", - "members_fetch_error": "Kideak eskuratzeak huts egin du", - "remove_user_error": "Erabiltzailea kentzeak huts egin du", - "find_account_error": "Ez da kontua aurkitu", - "reblog_error": "Bidalketaren bultzadak huts egin du", - "unreblog_error": "Bultzada kentzeak huts egin du", - "favourite_error": "Gogoko egiteak huts egin du", - "unfavourite_error": "Gogokoetatik kentzeak huts egin du", - "bookmark_error": "Laster-marka jartzeak huts egin du", - "unbookmark_error": "Laster-marka kentzeak huts egin du", - "delete_error": "Bidalketa ezabatzeak huts egin du", - "search_error": "Bilaketak huts egin du", - "toot_error": "Bidalketa sortzeak huts egin du", - "update_list_memberships_error": "Zerrendaren kideen eguneratzeak huts egin du", - "add_user_error": "Erabiltzailea gehitzeak huts egin du", - "authorize_url_error": "Baimentzeko URLa eskuratzeak huts egin du", - "domain_confirmed": "{{domain}} domeinua baieztatu da; hasi saioa", - "domain_doesnt_exist": "{{domain}} domeinuarekin konextioak huts egin du; egiaztatu zerbitzariaren URLa zuzena dela.", - "loading": "Kargatzen…", - "language_not_support_spellchecker_error": "Ortografia-egiaztatzailea ezin da hizkuntza honekin erabili", - "update_filter_error": "Iragazkiaren eguneraketak huts egin du", - "create_filter_error": "Iragazkiaren sorrerak huts egin du" - }, - "validation": { - "login": { - "require_domain_name": "Domeinuaren izena ezinbestekoa da", - "domain_format": "Sartu domeinuaren izena soilik" - }, - "compose": { - "toot_length": "Bidalketaren luzera {{min}} eta {{max}} artekoa izan behar da", - "attach_length": "Irudi bakar {{max}} erantsi dezakezu", - "attach_length_plural": "{{max}} irudi soilik erantsi ditzakezu", - "attach_image": "Irudiak edo bideoak soilik erantsi ditzakezu", - "poll_invalid": "Inkestaren aukerek ez dute balio" - } - }, - "notification": { - "favourite": { - "title": "Gogoko berria", - "body": "{{username}}(e)k gogoko du zure bidalketa" - }, - "follow": { - "title": "Jarraitzaile berria", - "body": "{{username}} jarraitzen hasi zaizu" - }, - "follow_request": { - "title": "Jarraipen-eskaera berria", - "body": "{{username}}(e)k jarraitzeko eskaera egin dizu" - }, - "reblog": { - "title": "Bultzada berria", - "body": "{{username}}(e)k zure bidalketa bultzatu du" - }, - "quote": { - "title": "Aipamen berria", - "body": "{{username}}(e)k zure bidalketa aipatu du" - }, - "reaction": { - "title": "Erreakzio berria", - "body": "{{username}}(e)k erreakzionatu du" - }, - "status": { - "title": "Bidalketa berria", - "body": "{{username}}(e)k ibidalketa berria egin du" - }, - "poll_vote": { - "title": "Boto berria", - "body": "{{username}}(e)k botoa eman du zure inkestan" - }, - "poll_expired": { - "title": "Inkesta amaitu da", - "body": "{{username}}(r)en inkesta amaitu da" - } - }, - "compose": { - "title": "Bidalketa berria", - "cw": "Idatzi ohartarazpena hemen", - "status": "Zer duzu buruan?", - "cancel": "Utzi", - "toot": "Argitaratu", - "description": "Gehitu multimedia honen deskribapena", - "footer": { - "add_image": "Gehitu irudiak", - "poll": "Gehitu inkesta", - "change_visibility": "Aldatu ikusgaitasuna", - "change_sensitive": "Markatu multimedia hunkigarri gisa", - "add_cw": "Gehitu edukiari buruzko oharra", - "pined_hashtag": "Finkatutako traola" - }, - "poll": { - "add_choice": "Gehitu aukera bat", - "expires": { - "5_minutes": "5 minutu", - "30_minutes": "30 minutu", - "1_hour": "Ordubete", - "6_hours": "6 ordu", - "1_day": "Egun 1", - "3_days": "3 egun", - "7_days": "7 egun" - } - } - } -} diff --git a/src/config/locales/fa/translation.json b/src/config/locales/fa/translation.json deleted file mode 100644 index 28818446..00000000 --- a/src/config/locales/fa/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "About Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Services", - "hide": "Hide Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Quit" - }, - "edit": { - "name": "Edit", - "undo": "Undo", - "redo": "Redo", - "cut": "Cut", - "copy": "Copy", - "paste": "Paste", - "select_all": "Select All" - }, - "view": { - "name": "View", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Window", - "close": "Close Window", - "open": "Open Window", - "minimize": "Minimize", - "jump_to": "Jump to" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Add new account" - }, - "side_menu": { - "profile": "Profile", - "show_profile": "Show profile", - "edit_profile": "Edit profile", - "settings": "Account settings", - "collapse": "Collapse", - "expand": "Expand", - "home": "Home", - "notification": "Notifications", - "direct": "Direct messages", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists" - }, - "header_menu": { - "home": "Home", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists", - "members": "Members", - "reload": "Reload" - }, - "settings": { - "title": "Settings", - "general": { - "title": "General", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Public", - "unlisted": "Unlisted", - "private": "Private", - "direct": "Direct" - }, - "sensitive": { - "description": "Mark media as sensitive by default" - } - } - }, - "timeline": { - "title": "Timeline", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Never", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "12_hours": "12 hours", - "1_day": "1 day", - "1_week": "1 week" - }, - "new": { - "title": "New" - }, - "edit": { - "title": "Edit" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "Cancel" - } - } - }, - "preferences": { - "title": "Preferences", - "general": { - "title": "General", - "sounds": { - "title": "Sounds", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Timeline", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Other options", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Appearance", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Light", - "dark": "Dark", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Custom" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Side menu", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Secondary font", - "border_color": "Border", - "header_menu_color": "Header menu", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Font size", - "font_family": "Font family", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Display name and username", - "display_name": "Display name", - "username": "Username" - }, - "time_format": { - "title": "Time format", - "absolute": "Absolute", - "relative": "Relative" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Account", - "connected": "Connected accounts", - "username": "Username", - "domain": "Domain", - "association": "Association", - "order": "Order", - "remove_association": "Remove association", - "remove_all_associations": "Remove all associations", - "confirm": "Confirm", - "cancel": "Cancel", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Network", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "Protocol", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Save" - }, - "language": { - "title": "Language", - "language": { - "title": "Language", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Jump to..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Account name" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Cancel", - "ok": "Mute" - }, - "shortcut": { - "title": "Keyboard shortcuts", - "ctrl_number": "Switch accounts", - "ctrl_k": "Jump to other timelines", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Show more", - "hide": "Hide", - "sensitive": "Show sensitive content", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mute", - "block": "Block", - "report": "Report", - "delete": "Delete", - "via": "via {{application}}", - "reply": "Reply", - "reblog": "Boost", - "fav": "Favourite", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Refresh" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Follows you", - "doesnt_follow_you": "Doesn't follow you", - "detail": "Detail", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Follow requested", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mute", - "unmute": "Unmute", - "unblock": "Unblock", - "block": "Block", - "toots": "Posts", - "follows": "Follows", - "followers": "Followers" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Reject" - }, - "hashtag": { - "tag_name": "Tag name", - "delete_tag": "Delete tag", - "save_tag": "Save tag" - }, - "search": { - "search": "Search", - "account": "Account", - "tag": "Hashtag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "New List", - "edit": "Edit", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "Search", - "login": "Login" - }, - "authorize": { - "manually_1": "An authorization page has opened in your browser.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Submit" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Failed to load accounts", - "account_remove_error": "Failed to remove the account", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Can not login the same account of the same domain", - "authorize_error": "Failed to authorize", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Failed to follow the user", - "unfollow_error": "Failed to unfollow the user", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Failed to remove the user", - "find_account_error": "Account not found", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Failed to search", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Failed to add user", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Loading...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/fr/translation.json b/src/config/locales/fr/translation.json deleted file mode 100644 index be56954f..00000000 --- a/src/config/locales/fr/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "À propos de Whalebird", - "preferences": "Préférences", - "shortcuts": "Raccourcis clavier", - "services": "Services", - "hide": "Cacher Whalebird", - "hide_others": "Masquer les autres", - "show_all": "Tout afficher", - "open": "Ouvrir la fenêtre", - "quit": "Quitter" - }, - "edit": { - "name": "Modifier", - "undo": "Défaire", - "redo": "Refaire", - "cut": "Couper", - "copy": "Copier", - "paste": "Coller", - "select_all": "Tout sélectionner" - }, - "view": { - "name": "Afficher", - "toggle_full_screen": "Basculer en mode plein écran" - }, - "window": { - "always_show_menu_bar": "Toujours afficher la barre de menu", - "name": "Fenêtre", - "close": "Fermer la fenêtre", - "open": "Ouvrir la fenêtre", - "minimize": "Minimiser", - "jump_to": "Aller à" - }, - "help": { - "name": "Aide", - "thirdparty": "Licences tierces" - } - }, - "global_header": { - "add_new_account": "Ajouter un nouveau compte" - }, - "side_menu": { - "profile": "Profil", - "show_profile": "Voir le profil", - "edit_profile": "Éditer mon profil", - "settings": "Paramètres du compte", - "collapse": "Réduire", - "expand": "Développer", - "home": "Accueil", - "notification": "Notifications", - "direct": "Messages directs", - "follow_requests": "Demandes d’abonnement", - "favourite": "Favourited", - "bookmark": "Signets", - "local": "Fil public local", - "public": "Fil fédéré", - "hashtag": "Hashtags", - "search": "Rechercher", - "lists": "Listes" - }, - "header_menu": { - "home": "Accueil", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Signets", - "follow_requests": "Demandes d’abonnement", - "direct_messages": "Messages directs", - "local": "Fil public local", - "public": "Fil fédéré", - "hashtag": "Hashtags", - "search": "Rechercher", - "lists": "Listes", - "members": "Membres", - "reload": "Recharger" - }, - "settings": { - "title": "Paramètres", - "general": { - "title": "Général", - "toot": { - "title": "Publications", - "visibility": { - "description": "Visibilité par défaut des publications", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Public", - "unlisted": "Public sans être affiché sur le fil public", - "private": "Abonné⋅e⋅s uniquement", - "direct": "Message direct" - }, - "sensitive": { - "description": "Marquer vos médias comme sensibles par défaut" - } - } - }, - "timeline": { - "title": "Fil d'actualité", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Accueil", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filtres", - "form": { - "phrase": "Mot-clé ou expression", - "expire": "Expire après", - "context": "Filtrer les contextes", - "irreversible": "Supprimer plutôt que cacher", - "whole_word": "Mot entier", - "submit": "Envoyer", - "cancel": "Annuler" - }, - "expires": { - "never": "Jamais", - "30_minutes": "30 minutes", - "1_hour": "1 heure", - "6_hours": "6 heures", - "12_hours": "12 heures", - "1_day": "1 jour", - "1_week": "1 semaine" - }, - "new": { - "title": "Nouveau" - }, - "edit": { - "title": "Modifier" - }, - "delete": { - "title": "Supprimer", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Supprimer", - "confirm_cancel": "Annuler" - } - } - }, - "preferences": { - "title": "Préférences", - "general": { - "title": "Général", - "sounds": { - "title": "Sons", - "description": "Jouer un son lorsque", - "fav_rb": "You favourite or boost a post", - "toot": "Vous publiez un message" - }, - "timeline": { - "title": "Fil d'actualité", - "description": "Personnaliser l’affichage de vos fils", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Toujours afficher les médias.", - "hideAllAttachments": "Toujours masquer les médias." - }, - "other": { - "title": "Autres options", - "launch": "Lancer Whalebird au démarrage", - "hideOnLaunch": "Masquer la fenêtre Whalebird au lancement" - }, - "reset": { - "button": "Réinitialiser les préférences" - } - }, - "appearance": { - "title": "Apparence", - "theme_color": "Couleurs du thème", - "theme": { - "system": "Système", - "light": "Clair", - "dark": "Foncé", - "solarized_light": "Lumière solaire", - "solarized_dark": "Solarisé Sombre", - "kimbie_dark": "KimbieDark", - "custom": "Personalisé" - }, - "custom_theme": { - "background_color": "Arrière plan de base", - "selected_background_color": "Arrière plan en focus", - "global_header_color": "Menu Compte", - "side_menu_color": "Menu latéral", - "primary_color": "Couleur du texte primaire", - "regular_color": "Couleur du texte normal", - "secondary_color": "Couleur du texte secondaire", - "border_color": "Bordures", - "header_menu_color": "Menu en tête", - "wrapper_mask_color": "Fenêtre de dialogue" - }, - "font_size": "Taille des caractères", - "font_family": "Famille de polices", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Style d'affichage du nom d'utilisateur", - "display_name_and_username": "Nom et utilisateur⋅trice", - "display_name": "Nom affiché", - "username": "Utilisateur⋅trice" - }, - "time_format": { - "title": "Format de dates", - "absolute": "Absolu", - "relative": "Relatif" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Réponses", - "reblog": "Partages", - "favourite": "Favoris", - "follow": "Nouveaux⋅elles abonné⋅e⋅s", - "reaction": "Emoji reactions", - "follow_request": "Demandes d’abonnement", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "Lorsqu’un sondage expire" - } - }, - "account": { - "title": "Compte", - "connected": "Comptes associés", - "username": "Utilisateur⋅trice", - "domain": "Domaine", - "association": "Association", - "order": "Ordre", - "remove_association": "Supprimer l'association", - "remove_all_associations": "Supprimer toutes les associations", - "confirm": "Confirmer", - "cancel": "Annuler", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Réseau", - "proxy": { - "title": "Configuration du proxy", - "no": "Aucun proxy", - "system": "Utiliser le proxy du système", - "manual": "Configuration manuelle du proxy", - "protocol": "Protocole", - "host": "Hôte du proxy", - "port": "Port du proxy", - "username": "Nom d'utilisateur du proxy", - "password": "Mot de passe du proxy", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Sauvegarder" - }, - "language": { - "title": "Langue", - "language": { - "title": "Langue", - "description": "Choisissez la langue que vous souhaitez utiliser sur Whalebird." - }, - "spellchecker": { - "title": "Vérification orthographique", - "enabled": "Activer le correcteur orthographique" - } - } - }, - "modals": { - "jump": { - "jump_to": "Aller à..." - }, - "add_list_member": { - "title": "Ajouter un membre à la liste", - "account_name": "Nom du compte" - }, - "list_membership": { - "title": "Liste des membres" - }, - "mute_confirm": { - "title": "Masquer l’utilisateur·rice", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Annuler", - "ok": "Muter" - }, - "shortcut": { - "title": "Raccourcis clavier", - "ctrl_number": "Changer de compte", - "ctrl_k": "Aller aux autres fils", - "ctrl_enter": "Envoyer un message", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Afficher cette boîte de dialogue", - "esc": "Fermer la page en cours" - }, - "report": { - "title": "Signaler cet·te utilisateur·rice", - "comment": "Observations supplémentaires", - "cancel": "Annuler", - "ok": "Signaler" - }, - "thirdparty": { - "title": "Licences tierces" - } - }, - "cards": { - "toot": { - "show_more": "Voir plus", - "hide": "Cacher", - "sensitive": "Afficher le contenu sensible", - "view_toot_detail": "Voir les détails de la publication", - "open_in_browser": "Ouvrir dans le navigateur", - "copy_link_to_toot": "Copier le lien de la publication", - "mute": "Muter", - "block": "Bloquer", - "report": "Signaler", - "delete": "Supprimer", - "via": "via {{application}}", - "reply": "Répondre", - "reblog": "Partager", - "fav": "Préféré", - "detail": "Détails de la publication", - "bookmark": "Favori", - "pinned": "Publication épinglée", - "poll": { - "vote": "Vote", - "votes_count": "voix", - "until": "jusqu'à {{datetime}}", - "left": "{{datetime}} restant", - "refresh": "Actualiser" - }, - "open_account": { - "title": "Compte non trouvé", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Ouvrir", - "cancel": "Annuler" - } - }, - "status_loading": { - "message": "Charger plus de publications" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Abonné⋅e", - "doesnt_follow_you": "Pas abonné⋅e", - "detail": "Détail", - "follow": "S’abonner", - "unfollow": "Se désabonner", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Suivre demande", - "open_in_browser": "Ouvrir dans le navigateur", - "manage_list_memberships": "Gérer la liste des membres", - "mute": "Muter", - "unmute": "Dé-muter", - "unblock": "Dé-Bloquer", - "block": "Bloquer", - "toots": "Publications", - "follows": "Abonnements", - "followers": "Abonné⋅e⋅s" - } - }, - "follow_requests": { - "accept": "Accepter", - "reject": "Refuser" - }, - "hashtag": { - "tag_name": "Nom du hashtag", - "delete_tag": "Supprimer tag", - "save_tag": "Sauver tag" - }, - "search": { - "search": "Rechercher", - "account": "Compte", - "tag": "Hashtag", - "keyword": "Mot-clé", - "toot": "Publication" - }, - "lists": { - "index": { - "new_list": "Nouvelle liste", - "edit": "Éditer", - "delete": { - "confirm": { - "title": "Confirmer", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Supprimer", - "cancel": "Annuler" - } - } - } - }, - "login": { - "domain_name_label": "Bienvenue sur Whalebird ! Entrez un nom de domaine pour vous connecter à un compte.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " ici", - "search": "Rechercher", - "login": "Connexion" - }, - "authorize": { - "manually_1": "La page d'autorisation est à présent affichée dans votre navigateur.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Entrez votre code d’autorisation :", - "misskey_label": "Veuillez soumettre une fois que vous avez autorisé dans votre navigateur.", - "submit": "Envoyer" - }, - "receive_drop": { - "drop_message": "Déposez ici pour joindre un fichier" - }, - "message": { - "account_load_error": "Erreur au chargement des comptes", - "account_remove_error": "Erreur à la suppression du compte", - "preferences_load_error": "Erreur au chargement des préférences", - "timeline_fetch_error": "Erreur au chargement du fil public", - "notification_fetch_error": "Erreur au chargement des notifications", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Impossible d'accepter la demande", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Impossible de joindre le fichier", - "authorize_duplicate_error": "Vous êtes déjà connecté avec le même compte sur le même domaine.", - "authorize_error": "Erreur à l'autoristation", - "followers_fetch_error": "Erreur à la récupération des abonné⋅e⋅s", - "follows_fetch_error": "Erreur à la récupération des abonnements", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Impossible de s'abonner à l'utilisateur⋅trice", - "unfollow_error": "Impossible de supprimer l'abonnement à l'utilisateur⋅trice", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Erreur à la récupération des listes", - "list_create_error": "Erreur à la création de la liste", - "members_fetch_error": "Erreur à la récupération des membres de la liste", - "remove_user_error": "Erreur à la suppression d'un utilisateur⋅trice", - "find_account_error": "Compte non trouvé", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Erreur à la création d'un favori", - "unfavourite_error": "Erreur à la suprression d'un favori", - "bookmark_error": "Échec de l'ajout du favoris", - "unbookmark_error": "Échec de la suppression du favoris", - "delete_error": "Failed to delete the post", - "search_error": "Erreur lors de la recherche", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Erreur lors de la mise à jour de la liste", - "add_user_error": "Erreur lors de l'ajout d'un utilisateur⋅trice", - "authorize_url_error": "Erreur à la récupération de l'URL d'autorisation", - "domain_confirmed": "{{domain}} est confirmé, veuillez vous connecter", - "domain_doesnt_exist": "Impossible de se connecter à {{domain}}, assurez-vous que l’URL du serveur est valide ou correcte.", - "loading": "Chargement...", - "language_not_support_spellchecker_error": "Cette langue n’est pas prise en charge par le correcteur orthographique", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "Un nom de domaine est requis", - "domain_format": "Veuillez uniquement indiquer le nom de domaine" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "Nouveau favori", - "body": "{{username}} a mis votre message en favori" - }, - "follow": { - "title": "Nouveau⋅elle abonné⋅e", - "body": "{{username}} vous suit" - }, - "follow_request": { - "title": "Nouvelle demande d’abonnement", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "Nouveau partage", - "body": "{{username}} a partagé votre publication" - }, - "quote": { - "title": "Nouvelle citation", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "Nouvelle réaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "Nouvelle publication", - "body": "{{username}} a publié un nouveau message" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Sondage expiré", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "Nouvelle publication", - "cw": "Rédigez votre avertissement ici", - "status": "Qu’avez-vous en tête ?", - "cancel": "Annuler", - "toot": "Publier", - "description": "Ajouter un texte alternatif pour ce média", - "footer": { - "add_image": "Ajouter des images", - "poll": "Créer un sondage", - "change_visibility": "Modifier la visibilité", - "change_sensitive": "Marquer le média comme sensible", - "add_cw": "Ajouter un avertissement de contenu", - "pined_hashtag": "Hashtag épinglé" - }, - "poll": { - "add_choice": "Ajouter une option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 heure", - "6_hours": "6 heures", - "1_day": "1 jour", - "3_days": "3 jours", - "7_days": "7 jours" - } - } - } -} diff --git a/src/config/locales/gd/translation.json b/src/config/locales/gd/translation.json deleted file mode 100644 index 3648b5e1..00000000 --- a/src/config/locales/gd/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Mu Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Seirbheisean", - "hide": "Cuir Whalebird am falach", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Fàg an-seo" - }, - "edit": { - "name": "Deasaich", - "undo": "Neo-dhèan", - "redo": "Ath-dhèan", - "cut": "Geàrr às", - "copy": "Dèan lethbhreac", - "paste": "Cuir ann", - "select_all": "Tagh na h-uile" - }, - "view": { - "name": "Seall", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Uinneag", - "close": "Dùin an uinneag", - "open": "Fosgail ann an uinneag", - "minimize": "Fìor-lùghdaich", - "jump_to": "Leum gu" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Cuir cunntas ùr ris" - }, - "side_menu": { - "profile": "Pròifil", - "show_profile": "Seall a’ phròifil", - "edit_profile": "Deasaich a’ phròifil", - "settings": "Account settings", - "collapse": "Co-theannaich", - "expand": "Leudaich", - "home": "Dachaigh", - "notification": "Notifications", - "direct": "Teachdaireachdan dìreach", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Loidhne-ama ionadail", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Lorg", - "lists": "Liostaichean" - }, - "header_menu": { - "home": "Dachaigh", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Loidhne-ama ionadail", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Lorg", - "lists": "Liostaichean", - "members": "Buill", - "reload": "Ath-luchdaich" - }, - "settings": { - "title": "Roghainnean", - "general": { - "title": "Coitcheann", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Poblach", - "unlisted": "Falaichte o liostaichean", - "private": "Prìobhaideach", - "direct": "Dìreach" - }, - "sensitive": { - "description": "Cuir comharra gu bheil meadhanan frionasach mar bhun-roghainn" - } - } - }, - "timeline": { - "title": "Loidhne-ama", - "use_marker": { - "title": "Luchdaich an loidhne-ama on ionad-leughaidh mu dheireadh", - "home": "Dachaigh", - "notifications": "Brathan" - } - }, - "filters": { - "title": "Criathragan", - "form": { - "phrase": "Facal no abairt-luirg", - "expire": "Thig e gu crìoch às dèidh", - "context": "Co-theacsaichean na criathraige", - "irreversible": "Leig seachad seach falach", - "whole_word": "Facal slàn", - "submit": "Cuir a-null", - "cancel": "Sguir dheth" - }, - "expires": { - "never": "Buan", - "30_minutes": "Leth-uair a thìde", - "1_hour": "Uair a thìde", - "6_hours": "6 uairean a thìde", - "12_hours": "12 uair a thìde", - "1_day": "Latha", - "1_week": "Seachdain" - }, - "new": { - "title": "Ùr" - }, - "edit": { - "title": "Deasaich" - }, - "delete": { - "title": "Sguab às", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Sguab às", - "confirm_cancel": "Sguir dheth" - } - } - }, - "preferences": { - "title": "Roghainnean", - "general": { - "title": "Coitcheann", - "sounds": { - "title": "Fuaimean", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Loidhne-ama", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Roghainnean eile", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Ath-shuidhich na roghainnean" - } - }, - "appearance": { - "title": "Coltas", - "theme_color": "Colour themes", - "theme": { - "system": "An siostam", - "light": "Soilleir", - "dark": "Dorcha", - "solarized_light": "Grianach soilleir", - "solarized_dark": "Grianach dorcha", - "kimbie_dark": "Kimbie Dorcha", - "custom": "Gnàthaichte" - }, - "custom_theme": { - "background_color": "An cùlaibh bunaiteach", - "selected_background_color": "An cùlaibh fòcasaichte", - "global_header_color": "Clàr-taice a’ chunntais", - "side_menu_color": "Clàr-taice an taoibh", - "primary_color": "Am prìomh chruth-chlò", - "regular_color": "An cruth-clò àbhaisteach", - "secondary_color": "An cruth-clò dàrnach", - "border_color": "Iomallan", - "header_menu_color": "Clàr-taice a’ bhanna-chinn", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Meud a’ chrutha-chlò", - "font_family": "Teaghlach a’ chrutha-chlò", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Ainm-taisbeanaidh ’s ainm-cleachdaiche", - "display_name": "Ainm-taisbeanaidh", - "username": "Ainm-cleachdaiche" - }, - "time_format": { - "title": "Fòrmat an ama", - "absolute": "Absaloideach", - "relative": "Dàimheach" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Cunntas", - "connected": "Connected accounts", - "username": "Ainm-cleachdaiche", - "domain": "Àrainn", - "association": "Co-cheangal", - "order": "Òrdugh", - "remove_association": "Thoir air falbh an co-cheangal", - "remove_all_associations": "Thoir air falbh a h-uile co-cheangal", - "confirm": "Dearbh", - "cancel": "Sguir dheth", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Lìonra", - "proxy": { - "title": "Proxy configuration", - "no": "Gun phrosgsaidh", - "system": "Cleachd progsaidh an t-siostaim", - "manual": "Rèiteachadh progsaidh a làimh", - "protocol": "Pròtacal", - "host": "Òstair a’ phrogsaidh", - "port": "Port a’ phrogsaidh", - "username": "Ainm-cleachdaiche a’ phrogsaidh", - "password": "Facal-faire a’ phrogsaidh", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Sàbhail" - }, - "language": { - "title": "Cànan", - "language": { - "title": "Cànan", - "description": "Tagh an cànan a bu toigh leat cleachdadh le Whalebird." - }, - "spellchecker": { - "title": "Dearbhair-litreachaidh", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Leum gu…" - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Ainm a’ chunntais" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Sguir dheth", - "ok": "Mùch" - }, - "shortcut": { - "title": "Ath-ghoiridean a’ mheur-chlàir", - "ctrl_number": "Thoir leum gu cunntas eile", - "ctrl_k": "Thoir leum gu loidhne-ama eile", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Dùin an duilleag làithreach" - }, - "report": { - "title": "Report this user", - "comment": "Beachdan a bharrachd", - "cancel": "Sguir dheth", - "ok": "Dèan gearan" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Seall barrachd dheth", - "hide": "Cuir am falach", - "sensitive": "Seall an t-susbaint fhrionasach", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mùch", - "block": "Bac", - "report": "Dèan gearan", - "delete": "Sguab às", - "via": "le {{application}}", - "reply": "Freagair", - "reblog": "Boost", - "fav": "Cuir ris na h-annsachdan", - "detail": "Post details", - "bookmark": "Cuir ris na comharran-lìn", - "pinned": "Pinned post", - "poll": { - "vote": "Cuir bhòt", - "votes_count": "bhòt(aichean)", - "until": "gu ruige {{datetime}}", - "left": "Tha {{datetime}} air fhàgail", - "refresh": "Ath-nuadhaich" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Luchdaich barrachd phostaichean" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "’Gad leantainn", - "doesnt_follow_you": "Nach eil ’gad leantainn", - "detail": "Mion-fhiosrachadh", - "follow": "Lean an cleachdaiche seo", - "unfollow": "Na lean an cleachdaiche seo tuilleadh", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Iarrar leantainn", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mùch", - "unmute": "Dì-mhùch", - "unblock": "Dì-bhac", - "block": "Bac", - "toots": "Posts", - "follows": "A’ leantainn", - "followers": "Luchd-leantainn" - } - }, - "follow_requests": { - "accept": "Gabh ris", - "reject": "Diùlt" - }, - "hashtag": { - "tag_name": "Ainm an taga", - "delete_tag": "Sguab às an taga", - "save_tag": "Sàbhail an taga" - }, - "search": { - "search": "Lorg", - "account": "Cunntas", - "tag": "Taga hais", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Liosta ùr", - "edit": "Deasaich", - "delete": { - "confirm": { - "title": "Dearbh", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Sguab às", - "cancel": "Sguir dheth" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " an-seo", - "search": "Lorg", - "login": "Clàraich a-steach" - }, - "authorize": { - "manually_1": "Chaidh duilleag ùghdarrachaidh fhosgladh sa bhrabhsair agad.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Cuir a-null e nuair a bhios tu air ùghdarrachadh sa bhrabhsair agad.", - "submit": "Cuir a-null" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Dh’fhàillig le luchdadh nan cunntasan", - "account_remove_error": "Cha deach leinn an cunntas a thoirt air falbh", - "preferences_load_error": "Dh’fhàillig le luchdadh nan roghainnean", - "timeline_fetch_error": "Cha b’ urrainn dhuinn an loidhne-ama fhaighinn", - "notification_fetch_error": "Cha b’ urrainn dhuinn am brath fhaighinn", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Dh'fhàillig le gabhail ris an t-iarrtas", - "follow_request_reject_error": "Dh’fhàillig le diùltadh an iarrtais", - "attach_error": "Cha b’ urrainn dhuinn am faidhle a cheangal ris", - "authorize_duplicate_error": "Chan urrainn dhuinn clàradh a-steach dhan aon chunntas dhen aon àrainn", - "authorize_error": "Dh’fhàillig leis an ùghdarrachadh", - "followers_fetch_error": "Cha b’ urrainn dhuinn an luchd-leantainn fhaighinn", - "follows_fetch_error": "Cha b’ urrainn dhuinn fiosrachadh do leantainn fhaighinn", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Dh’fhàillig le leantainn a’ chleachdaiche", - "unfollow_error": "Dh’fhàillig le sgur de leantainn a’ chleachdaiche", - "subscribe_error": "Dh’fhàillig leis an fho-sgrìobhadh air a’ chleachdaiche", - "unsubscribe_error": "Cha deach leinn crìoch a chur air an fho-sgrìobhadh air a’ chleachdaiche", - "lists_fetch_error": "Cha b’ urrainn dhuinn na liostaichean fhaighinn", - "list_create_error": "Cha b’ urrainn dhuinn liosta a chruthachadh", - "members_fetch_error": "Cha b’ urrainn dhuinn na buill fhaighinn", - "remove_user_error": "Cha deach leinn an cleachdaiche a thoirt air falbh", - "find_account_error": "Cha deach an cunntas a lorg", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Cha b’ urrainn dhuinn a chur ris na h-annsachdan", - "unfavourite_error": "Cha b’ urrainn dhuinn a thoirt air falbh o na h-annsachdan", - "bookmark_error": "Chaidh a chur ris na comharran-lìn", - "unbookmark_error": "Cha deach leinn an comharra-lìn a thoirt air falbh", - "delete_error": "Failed to delete the post", - "search_error": "Dh’fhàillig leis an lorg", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Cha b’ urrainn dhuinn na ballrachdan liosta ùrachadh", - "add_user_error": "Cha b’ urrainn dhuinn an cleachdaiche a chur ris", - "authorize_url_error": "Cha b’ urrainn dhuinn an t-URL ùghdarrachaidh fhaighinn", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "’Ga luchdadh…", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Cha b’ urrainn dhuinn a’ chriathrag ùrachadh", - "create_filter_error": "Dh’fhàillig le cruthachadh na criathraige" - }, - "validation": { - "login": { - "require_domain_name": "Tha feum air ainm àrainne", - "domain_format": "Na cuir a-steach ach ainm na h-àrainne" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "Tha {{username}} ’gad leantainn a-nis" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/hu/translation.json b/src/config/locales/hu/translation.json deleted file mode 100644 index 28818446..00000000 --- a/src/config/locales/hu/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "About Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Services", - "hide": "Hide Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Quit" - }, - "edit": { - "name": "Edit", - "undo": "Undo", - "redo": "Redo", - "cut": "Cut", - "copy": "Copy", - "paste": "Paste", - "select_all": "Select All" - }, - "view": { - "name": "View", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Window", - "close": "Close Window", - "open": "Open Window", - "minimize": "Minimize", - "jump_to": "Jump to" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Add new account" - }, - "side_menu": { - "profile": "Profile", - "show_profile": "Show profile", - "edit_profile": "Edit profile", - "settings": "Account settings", - "collapse": "Collapse", - "expand": "Expand", - "home": "Home", - "notification": "Notifications", - "direct": "Direct messages", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists" - }, - "header_menu": { - "home": "Home", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists", - "members": "Members", - "reload": "Reload" - }, - "settings": { - "title": "Settings", - "general": { - "title": "General", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Public", - "unlisted": "Unlisted", - "private": "Private", - "direct": "Direct" - }, - "sensitive": { - "description": "Mark media as sensitive by default" - } - } - }, - "timeline": { - "title": "Timeline", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Never", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "12_hours": "12 hours", - "1_day": "1 day", - "1_week": "1 week" - }, - "new": { - "title": "New" - }, - "edit": { - "title": "Edit" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "Cancel" - } - } - }, - "preferences": { - "title": "Preferences", - "general": { - "title": "General", - "sounds": { - "title": "Sounds", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Timeline", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Other options", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Appearance", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Light", - "dark": "Dark", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Custom" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Side menu", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Secondary font", - "border_color": "Border", - "header_menu_color": "Header menu", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Font size", - "font_family": "Font family", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Display name and username", - "display_name": "Display name", - "username": "Username" - }, - "time_format": { - "title": "Time format", - "absolute": "Absolute", - "relative": "Relative" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Account", - "connected": "Connected accounts", - "username": "Username", - "domain": "Domain", - "association": "Association", - "order": "Order", - "remove_association": "Remove association", - "remove_all_associations": "Remove all associations", - "confirm": "Confirm", - "cancel": "Cancel", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Network", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "Protocol", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Save" - }, - "language": { - "title": "Language", - "language": { - "title": "Language", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Jump to..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Account name" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Cancel", - "ok": "Mute" - }, - "shortcut": { - "title": "Keyboard shortcuts", - "ctrl_number": "Switch accounts", - "ctrl_k": "Jump to other timelines", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Show more", - "hide": "Hide", - "sensitive": "Show sensitive content", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mute", - "block": "Block", - "report": "Report", - "delete": "Delete", - "via": "via {{application}}", - "reply": "Reply", - "reblog": "Boost", - "fav": "Favourite", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Refresh" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Follows you", - "doesnt_follow_you": "Doesn't follow you", - "detail": "Detail", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Follow requested", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mute", - "unmute": "Unmute", - "unblock": "Unblock", - "block": "Block", - "toots": "Posts", - "follows": "Follows", - "followers": "Followers" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Reject" - }, - "hashtag": { - "tag_name": "Tag name", - "delete_tag": "Delete tag", - "save_tag": "Save tag" - }, - "search": { - "search": "Search", - "account": "Account", - "tag": "Hashtag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "New List", - "edit": "Edit", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "Search", - "login": "Login" - }, - "authorize": { - "manually_1": "An authorization page has opened in your browser.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Submit" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Failed to load accounts", - "account_remove_error": "Failed to remove the account", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Can not login the same account of the same domain", - "authorize_error": "Failed to authorize", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Failed to follow the user", - "unfollow_error": "Failed to unfollow the user", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Failed to remove the user", - "find_account_error": "Account not found", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Failed to search", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Failed to add user", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Loading...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/id/translation.json b/src/config/locales/id/translation.json deleted file mode 100644 index 22268d60..00000000 --- a/src/config/locales/id/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Tentang Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Layanan", - "hide": "Sembunyikan Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Keluar" - }, - "edit": { - "name": "Sunting", - "undo": "Urungkan", - "redo": "Ulangi", - "cut": "Potong", - "copy": "Salin", - "paste": "Tempel", - "select_all": "Pilih semua" - }, - "view": { - "name": "Tampilan", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Jendela", - "close": "Tutup jendela", - "open": "Buka jendela", - "minimize": "Perkecil", - "jump_to": "Lompat ke" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Tambahkan akun baru" - }, - "side_menu": { - "profile": "Profil", - "show_profile": "Lihat profil", - "edit_profile": "Sunting profil", - "settings": "Account settings", - "collapse": "Ciutkan", - "expand": "Perluas", - "home": "Beranda", - "notification": "Notifications", - "direct": "Pesan langsung", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Linimasa lokal", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Cari", - "lists": "Daftar" - }, - "header_menu": { - "home": "Beranda", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Linimasa lokal", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Cari", - "lists": "Daftar", - "members": "Anggota", - "reload": "Muat Ulang" - }, - "settings": { - "title": "Pengaturan", - "general": { - "title": "Umum", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Publik", - "unlisted": "Tidak terdaftar", - "private": "Privat", - "direct": "Langsung" - }, - "sensitive": { - "description": "Tandai sebagai media sensitif secara bawaan" - } - } - }, - "timeline": { - "title": "Linimasa", - "use_marker": { - "title": "Muat linimasa dari posisi baca terakhir", - "home": "Beranda", - "notifications": "Pemberitahuan" - } - }, - "filters": { - "title": "Filter", - "form": { - "phrase": "Kata kunci atau frasa", - "expire": "Kedaluwarsa setelah", - "context": "Konteks filter", - "irreversible": "Hapus alih-alih sembunyikan", - "whole_word": "Seluruh kata", - "submit": "Kirim", - "cancel": "Batal" - }, - "expires": { - "never": "Tidak Pernah", - "30_minutes": "30 menit", - "1_hour": "1 jam", - "6_hours": "6 jam", - "12_hours": "12 jam", - "1_day": "1 hari", - "1_week": "1 minggu" - }, - "new": { - "title": "Baru" - }, - "edit": { - "title": "Sunting" - }, - "delete": { - "title": "Hapus", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Hapus", - "confirm_cancel": "Batal" - } - } - }, - "preferences": { - "title": "Preferensi", - "general": { - "title": "Umum", - "sounds": { - "title": "Bunyi", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Linimasa", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Pilihan lainnya", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Setel ulang preferensi" - } - }, - "appearance": { - "title": "Penampilan", - "theme_color": "Colour themes", - "theme": { - "system": "Sistem", - "light": "Terang", - "dark": "Gelap", - "solarized_light": "Solarized Light", - "solarized_dark": "Solarized Dark", - "kimbie_dark": "Kimbie Dark", - "custom": "Kustom" - }, - "custom_theme": { - "background_color": "Latar belakang dasar", - "selected_background_color": "Latar belakang fokus", - "global_header_color": "Menu akun", - "side_menu_color": "Menu samping", - "primary_color": "Font utama", - "regular_color": "Font reguler", - "secondary_color": "Font sekunder", - "border_color": "Tepian", - "header_menu_color": "Menu header", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Ukuran font", - "font_family": "Jenis font", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Tampilan nama dan nama pengguna", - "display_name": "Nama tampilan", - "username": "Nama pengguna" - }, - "time_format": { - "title": "Format waktu", - "absolute": "Absolut", - "relative": "Relatif" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Akun", - "connected": "Connected accounts", - "username": "Nama pengguna", - "domain": "Domain", - "association": "Asosiasi", - "order": "Urutan", - "remove_association": "Hapus asosiasi", - "remove_all_associations": "Hapus semua asosiasi", - "confirm": "Konfirmasi", - "cancel": "Batalkan", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Jaringan", - "proxy": { - "title": "Proxy configuration", - "no": "Tidak ada proksi", - "system": "Gunakan proksi sistem", - "manual": "Konfigurasi proksi manual", - "protocol": "Protokol", - "host": "Host proksi", - "port": "Port proksi", - "username": "Nama pengguna proksi", - "password": "Kata sandi proksi", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Simpan" - }, - "language": { - "title": "Bahasa", - "language": { - "title": "Bahasa", - "description": "Pilih bahasa yang ingin kamu gunakan di Whalebird." - }, - "spellchecker": { - "title": "Periksa Ejaan", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Lompat ke..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Nama akun" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Batal", - "ok": "Bisu" - }, - "shortcut": { - "title": "Pintasan keyboard", - "ctrl_number": "Ganti akun", - "ctrl_k": "Lompat ke linimasa lain", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Tutup halaman ini" - }, - "report": { - "title": "Report this user", - "comment": "Komentar tambahan", - "cancel": "Batalkan", - "ok": "Laporkan" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Selengkapnya", - "hide": "Sembunyikan", - "sensitive": "Tampilkan konten sensitif", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Bisukan", - "block": "Blokir", - "report": "Laporkan", - "delete": "Hapus", - "via": "melalui {{application}}", - "reply": "Balas", - "reblog": "Boost", - "fav": "Favorit", - "detail": "Post details", - "bookmark": "Markah", - "pinned": "Pinned post", - "poll": { - "vote": "Beri suara", - "votes_count": "suara", - "until": "hingga {{datetime}}", - "left": "sisa {{datetime}}", - "refresh": "Muat ulang" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Muat lebih status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Mengikuti anda", - "doesnt_follow_you": "Tidak mengikuti anda", - "detail": "Rincian", - "follow": "Ikuti pengguna ini", - "unfollow": "Berhenti ikuti pengguna ini", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Meminta permintaan mengikuti", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Bisukan", - "unmute": "Buka bisu", - "unblock": "Buka blokir", - "block": "Blokir", - "toots": "Posts", - "follows": "Mengikuti", - "followers": "Pengikut" - } - }, - "follow_requests": { - "accept": "Setuju", - "reject": "Tolak" - }, - "hashtag": { - "tag_name": "Nama tag", - "delete_tag": "Hapus tag", - "save_tag": "Simpan tag" - }, - "search": { - "search": "Pencarian", - "account": "Akun", - "tag": "Tagar", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Daftar Baru", - "edit": "Sunting", - "delete": { - "confirm": { - "title": "Konfirmasi", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Hapus", - "cancel": "Batal" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " sini", - "search": "Cari", - "login": "Masuk" - }, - "authorize": { - "manually_1": "Halaman otorisasi telah dibuka di perambanmu.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Mohon masukkan setelah kamu mengotorisasi di perambanmu.", - "submit": "Otorisasi" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Gagal memuat akun", - "account_remove_error": "Gagal menghapus akun", - "preferences_load_error": "Gagal memuat preferensi", - "timeline_fetch_error": "Gagal memuat linimasa", - "notification_fetch_error": "Gagal memuat pemberitahuan", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Gagal menerima permintaan mengikuti", - "follow_request_reject_error": "Gagal menolak permintaan mengikuti", - "attach_error": "Tidak dapat melampirkan berkas", - "authorize_duplicate_error": "Tidak dapat masuk di akun yang sama dari domain yang sama", - "authorize_error": "Gagal otorisasi", - "followers_fetch_error": "Gagal memuat pengikut", - "follows_fetch_error": "Gagal memuat mengikuti", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Gagal memuat pengguna", - "unfollow_error": "Gagal tidak mengikuti pengguna", - "subscribe_error": "Gagal berlangganan ke pengguna", - "unsubscribe_error": "Gagal tidak berlangganan ke pengguna", - "lists_fetch_error": "Gagal memuat daftar", - "list_create_error": "Gagal membuat daftar", - "members_fetch_error": "Gagal memuat anggota", - "remove_user_error": "Gagal menghapus pengguna", - "find_account_error": "Akun tidak ditemukan", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Gagal memfavoritkan", - "unfavourite_error": "Gagal unfavorit", - "bookmark_error": "Gagal memarkah", - "unbookmark_error": "Gagal menghapus markah", - "delete_error": "Failed to delete the post", - "search_error": "Gagal mencari", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Gagal memutakhirkan daftar anggota", - "add_user_error": "Gagal menambahkan pengguna", - "authorize_url_error": "Gagal mendapatkan url otorisasi", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Memuat...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Gagal memutakhirkan filter", - "create_filter_error": "Gagal membuat filter" - }, - "validation": { - "login": { - "require_domain_name": "Nama domain diperlukan", - "domain_format": "Mohon masukkan nama domain" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} sekarang mengikuti anda" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/is/translation.json b/src/config/locales/is/translation.json deleted file mode 100644 index 5a1de1c8..00000000 --- a/src/config/locales/is/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Um Whalebird", - "preferences": "Kjörstillingar", - "shortcuts": "Flýtileiðir á lyklaborði", - "services": "Þjónustur", - "hide": "Fela Whalebird", - "hide_others": "Fela annað", - "show_all": "Sýna allt", - "open": "Opna glugga", - "quit": "Quit" - }, - "edit": { - "name": "Breyta", - "undo": "Afturkalla", - "redo": "Endurtaka", - "cut": "Klippa", - "copy": "Afrita", - "paste": "Líma", - "select_all": "Velja allt" - }, - "view": { - "name": "Skoðun", - "toggle_full_screen": "Víxla skjáfylli af/á" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Gluggi", - "close": "Loka glugga", - "open": "Opna glugga", - "minimize": "Lágmarka", - "jump_to": "Hoppa í" - }, - "help": { - "name": "Hjálp", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Bæta við nýjum aðgangi" - }, - "side_menu": { - "profile": "Notandasnið", - "show_profile": "Birta notandasnið", - "edit_profile": "Breyta notandasniði", - "settings": "Account settings", - "collapse": "Fella saman", - "expand": "Fletta út", - "home": "Heim", - "notification": "Tilkynningar", - "direct": "Bein skilaboð", - "follow_requests": "Beiðnir um að fylgjast með", - "favourite": "Eftirlæti", - "bookmark": "Bókamerki", - "local": "Staðvær tímalína", - "public": "Sameiginleg tímalína", - "hashtag": "Myllumerki", - "search": "Leita", - "lists": "Listar" - }, - "header_menu": { - "home": "Heim", - "notification": "Tilkynningar", - "favourite": "Eftirlæti", - "bookmark": "Bókamerki", - "follow_requests": "Beiðnir um að fylgjast með", - "direct_messages": "Bein skilaboð", - "local": "Staðvær tímalína", - "public": "Sameiginleg tímalína", - "hashtag": "Myllumerki", - "search": "Leita", - "lists": "Listar", - "members": "Meðlimir", - "reload": "Endurlesa" - }, - "settings": { - "title": "Stillingar", - "general": { - "title": "Almennt", - "toot": { - "title": "Færslur", - "visibility": { - "description": "Sjálfgefinn sýnileiki færslna", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Opinbert", - "unlisted": "Óskráð", - "private": "Einka", - "direct": "Beint" - }, - "sensitive": { - "description": "Sjálfgefið merkja myndefni sem viðkvæmt" - } - } - }, - "timeline": { - "title": "Tímalína", - "use_marker": { - "title": "Hlaða inn tímalínunni þar sem síðast var verið að skoða", - "home": "Heim", - "notifications": "Tilkynningar" - } - }, - "filters": { - "title": "Síur", - "form": { - "phrase": "Stikkorð eða setning", - "expire": "Rennur út eftir", - "context": "Sía samhengi", - "irreversible": "Fella niður í staðinn fyrir að fela", - "whole_word": "Heil orð", - "submit": "Senda inn", - "cancel": "Hætta við" - }, - "expires": { - "never": "Aldrei", - "30_minutes": "30 mínútur", - "1_hour": "1 klukkustund", - "6_hours": "6 klukkustundir", - "12_hours": "12 klukkustundir", - "1_day": "1 dagur", - "1_week": "1 vika" - }, - "new": { - "title": "Nýtt" - }, - "edit": { - "title": "Breyta" - }, - "delete": { - "title": "Eyða", - "confirm": "Ertu viss um að þú viljir eyða þessari síu?", - "confirm_ok": "Eyða", - "confirm_cancel": "Hætta við" - } - } - }, - "preferences": { - "title": "Kjörstillingar", - "general": { - "title": "Almennt", - "sounds": { - "title": "Hljóð", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Tímalína", - "description": "Customize how your timelines are displayed", - "cw": "Alltaf fletta út færslum sem eru með aðvörun vegna efnis.", - "nsfw": "Alltaf birta myndefni.", - "hideAllAttachments": "Alltaf fela myndefni." - }, - "other": { - "title": "Aðrir valkostir", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Frumstilla kjörstillingar" - } - }, - "appearance": { - "title": "Útlit", - "theme_color": "Litastef", - "theme": { - "system": "Kerfis", - "light": "Ljóst", - "dark": "Dökkt", - "solarized_light": "SólaríseraðLjóst", - "solarized_dark": "SólaríseraðDökkt", - "kimbie_dark": "KimbieDökkt", - "custom": "Sérsniðið" - }, - "custom_theme": { - "background_color": "Aðalbakgrunnur", - "selected_background_color": "Bakgrunnur við virkni", - "global_header_color": "Valmynd notandaaðgangs", - "side_menu_color": "Hliðarvalmynd", - "primary_color": "Aðalletur", - "regular_color": "Venjulegt letur", - "secondary_color": "Aukaletur", - "border_color": "Jaðar", - "header_menu_color": "Valmynd í haus", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Leturstærð", - "font_family": "Leturgerð", - "toot_padding": "Fylling í kringum færslur", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Birtingarnafn og notandanafn", - "display_name": "Birtingarnafn", - "username": "Notandanafn" - }, - "time_format": { - "title": "Tímasnið", - "absolute": "Algilt", - "relative": "Hlutfallslegt" - } - }, - "notification": { - "title": "Tilkynningar", - "enable": { - "description": "Láta mig vita þegar ég fæ...", - "reply": "Svör", - "reblog": "Endurbirtingar", - "favourite": "Eftirlæti", - "follow": "Nýja fylgjendur", - "reaction": "Emoji reactions", - "follow_request": "Beiðnir um að fylgjast með", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Notandaaðgangur", - "connected": "Connected accounts", - "username": "Notandanafn", - "domain": "Lén", - "association": "Tengsl", - "order": "Röðun", - "remove_association": "Fjarlægja tengsl", - "remove_all_associations": "Fjarlægja öll tengsl", - "confirm": "Staðfesta", - "cancel": "Hætta við", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Netkerfi", - "proxy": { - "title": "Proxy configuration", - "no": "Enginn milliþjónn", - "system": "Nota milliþjón kerfis", - "manual": "Handvirk uppsetning milliþjóns (proxy)\n", - "protocol": "Samskiptamáti", - "host": "Hýsilvél milliþjóns", - "port": "Gátt milliþjóns", - "username": "Notandanafn á milliþjóni", - "password": "Lykilorð á milliþjóni", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Vista" - }, - "language": { - "title": "Tungumál", - "language": { - "title": "Tungumál", - "description": "Veldu tungumálið sem þú vilt nota í Whalebird." - }, - "spellchecker": { - "title": "Yfirfara stafsetningu", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Hoppa á..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Heiti notandaaðgangs" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Hætta við", - "ok": "Þagga niður" - }, - "shortcut": { - "title": "Flýtileiðir á lyklaborði", - "ctrl_number": "Skipta um notandaaðgang", - "ctrl_k": "Hoppa á aðrar tímalínur", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Loka núverandi síðu" - }, - "report": { - "title": "Report this user", - "comment": "Aðrar athugasemdir", - "cancel": "Hætta við", - "ok": "Tilkynna" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Sýna meira", - "hide": "Fela", - "sensitive": "Birta viðkvæmt myndefni", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Þagga niður", - "block": "Útiloka", - "report": "Tilkynna", - "delete": "Eyða", - "via": "með {{application}}", - "reply": "Svara", - "reblog": "Endurbirta", - "fav": "Eftirlæti", - "detail": "Post details", - "bookmark": "Bókamerki", - "pinned": "Pinned post", - "poll": { - "vote": "Greiða atkvæði", - "votes_count": "atkvæði", - "until": "til {{datetime}}", - "left": "{{datetime}} eftir", - "refresh": "Endurlesa" - }, - "open_account": { - "title": "Notandaaðgangur fannst ekki", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Opna", - "cancel": "Hætta við" - } - }, - "status_loading": { - "message": "Hlaða inn fleiri stöðufærslum" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Fylgir þér", - "doesnt_follow_you": "Fylgist ekki með þér", - "detail": "Nánar", - "follow": "Fylgjast með þessum notanda", - "unfollow": "Hætta að fylgjast með þessum notanda", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Beðið um að fylgja", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Þagga niður", - "unmute": "Ekki þagga", - "unblock": "Aflétta útilokun", - "block": "Útiloka", - "toots": "Færslur", - "follows": "Fylgist með", - "followers": "Fylgjendur" - } - }, - "follow_requests": { - "accept": "Samþykkja", - "reject": "Hafna" - }, - "hashtag": { - "tag_name": "Heiti merkis", - "delete_tag": "Eyða merki", - "save_tag": "Vista merki" - }, - "search": { - "search": "Leita", - "account": "Notandaaðgangur", - "tag": "Myllumerki", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Nýr listi", - "edit": "Breyta", - "delete": { - "confirm": { - "title": "Staðfesta", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Eyða", - "cancel": "Hætta við" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " hér", - "search": "Leita", - "login": "Innskráning" - }, - "authorize": { - "manually_1": "Auðkenningarsíða hefur opnast í vafranum þínum.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Sendu inn eftir að þú hefur auðkennt þig í vafranum þínum.", - "submit": "Senda inn" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Mistókst að hlaða inn notendaaðgöngum", - "account_remove_error": "Mistókst að fjarlægja notandaaðganginn", - "preferences_load_error": "Mistókst að hlaða inn kjörstillingum", - "timeline_fetch_error": "Mistókst að sækja tímalínu", - "notification_fetch_error": "Mistókst að sækja tilkynningar", - "favourite_fetch_error": "Mistókst að sækja eftirlæti", - "bookmark_fetch_error": "Mistókst að sækja bókamerki", - "follow_request_accept_error": "Mistókst að samþykkja beiðnina", - "follow_request_reject_error": "Mistókst að hafna beiðninni", - "attach_error": "Gat ekki hengt við skrána", - "authorize_duplicate_error": "Get ekki skráð inn sama aðgang af sama léni", - "authorize_error": "Tókst ekki að auðkenna", - "followers_fetch_error": "Mistókst að sækja fylgjendur", - "follows_fetch_error": "Mistókst að sækja þá sem fylgst er með", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Mistókst að fylgjast með notandanum", - "unfollow_error": "Mistókst að hætta að fylgjast með notandanum", - "subscribe_error": "Mistókst að gerast áskrifandi að þessum notanda", - "unsubscribe_error": "Mistókst að hætta sem áskrifandi að þessum notanda", - "lists_fetch_error": "Mistókst að sækja lista", - "list_create_error": "Mistókst að búa til lista", - "members_fetch_error": "Mistókst að sækja meðlimi", - "remove_user_error": "Mistókst að fjarlægja notandann", - "find_account_error": "Notandaaðgangur fannst ekki", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Mistókst að setja í eftirlæti", - "unfavourite_error": "FMistókst að taka úr eftirlætum", - "bookmark_error": "Mistókst að vista bókamerki", - "unbookmark_error": "Mistókst að fjarlægja bókamerki", - "delete_error": "Failed to delete the post", - "search_error": "Tókst ekki að leita", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Mistókst að uppfæra lista yfir meðlimi", - "add_user_error": "Mistókst að bæta við notanda", - "authorize_url_error": "Tókst ekki að fá auðkenningarslóð", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Hleð inn...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Mistókst að uppfæra síuna", - "create_filter_error": "Mistókst að útbúa síuna" - }, - "validation": { - "login": { - "require_domain_name": "Heiti léns er nauðsynlegt", - "domain_format": "Settu einungis inn heiti lénsins" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "Nýtt eftirlæti", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "Nýr fylgjandi", - "body": "{{username}} er núna að fylgjast með þér" - }, - "follow_request": { - "title": "Ný beiðni um að fylgjast með", - "body": "Fékkst fylgjendabeiðni frá {{username}}" - }, - "reblog": { - "title": "Ný endurbirting", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Hætta við", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Bæta við myndum", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/it/translation.json b/src/config/locales/it/translation.json deleted file mode 100644 index 9fe1382a..00000000 --- a/src/config/locales/it/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "A Proposito di Whalebird", - "preferences": "Preferenze", - "shortcuts": "Scorciatoie da tastiera", - "services": "Servizi", - "hide": "Nascondi Whalebird", - "hide_others": "Nascondi altri", - "show_all": "Mostra tutto", - "open": "Apri finestra", - "quit": "Esci" - }, - "edit": { - "name": "Modifica", - "undo": "Annulla", - "redo": "Ripeti", - "cut": "Taglia", - "copy": "Copia", - "paste": "Incolla", - "select_all": "Seleziona Tutto" - }, - "view": { - "name": "Visualizza", - "toggle_full_screen": "Attiva/disattiva schermo intero" - }, - "window": { - "always_show_menu_bar": "Mostra sempre la barra dei menu", - "name": "Finestra", - "close": "Chiudi Finestra", - "open": "Apri Finestra", - "minimize": "Minimizza", - "jump_to": "Salta a" - }, - "help": { - "name": "Aiuto", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Aggiungi nuovo account" - }, - "side_menu": { - "profile": "Profilo", - "show_profile": "Mostra profilo", - "edit_profile": "Modifica profilo", - "settings": "Impostazioni account", - "collapse": "Riduci", - "expand": "Espandi", - "home": "Pagina Iniziale", - "notification": "Notifiche", - "direct": "Messaggi diretti", - "follow_requests": "Richieste di seguirti", - "favourite": "Preferiti", - "bookmark": "Segnalibri", - "local": "Timeline locale", - "public": "Timeline federata", - "hashtag": "Hashtag", - "search": "Cerca", - "lists": "Liste" - }, - "header_menu": { - "home": "Pagina Iniziale", - "notification": "Notifiche", - "favourite": "Preferiti", - "bookmark": "Segnalibri", - "follow_requests": "Richieste di seguirti", - "direct_messages": "Messaggi diretti", - "local": "Timeline locale", - "public": "Timeline federata", - "hashtag": "Hashtag", - "search": "Cerca", - "lists": "Liste", - "members": "Membri", - "reload": "Ricarica" - }, - "settings": { - "title": "Impostazioni", - "general": { - "title": "Generali", - "toot": { - "title": "Post", - "visibility": { - "description": "Visibilità predefinita del post", - "notice": "Questa impostazione si applica solo ai nuovi post; le risposte seguiranno le impostazioni di visibilità del post principale.", - "public": "Pubblico", - "unlisted": "Non elencato", - "private": "Privato", - "direct": "Diretto" - }, - "sensitive": { - "description": "Contrassegna i contenuti multimediali come sensibili per impostazione predefinita" - } - } - }, - "timeline": { - "title": "Cronologia", - "use_marker": { - "title": "Carica la timeline dall'ultima posizione di lettura", - "home": "Pagina Iniziale", - "notifications": "Notifiche" - } - }, - "filters": { - "title": "Filtri", - "form": { - "phrase": "Parola chiave o frase", - "expire": "Scade dopo", - "context": "Contesti del filtro", - "irreversible": "Ignorare invece di nascondere", - "whole_word": "Parola intera", - "submit": "Invia", - "cancel": "Annulla" - }, - "expires": { - "never": "Mai", - "30_minutes": "30 minuti", - "1_hour": "1 ora", - "6_hours": "6 ore", - "12_hours": "12 ore", - "1_day": "1 giorno", - "1_week": "1 settimana" - }, - "new": { - "title": "Nuovo" - }, - "edit": { - "title": "Modifica" - }, - "delete": { - "title": "Elimina", - "confirm": "Sei sicuro di voler eliminare questo filtro?", - "confirm_ok": "Elimina", - "confirm_cancel": "Annulla" - } - } - }, - "preferences": { - "title": "Preferenze", - "general": { - "title": "Generali", - "sounds": { - "title": "Suoni", - "description": "Riproduci suoni quando", - "fav_rb": "Preferisci o potenzi un post", - "toot": "Crei un post" - }, - "timeline": { - "title": "Cronologia", - "description": "Personalizza la visualizzazione delle tue timeline", - "cw": "Espandere sempre i post contrassegnati da avvisi di contenuto.", - "nsfw": "Visualizza sempre i contenuti multimediali.", - "hideAllAttachments": "Nascondi sempre i contenuti multimediali." - }, - "other": { - "title": "Altre opzioni", - "launch": "Esegui Whalebird all'avvio", - "hideOnLaunch": "Nascondi la finestra Whalebird all'avvio" - }, - "reset": { - "button": "Ripristina preferenze" - } - }, - "appearance": { - "title": "Aspetto", - "theme_color": "Temi cromatici", - "theme": { - "system": "Sistema", - "light": "Chiaro", - "dark": "Scuro", - "solarized_light": "Chiaro Solarizzato", - "solarized_dark": "Scuro Solarizzato", - "kimbie_dark": "KimbieDark", - "custom": "Personalizzato" - }, - "custom_theme": { - "background_color": "Sfondo di base", - "selected_background_color": "Sfondo focalizzato", - "global_header_color": "Menu account", - "side_menu_color": "Menu laterale", - "primary_color": "Carattere primario", - "regular_color": "Carattere regolare", - "secondary_color": "Carattere secondario", - "border_color": "Bordo", - "header_menu_color": "Menu di intestazione", - "wrapper_mask_color": "Wrapper finestra di dialogo" - }, - "font_size": "Dimensione carattere", - "font_family": "Tipo di carattere", - "toot_padding": "Padding attorno ai post", - "display_style": { - "title": "Stile visualizzazione nome utente", - "display_name_and_username": "Visualizza nome e nome utente", - "display_name": "Visualizza nome", - "username": "Nome utente" - }, - "time_format": { - "title": "Formato orario", - "absolute": "Assoluto", - "relative": "Relativo" - } - }, - "notification": { - "title": "Notifiche", - "enable": { - "description": "Avvisami quando ricevo...", - "reply": "Risposte", - "reblog": "Potenziamenti", - "favourite": "Preferiti", - "follow": "Nuovi follower", - "reaction": "Reazioni emoji", - "follow_request": "Richieste di seguirti", - "status": "Notifiche di stato", - "poll_vote": "Voti del sondaggio", - "poll_expired": "Conclusione di un sondaggio" - } - }, - "account": { - "title": "Account", - "connected": "Account collegati", - "username": "Nome utente", - "domain": "Dominio", - "association": "Associazione", - "order": "Ordina", - "remove_association": "Rimuovi associazione", - "remove_all_associations": "Rimuovi tutte le associazioni", - "confirm": "Conferma", - "cancel": "Annulla", - "confirm_message": "Sei sicuro di voler rimuovere tutte le associazioni?" - }, - "network": { - "title": "Rete", - "proxy": { - "title": "Configurazione proxy", - "no": "Nessun proxy", - "system": "Usa proxy di sistema", - "manual": "Configurazione proxy manuale", - "protocol": "Protocollo", - "host": "Host", - "port": "Porta", - "username": "Nome utente", - "password": "Password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Salva" - }, - "language": { - "title": "Lingua", - "language": { - "title": "Lingua", - "description": "Scegli la lingua che vuoi utilizzare con Whalebird." - }, - "spellchecker": { - "title": "Controllo ortografico", - "enabled": "Abilita il controllo ortografico" - } - } - }, - "modals": { - "jump": { - "jump_to": "Salta a..." - }, - "add_list_member": { - "title": "Aggiungi membro alla Lista", - "account_name": "Nome utente" - }, - "list_membership": { - "title": "Elenco membri" - }, - "mute_confirm": { - "title": "Silenzia utente", - "body": "Sei sicuro di voler disattivare le notifiche da questo utente?", - "cancel": "Annulla", - "ok": "Silenzia" - }, - "shortcut": { - "title": "Scorciatoie da Tastiera", - "ctrl_number": "Passa ad un altro account", - "ctrl_k": "Salta ad altre cronologie", - "ctrl_enter": "Pubblica il post", - "ctrl_r": "Aggiorna la timeline corrente", - "j": "Seleziona il post successivo", - "k": "Seleziona il post precedente", - "r": "Rispondi al post selezionato", - "b": "Potenzia il post selezionato", - "f": "Preferisci il post selezionato", - "o": "Visualizza i dettagli del post selezionato", - "p": "Mostra il profilo dell'autore del post selezionato", - "i": "Apre le immagini del post selezionato", - "x": "Mostra/nascondi post con avviso di contenuto", - "?": "Mostra questa finestra di dialogo", - "esc": "Chiudi la pagina corrente" - }, - "report": { - "title": "Segnala questo utente", - "comment": "Commenti aggiuntivi", - "cancel": "Annulla", - "ok": "Segnala" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Mostra tutto", - "hide": "Nascondi", - "sensitive": "Mostra contenuti sensibili", - "view_toot_detail": "Visualizza dettagli post", - "open_in_browser": "Apri nel browser", - "copy_link_to_toot": "Copia link del post", - "mute": "Silenzia", - "block": "Blocca", - "report": "Segnala", - "delete": "Cancella", - "via": "tramite {{application}}", - "reply": "Rispondi", - "reblog": "Potenzia", - "fav": "Preferisci", - "detail": "Dettagli post", - "bookmark": "Segnalibro", - "pinned": "Post fissato", - "poll": { - "vote": "Vota", - "votes_count": "voti", - "until": "fino a {{datetime}}", - "left": "{{datetime}} mancanti", - "refresh": "Aggiorna" - }, - "open_account": { - "title": "Account non trovato", - "text": "Impossibili a trovare {{account}} sul server. Vuoi aprire l'account in un browser?", - "ok": "Apri", - "cancel": "Annulla" - } - }, - "status_loading": { - "message": "Carica più stati" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Ti segue", - "doesnt_follow_you": "Non ti segue", - "detail": "Dettagli", - "follow": "Segui questo utente", - "unfollow": "Smetti di seguire questo utente", - "subscribe": "Iscriviti a questo utente", - "unsubscribe": "Annulla la sottoscrizione a questo utente", - "follow_requested": "Richieste di seguirti", - "open_in_browser": "Apri nel browser", - "manage_list_memberships": "Gestisci le iscrizioni alla lista", - "mute": "Silenzia", - "unmute": "Non silenziare", - "unblock": "Sblocca", - "block": "Blocca", - "toots": "Post", - "follows": "Seguiti", - "followers": "Seguaci" - } - }, - "follow_requests": { - "accept": "Accetta", - "reject": "Rifiuta" - }, - "hashtag": { - "tag_name": "Cerca tag", - "delete_tag": "Cancella tag", - "save_tag": "Salva tag" - }, - "search": { - "search": "Cerca", - "account": "Account", - "tag": "Hashtag", - "keyword": "Parola chiave", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Nuova Lista", - "edit": "Modifica", - "delete": { - "confirm": { - "title": "Conferma", - "message": "Questo elenco verrà eliminato definitivamente. Sei sicuro di voler continuare?", - "ok": "Elimina", - "cancel": "Annulla" - } - } - } - }, - "login": { - "domain_name_label": "Benvenuto in Whalebird! Inserisci il dominio del server per accedere ad un account.", - "proxy_info": "Se è necessario utilizzare un server proxy, configuralo", - "proxy_here": "qui", - "search": "Cerca", - "login": "Accesso" - }, - "authorize": { - "manually_1": "Una pagina di autorizzazione è stata aperta nel tuo browser.", - "manually_2": "Se non è ancora stato aperto, vai manualmente al seguente URL:", - "code_label": "Inserisci il codice di autorizzazione:", - "misskey_label": "Si prega di inviare dopo l'autorizzazione nel browser.", - "submit": "Sottoscrivi" - }, - "receive_drop": { - "drop_message": "Trascina qui per allegare un file" - }, - "message": { - "account_load_error": "Impossibile caricare l'account", - "account_remove_error": "Impossibile rimuovere l'account", - "preferences_load_error": "Impossibile caricare le preferenze", - "timeline_fetch_error": "Impossibile recuperare la cronologia", - "notification_fetch_error": "Impossibile recuperare le notifiche", - "favourite_fetch_error": "Recupero dei preferiti non riuscito", - "bookmark_fetch_error": "Recupero dei segnalibri non riuscito", - "follow_request_accept_error": "Impossibile accettare la richiesta", - "follow_request_reject_error": "Impossibile rifiutare la richiesta", - "attach_error": "Non è stato possibile allegare il file", - "authorize_duplicate_error": "Non è possibile accedere allo stesso account dello stesso dominio", - "authorize_error": "Autorizzazione fallita", - "followers_fetch_error": "Impossibile recuperare l'elenco dei seguaci", - "follows_fetch_error": "Impossibile recuperare l'elenco dei seguiti", - "toot_fetch_error": "Recupero dei dettagli del post non riuscito", - "follow_error": "Impossibile seguire l'utente", - "unfollow_error": "Impossibile smettere di seguire l'utente", - "subscribe_error": "Impossibile iscriversi all'utente", - "unsubscribe_error": "Impossibile annullare la sottoscrizione all'utente", - "lists_fetch_error": "Impossibile recuperale le liste", - "list_create_error": "Impossibile creare la lista", - "members_fetch_error": "Impossibile recuperare la lista dei membri", - "remove_user_error": "Impossibile rimuovere l'utente", - "find_account_error": "Account non trovato", - "reblog_error": "Impossibile potenziare", - "unreblog_error": "Impossibile depotenziare", - "favourite_error": "Impossibile aggiungere ai preferiti", - "unfavourite_error": "Impossibile rimuovere dai preferiti", - "bookmark_error": "Aggiunta del segnalibro fallita", - "unbookmark_error": "Rimozione del segnalibro fallita", - "delete_error": "Impossibile eliminare il post", - "search_error": "Impossibile eseguire la ricerca", - "toot_error": "Impossibile creare il post", - "update_list_memberships_error": "Impossibile aggiornare le iscrizioni alla lista", - "add_user_error": "Impossibile aggiungere un utente", - "authorize_url_error": "Impossibile ottenere l'URL di autorizzazione", - "domain_confirmed": "{{domain}} è confermato, per favore accedi", - "domain_doesnt_exist": "Impossibile connettersi a {{domain}}, assicurarsi che l'URL del server sia valido o corretto.", - "loading": "Caricamento...", - "language_not_support_spellchecker_error": "Questa lingua non è supportata dal correttore ortografico", - "update_filter_error": "Aggiornamento del filtro non riuscito", - "create_filter_error": "Creazione del filtro non riuscita" - }, - "validation": { - "login": { - "require_domain_name": "È richiesto un nome dominio", - "domain_format": "Per fovore, inserire solo il nome dominio" - }, - "compose": { - "toot_length": "La lunghezza del post deve essere compresa tra {{min}} e {{max}}", - "attach_length": "È possibile allegare solo fino a {{max}} immagine", - "attach_length_plural": "È possibile allegare solo fino a {{max}} immagini", - "attach_image": "È possibile allegare solo immagini o video", - "poll_invalid": "Scelte sondaggio non valide" - } - }, - "notification": { - "favourite": { - "title": "Nuovo preferito", - "body": "{{username}} ha preferito il tuo post" - }, - "follow": { - "title": "Nuovo seguace", - "body": "{{username}} ha iniziato a seguirti" - }, - "follow_request": { - "title": "Nuova richiesta di seguirti", - "body": "Ricevuta una richiesta di seguirti da {{username}}" - }, - "reblog": { - "title": "Nuovo potenziamento", - "body": "{{username}} ha potenziato il tuo post" - }, - "quote": { - "title": "Nuova citazione", - "body": "{{username}} ha citato il tuo post" - }, - "reaction": { - "title": "Nuova reazione", - "body": "{{username}} ha reagito al tuo post" - }, - "status": { - "title": "Nuovo post", - "body": "{{username}} ha creato un nuovo post" - }, - "poll_vote": { - "title": "Nuovo voto al sondaggio", - "body": "{{username}} ha votato il tuo sondaggio" - }, - "poll_expired": { - "title": "Sondaggio concluso", - "body": "Il sondaggio di {{username}} è concluso" - } - }, - "compose": { - "title": "Nuovo post", - "cw": "Scrivi qui il tuo avviso", - "status": "A cosa stai pensando?", - "cancel": "Annulla", - "toot": "Posta", - "description": "Aggiungi testo alternativo per questo contenuto multimediale", - "footer": { - "add_image": "Aggiungi immagini", - "poll": "Aggiungi un sondaggio", - "change_visibility": "Modifica visibilità", - "change_sensitive": "Contrassegnare il contenuto multimediale come sensibile", - "add_cw": "Aggiungi avvisi di contenuto", - "pined_hashtag": "Hashtag fissato" - }, - "poll": { - "add_choice": "Aggiungi un'opzione", - "expires": { - "5_minutes": "5 minuti", - "30_minutes": "30 minuti", - "1_hour": "1 ora", - "6_hours": "6 ore", - "1_day": "1 giorno", - "3_days": "3 giorni", - "7_days": "7 giorni" - } - } - } -} diff --git a/src/config/locales/ja/translation.json b/src/config/locales/ja/translation.json deleted file mode 100644 index c9e97ac6..00000000 --- a/src/config/locales/ja/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Whalebirdについて", - "preferences": "設定", - "shortcuts": "ショートカットキー", - "services": "サービス", - "hide": "Whalebirdを隠す", - "hide_others": "ほかを隠す", - "show_all": "すべてを表示", - "open": "ウィンドウを開く", - "quit": "終了" - }, - "edit": { - "name": "編集", - "undo": "取り消す", - "redo": "やり直す", - "cut": "切り取り", - "copy": "コピー", - "paste": "ペースト", - "select_all": "すべてを選択" - }, - "view": { - "name": "表示", - "toggle_full_screen": "フルスクリーンの切り替え" - }, - "window": { - "always_show_menu_bar": "メニューを常に表示する", - "name": "ウィンドウ", - "close": "ウィンドウを閉じる", - "open": "ウィンドウを表示", - "minimize": "縮小", - "jump_to": "移動" - }, - "help": { - "name": "ヘルプ", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "アカウントを追加" - }, - "side_menu": { - "profile": "プロフィール", - "show_profile": "プロフィール確認", - "edit_profile": "プロフィール編集", - "settings": "アカウント設定", - "collapse": "縮小", - "expand": "拡大", - "home": "ホーム", - "notification": "通知", - "direct": "DM", - "follow_requests": "フォロー申請", - "favourite": "お気に入り", - "bookmark": "ブックマーク", - "local": "ローカル", - "public": "連合タイムライン", - "hashtag": "ハッシュタグ", - "search": "検索", - "lists": "リスト" - }, - "header_menu": { - "home": "ホーム", - "notification": "通知", - "favourite": "お気に入り", - "bookmark": "ブックマーク", - "follow_requests": "フォロー申請", - "direct_messages": "ダイレクトメッセージ", - "local": "ローカルタイムライン", - "public": "連合タイムライン", - "hashtag": "ハッシュタグ", - "search": "検索", - "lists": "リスト", - "members": "メンバー", - "reload": "再読み込み" - }, - "settings": { - "title": "設定", - "general": { - "title": "一般", - "toot": { - "title": "投稿", - "visibility": { - "description": "投稿の公開設定を変更する", - "notice": "この設定は新しい投稿にのみ適用され、返信は元の投稿の公開設定に従います。", - "public": "公開", - "unlisted": "未収載", - "private": "フォロワー限定", - "direct": "ダイレクト" - }, - "sensitive": { - "description": "メディアを常に閲覧注意として投稿する" - } - } - }, - "timeline": { - "title": "タイムライン", - "use_marker": { - "title": "前回読んだ位置からタイムラインを読み込む", - "home": "ホーム", - "notifications": "通知" - } - }, - "filters": { - "title": "フィルター", - "form": { - "phrase": "キーワードまたはフレーズ", - "expire": "有効期限", - "context": "除外対象", - "irreversible": "非表示ではなく除外", - "whole_word": "単語全体にマッチ", - "submit": "送信", - "cancel": "キャンセル" - }, - "expires": { - "never": "なし", - "30_minutes": "30分後", - "1_hour": "1時間後", - "6_hours": "6時間後", - "12_hours": "12時間後", - "1_day": "1日後", - "1_week": "1週間後" - }, - "new": { - "title": "新規作成" - }, - "edit": { - "title": "編集" - }, - "delete": { - "title": "削除", - "confirm": "このフィルターを本当に削除しますか?", - "confirm_ok": "削除する", - "confirm_cancel": "キャンセル" - } - } - }, - "preferences": { - "title": "設定", - "general": { - "title": "一般", - "sounds": { - "title": "効果音", - "description": "操作時の効果音を設定", - "fav_rb": "お気に入り、ブースト時", - "toot": "投稿時" - }, - "timeline": { - "title": "タイムライン", - "description": "タイムラインをカスタマイズ", - "cw": "閲覧注意の投稿を常に展開する", - "nsfw": "すべてのメディアを常に表示する", - "hideAllAttachments": "全てのメディアを常に隠す" - }, - "other": { - "title": "その他", - "launch": "ログイン時にアプリを起動する", - "hideOnLaunch": "起動時にウィンドウを隠す" - }, - "reset": { - "button": "設定をリセット" - } - }, - "appearance": { - "title": "外観", - "theme_color": "テーマカラー", - "theme": { - "system": "システム", - "light": "標準", - "dark": "ダーク", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "カスタム" - }, - "custom_theme": { - "background_color": "背景色", - "selected_background_color": "フォーカス時", - "global_header_color": "アカウントメニュー", - "side_menu_color": "サイドメニュー", - "primary_color": "文字色1", - "regular_color": "文字色2", - "secondary_color": "文字色3", - "border_color": "ボーダー", - "header_menu_color": "ヘッダーメニュー", - "wrapper_mask_color": "モーダル背景" - }, - "font_size": "フォントサイズ", - "font_family": "フォント", - "toot_padding": "投稿周りの空白", - "display_style": { - "title": "ユーザー名の表示形式", - "display_name_and_username": "表示名+ユーザー名", - "display_name": "表示名", - "username": "ユーザー名" - }, - "time_format": { - "title": "時間の表示形式", - "absolute": "絶対表示", - "relative": "相対表示" - } - }, - "notification": { - "title": "通知", - "enable": { - "description": "通知を受け取るかどうかを設定", - "reply": "返信があるとき", - "reblog": "ブーストされたとき", - "favourite": "お気に入りされたとき", - "follow": "フォローされたとき", - "reaction": "絵文字リアクションを受け取ったとき", - "follow_request": "フォロー申請を受け取ったとき", - "status": "投稿の通知を受け取ったとき", - "poll_vote": "アンケートに投票されたとき", - "poll_expired": "アンケートが終了したとき" - } - }, - "account": { - "title": "アカウント", - "connected": "登録済みアカウント", - "username": "ユーザー名", - "domain": "ドメイン名", - "association": "連携", - "order": "順序", - "remove_association": "連携を削除", - "remove_all_associations": "全ての連携を削除", - "confirm": "確認", - "cancel": "キャンセル", - "confirm_message": "本当に全ての連携を削除しますか?" - }, - "network": { - "title": "ネットワーク", - "proxy": { - "title": "プロキシー設定", - "no": "プロキシーを使わない", - "system": "OSのプロキシー設定を利用する", - "manual": "プロキシーを手動で設定する", - "protocol": "プロトコル", - "host": "ホスト", - "port": "ポート", - "username": "ユーザー名", - "password": "パスワード", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "保存" - }, - "language": { - "title": "言語", - "language": { - "title": "言語", - "description": "Whalebirdの表示言語を選択" - }, - "spellchecker": { - "title": "スペルチェック", - "enabled": "スペルチェッカーを有効にする" - } - } - }, - "modals": { - "jump": { - "jump_to": "移動..." - }, - "add_list_member": { - "title": "リストに追加", - "account_name": "アカウント名" - }, - "list_membership": { - "title": "リストメンバー管理" - }, - "mute_confirm": { - "title": "本当にミュートしますか?", - "body": "このユーザーからの通知をミュートしますか?", - "cancel": "キャンセル", - "ok": "ミュートする" - }, - "shortcut": { - "title": "キーボードショートカット", - "ctrl_number": "アカウントの切り替え", - "ctrl_k": "タイムラインの移動", - "ctrl_enter": "投稿を送信", - "ctrl_r": "タイムラインを更新", - "j": "次の投稿を選択", - "k": "前の投稿を選択", - "r": "選択した投稿に返信", - "b": "選択した投稿をブースト", - "f": "選択した投稿をお気に入り", - "o": "選択した投稿の詳細を表示", - "p": "選択した投稿者のプロフィールを表示", - "i": "選択した投稿の画像を開く", - "x": "CWとNSFWの表示切り替え", - "?": "このヘルプを表示", - "esc": "ページを閉じる" - }, - "report": { - "title": "このユーザを報告する", - "comment": "追加のコメント", - "cancel": "キャンセル", - "ok": "報告" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "続きを見る", - "hide": "隠す", - "sensitive": "閲覧注意コンテンツを表示する", - "view_toot_detail": "詳細", - "open_in_browser": "ブラウザで開く", - "copy_link_to_toot": "コピー", - "mute": "ミュート", - "block": "ブロック", - "report": "通報", - "delete": "削除する", - "via": "{{application}} より", - "reply": "返信", - "reblog": "ブースト", - "fav": "お気に入り", - "detail": "詳細", - "bookmark": "ブックマーク", - "pinned": "固定された投稿", - "poll": { - "vote": "投票", - "votes_count": "投票", - "until": "{{datetime}} まで", - "left": "{{datetime}} まで", - "refresh": "更新" - }, - "open_account": { - "title": "アカウントが見つかりません", - "text": "サーバー上で {{account}} が見つかりませんでした。代わりにブラウザでアカウントを開きますか?", - "ok": "開く", - "cancel": "キャンセル" - } - }, - "status_loading": { - "message": "さらにステータスを読み込む" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "フォローされています", - "doesnt_follow_you": "フォローされていません", - "detail": "詳細", - "follow": "このユーザーをフォロー", - "unfollow": "このユーザーのフォローを解除", - "subscribe": "このユーザの投稿時に通知", - "unsubscribe": "このユーザの投稿通知を解除", - "follow_requested": "フォロー承認待ち", - "open_in_browser": "ブラウザで開く", - "manage_list_memberships": "リストの管理", - "mute": "ミュート", - "unmute": "ミュートを解除", - "unblock": "ブロックを解除", - "block": "ブロック", - "toots": "投稿", - "follows": "フォロー", - "followers": "フォロワー" - } - }, - "follow_requests": { - "accept": "承認", - "reject": "却下" - }, - "hashtag": { - "tag_name": "タグ名", - "delete_tag": "タグを削除", - "save_tag": "タグを保存" - }, - "search": { - "search": "検索", - "account": "アカウント", - "tag": "ハッシュタグ", - "keyword": "キーワード", - "toot": "投稿" - }, - "lists": { - "index": { - "new_list": "新規リスト", - "edit": "編集", - "delete": { - "confirm": { - "title": "確認", - "message": "この操作は元に戻すことができません。このリストを完全に削除しますか?", - "ok": "削除する", - "cancel": "キャンセル" - } - } - } - }, - "login": { - "domain_name_label": "Whalebirdへようこそ! サーバーのドメイン名を入力してアカウントにログインします。", - "proxy_info": "もしプロキシーを利用する場合は", - "proxy_here": "こちら.", - "search": "検索", - "login": "ログイン" - }, - "authorize": { - "manually_1": "認証用ページが自動的に開きます.", - "manually_2": "もし開かない場合は、以下のURLから手動で認証用ページを開いてください。", - "code_label": "ブラウザに表示された認証コードを貼り付けてください", - "misskey_label": "ブラウザでこのアプリを許可した後に認証ボタンを押してください", - "submit": "認証" - }, - "receive_drop": { - "drop_message": "ファイルをドロップしてください" - }, - "message": { - "account_load_error": "アカウントの読み込みに失敗しました", - "account_remove_error": "アカウントの削除に失敗しました", - "preferences_load_error": "設定の読み込みに失敗しました", - "timeline_fetch_error": "タイムラインの読み込みに失敗しました", - "notification_fetch_error": "通知の読み込みに失敗しました", - "favourite_fetch_error": "お気に入りの読み込みに失敗しました", - "bookmark_fetch_error": "ブークマークの読み込みに失敗しました", - "follow_request_accept_error": "フォロー申請の承認に失敗しました", - "follow_request_reject_error": "フォロー申請の却下に失敗しました", - "attach_error": "ファイルを添付できませんでした", - "authorize_duplicate_error": "同一ドメイン同一アカウントではログインできません", - "authorize_error": "認証に失敗しました", - "followers_fetch_error": "フォロワーの取得に失敗しました", - "follows_fetch_error": "フォローの取得に失敗しました", - "toot_fetch_error": "投稿の詳細の取得に失敗しました", - "follow_error": "フォローに失敗しました", - "unfollow_error": "フォロー解除に失敗しました", - "subscribe_error": "通知設定に失敗しました", - "unsubscribe_error": "通知解除に失敗しました", - "lists_fetch_error": "リストの読み込みに失敗しました", - "list_create_error": "リストの作成に失敗しました", - "members_fetch_error": "メンバーの取得に失敗しました", - "remove_user_error": "ユーザの削除に失敗しました", - "find_account_error": "アカウントが見つかりません", - "reblog_error": "ブーストに失敗しました", - "unreblog_error": "ブーストの取り消しに失敗しました", - "favourite_error": "お気に入りできませんでした", - "unfavourite_error": "お気に入り解除に失敗しました", - "bookmark_error": "ブックマークの追加に失敗しました", - "unbookmark_error": "ブックマークの削除に失敗しました", - "delete_error": "投稿の削除に失敗しました", - "search_error": "検索に失敗しました", - "toot_error": "投稿に失敗しました", - "update_list_memberships_error": "リストメンバーの更新に失敗しました", - "add_user_error": "メンバー追加に失敗しました", - "authorize_url_error": "認証用URLの取得に失敗しました", - "domain_confirmed": "{{domain}} が確認できました、ログインしてください", - "domain_doesnt_exist": "{{domain}} への接続に失敗しました。サーバーの URL が正しいか正しいか確認してください。", - "loading": "読み込み中...", - "language_not_support_spellchecker_error": "この言語はスペルチェッカーではサポートされていません", - "update_filter_error": "フィルターの更新に失敗しました", - "create_filter_error": "フィルターの作成に失敗しました" - }, - "validation": { - "login": { - "require_domain_name": "ドメイン名は必須です", - "domain_format": "ドメイン名のみを入力してください" - }, - "compose": { - "toot_length": "投稿の長さは {{min}} から {{max}} の間でなければなりません", - "attach_length": "添付ファイルは {{max}} 個までです", - "attach_length_plural": "添付ファイルは {{max}} 個までです", - "attach_image": "画像または動画のみ添付できます", - "poll_invalid": "アンケートに不正な選択肢が含まれています" - } - }, - "notification": { - "favourite": { - "title": "お気に入り", - "body": "{{username}} にお気に入り登録されました" - }, - "follow": { - "title": "フォロー", - "body": "{{username}} さんにフォローされました" - }, - "follow_request": { - "title": "フォロー申請", - "body": "{{username}} からフォロー申請を受け取りました" - }, - "reblog": { - "title": "ブースト", - "body": "{{username}} があなたの投稿をブーストしました" - }, - "quote": { - "title": "引用", - "body": "{{username}} があなたの投稿を引用しました" - }, - "reaction": { - "title": "リアクション", - "body": "{{username}} があなたの投稿にリアクションしました" - }, - "status": { - "title": "投稿", - "body": "{{username}} が新しい投稿を行いました" - }, - "poll_vote": { - "title": "アンケート投票", - "body": "{{username}} があなたのアンケートに投票しました" - }, - "poll_expired": { - "title": "アンケート終了", - "body": "{{username}} のアンケートが終了しました" - } - }, - "compose": { - "title": "投稿", - "cw": "ここに警告を書いてください", - "status": "今なにしてる?", - "cancel": "キャンセル", - "toot": "投稿", - "description": "メディアの説明を追加", - "footer": { - "add_image": "画像を添付", - "poll": "アンケートを追加", - "change_visibility": "公開範囲を変更", - "change_sensitive": "メディアを閲覧注意にする", - "add_cw": "コンテンツ警告を追加", - "pined_hashtag": "ハッシュタグを固定する" - }, - "poll": { - "add_choice": "選択肢を追加", - "expires": { - "5_minutes": "5分後", - "30_minutes": "30分後", - "1_hour": "1時間後", - "6_hours": "6時間後", - "1_day": "1日後", - "3_days": "3日後", - "7_days": "7日後" - } - } - } -} diff --git a/src/config/locales/ko/translation.json b/src/config/locales/ko/translation.json deleted file mode 100644 index d5f217d8..00000000 --- a/src/config/locales/ko/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Whalebird 에 대하여", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "서비스", - "hide": "Whalebird 숨기기", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "나가기" - }, - "edit": { - "name": "수정", - "undo": "되돌리기", - "redo": "다시 실행", - "cut": "잘라내기", - "copy": "복사", - "paste": "붙여넣기", - "select_all": "모두 선택" - }, - "view": { - "name": "보이기", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "창", - "close": "창 닫기", - "open": "창 열기", - "minimize": "최소화", - "jump_to": "이동" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "계정 추가" - }, - "side_menu": { - "profile": "프로필", - "show_profile": "프로필 보기", - "edit_profile": "프로필 수정", - "settings": "Account settings", - "collapse": "접기", - "expand": "펼치기", - "home": "홈", - "notification": "Notifications", - "direct": "메세지", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "로컬", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "검색", - "lists": "리스트" - }, - "header_menu": { - "home": "홈", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "로컬", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "검색", - "lists": "리스트", - "members": "멤버", - "reload": "새로고침" - }, - "settings": { - "title": "설정", - "general": { - "title": "일반", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "공개", - "unlisted": "미등록", - "private": "비공개", - "direct": "다이렉트" - }, - "sensitive": { - "description": "자동으로 모든 미디어를 민감한 미디어로 분류" - } - } - }, - "timeline": { - "title": "타임라인", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Never", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "12_hours": "12 hours", - "1_day": "1 day", - "1_week": "1 week" - }, - "new": { - "title": "New" - }, - "edit": { - "title": "Edit" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "Cancel" - } - } - }, - "preferences": { - "title": "설정", - "general": { - "title": "일반", - "sounds": { - "title": "사운드", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Timeline", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Other options", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "외관", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "밝은 테마", - "dark": "어두운 테마", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "사용자 설정" - }, - "custom_theme": { - "background_color": "기본 배경 색상", - "selected_background_color": "선택 배경 색상", - "global_header_color": "계정 메뉴 색상", - "side_menu_color": "사이드 바 색상", - "primary_color": "기본 글꼴 색상", - "regular_color": "레귤러 글꼴 색상", - "secondary_color": "보조 글꼴 색상", - "border_color": "경계선 색상", - "header_menu_color": "헤더 메뉴 색상", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "글꼴 크기", - "font_family": "글꼴 패밀리", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "닉네임과 아이디 모두 보이기", - "display_name": "닉네임만 보이기", - "username": "아이디만 보이기" - }, - "time_format": { - "title": "시간 표시 형식", - "absolute": "고정 시각 표시", - "relative": "상대 시간 표시" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "계정", - "connected": "Connected accounts", - "username": "닉네임", - "domain": "도메인", - "association": "연결된 계정", - "order": "순서", - "remove_association": "연결 해제", - "remove_all_associations": "모든 연결 해제", - "confirm": "확인", - "cancel": "취소", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Network", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "Protocol", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Save" - }, - "language": { - "title": "언어", - "language": { - "title": "Language", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "이동" - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "계정 이름" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "취소", - "ok": "뮤트" - }, - "shortcut": { - "title": "키보드 단축키", - "ctrl_number": "계정 변경", - "ctrl_k": "다른 타임라인으로 이동", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "현재 페이지 닫기" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "더보기", - "hide": "숨기기", - "sensitive": "민감한 미디어 표시", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "뮤트", - "block": "차단", - "report": "신고", - "delete": "삭제", - "via": "{{application}} 에서", - "reply": "답장하기", - "reblog": "Boost", - "fav": "즐겨찾기", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Refresh" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "사용자를 팔로잉 중입니다", - "doesnt_follow_you": "사용자를 팔로잉하지 않습니다", - "detail": "자세히", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "팔로우 요청중", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "뮤트", - "unmute": "뮤트 해제", - "unblock": "차단 해제", - "block": "차단", - "toots": "Posts", - "follows": "팔로잉", - "followers": "팔로워" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Reject" - }, - "hashtag": { - "tag_name": "태그 이름", - "delete_tag": "태그 삭제", - "save_tag": "태그 저장" - }, - "search": { - "search": "검색", - "account": "계정", - "tag": "해시태그", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "새 리스트", - "edit": "수정", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "검색", - "login": "로그인" - }, - "authorize": { - "manually_1": "브라우저에서 인증 페이지가 열렸어요.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "제출" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "계정을 읽어 올 수 없습니다", - "account_remove_error": "계정을 제거할 수 없습니다", - "preferences_load_error": "설정을 읽을 수 없습니다", - "timeline_fetch_error": "타임라인을 가져올 수 없습니다", - "notification_fetch_error": "알림을 가져올 수 없습니다", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "파일을 첨부할 수 없습니다", - "authorize_duplicate_error": "같은 도메인의 같은 계정을 중복 등록할 수 없습니다", - "authorize_error": "인증에 실패했습니다", - "followers_fetch_error": "팔로워 정보를 가져올 수 없습니다", - "follows_fetch_error": "팔로우 정보를 가져올 수 없습니다", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "사용자를 팔로우할 수 없습니다", - "unfollow_error": "사용자를 언팔로우할 수 없습니다", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "리스트를 가져올 수 없습니다", - "list_create_error": "리스트를 생성할 수 없습니다", - "members_fetch_error": "멤버를 가져올 수 없습니다", - "remove_user_error": "사용자를 제거할 수 없습니다", - "find_account_error": "계정을 찾을 수 없습니다", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "즐겨찾기를 설정할 수 없습니다", - "unfavourite_error": "즐겨찾기를 해제할 수 없습니다", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "찾을 수 없습니다", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "리스트 멤버를 업데이트할 수 없습니다", - "add_user_error": "사용자를 추가할 수 없습니다", - "authorize_url_error": "인증 URL을 가져올 수 없습니다", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "로딩중...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "도메인 주소가 필요합니다", - "domain_format": "도메인 주소만 입력해주세요" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/no/translation.json b/src/config/locales/no/translation.json deleted file mode 100644 index 9c7453d4..00000000 --- a/src/config/locales/no/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Om Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Tjenester", - "hide": "Skjul Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Avslutt" - }, - "edit": { - "name": "Rediger", - "undo": "Angre", - "redo": "Gjør om", - "cut": "Klipp ut", - "copy": "Kopier", - "paste": "Lim inn", - "select_all": "Velg alle" - }, - "view": { - "name": "Vis", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Vindu", - "close": "Lukk vindu", - "open": "Åpne vindu", - "minimize": "Minimer", - "jump_to": "Gå til" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Legg til ny konto" - }, - "side_menu": { - "profile": "Profil", - "show_profile": "Vis profil", - "edit_profile": "Rediger profil", - "settings": "Account settings", - "collapse": "Skjul", - "expand": "Utvid", - "home": "Hjem", - "notification": "Notifications", - "direct": "Direktemeldinger", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Lokal tidslinje", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Søk", - "lists": "Lister" - }, - "header_menu": { - "home": "Hjem", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Lokal tidslinje", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Søk", - "lists": "Lister", - "members": "Medlemmer", - "reload": "Last inn på nytt" - }, - "settings": { - "title": "Innstillinger", - "general": { - "title": "Generelt", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Offentlig", - "unlisted": "Uoppført", - "private": "Privat", - "direct": "Direkte" - }, - "sensitive": { - "description": "Merk medier som sensitiv som standard" - } - } - }, - "timeline": { - "title": "Tidslinje", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Never", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "12_hours": "12 hours", - "1_day": "1 day", - "1_week": "1 week" - }, - "new": { - "title": "New" - }, - "edit": { - "title": "Edit" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "Cancel" - } - } - }, - "preferences": { - "title": "Preferences", - "general": { - "title": "General", - "sounds": { - "title": "Sounds", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Timeline", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Other options", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Appearance", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Light", - "dark": "Dark", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Custom" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Side menu", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Sekundær skrifttype", - "border_color": "Kantlinje", - "header_menu_color": "Topplinje meny", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Skriftstørrelse", - "font_family": "Skrifttypefamilie", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Display name and username", - "display_name": "Display name", - "username": "Username" - }, - "time_format": { - "title": "Time format", - "absolute": "Absolute", - "relative": "Relative" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Account", - "connected": "Connected accounts", - "username": "Username", - "domain": "Domain", - "association": "Association", - "order": "Order", - "remove_association": "Remove associations", - "remove_all_associations": "Remove all associations", - "confirm": "Confirm", - "cancel": "Cancel", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Network", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "Protocol", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Save" - }, - "language": { - "title": "Language", - "language": { - "title": "Language", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Jump to..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Account name" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Cancel", - "ok": "Mute" - }, - "shortcut": { - "title": "Keyboard shortcuts", - "ctrl_number": "Switch accounts", - "ctrl_k": "Jump to other timelines", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Show more", - "hide": "Hide", - "sensitive": "Show sensitive content", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mute", - "block": "Block", - "report": "Report", - "delete": "Delete", - "via": "via {{application}}", - "reply": "Reply", - "reblog": "Boost", - "fav": "Favourite", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Refresh" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Follows you", - "doesnt_follow_you": "Doesn't follow you", - "detail": "Detail", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Follow requested", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mute", - "unmute": "Unmute", - "unblock": "Unblock", - "block": "Block", - "toots": "Posts", - "follows": "Follows", - "followers": "Followers" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Reject" - }, - "hashtag": { - "tag_name": "Tag name", - "delete_tag": "Delete tag", - "save_tag": "Save tag" - }, - "search": { - "search": "Search", - "account": "Account", - "tag": "Hashtag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "New List", - "edit": "Edit", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "Search", - "login": "Login" - }, - "authorize": { - "manually_1": "An authorization page has opened in your browser.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Submit" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Failed to load accounts", - "account_remove_error": "Failed to remove the account", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Can not login the same account of the same domain", - "authorize_error": "Failed to authorize", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Failed to follow the user", - "unfollow_error": "Failed to unfollow the user", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Failed to remove the user", - "find_account_error": "Account not found", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Failed to search", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Failed to add user", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Loading...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/pl/translation.json b/src/config/locales/pl/translation.json deleted file mode 100644 index 7fcb34cb..00000000 --- a/src/config/locales/pl/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "O Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Usługi", - "hide": "Ukryj Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Wyjdź" - }, - "edit": { - "name": "Edycja", - "undo": "Cofnij", - "redo": "Powtórz", - "cut": "Wytnij", - "copy": "Kopiuj", - "paste": "Wklej", - "select_all": "Zaznacz wszystko" - }, - "view": { - "name": "Widok", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Okno", - "close": "Zamknij okno", - "open": "Otwórz okno", - "minimize": "Zminimalizuj", - "jump_to": "Przejdź do" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Dodaj nowe konto" - }, - "side_menu": { - "profile": "Profil", - "show_profile": "Pokaż profil", - "edit_profile": "Edytuj profil", - "settings": "Account settings", - "collapse": "Zawalić się", - "expand": "Rozszerzać", - "home": "Strona główna", - "notification": "Notifications", - "direct": "Bezpośrednie wiadomości", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Lokalna oś czasu", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Wyszukiwanie", - "lists": "Listy" - }, - "header_menu": { - "home": "Strona główna", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Lokalna oś czasu", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Wyszukiwanie", - "lists": "Listy", - "members": "Użytkownicy", - "reload": "Przeładować" - }, - "settings": { - "title": "Ustawienia", - "general": { - "title": "Ogólne", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Publiczne", - "unlisted": "Niewidoczne", - "private": "Prywatne", - "direct": "Bezpośrednie" - }, - "sensitive": { - "description": "Mark medias as sensitive by default" - } - } - }, - "timeline": { - "title": "Oś czasu", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Całe słowo", - "submit": "Submit", - "cancel": "Anuluj" - }, - "expires": { - "never": "Nigdy", - "30_minutes": "30 minut", - "1_hour": "1 godzina", - "6_hours": "6 godzin", - "12_hours": "12 godzin", - "1_day": "1 dzień", - "1_week": "1 tydzień" - }, - "new": { - "title": "Nowy" - }, - "edit": { - "title": "Edytuj" - }, - "delete": { - "title": "Usuń", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Usuń", - "confirm_cancel": "Anuluj" - } - } - }, - "preferences": { - "title": "Preferencje", - "general": { - "title": "Ogólne", - "sounds": { - "title": "Dźwięki", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Oś czasu", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Other options", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Wygląd", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Jasny", - "dark": "Ciemny", - "solarized_light": "Solarized Light", - "solarized_dark": "Solarized Dark", - "kimbie_dark": "Kimbie Dark", - "custom": "Własna" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Menu boczne", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Secondary font", - "border_color": "Obramowanie", - "header_menu_color": "Header menu", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Rozmiar czcionki", - "font_family": "Font family", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Nazwa wyświetlana i nazwa użytkownika", - "display_name": "Nazwa wyświetlana", - "username": "Nazwa użytkownika" - }, - "time_format": { - "title": "Format godziny", - "absolute": "Bezwzględny", - "relative": "Względny" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Konta", - "connected": "Connected accounts", - "username": "Nazwa użytkownika", - "domain": "Domena", - "association": "Powiązanie", - "order": "Kolejność", - "remove_association": "Usuń powiązanie", - "remove_all_associations": "Usuń wszystkie powiązania", - "confirm": "Potwierdź", - "cancel": "Anuluj", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Sieć", - "proxy": { - "title": "Proxy configuration", - "no": "Nie używaj proxy", - "system": "Użyj systemowego proxy", - "manual": "Użyj ręcznej konfiguracji proxy", - "protocol": "Protokół", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Zapisz" - }, - "language": { - "title": "Język", - "language": { - "title": "Język", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Sprawdzanie pisowni", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Przejdź do…" - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Nazwa konta" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Cancel", - "ok": "Mute" - }, - "shortcut": { - "title": "Skróty klawiszowe", - "ctrl_number": "Przełącz konta", - "ctrl_k": "Przejdź do innych osi czasu", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Pokaż więcej", - "hide": "Ukryj", - "sensitive": "Pokaż zawartość wrażliwą", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mute", - "block": "Block", - "report": "Report", - "delete": "Usuń", - "via": "przez {{application}}", - "reply": "Odpowiadać", - "reblog": "Boost", - "fav": "Ulubiony", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Odśwież" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Śledzi Cię", - "doesnt_follow_you": "Nie śledzi Cię", - "detail": "Szczegół", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Śledź prośbę", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mute", - "unmute": "Unmute", - "unblock": "Unblock", - "block": "Block", - "toots": "Posts", - "follows": "Śledzeni", - "followers": "Śledzący" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Odrzuć" - }, - "hashtag": { - "tag_name": "Tag", - "delete_tag": "Delete tag", - "save_tag": "Save tag" - }, - "search": { - "search": "Szukaj", - "account": "Konta", - "tag": "Hashtag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Nowa lista", - "edit": "Edytuj", - "delete": { - "confirm": { - "title": "Potwierdź", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Usuń", - "cancel": "Anuluj" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " tutaj", - "search": "Znajdź", - "login": "Zaloguj się" - }, - "authorize": { - "manually_1": "Strona autoryzacji została otwarta w Twojej przeglądarce.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Wyślij" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Nie udało się załadować kont", - "account_remove_error": "Nie udało się usunąć konta", - "preferences_load_error": "Nie udało się załadować ustawień", - "timeline_fetch_error": "Nie udało się załadować osi czasu", - "notification_fetch_error": "Nie udało się załadować powiadomień", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Nie udało się załączyć pliku", - "authorize_duplicate_error": "Nie możesz zalogować się na to samo konto na tej samej instancji", - "authorize_error": "Uwierzytelnienie nie powiodło się", - "followers_fetch_error": "Nie udało się załadować śledzących", - "follows_fetch_error": "Nie udało się załadować śledzonych", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Nie udało się zacząć śledzić użytkownika", - "unfollow_error": "Nie udało się przestać śledzić użytkownika", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Nie udało się załadować list", - "list_create_error": "Nie udało się utworzyć listy", - "members_fetch_error": "Nie udało się załadować członków", - "remove_user_error": "Nie udało się usunąć użytkownika", - "find_account_error": "Nie znaleziono konta", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Nie udało się dodać wpisu do ulubionych", - "unfavourite_error": "Nie udało się usunąć wpisu z ulubionych", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Wyszukiwanie nie powiodło się", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Nie udało się zaktualizować listy członków listy", - "add_user_error": "Nie udało się dodać użytkownika", - "authorize_url_error": "Nie udało się uzyskać adresu autoryzacji", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Ładowanie…", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "Nazwa domeny jest wymagana", - "domain_format": "Wprowadź tylko nazwę domeny" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/pt_pt/translation.json b/src/config/locales/pt_pt/translation.json deleted file mode 100644 index 28818446..00000000 --- a/src/config/locales/pt_pt/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "About Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Services", - "hide": "Hide Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Quit" - }, - "edit": { - "name": "Edit", - "undo": "Undo", - "redo": "Redo", - "cut": "Cut", - "copy": "Copy", - "paste": "Paste", - "select_all": "Select All" - }, - "view": { - "name": "View", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Window", - "close": "Close Window", - "open": "Open Window", - "minimize": "Minimize", - "jump_to": "Jump to" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Add new account" - }, - "side_menu": { - "profile": "Profile", - "show_profile": "Show profile", - "edit_profile": "Edit profile", - "settings": "Account settings", - "collapse": "Collapse", - "expand": "Expand", - "home": "Home", - "notification": "Notifications", - "direct": "Direct messages", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists" - }, - "header_menu": { - "home": "Home", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists", - "members": "Members", - "reload": "Reload" - }, - "settings": { - "title": "Settings", - "general": { - "title": "General", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Public", - "unlisted": "Unlisted", - "private": "Private", - "direct": "Direct" - }, - "sensitive": { - "description": "Mark media as sensitive by default" - } - } - }, - "timeline": { - "title": "Timeline", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Never", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "12_hours": "12 hours", - "1_day": "1 day", - "1_week": "1 week" - }, - "new": { - "title": "New" - }, - "edit": { - "title": "Edit" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "Cancel" - } - } - }, - "preferences": { - "title": "Preferences", - "general": { - "title": "General", - "sounds": { - "title": "Sounds", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Timeline", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Other options", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Appearance", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Light", - "dark": "Dark", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Custom" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Side menu", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Secondary font", - "border_color": "Border", - "header_menu_color": "Header menu", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Font size", - "font_family": "Font family", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Display name and username", - "display_name": "Display name", - "username": "Username" - }, - "time_format": { - "title": "Time format", - "absolute": "Absolute", - "relative": "Relative" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Account", - "connected": "Connected accounts", - "username": "Username", - "domain": "Domain", - "association": "Association", - "order": "Order", - "remove_association": "Remove association", - "remove_all_associations": "Remove all associations", - "confirm": "Confirm", - "cancel": "Cancel", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Network", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "Protocol", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Save" - }, - "language": { - "title": "Language", - "language": { - "title": "Language", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Jump to..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Account name" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Cancel", - "ok": "Mute" - }, - "shortcut": { - "title": "Keyboard shortcuts", - "ctrl_number": "Switch accounts", - "ctrl_k": "Jump to other timelines", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Show more", - "hide": "Hide", - "sensitive": "Show sensitive content", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mute", - "block": "Block", - "report": "Report", - "delete": "Delete", - "via": "via {{application}}", - "reply": "Reply", - "reblog": "Boost", - "fav": "Favourite", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Refresh" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Follows you", - "doesnt_follow_you": "Doesn't follow you", - "detail": "Detail", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Follow requested", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mute", - "unmute": "Unmute", - "unblock": "Unblock", - "block": "Block", - "toots": "Posts", - "follows": "Follows", - "followers": "Followers" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Reject" - }, - "hashtag": { - "tag_name": "Tag name", - "delete_tag": "Delete tag", - "save_tag": "Save tag" - }, - "search": { - "search": "Search", - "account": "Account", - "tag": "Hashtag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "New List", - "edit": "Edit", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "Search", - "login": "Login" - }, - "authorize": { - "manually_1": "An authorization page has opened in your browser.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Submit" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Failed to load accounts", - "account_remove_error": "Failed to remove the account", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Can not login the same account of the same domain", - "authorize_error": "Failed to authorize", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Failed to follow the user", - "unfollow_error": "Failed to unfollow the user", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Failed to remove the user", - "find_account_error": "Account not found", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Failed to search", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Failed to add user", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Loading...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/ru/translation.json b/src/config/locales/ru/translation.json deleted file mode 100644 index 4f974ff1..00000000 --- a/src/config/locales/ru/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "О Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Сервисы", - "hide": "Скрыть Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Выйти" - }, - "edit": { - "name": "Редактировать", - "undo": "Отменить", - "redo": "Повторить", - "cut": "Вырезать", - "copy": "Копировать", - "paste": "Вставить", - "select_all": "Выбрать всё" - }, - "view": { - "name": "Вид", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Окно", - "close": "Закрыть окно", - "open": "Открыть окно", - "minimize": "Свернуть", - "jump_to": "Перейти к" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Добавить аккаунт" - }, - "side_menu": { - "profile": "Профиль", - "show_profile": "Показать профиль", - "edit_profile": "Редактировать профиль", - "settings": "Account settings", - "collapse": "Свернуть", - "expand": "Развернуть", - "home": "Главная", - "notification": "Notifications", - "direct": "Личные сообщения", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Локальная лента времени", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Поиск", - "lists": "Списки" - }, - "header_menu": { - "home": "Главная", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Локальная лента времени", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Поиск", - "lists": "Списки", - "members": "Участники", - "reload": "Обновить" - }, - "settings": { - "title": "Настройки", - "general": { - "title": "Общие", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Публичный", - "unlisted": "Не в списке", - "private": "Приватный", - "direct": "Личный" - }, - "sensitive": { - "description": "По умолчанию помечать медиафайлы деликатными" - } - } - }, - "timeline": { - "title": "Лента времени", - "use_marker": { - "title": "Загрузить ленту времени от последней прочитанной позиции", - "home": "Главная", - "notifications": "Уведомления" - } - }, - "filters": { - "title": "Фильтры", - "form": { - "phrase": "Ключевое слово или фраза", - "expire": "Истекает после", - "context": "Фильтр контекстов", - "irreversible": "Удалить вместо скрытия", - "whole_word": "Слово целиком", - "submit": "Подтвердить", - "cancel": "Отмена" - }, - "expires": { - "never": "Никогда", - "30_minutes": "30 минут", - "1_hour": "1 час", - "6_hours": "6 часов", - "12_hours": "12 часов", - "1_day": "1 день", - "1_week": "1 неделя" - }, - "new": { - "title": "Новый" - }, - "edit": { - "title": "Изменить" - }, - "delete": { - "title": "Удалить", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Удалить", - "confirm_cancel": "Отмена" - } - } - }, - "preferences": { - "title": "Настройки", - "general": { - "title": "Общие", - "sounds": { - "title": "Звуки", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Лента времени", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Другие настройки", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Сбросить настройки" - } - }, - "appearance": { - "title": "Внешний вид", - "theme_color": "Colour themes", - "theme": { - "system": "Системная", - "light": "Светлая", - "dark": "Тёмная", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Пользовательская" - }, - "custom_theme": { - "background_color": "Основной фон", - "selected_background_color": "Фон в фокусе", - "global_header_color": "Меню учетной записи", - "side_menu_color": "Боковое меню", - "primary_color": "Основной шрифт", - "regular_color": "Обычный шрифт", - "secondary_color": "Дополнительный шрифт", - "border_color": "Граница", - "header_menu_color": "Меню заголовка", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Размер шрифта", - "font_family": "Шрифт", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Отображаемое имя и имя пользователя", - "display_name": "Отображаемое имя", - "username": "Имя пользователя" - }, - "time_format": { - "title": "Формат времени", - "absolute": "Абсолютно", - "relative": "Относительно" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Учетная запись", - "connected": "Connected accounts", - "username": "Имя пользователя", - "domain": "Домен", - "association": "Привязка", - "order": "Порядок", - "remove_association": "Удалить привязку", - "remove_all_associations": "Удалить все привязки", - "confirm": "Подтвердить", - "cancel": "Отмена", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Сеть", - "proxy": { - "title": "Proxy configuration", - "no": "Без прокси-сервера", - "system": "Использовать системный прокси-сервер", - "manual": "Ручная настройка прокси-сервера", - "protocol": "Протокол", - "host": "Прокси-сервер", - "port": "Порт прокси-сервера", - "username": "Имя пользователя прокси-сервера", - "password": "Пароль прокси-сервера", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Сохранить" - }, - "language": { - "title": "Язык", - "language": { - "title": "Язык", - "description": "Выберите язык, который вы хотели бы использовать в Whalebird." - }, - "spellchecker": { - "title": "Правописание", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Перейти к..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Имя учетной записи" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Отмена", - "ok": "Заглушить" - }, - "shortcut": { - "title": "Горячие клавиши", - "ctrl_number": "Сменить учетную запись", - "ctrl_k": "Перейти к другим лентам времени", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Закрыть текущую страницу" - }, - "report": { - "title": "Report this user", - "comment": "Дополнительные комментарии", - "cancel": "Отмена", - "ok": "Жалоба" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Показать еще", - "hide": "Скрыть", - "sensitive": "Содержимое деликатного характера", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Заглушить", - "block": "Блокировать", - "report": "Жалоба", - "delete": "Удалить", - "via": "через {{application}}", - "reply": "Ответ", - "reblog": "Boost", - "fav": "Избранное", - "detail": "Post details", - "bookmark": "Закладка", - "pinned": "Pinned post", - "poll": { - "vote": "Голосование", - "votes_count": "голоса", - "until": "до {{datetime}}", - "left": "Осталось {{datetime}}", - "refresh": "Обновить" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Загрузить больше статуса" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Подписан на вас", - "doesnt_follow_you": "Не подписан на вас", - "detail": "Подробности", - "follow": "Подписаться на этого пользователя", - "unfollow": "Отписаться от этого пользователя", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Запросы на подписку", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Заглушить", - "unmute": "Включить звук", - "unblock": "Разблокировать", - "block": "Блокировать", - "toots": "Posts", - "follows": "Подписки", - "followers": "Подписчики" - } - }, - "follow_requests": { - "accept": "Принять", - "reject": "Отклонить" - }, - "hashtag": { - "tag_name": "Имя тега", - "delete_tag": "Удалить тег", - "save_tag": "Сохранить тег" - }, - "search": { - "search": "Поиск", - "account": "Учетная запись", - "tag": "Хэштег", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Новый список", - "edit": "Изменить", - "delete": { - "confirm": { - "title": "Подтвердить", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Удалить", - "cancel": "Отмена" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " здесь", - "search": "Поиск", - "login": "Вход" - }, - "authorize": { - "manually_1": "Страница авторизации открыта в браузере.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Пожалуйста, подтвердите после авторизации в вашем браузере.", - "submit": "Подтвердить" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Не удалось загрузить учетные записи", - "account_remove_error": "Не удалось удалить учетную запись", - "preferences_load_error": "Не удалось загрузить настройки", - "timeline_fetch_error": "Не удалось загрузить ленту времени", - "notification_fetch_error": "Не удалось получить уведомление", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Не удалось принять запрос", - "follow_request_reject_error": "Не удалось отклонить запрос", - "attach_error": "Не удалось прикрепить файл", - "authorize_duplicate_error": "Не могу войти в один и тот же аккаунт одного домена", - "authorize_error": "Не удалось авторизовать", - "followers_fetch_error": "Не удалось загрузить подписчиков", - "follows_fetch_error": "Не удалось загрузить на кого вы подписаны", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Не удалось подписаться на пользователя", - "unfollow_error": "Не удалось отменить подписку от пользователя", - "subscribe_error": "Не удалось подписать пользователя", - "unsubscribe_error": "Не удалось отписаться от пользователя", - "lists_fetch_error": "Не удалось получить списки", - "list_create_error": "Не удалось создать список", - "members_fetch_error": "Не удалось загрузить участников", - "remove_user_error": "Не удалось удалить пользователя", - "find_account_error": "Аккаунт не найден", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Не удалось добавить в избранное", - "unfavourite_error": "Не удалось удалить избранное", - "bookmark_error": "Не удалось добавить в закладку", - "unbookmark_error": "Не удалось удалить закладку", - "delete_error": "Failed to delete the post", - "search_error": "Не удалось найти", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Не удалось обновить список участников", - "add_user_error": "Не удалось добавить пользователя", - "authorize_url_error": "Не удалось получить адрес авторизации", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Загрузка...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Не удалось обновить фильтр", - "create_filter_error": "Не удалось создать фильтр" - }, - "validation": { - "login": { - "require_domain_name": "Требуется доменное имя", - "domain_format": "Пожалуйста, введите только доменное имя" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} стал вашим подписчиком" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/si/translation.json b/src/config/locales/si/translation.json deleted file mode 100644 index e8ad9665..00000000 --- a/src/config/locales/si/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "About Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "සේවාවන්", - "hide": "Hide Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "ඉවත් වන්න" - }, - "edit": { - "name": "සංස්කරණය", - "undo": "පෙර සේ", - "redo": "පසු සේ", - "cut": "Cut", - "copy": "පිටපත්", - "paste": "අලවන්න", - "select_all": "Select All" - }, - "view": { - "name": "View", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "කවුළුව", - "close": "කවුළුව වසන්න", - "open": "Open Window", - "minimize": "Minimize", - "jump_to": "Jump to" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Add new account" - }, - "side_menu": { - "profile": "පැතිකඩ", - "show_profile": "පැතිකඩ පෙන්වන්න", - "edit_profile": "පැතිකඩ සංස්කරණය", - "settings": "Account settings", - "collapse": "Collapse", - "expand": "Expand", - "home": "මුල", - "notification": "Notifications", - "direct": "Direct messages", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "සොයන්න", - "lists": "Lists" - }, - "header_menu": { - "home": "මුල", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "සොයන්න", - "lists": "Lists", - "members": "සාමාජිකයින්", - "reload": "නැවත පූරණය" - }, - "settings": { - "title": "සැකසුම්", - "general": { - "title": "General", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Public", - "unlisted": "Unlisted", - "private": "පුද්ගලික", - "direct": "Direct" - }, - "sensitive": { - "description": "Mark media as sensitive by default" - } - } - }, - "timeline": { - "title": "Timeline", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "පෙරහන්", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "අවලංගු" - }, - "expires": { - "never": "Never", - "30_minutes": "විනාඩි 30", - "1_hour": "පැය 1", - "6_hours": "පැය 6", - "12_hours": "පැය 12", - "1_day": "දවස් 1", - "1_week": "සති 1" - }, - "new": { - "title": "නව" - }, - "edit": { - "title": "සංස්කරණය" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "අවලංගු" - } - } - }, - "preferences": { - "title": "Preferences", - "general": { - "title": "General", - "sounds": { - "title": "ශබ්ද", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Timeline", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "වෙනත් විකල්ප", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Appearance", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Light", - "dark": "අඳුරු", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "අභිරුචි" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Side menu", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Secondary font", - "border_color": "Border", - "header_menu_color": "Header menu", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Font size", - "font_family": "Font family", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Display name and username", - "display_name": "Display name", - "username": "පරිශීලක නාමය" - }, - "time_format": { - "title": "Time format", - "absolute": "Absolute", - "relative": "Relative" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "ගිණුම", - "connected": "Connected accounts", - "username": "පරිශීලක නාමය", - "domain": "වසම", - "association": "Association", - "order": "Order", - "remove_association": "Remove association", - "remove_all_associations": "Remove all associations", - "confirm": "Confirm", - "cancel": "අවලංගු", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "ජාලය", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "කෙටුම්පත", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "සුරකින්න" - }, - "language": { - "title": "භාෂාව", - "language": { - "title": "භාෂාව", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Jump to..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "ගිණුමේ නම" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "අවලංගු", - "ok": "Mute" - }, - "shortcut": { - "title": "යතුරුපුවරුවේ කෙටිමං", - "ctrl_number": "Switch accounts", - "ctrl_k": "Jump to other timelines", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "අවලංගු", - "ok": "වාර්තා කරන්න" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "තව පෙන්වන්න", - "hide": "සඟවන්න", - "sensitive": "Show sensitive content", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mute", - "block": "අවහිර", - "report": "වාර්තා කරන්න", - "delete": "Delete", - "via": "via {{application}}", - "reply": "පිළිතුරු", - "reblog": "Boost", - "fav": "ප්‍රියතම", - "detail": "Post details", - "bookmark": "පොත්යොමුව", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Refresh" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Follows you", - "doesnt_follow_you": "Doesn't follow you", - "detail": "විස්තරය", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Follow requested", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mute", - "unmute": "Unmute", - "unblock": "අනවහිර", - "block": "අවහිර", - "toots": "Posts", - "follows": "Follows", - "followers": "Followers" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Reject" - }, - "hashtag": { - "tag_name": "Tag name", - "delete_tag": "Delete tag", - "save_tag": "Save tag" - }, - "search": { - "search": "සොයන්න", - "account": "ගිණුම", - "tag": "Hashtag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "New List", - "edit": "Edit", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "Search", - "login": "Login" - }, - "authorize": { - "manually_1": "An authorization page has opened in your browser.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Submit" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Failed to load accounts", - "account_remove_error": "Failed to remove the account", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Can not login the same account of the same domain", - "authorize_error": "Failed to authorize", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Failed to follow the user", - "unfollow_error": "Failed to unfollow the user", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Failed to remove the user", - "find_account_error": "Account not found", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "සෙවීමට අසමත්විය", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Failed to add user", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "පූරණය වෙමින්…", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/sv_se/translation.json b/src/config/locales/sv_se/translation.json deleted file mode 100644 index 28818446..00000000 --- a/src/config/locales/sv_se/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "About Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Services", - "hide": "Hide Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Quit" - }, - "edit": { - "name": "Edit", - "undo": "Undo", - "redo": "Redo", - "cut": "Cut", - "copy": "Copy", - "paste": "Paste", - "select_all": "Select All" - }, - "view": { - "name": "View", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Window", - "close": "Close Window", - "open": "Open Window", - "minimize": "Minimize", - "jump_to": "Jump to" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Add new account" - }, - "side_menu": { - "profile": "Profile", - "show_profile": "Show profile", - "edit_profile": "Edit profile", - "settings": "Account settings", - "collapse": "Collapse", - "expand": "Expand", - "home": "Home", - "notification": "Notifications", - "direct": "Direct messages", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists" - }, - "header_menu": { - "home": "Home", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Local timeline", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Search", - "lists": "Lists", - "members": "Members", - "reload": "Reload" - }, - "settings": { - "title": "Settings", - "general": { - "title": "General", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Public", - "unlisted": "Unlisted", - "private": "Private", - "direct": "Direct" - }, - "sensitive": { - "description": "Mark media as sensitive by default" - } - } - }, - "timeline": { - "title": "Timeline", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Never", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "12_hours": "12 hours", - "1_day": "1 day", - "1_week": "1 week" - }, - "new": { - "title": "New" - }, - "edit": { - "title": "Edit" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "Cancel" - } - } - }, - "preferences": { - "title": "Preferences", - "general": { - "title": "General", - "sounds": { - "title": "Sounds", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Timeline", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Other options", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Appearance", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Light", - "dark": "Dark", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Custom" - }, - "custom_theme": { - "background_color": "Base background", - "selected_background_color": "Focused background", - "global_header_color": "Account menu", - "side_menu_color": "Side menu", - "primary_color": "Primary font", - "regular_color": "Regular font", - "secondary_color": "Secondary font", - "border_color": "Border", - "header_menu_color": "Header menu", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Font size", - "font_family": "Font family", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Display name and username", - "display_name": "Display name", - "username": "Username" - }, - "time_format": { - "title": "Time format", - "absolute": "Absolute", - "relative": "Relative" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Account", - "connected": "Connected accounts", - "username": "Username", - "domain": "Domain", - "association": "Association", - "order": "Order", - "remove_association": "Remove association", - "remove_all_associations": "Remove all associations", - "confirm": "Confirm", - "cancel": "Cancel", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Network", - "proxy": { - "title": "Proxy configuration", - "no": "No proxy", - "system": "Use system proxy", - "manual": "Manual proxy configuration", - "protocol": "Protocol", - "host": "Proxy host", - "port": "Proxy port", - "username": "Proxy username", - "password": "Proxy password", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Save" - }, - "language": { - "title": "Language", - "language": { - "title": "Language", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Jump to..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Account name" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Cancel", - "ok": "Mute" - }, - "shortcut": { - "title": "Keyboard shortcuts", - "ctrl_number": "Switch accounts", - "ctrl_k": "Jump to other timelines", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Close current page" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Cancel", - "ok": "Report" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Show more", - "hide": "Hide", - "sensitive": "Show sensitive content", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Mute", - "block": "Block", - "report": "Report", - "delete": "Delete", - "via": "via {{application}}", - "reply": "Reply", - "reblog": "Boost", - "fav": "Favourite", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Vote", - "votes_count": "votes", - "until": "until {{datetime}}", - "left": "{{datetime}} left", - "refresh": "Refresh" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Follows you", - "doesnt_follow_you": "Doesn't follow you", - "detail": "Detail", - "follow": "Follow this user", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Follow requested", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Mute", - "unmute": "Unmute", - "unblock": "Unblock", - "block": "Block", - "toots": "Posts", - "follows": "Follows", - "followers": "Followers" - } - }, - "follow_requests": { - "accept": "Accept", - "reject": "Reject" - }, - "hashtag": { - "tag_name": "Tag name", - "delete_tag": "Delete tag", - "save_tag": "Save tag" - }, - "search": { - "search": "Search", - "account": "Account", - "tag": "Hashtag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "New List", - "edit": "Edit", - "delete": { - "confirm": { - "title": "Confirm", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Delete", - "cancel": "Cancel" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " here", - "search": "Search", - "login": "Login" - }, - "authorize": { - "manually_1": "An authorization page has opened in your browser.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Please submit after you authorize in your browser.", - "submit": "Submit" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Failed to load accounts", - "account_remove_error": "Failed to remove the account", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Failed to accept the request", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Can not login the same account of the same domain", - "authorize_error": "Failed to authorize", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Failed to follow the user", - "unfollow_error": "Failed to unfollow the user", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Failed to remove the user", - "find_account_error": "Account not found", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Failed to search", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Failed to add user", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Loading...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} is now following you" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/tzm/translation.json b/src/config/locales/tzm/translation.json deleted file mode 100644 index 647a965f..00000000 --- a/src/config/locales/tzm/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "Γef Whalebird", - "preferences": "Preferences", - "shortcuts": "Keyboard shortcuts", - "services": "Tinufa", - "hide": "Ffer Whalebird", - "hide_others": "Hide others", - "show_all": "Show all", - "open": "Open window", - "quit": "Ffeɣ" - }, - "edit": { - "name": "Senfel", - "undo": "Sser", - "redo": "Ales", - "cut": "Bbi", - "copy": "Senɣel", - "paste": "Sleɣ", - "select_all": "Sty maṛṛa" - }, - "view": { - "name": "Smal", - "toggle_full_screen": "Toggle full screen" - }, - "window": { - "always_show_menu_bar": "Always show menu bar", - "name": "Asatm", - "close": "Rgel Asatm", - "open": "Ṛẓem Asatm", - "minimize": "Semẓi", - "jump_to": "Ddu ɣer" - }, - "help": { - "name": "Help", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "Rnu yan umiḍan amaynu" - }, - "side_menu": { - "profile": "Ifres", - "show_profile": "Sken ifres", - "edit_profile": "Ssenfel ifres", - "settings": "Account settings", - "collapse": "Ssemun", - "expand": "Semɣer", - "home": "Asnubg", - "notification": "Notifications", - "direct": "Tuzinin tusridin", - "follow_requests": "Follow requests", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "local": "Ifili n uzmez adɣran", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Rzu", - "lists": "Tilgamin" - }, - "header_menu": { - "home": "Asenubeg", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "Ifili n uzmez adɣran", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "Rzu", - "lists": "Tilgamin", - "members": "Agmamn", - "reload": "Als" - }, - "settings": { - "title": "Tisɣal", - "general": { - "title": "Amatay", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "Tagdudant", - "unlisted": "Unlisted", - "private": "Tusligt", - "direct": "Tusridt" - }, - "sensitive": { - "description": "Mark media as sensitive by default" - } - } - }, - "timeline": { - "title": "Ifili n uzmez", - "use_marker": { - "title": "Load the timeline from the last reading position", - "home": "Home", - "notifications": "Notifications" - } - }, - "filters": { - "title": "Filters", - "form": { - "phrase": "Keyword or phrase", - "expire": "Expire after", - "context": "Filter contexts", - "irreversible": "Drop instead of hide", - "whole_word": "Whole word", - "submit": "Submit", - "cancel": "Cancel" - }, - "expires": { - "never": "Never", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "12_hours": "12 hours", - "1_day": "1 day", - "1_week": "1 week" - }, - "new": { - "title": "New" - }, - "edit": { - "title": "Edit" - }, - "delete": { - "title": "Delete", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "Delete", - "confirm_cancel": "Cancel" - } - } - }, - "preferences": { - "title": "Isemnyifen", - "general": { - "title": "Amatay", - "sounds": { - "title": "Imeslitn", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "Ifili n uzmez", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "Tideɣrin yaḍnin", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "Reset preferences" - } - }, - "appearance": { - "title": "Appearance", - "theme_color": "Colour themes", - "theme": { - "system": "System", - "light": "Anafaw", - "dark": "Adeɣmum", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "Custom" - }, - "custom_theme": { - "background_color": "Agilal n tsila", - "selected_background_color": "Agilal asmssi", - "global_header_color": "Umuɣ n umiḍan", - "side_menu_color": "Umuɣ n tama", - "primary_color": "Aklu n uḍṛiṣ amenzu", - "regular_color": "Aklu n uḍṛiṣ anaway", - "secondary_color": "Aklu n uḍṛiṣ asinan", - "border_color": "Imisi", - "header_menu_color": "Umuɣ n waflla", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "Tiɣzi n tuniɣt", - "font_family": "Tawacunt n tuniɣt", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "Smal isem d Isem n unessmres", - "display_name": "Smal isem", - "username": "Isem n unessmres" - }, - "time_format": { - "title": "Talɣa n wakud", - "absolute": "Absolute", - "relative": "Amaqqan" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "Amiḍan", - "connected": "Connected accounts", - "username": "Isem n unessmres", - "domain": "Iger", - "association": "Tamesmunt", - "order": "Yaḍen", - "remove_association": "Kkes tamesmunt", - "remove_all_associations": "Kkes timesmunin maṛṛa", - "confirm": "Seddid", - "cancel": "Sser", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "Aẓeṭṭa", - "proxy": { - "title": "Proxy configuration", - "no": "Walu apṛuksy", - "system": "Semres apṛuksy n ungraw", - "manual": "Manual proxy configuration", - "protocol": "Apṛutukul", - "host": "Proxy host", - "port": "Proxy port", - "username": "Isem n unessmres n upruksi", - "password": "Taguri n uzeray n upṛuksi", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "Ḥḍu" - }, - "language": { - "title": "Tutlayt", - "language": { - "title": "Tutlayt", - "description": "Choose the language you would like to use with Whalebird." - }, - "spellchecker": { - "title": "Spellcheck", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "Ddu ɣer..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "Isem n umiḍan" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "Sser", - "ok": "Ẓẓiẓen" - }, - "shortcut": { - "title": "Keyboard shortcuts", - "ctrl_number": "Switch accounts", - "ctrl_k": "Ddu ɣer ifiliten n uzmez yaḍnin", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "Rgel tasna tamirant" - }, - "report": { - "title": "Report this user", - "comment": "Additional comments", - "cancel": "Sser", - "ok": "Mel" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "Smal uggar", - "hide": "Ffer", - "sensitive": "Show sensitive content", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "Ẓẓiẓen", - "block": "Gdel", - "report": "Mel", - "delete": "Kkes", - "via": "sɣur {{application}}", - "reply": "Rar", - "reblog": "Boost", - "fav": "Favourite", - "detail": "Post details", - "bookmark": "Bookmark", - "pinned": "Pinned post", - "poll": { - "vote": "Asettay", - "votes_count": "isettayen", - "until": "ar {{datetime}}", - "left": "{{datetime}} ag qimen", - "refresh": "Zzuzwu" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "Load more status" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "Iḍffer-k", - "doesnt_follow_you": "Ur-k iḍffeṛ", - "detail": "Detail", - "follow": "Ḍfeṛ anessmres-a", - "unfollow": "Unfollow this user", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "Ḍfeṛ tutrawin", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "Ẓẓiẓen", - "unmute": "Kkes aẓiẓen", - "unblock": "Kkes ageddul", - "block": "Gdel", - "toots": "Posts", - "follows": "Imeḍfaṛ", - "followers": "Imeḍfaṛen" - } - }, - "follow_requests": { - "accept": "Ḍeggi", - "reject": "Agy" - }, - "hashtag": { - "tag_name": "Isem n waṭag", - "delete_tag": "Kkes aṭag", - "save_tag": "Ḥḍu aṭag" - }, - "search": { - "search": "Rzu", - "account": "Amiḍan", - "tag": "Hacṭag", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "Aseddi amaynu", - "edit": "Senfel", - "delete": { - "confirm": { - "title": "Seddid", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "Kkes", - "cancel": "Ser" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " da", - "search": "Rzu", - "login": "Akcam" - }, - "authorize": { - "manually_1": "Tettuṛẓem yat n tasna n usurg g umssara-nnek.", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "Mek tufid azen-tt adday tssurged g umssara-nnek.", - "submit": "Azen" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "Azgel g usali n imiḍanen", - "account_remove_error": "Azgel g usitey n imiḍanen", - "preferences_load_error": "Failed to load preferences", - "timeline_fetch_error": "Failed to fetch timeline", - "notification_fetch_error": "Failed to fetch notification", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "Azgel n udggi n tutrawin", - "follow_request_reject_error": "Failed to reject the request", - "attach_error": "Could not attach the file", - "authorize_duplicate_error": "Ur tzmmared ad kcemd s imiḍanen imsasan g igran imsasan", - "authorize_error": "Azgel g usureg", - "followers_fetch_error": "Failed to fetch followers", - "follows_fetch_error": "Failed to fetch follows", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "Azgel g uḍfaṛ n unessmres", - "unfollow_error": "Azgel g tukksa n uḍfaṛ n unessmres", - "subscribe_error": "Failed to subscribe the user", - "unsubscribe_error": "Failed to unsubscribe the user", - "lists_fetch_error": "Failed to fetch lists", - "list_create_error": "Failed to create a list", - "members_fetch_error": "Failed to fetch members", - "remove_user_error": "Azgel g usitey n unessmres", - "find_account_error": "Ur ittwafa umiḍam", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "Failed to favourite", - "unfavourite_error": "Failed to unfavourite", - "bookmark_error": "Failed to bookmark", - "unbookmark_error": "Failed to remove bookmark", - "delete_error": "Failed to delete the post", - "search_error": "Failed to search", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "Failed to update the list memberships", - "add_user_error": "Azgel g urnnu n unessmres", - "authorize_url_error": "Failed to get authorize url", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "Azdam...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "Failed to update the filter", - "create_filter_error": "Failed to create the filter" - }, - "validation": { - "login": { - "require_domain_name": "A domain name is required", - "domain_format": "Please only enter the domain name" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "la-k iḍffeṛ {{username}}" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/locales/zh_cn/translation.json b/src/config/locales/zh_cn/translation.json deleted file mode 100644 index 66446997..00000000 --- a/src/config/locales/zh_cn/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird", - "about": "关于 Whalebird", - "preferences": "首选项", - "shortcuts": "快捷键", - "services": "服务", - "hide": "隐藏 Whalebird", - "hide_others": "隐藏其他", - "show_all": "显示全部", - "open": "打开窗口", - "quit": "退出" - }, - "edit": { - "name": "编辑", - "undo": "撤销", - "redo": "重做", - "cut": "剪切", - "copy": "复制", - "paste": "粘贴", - "select_all": "全选" - }, - "view": { - "name": "视图", - "toggle_full_screen": "切换全屏" - }, - "window": { - "always_show_menu_bar": "始终显示菜单栏", - "name": "窗口", - "close": "关闭窗口", - "open": "打开窗口", - "minimize": "最小化", - "jump_to": "跳转至" - }, - "help": { - "name": "帮助", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "添加账户" - }, - "side_menu": { - "profile": "个人资料", - "show_profile": "查看个人资料", - "edit_profile": "修改个人资料", - "settings": "账户设置", - "collapse": "收起", - "expand": "展开", - "home": "主页", - "notification": "通知", - "direct": "私信", - "follow_requests": "关注请求", - "favourite": "喜欢", - "bookmark": "书签", - "local": "本站时间轴", - "public": "跨站时间轴", - "hashtag": "话题", - "search": "搜索", - "lists": "列表" - }, - "header_menu": { - "home": "主页", - "notification": "通知", - "favourite": "喜欢", - "bookmark": "书签", - "follow_requests": "关注请求", - "direct_messages": "私信", - "local": "本站时间轴", - "public": "跨站时间轴", - "hashtag": "话题", - "search": "搜索", - "lists": "列表", - "members": "成员", - "reload": "刷新" - }, - "settings": { - "title": "设置", - "general": { - "title": "通用", - "toot": { - "title": "嘟文", - "visibility": { - "description": "默认发嘟可见性", - "notice": "此设置仅适用于新嘟文;回复将遵循父嘟文的可见性设置。", - "public": "公开", - "unlisted": "不公开", - "private": "仅关注者", - "direct": "私信" - }, - "sensitive": { - "description": "总是将媒体标记为敏感内容" - } - } - }, - "timeline": { - "title": "时间轴", - "use_marker": { - "title": "从最后阅读位置加载时间轴", - "home": "主页", - "notifications": "通知" - } - }, - "filters": { - "title": "过滤规则", - "form": { - "phrase": "关键字或词组", - "expire": "过期于", - "context": "过滤器内容", - "irreversible": "丢弃而不是隐藏", - "whole_word": "完全匹配词语", - "submit": "提交", - "cancel": "取消" - }, - "expires": { - "never": "从不", - "30_minutes": "30 分钟", - "1_hour": "1 小时", - "6_hours": "6 小时", - "12_hours": "12 小时", - "1_day": "1 天", - "1_week": "1 周" - }, - "new": { - "title": "新增" - }, - "edit": { - "title": "编辑" - }, - "delete": { - "title": "删除", - "confirm": "您确定要删除这个过滤规则吗?", - "confirm_ok": "删除", - "confirm_cancel": "取消" - } - } - }, - "preferences": { - "title": "首选项", - "general": { - "title": "一般", - "sounds": { - "title": "音效", - "description": "当……时播放通知铃声", - "fav_rb": "您喜欢或者转嘟了", - "toot": "您发布了一条嘟文" - }, - "timeline": { - "title": "时间轴", - "description": "自定义时间轴的显示方式", - "cw": "总是显示敏感嘟文", - "nsfw": "总是显示所有媒体", - "hideAllAttachments": "总是隐藏所有媒体" - }, - "other": { - "title": "其它选项", - "launch": "开机启动", - "hideOnLaunch": "启动时隐藏 Whalebird 窗口" - }, - "reset": { - "button": "重置首选项" - } - }, - "appearance": { - "title": "外观", - "theme_color": "颜色主题", - "theme": { - "system": "系统", - "light": "明亮", - "dark": "深暗", - "solarized_light": "Solarized Light", - "solarized_dark": "Solarized Dark", - "kimbie_dark": "Kimbie Dark", - "custom": "自定义" - }, - "custom_theme": { - "background_color": "基本背景", - "selected_background_color": "聚焦背景", - "global_header_color": "账户菜单", - "side_menu_color": "侧边栏", - "primary_color": "首要文字", - "regular_color": "普通文字", - "secondary_color": "次要文字", - "border_color": "边界", - "header_menu_color": "标题菜单", - "wrapper_mask_color": "对话框包装器" - }, - "font_size": "字体大小", - "font_family": "字体", - "toot_padding": "嘟文上下间距", - "display_style": { - "title": "用户名显示样式", - "display_name_and_username": "昵称和用户名", - "display_name": "昵称", - "username": "用户名" - }, - "time_format": { - "title": "时间格式", - "absolute": "绝对时间", - "relative": "相对时间" - } - }, - "notification": { - "title": "通知", - "enable": { - "description": "当我收到……时通知我", - "reply": "回复", - "reblog": "转嘟", - "favourite": "喜欢", - "follow": "新粉丝", - "reaction": "Emoji 回应", - "follow_request": "关注请求", - "status": "状态通知", - "poll_vote": "投票", - "poll_expired": "投票过期时" - } - }, - "account": { - "title": "账户", - "connected": "已关联的账户", - "username": "用户名", - "domain": "域名", - "association": "关联", - "order": "顺序", - "remove_association": "移除账户", - "remove_all_associations": "移除所有账户", - "confirm": "确定", - "cancel": "取消", - "confirm_message": "确定移除所有账户吗?" - }, - "network": { - "title": "网络", - "proxy": { - "title": "代理配置", - "no": "不使用代理", - "system": "使用系统代理", - "manual": "手动配置代理", - "protocol": "协议", - "host": "代理主机", - "port": "代理端口", - "username": "用户名", - "password": "密码", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "保存" - }, - "language": { - "title": "语言", - "language": { - "title": "语言", - "description": "设定 Whalebird 的界面语言。" - }, - "spellchecker": { - "title": "拼写检查", - "enabled": "启用拼写检查" - } - } - }, - "modals": { - "jump": { - "jump_to": "跳转至..." - }, - "add_list_member": { - "title": "向列表添加成员", - "account_name": "用户名" - }, - "list_membership": { - "title": "列表成员" - }, - "mute_confirm": { - "title": "静音该用户的嘟文", - "body": "您确定要静音该用户吗?", - "cancel": "取消", - "ok": "确定" - }, - "shortcut": { - "title": "快捷键", - "ctrl_number": "切换账户", - "ctrl_k": "跳转至其他时间线", - "ctrl_enter": "发送嘟文", - "ctrl_r": "重新加载当前时间线", - "j": "选择下一条嘟文", - "k": "选择上一条嘟文", - "r": "回复选中的嘟文", - "b": "转发所选嘟文", - "f": "喜欢所选嘟文", - "o": "查看选中嘟文的详细信息", - "p": "显示选中嘟文作者的个人资料", - "i": "打开选中嘟文的图像", - "x": "显示/隐藏敏感嘟文", - "?": "显示快捷键帮助", - "esc": "关闭当前页" - }, - "report": { - "title": "举报该用户", - "comment": "备注", - "cancel": "取消", - "ok": "举报" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "显示", - "hide": "隐藏", - "sensitive": "显示敏感内容", - "view_toot_detail": "查看嘟文详细信息", - "open_in_browser": "在浏览器中打开", - "copy_link_to_toot": "复制嘟文链接", - "mute": "静音", - "block": "屏蔽", - "report": "举报", - "delete": "删除", - "via": "来自 {{application}}", - "reply": "回复", - "reblog": "转嘟", - "fav": "喜欢", - "detail": "更多", - "bookmark": "书签", - "pinned": "置顶嘟文", - "poll": { - "vote": "投票", - "votes_count": "投票计数", - "until": "在 {{datetime}} 截止", - "left": "剩余 {{datetime}}", - "refresh": "刷新" - }, - "open_account": { - "title": "未找到该用户", - "text": "在本服务器上找不到 {{account}} 。您想要在浏览器中打开吗?", - "ok": "打开", - "cancel": "取消" - } - }, - "status_loading": { - "message": "加载更多状态" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "关注了你", - "doesnt_follow_you": "没有关注你", - "detail": "更多", - "follow": "关注此用户", - "unfollow": "取消关注此用户", - "subscribe": "订阅此用户", - "unsubscribe": "取消订阅此用户", - "follow_requested": "已发送关注请求", - "open_in_browser": "在浏览器中打开", - "manage_list_memberships": "从列表中添加或删除", - "mute": "静音", - "unmute": "取消静音", - "unblock": "取消屏蔽", - "block": "屏蔽", - "toots": "嘟文", - "follows": "关注", - "followers": "粉丝" - } - }, - "follow_requests": { - "accept": "接受", - "reject": "拒绝" - }, - "hashtag": { - "tag_name": "话题名称", - "delete_tag": "删除话题", - "save_tag": "保存话题" - }, - "search": { - "search": "搜索", - "account": "用户", - "tag": "话题", - "keyword": "关键词", - "toot": "嘟文" - }, - "lists": { - "index": { - "new_list": "新列表的标题", - "edit": "编辑", - "delete": { - "confirm": { - "title": "确定", - "message": "此列表将被永久删除。您确定要继续吗?", - "ok": "删除", - "cancel": "取消" - } - } - } - }, - "login": { - "domain_name_label": "欢迎使用 Whalebird !请输入一个服务器域名来登录你的账号​。", - "proxy_info": "如果您需要使用代理服务器,请设置", - "proxy_here": " 这里进行设置", - "search": "搜索", - "login": "登录" - }, - "authorize": { - "manually_1": "一个认证页面已经在浏览器中打开。", - "manually_2": "如果页面没有打开,请手动进入以下链接:", - "code_label": "输入身份验证码", - "misskey_label": "在提交后请在您的浏览器里进行授权。", - "submit": "提交" - }, - "receive_drop": { - "drop_message": "拖放到此处以添加附件" - }, - "message": { - "account_load_error": "读取账户失败", - "account_remove_error": "移除账户失败", - "preferences_load_error": "加载首选项失败", - "timeline_fetch_error": "加载时间轴失败", - "notification_fetch_error": "加载通知失败", - "favourite_fetch_error": "加载喜欢失败", - "bookmark_fetch_error": "加载书签失败", - "follow_request_accept_error": "接受请求失败", - "follow_request_reject_error": "拒绝请求失败", - "attach_error": "添加文件失败", - "authorize_duplicate_error": "不能重复登录同一域名的同一帐户", - "authorize_error": "认证失败", - "followers_fetch_error": "读取粉丝列表失败", - "follows_fetch_error": "读取关注列表失败", - "toot_fetch_error": "加载嘟文失败", - "follow_error": "关注失败", - "unfollow_error": "取消关注失败", - "subscribe_error": "订阅用户失败", - "unsubscribe_error": "取消订阅用户失败", - "lists_fetch_error": "加载列表失败", - "list_create_error": "创建列表失败", - "members_fetch_error": "加载成员失败", - "remove_user_error": "移除用户失败", - "find_account_error": "找不到用户", - "reblog_error": "转嘟失败", - "unreblog_error": "取消转嘟失败", - "favourite_error": "喜欢失败", - "unfavourite_error": "取消喜欢失败", - "bookmark_error": "添加书签失败", - "unbookmark_error": "移除书签失败", - "delete_error": "删除嘟文失败", - "search_error": "搜索失败", - "toot_error": "创建新嘟失败", - "update_list_memberships_error": "更新列表成员失败", - "add_user_error": "添加用户失败", - "authorize_url_error": "无法获取认证链接", - "domain_confirmed": "{{domain}} 已确认,请登录", - "domain_doesnt_exist": "连接到 {{domain}} 失败,请确认服务器链接是有效或正确的。", - "loading": "加载中...", - "language_not_support_spellchecker_error": "此语言暂时不支持拼写检查", - "update_filter_error": "更新过滤器失败", - "create_filter_error": "创建过滤器失败" - }, - "validation": { - "login": { - "require_domain_name": "需要域名", - "domain_format": "只能输入域名" - }, - "compose": { - "toot_length": "嘟文长度应在 {{min}} 和 {{max}} 之间", - "attach_length": "您只能添加最多 {{max}} 张图片", - "attach_length_plural": "您只能添加最多 {{max}} 张图片", - "attach_image": "您只能上传图片或视频", - "poll_invalid": "投票选项无效" - } - }, - "notification": { - "favourite": { - "title": "新的喜欢", - "body": "{{username}} 喜欢了你的嘟文" - }, - "follow": { - "title": "新粉丝", - "body": "{{username}} 正在关注你" - }, - "follow_request": { - "title": "新关注请求", - "body": "收到来自 {{username}} 的关注请求" - }, - "reblog": { - "title": "新转嘟", - "body": "{{username}} 转发了你的嘟文" - }, - "quote": { - "title": "新回复", - "body": "{{username}} 引用了你的嘟文" - }, - "reaction": { - "title": "新回应", - "body": "{{username}} 回应了你的嘟文" - }, - "status": { - "title": "新建嘟文", - "body": "{{username}} 发了一条新嘟嘟" - }, - "poll_vote": { - "title": "新投票", - "body": "来自 {{username}} 的投票" - }, - "poll_expired": { - "title": "投票已过期", - "body": "{{username}} 的投票已截止" - } - }, - "compose": { - "title": "新建嘟文", - "cw": "在此写下您的警告", - "status": "在想啥?", - "cancel": "取消", - "toot": "发嘟嘟", - "description": "为此媒体添加备用文本", - "footer": { - "add_image": "上传图片", - "poll": "发起投票", - "change_visibility": "更改可见性", - "change_sensitive": "标记媒体为敏感内容", - "add_cw": "添加敏感内容警告", - "pined_hashtag": "已保留的话题标签" - }, - "poll": { - "add_choice": "添加一个选项", - "expires": { - "5_minutes": "5 分钟", - "30_minutes": "30 分钟", - "1_hour": "1 小时", - "6_hours": "6 小时", - "1_day": "1 天", - "3_days": "3 天", - "7_days": "7 天" - } - } - } -} diff --git a/src/config/locales/zh_tw/translation.json b/src/config/locales/zh_tw/translation.json deleted file mode 100644 index cca070fd..00000000 --- a/src/config/locales/zh_tw/translation.json +++ /dev/null @@ -1,540 +0,0 @@ -{ - "main_menu": { - "application": { - "name": "Whalebird (鯨鳥)", - "about": "關於 Whalebird (鯨鳥)", - "preferences": "偏好設定", - "shortcuts": "鍵盤快捷鍵", - "services": "服務", - "hide": "隱藏 Whalebird (鯨鳥)", - "hide_others": "隱藏其他", - "show_all": "全部顯示", - "open": "開啟視窗", - "quit": "離開" - }, - "edit": { - "name": "編輯", - "undo": "復原", - "redo": "重做", - "cut": "剪下", - "copy": "複製", - "paste": "貼上", - "select_all": "全選" - }, - "view": { - "name": "檢視", - "toggle_full_screen": "切換至全螢幕顯示" - }, - "window": { - "always_show_menu_bar": "總是顯示功能選單", - "name": "視窗", - "close": "關閉視窗", - "open": "開啟視窗", - "minimize": "最小化", - "jump_to": "跳至" - }, - "help": { - "name": "幫助", - "thirdparty": "Thirdparty licenses" - } - }, - "global_header": { - "add_new_account": "新增帳號" - }, - "side_menu": { - "profile": "個人檔案", - "show_profile": "顯示個人檔案", - "edit_profile": "編輯個人檔案", - "settings": "帳號設定", - "collapse": "收合", - "expand": "展開", - "home": "首頁", - "notification": "通知", - "direct": "私訊", - "follow_requests": "追隨請求", - "favourite": "我的最愛", - "bookmark": "書籤", - "local": "本機時間軸", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "搜尋", - "lists": "列表" - }, - "header_menu": { - "home": "首頁", - "notification": "Notifications", - "favourite": "Favourited", - "bookmark": "Bookmarks", - "follow_requests": "Follow requests", - "direct_messages": "Direct messages", - "local": "本機時間軸", - "public": "Federated timeline", - "hashtag": "Hashtags", - "search": "搜尋", - "lists": "列表", - "members": "成員", - "reload": "重新整理" - }, - "settings": { - "title": "設定", - "general": { - "title": "一般", - "toot": { - "title": "Posts", - "visibility": { - "description": "Default post visibility", - "notice": "This setting applies only to new posts; replies will follow the visibility settings of the parent post.", - "public": "公開", - "unlisted": "不列出", - "private": "私密", - "direct": "私訊" - }, - "sensitive": { - "description": "預設標記媒體為敏感" - } - } - }, - "timeline": { - "title": "時間軸", - "use_marker": { - "title": "從上次閱讀位置讀取時間軸", - "home": "首頁", - "notifications": "通知" - } - }, - "filters": { - "title": "過濾器", - "form": { - "phrase": "關鍵字或片語", - "expire": "多久後過期", - "context": "過濾內容", - "irreversible": "丟棄而非隱藏", - "whole_word": "整個單字", - "submit": "送出", - "cancel": "取消" - }, - "expires": { - "never": "從不", - "30_minutes": "30 分鐘", - "1_hour": "1 小時", - "6_hours": "6 小時", - "12_hours": "12 小時", - "1_day": "1 天", - "1_week": "1 週" - }, - "new": { - "title": "新增" - }, - "edit": { - "title": "編輯" - }, - "delete": { - "title": "刪除", - "confirm": "Are you sure you want to delete this filter?", - "confirm_ok": "刪除", - "confirm_cancel": "取消" - } - } - }, - "preferences": { - "title": "偏好設定", - "general": { - "title": "一般", - "sounds": { - "title": "聲音", - "description": "Play sounds when", - "fav_rb": "You favourite or boost a post", - "toot": "You make a post" - }, - "timeline": { - "title": "時間軸", - "description": "Customize how your timelines are displayed", - "cw": "Always expand posts tagged with content warnings.", - "nsfw": "Always show media.", - "hideAllAttachments": "Always hide media." - }, - "other": { - "title": "其他選項", - "launch": "Launch Whalebird on startup", - "hideOnLaunch": "Hide the Whalebird window on launch" - }, - "reset": { - "button": "重置偏好設定" - } - }, - "appearance": { - "title": "外觀設定", - "theme_color": "Colour themes", - "theme": { - "system": "系統", - "light": "淺色主題", - "dark": "深色主題", - "solarized_light": "SolarizedLight", - "solarized_dark": "SolarizedDark", - "kimbie_dark": "KimbieDark", - "custom": "自訂" - }, - "custom_theme": { - "background_color": "基礎背景", - "selected_background_color": "焦點背景", - "global_header_color": "帳號選單", - "side_menu_color": "側邊選單", - "primary_color": "主要字型", - "regular_color": "一般字型", - "secondary_color": "次要字型", - "border_color": "邊框", - "header_menu_color": "頁頂選單", - "wrapper_mask_color": "Dialog wrapper" - }, - "font_size": "字型大小", - "font_family": "字型家族", - "toot_padding": "Padding around posts", - "display_style": { - "title": "Username display style", - "display_name_and_username": "顯示名稱及帳號", - "display_name": "顯示名稱", - "username": "帳號" - }, - "time_format": { - "title": "時間格式", - "absolute": "絕對", - "relative": "相對" - } - }, - "notification": { - "title": "Notifications", - "enable": { - "description": "Notify me when I receive...", - "reply": "Replies", - "reblog": "Boosts", - "favourite": "Favourites", - "follow": "New followers", - "reaction": "Emoji reactions", - "follow_request": "Follow requests", - "status": "Status notifications", - "poll_vote": "Poll votes", - "poll_expired": "When a poll expires" - } - }, - "account": { - "title": "帳號", - "connected": "Connected accounts", - "username": "帳號", - "domain": "網域", - "association": "配對", - "order": "順序", - "remove_association": "移除帳號配對", - "remove_all_associations": "移除所有配對", - "confirm": "確認", - "cancel": "取消", - "confirm_message": "Are you sure you want to remove all associations?" - }, - "network": { - "title": "網路", - "proxy": { - "title": "Proxy configuration", - "no": "不使用代理伺服器", - "system": "使用系統代理伺服器", - "manual": "手動設定代理伺服器", - "protocol": "協定", - "host": "代理伺服器位址", - "port": "代理伺服器連接埠", - "username": "代理伺服器使用者名稱", - "password": "代理伺服器密碼", - "protocol_list": { - "http": "http", - "https": "https", - "socks4": "socks4", - "socks4a": "socks4a", - "socks5": "socks5", - "socks5h": "socks5h" - } - }, - "save": "儲存" - }, - "language": { - "title": "語言", - "language": { - "title": "語言", - "description": "請選擇您欲使用於 Whalebird 之語言。" - }, - "spellchecker": { - "title": "拼字檢查", - "enabled": "Enable spell checker" - } - } - }, - "modals": { - "jump": { - "jump_to": "跳至..." - }, - "add_list_member": { - "title": "Add member to List", - "account_name": "帳號名稱" - }, - "list_membership": { - "title": "List memberships" - }, - "mute_confirm": { - "title": "Mute user", - "body": "Are you sure you want to mute notifications from this user?", - "cancel": "取消", - "ok": "靜音" - }, - "shortcut": { - "title": "鍵盤快速鍵", - "ctrl_number": "切換帳號", - "ctrl_k": "跳至其他時間軸", - "ctrl_enter": "Send the post", - "ctrl_r": "Refresh current timeline", - "j": "Select the next post", - "k": "Select the previous post", - "r": "Reply to the selected post", - "b": "Boost the selected post", - "f": "Favourite the selected post", - "o": "View the selected post's details", - "p": "Display the profile of the selected post's author", - "i": "Open the selected post's images", - "x": "Show/hide a content warned post", - "?": "Show this dialog", - "esc": "關閉目前頁面" - }, - "report": { - "title": "Report this user", - "comment": "其他備註", - "cancel": "取消", - "ok": "檢舉" - }, - "thirdparty": { - "title": "Thirdparty licenses" - } - }, - "cards": { - "toot": { - "show_more": "顯示更多", - "hide": "隱藏", - "sensitive": "顯示敏感內容", - "view_toot_detail": "View post details", - "open_in_browser": "Open in browser", - "copy_link_to_toot": "Copy post link", - "mute": "靜音", - "block": "封鎖", - "report": "檢舉", - "delete": "刪除", - "via": "via {{application}}", - "reply": "回覆", - "reblog": "Boost", - "fav": "最愛", - "detail": "Post details", - "bookmark": "書籤", - "pinned": "Pinned post", - "poll": { - "vote": "投票", - "votes_count": "投票數", - "until": "直到 {{datetime}}", - "left": "還剩下 {{datetime}}", - "refresh": "重新整理" - }, - "open_account": { - "title": "Account not found", - "text": "Could not find {{account}} on the server. Do you want to open the account in a browser instead?", - "ok": "Open", - "cancel": "Cancel" - } - }, - "status_loading": { - "message": "讀取更多狀態" - } - }, - "side_bar": { - "account_profile": { - "follows_you": "跟隨了您", - "doesnt_follow_you": "沒有跟隨您", - "detail": "詳細資料", - "follow": "跟隨此使用者", - "unfollow": "取消跟隨此使用者", - "subscribe": "Subscribe to this user", - "unsubscribe": "Unsubscribe from this user", - "follow_requested": "跟隨請求", - "open_in_browser": "Open in browser", - "manage_list_memberships": "Manage list memberships", - "mute": "靜音", - "unmute": "取消靜音", - "unblock": "解除封鎖", - "block": "封鎖", - "toots": "Posts", - "follows": "跟隨", - "followers": "跟隨者" - } - }, - "follow_requests": { - "accept": "接受", - "reject": "拒絕" - }, - "hashtag": { - "tag_name": "主題標籤名稱", - "delete_tag": "刪除主題標籤", - "save_tag": "儲存主題標籤" - }, - "search": { - "search": "搜尋", - "account": "帳號", - "tag": "主題標籤", - "keyword": "Keyword", - "toot": "Post" - }, - "lists": { - "index": { - "new_list": "新列表", - "edit": "編輯", - "delete": { - "confirm": { - "title": "確認", - "message": "This list will be permanently deleted. Are you sure you want to continue?", - "ok": "刪除", - "cancel": "取消" - } - } - } - }, - "login": { - "domain_name_label": "Welcome to Whalebird! Enter a server domain name to log into an account.", - "proxy_info": "If you need to use a proxy server, please set it up", - "proxy_here": " 這裡", - "search": "搜尋", - "login": "登入" - }, - "authorize": { - "manually_1": "授權頁面已於瀏覽器中開啟", - "manually_2": "If it has not yet opened, please go to the following URL manually:", - "code_label": "Enter your authorization code:", - "misskey_label": "請於瀏覽器授權後再送出", - "submit": "送出" - }, - "receive_drop": { - "drop_message": "Drop here to attach a file" - }, - "message": { - "account_load_error": "無法載入帳號", - "account_remove_error": "無法刪除帳號", - "preferences_load_error": "無法載入偏好設定", - "timeline_fetch_error": "無法載入時間軸", - "notification_fetch_error": "無法載入通知", - "favourite_fetch_error": "Failed to fetch favourite", - "bookmark_fetch_error": "Failed to fetch bookmarks", - "follow_request_accept_error": "無法接受請求", - "follow_request_reject_error": "無法拒絕請求", - "attach_error": "無法附加檔案", - "authorize_duplicate_error": "無法以相同帳號登入同一網域", - "authorize_error": "授權失敗", - "followers_fetch_error": "無法載入跟隨者", - "follows_fetch_error": "無法載入跟隨對象", - "toot_fetch_error": "Failed to fetch the post details", - "follow_error": "無法跟隨此使用者", - "unfollow_error": "無法取消跟隨此使用者", - "subscribe_error": "無法訂閱此使用者", - "unsubscribe_error": "無法取消訂閱此使用者", - "lists_fetch_error": "無法載入列表", - "list_create_error": "無法新增列表", - "members_fetch_error": "無法載入成員", - "remove_user_error": "無法移除此使用者", - "find_account_error": "找不到該帳號", - "reblog_error": "Failed to boost", - "unreblog_error": "Failed to unboost", - "favourite_error": "無法標記最愛", - "unfavourite_error": "無法取消最愛", - "bookmark_error": "無法加入書籤", - "unbookmark_error": "無法移除書籤", - "delete_error": "Failed to delete the post", - "search_error": "無法搜尋", - "toot_error": "Failed to create the post", - "update_list_memberships_error": "無法更新列表成員", - "add_user_error": "無法新增使用者", - "authorize_url_error": "無法取得授權 URL", - "domain_confirmed": "{{domain}} is confirmed, please log in", - "domain_doesnt_exist": "Failed to connect to {{domain}}, make sure the server URL is valid or correct.", - "loading": "載入中...", - "language_not_support_spellchecker_error": "This language is not supported by the spell checker", - "update_filter_error": "無法更新過濾器", - "create_filter_error": "無法新增過濾器" - }, - "validation": { - "login": { - "require_domain_name": "請填入網域名稱", - "domain_format": "請僅輸入網域名稱 (無前綴 https://)" - }, - "compose": { - "toot_length": "Post length should be between {{min}} and {{max}}", - "attach_length": "You can only attach up to {{max}} image", - "attach_length_plural": "You can only attach up to {{max}} images", - "attach_image": "You can only attach images or videos", - "poll_invalid": "Invalid poll choices" - } - }, - "notification": { - "favourite": { - "title": "New favourite", - "body": "{{username}} favourited your post" - }, - "follow": { - "title": "New follower", - "body": "{{username}} 跟隨您了" - }, - "follow_request": { - "title": "New follow request", - "body": "Received a follow request from {{username}}" - }, - "reblog": { - "title": "New boost", - "body": "{{username}} boosted your post" - }, - "quote": { - "title": "New quote", - "body": "{{username}} quoted your post" - }, - "reaction": { - "title": "New reaction", - "body": "{{username}} reacted to your post" - }, - "status": { - "title": "New post", - "body": "{{username}} made a new post" - }, - "poll_vote": { - "title": "New poll vote", - "body": "{{username}} voted in your poll" - }, - "poll_expired": { - "title": "Poll expired", - "body": "{{username}}'s poll has ended" - } - }, - "compose": { - "title": "New post", - "cw": "Write your warning here", - "status": "What's on your mind?", - "cancel": "Cancel", - "toot": "Post", - "description": "Add alternate text for this media", - "footer": { - "add_image": "Add images", - "poll": "Add a poll", - "change_visibility": "Change visibility", - "change_sensitive": "Mark media as sensitive", - "add_cw": "Add content warnings", - "pined_hashtag": "Pinned hashtag" - }, - "poll": { - "add_choice": "Add an option", - "expires": { - "5_minutes": "5 minutes", - "30_minutes": "30 minutes", - "1_hour": "1 hour", - "6_hours": "6 hours", - "1_day": "1 day", - "3_days": "3 days", - "7_days": "7 days" - } - } - } -} diff --git a/src/config/thirdparty.json b/src/config/thirdparty.json deleted file mode 100644 index a071306f..00000000 --- a/src/config/thirdparty.json +++ /dev/null @@ -1 +0,0 @@ -[{"package_name":"@babel/parser@7.22.4","license":"MIT","publisher":"The Babel Team","repository":"https://github.com/babel/babel"},{"package_name":"@babel/runtime@7.21.5","license":"MIT","publisher":"The Babel Team","repository":"https://github.com/babel/babel"},{"package_name":"@ctrl/tinycolor@3.5.0","license":"MIT","publisher":"Scott Cooper","repository":"https://github.com/scttcper/tinycolor"},{"package_name":"@element-plus/icons-vue@2.0.10","license":"MIT","repository":"https://github.com/element-plus/element-plus-icons"},{"package_name":"@floating-ui/core@1.2.1","license":"MIT","publisher":"atomiks","repository":"https://github.com/floating-ui/floating-ui"},{"package_name":"@floating-ui/dom@1.2.1","license":"MIT","publisher":"atomiks","repository":"https://github.com/floating-ui/floating-ui"},{"package_name":"@fortawesome/fontawesome-common-types@6.4.0","license":"MIT","publisher":"The Font Awesome Team","repository":"https://github.com/FortAwesome/Font-Awesome"},{"package_name":"@fortawesome/fontawesome-svg-core@6.4.0","license":"MIT","publisher":"The Font Awesome Team","repository":"https://github.com/FortAwesome/Font-Awesome"},{"package_name":"@fortawesome/free-regular-svg-icons@6.4.0","license":"(CC-BY-4.0 AND MIT)","publisher":"The Font Awesome Team","repository":"https://github.com/FortAwesome/Font-Awesome"},{"package_name":"@fortawesome/free-solid-svg-icons@6.4.0","license":"(CC-BY-4.0 AND MIT)","publisher":"The Font Awesome Team","repository":"https://github.com/FortAwesome/Font-Awesome"},{"package_name":"@fortawesome/vue-fontawesome@3.0.3","license":"MIT","repository":"https://github.com/FortAwesome/vue-fontawesome"},{"package_name":"@jridgewell/sourcemap-codec@1.4.15","license":"MIT","publisher":"Rich Harris","repository":"https://github.com/jridgewell/sourcemap-codec"},{"package_name":"@sxzz/popperjs-es@2.11.7","license":"MIT","publisher":"Federico Zivolo","repository":"https://github.com/popperjs/popper-core"},{"package_name":"@trodi/electron-splashscreen@1.0.2","license":"MIT","publisher":"Troy McKinnon","repository":"https://github.com/trodi/electron-splashscreen"},{"package_name":"@types/lodash-es@4.17.6","license":"MIT","repository":"https://github.com/DefinitelyTyped/DefinitelyTyped"},{"package_name":"@types/lodash@4.14.191","license":"MIT","repository":"https://github.com/DefinitelyTyped/DefinitelyTyped"},{"package_name":"@types/node@20.2.5","license":"MIT","repository":"https://github.com/DefinitelyTyped/DefinitelyTyped"},{"package_name":"@types/oauth@0.9.1","license":"MIT","repository":"https://github.com/DefinitelyTyped/DefinitelyTyped"},{"package_name":"@types/web-bluetooth@0.0.16","license":"MIT","repository":"https://github.com/DefinitelyTyped/DefinitelyTyped"},{"package_name":"@types/web-bluetooth@0.0.17","license":"MIT","repository":"https://github.com/DefinitelyTyped/DefinitelyTyped"},{"package_name":"@types/ws@8.5.4","license":"MIT","repository":"https://github.com/DefinitelyTyped/DefinitelyTyped"},{"package_name":"@vue/compiler-core@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/compiler-dom@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/compiler-sfc@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/compiler-ssr@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/devtools-api@6.5.0","license":"MIT","publisher":"Guillaume Chau","repository":"https://github.com/vuejs/vue-devtools"},{"package_name":"@vue/reactivity-transform@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/reactivity@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/runtime-core@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/runtime-dom@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/server-renderer@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vue/shared@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"@vueuse/core@10.1.2","license":"MIT","publisher":"Anthony Fu","repository":"https://github.com/vueuse/vueuse"},{"package_name":"@vueuse/core@9.13.0","license":"MIT","publisher":"Anthony Fu","repository":"https://github.com/vueuse/vueuse"},{"package_name":"@vueuse/math@10.1.2","license":"MIT","publisher":"Anthony Fu","repository":"https://github.com/vueuse/vueuse"},{"package_name":"@vueuse/metadata@10.1.2","license":"MIT","publisher":"Anthony Fu","repository":"https://github.com/vueuse/vueuse"},{"package_name":"@vueuse/metadata@9.13.0","license":"MIT","publisher":"Anthony Fu","repository":"https://github.com/vueuse/vueuse"},{"package_name":"@vueuse/shared@10.1.2","license":"MIT","publisher":"Anthony Fu","repository":"https://github.com/vueuse/vueuse"},{"package_name":"@vueuse/shared@9.13.0","license":"MIT","publisher":"Anthony Fu","repository":"https://github.com/vueuse/vueuse"},{"package_name":"Whalebird@5.0.5","license":"GPL-3.0*","publisher":"AkiraFukushima","repository":"https://github.com/h3poteto/whalebird-desktop"},{"package_name":"about-window@1.15.2","license":"MIT","publisher":"rhysd","repository":"https://github.com/rhysd/electron-about-window"},{"package_name":"agent-base@6.0.2","license":"MIT","publisher":"Nathan Rajlich","repository":"https://github.com/TooTallNate/node-agent-base"},{"package_name":"animate.css@4.1.1","license":"MIT","publisher":"Animate.css","repository":"https://github.com/animate-css/animate.css"},{"package_name":"ansi-regex@5.0.1","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/chalk/ansi-regex"},{"package_name":"ansi-styles@4.3.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/chalk/ansi-styles"},{"package_name":"applescript@1.0.0","license":"MIT*","publisher":"Nathan Rajlich"},{"package_name":"astral-regex@2.0.0","license":"MIT","publisher":"Kevin Mårtensson","repository":"https://github.com/kevva/astral-regex"},{"package_name":"async-validator@4.2.5","license":"MIT","repository":"https://github.com/yiminghe/async-validator"},{"package_name":"async@2.6.4","license":"MIT","publisher":"Caolan McMahon","repository":"https://github.com/caolan/async"},{"package_name":"asynckit@0.4.0","license":"MIT","publisher":"Alex Indigo","repository":"https://github.com/alexindigo/asynckit"},{"package_name":"auto-launch@5.0.5","license":"MIT","publisher":"Donal Linehan","repository":"https://github.com/4ver/node-auto-launch"},{"package_name":"axios@1.4.0","license":"MIT","publisher":"Matt Zabriskie","repository":"https://github.com/axios/axios"},{"package_name":"babel-polyfill@6.26.0","license":"MIT","publisher":"Sebastian McKenzie","repository":"https://github.com/babel/babel/tree/master/packages/babel-polyfill"},{"package_name":"babel-runtime@6.26.0","license":"MIT","publisher":"Sebastian McKenzie","repository":"https://github.com/babel/babel/tree/master/packages/babel-runtime"},{"package_name":"balanced-match@1.0.2","license":"MIT","publisher":"Julian Gruber","repository":"https://github.com/juliangruber/balanced-match"},{"package_name":"base64-js@1.5.1","license":"MIT","publisher":"T. Jameson Little","repository":"https://github.com/beatgammit/base64-js"},{"package_name":"better-sqlite3@8.4.0","license":"MIT","publisher":"Joshua Wise","repository":"https://github.com/WiseLibs/better-sqlite3"},{"package_name":"bindings@1.5.0","license":"MIT","publisher":"Nathan Rajlich","repository":"https://github.com/TooTallNate/node-bindings"},{"package_name":"bl@4.1.0","license":"MIT","repository":"https://github.com/rvagg/bl"},{"package_name":"brace-expansion@1.1.11","license":"MIT","publisher":"Julian Gruber","repository":"https://github.com/juliangruber/brace-expansion"},{"package_name":"buffer@5.7.1","license":"MIT","publisher":"Feross Aboukhadijeh","repository":"https://github.com/feross/buffer"},{"package_name":"bufferutil@4.0.7","license":"MIT","publisher":"Einar Otto Stangvik","repository":"https://github.com/websockets/bufferutil"},{"package_name":"chownr@1.1.4","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/chownr"},{"package_name":"cli-truncate@2.1.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/cli-truncate"},{"package_name":"color-convert@2.0.1","license":"MIT","publisher":"Heather Arthur","repository":"https://github.com/Qix-/color-convert"},{"package_name":"color-name@1.1.4","license":"MIT","publisher":"DY","repository":"https://github.com/colorjs/color-name"},{"package_name":"combined-stream@1.0.8","license":"MIT","publisher":"Felix Geisendörfer","repository":"https://github.com/felixge/node-combined-stream"},{"package_name":"concat-map@0.0.1","license":"MIT","publisher":"James Halliday","repository":"https://github.com/substack/node-concat-map"},{"package_name":"core-js@2.6.12","license":"MIT","repository":"https://github.com/zloirock/core-js"},{"package_name":"core-js@3.30.2","license":"MIT","publisher":"Denis Pushkarev","repository":"https://github.com/zloirock/core-js"},{"package_name":"csstype@3.1.2","license":"MIT","publisher":"Fredrik Nicol","repository":"https://github.com/frenic/csstype"},{"package_name":"dayjs@1.11.7","license":"MIT","publisher":"iamkun","repository":"https://github.com/iamkun/dayjs"},{"package_name":"debug@4.3.4","license":"MIT","publisher":"Josh Junon","repository":"https://github.com/debug-js/debug"},{"package_name":"decompress-response@6.0.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/decompress-response"},{"package_name":"deep-extend@0.6.0","license":"MIT","publisher":"Viacheslav Lotsmanov","repository":"https://github.com/unclechu/node-deep-extend"},{"package_name":"deepmerge@4.3.0","license":"MIT","repository":"https://github.com/TehShrike/deepmerge"},{"package_name":"delayed-stream@1.0.0","license":"MIT","publisher":"Felix Geisendörfer","repository":"https://github.com/felixge/node-delayed-stream"},{"package_name":"detect-libc@2.0.1","license":"Apache-2.0","publisher":"Lovell Fuller","repository":"https://github.com/lovell/detect-libc"},{"package_name":"dom-serializer@2.0.0","license":"MIT","publisher":"Felix Boehm","repository":"https://github.com/cheeriojs/dom-serializer"},{"package_name":"domelementtype@2.3.0","license":"BSD-2-Clause","publisher":"Felix Boehm","repository":"https://github.com/fb55/domelementtype"},{"package_name":"domhandler@5.0.3","license":"BSD-2-Clause","publisher":"Felix Boehm","repository":"https://github.com/fb55/domhandler"},{"package_name":"domutils@3.0.1","license":"BSD-2-Clause","publisher":"Felix Boehm","repository":"https://github.com/fb55/domutils"},{"package_name":"electron-context-menu@3.6.1","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/electron-context-menu"},{"package_name":"electron-dl@3.5.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/electron-dl"},{"package_name":"electron-is-dev@2.0.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/electron-is-dev"},{"package_name":"electron-json-storage@4.6.0","license":"MIT","publisher":"Juan Cruz Viotti","repository":"https://github.com/electron-userland/electron-json-storage"},{"package_name":"electron-log@4.4.8","license":"MIT","publisher":"Alexey Prokhorov","repository":"https://github.com/megahertz/electron-log"},{"package_name":"electron-window-state@5.0.3","license":"MIT","publisher":"Marcel Wiehle","repository":"https://github.com/mawie81/electron-window-state"},{"package_name":"element-plus@2.3.4","license":"MIT","repository":"https://github.com/element-plus/element-plus"},{"package_name":"emoji-mart-vue-fast@12.0.4","license":"BSD-3-Clause","publisher":"Borys Serebrov","repository":"https://github.com/serebrov/emoji-mart-vue"},{"package_name":"emoji-regex@8.0.0","license":"MIT","publisher":"Mathias Bynens","repository":"https://github.com/mathiasbynens/emoji-regex"},{"package_name":"end-of-stream@1.4.4","license":"MIT","publisher":"Mathias Buus","repository":"https://github.com/mafintosh/end-of-stream"},{"package_name":"entities@4.4.0","license":"BSD-2-Clause","publisher":"Felix Boehm","repository":"https://github.com/fb55/entities"},{"package_name":"escape-goat@2.1.1","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/escape-goat"},{"package_name":"escape-html@1.0.3","license":"MIT","repository":"https://github.com/component/escape-html"},{"package_name":"escape-string-regexp@4.0.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/escape-string-regexp"},{"package_name":"estree-walker@2.0.2","license":"MIT","publisher":"Rich Harris","repository":"https://github.com/Rich-Harris/estree-walker"},{"package_name":"expand-template@2.0.3","license":"(MIT OR WTFPL)","publisher":"LM","repository":"https://github.com/ralphtheninja/expand-template"},{"package_name":"ext-list@2.2.2","license":"MIT","publisher":"Kevin Mårtensson","repository":"https://github.com/kevva/ext-list"},{"package_name":"ext-name@5.0.0","license":"MIT","publisher":"Kevin Mårtensson","repository":"https://github.com/kevva/ext-name"},{"package_name":"file-type@10.11.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/file-type"},{"package_name":"file-uri-to-path@1.0.0","license":"MIT","publisher":"Nathan Rajlich","repository":"https://github.com/TooTallNate/file-uri-to-path"},{"package_name":"follow-redirects@1.15.2","license":"MIT","publisher":"Ruben Verborgh","repository":"https://github.com/follow-redirects/follow-redirects"},{"package_name":"form-data@4.0.0","license":"MIT","publisher":"Felix Geisendörfer","repository":"https://github.com/form-data/form-data"},{"package_name":"fs-constants@1.0.0","license":"MIT","publisher":"Mathias Buus","repository":"https://github.com/mafintosh/fs-constants"},{"package_name":"fs.realpath@1.0.0","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/fs.realpath"},{"package_name":"github-from-package@0.0.0","license":"MIT","publisher":"James Halliday","repository":"https://github.com/substack/github-from-package"},{"package_name":"glob@7.2.3","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/node-glob"},{"package_name":"graceful-fs@4.2.10","license":"ISC","repository":"https://github.com/isaacs/node-graceful-fs"},{"package_name":"htmlparser2@8.0.1","license":"MIT","publisher":"Felix Boehm","repository":"https://github.com/fb55/htmlparser2"},{"package_name":"https-proxy-agent@5.0.1","license":"MIT","publisher":"Nathan Rajlich","repository":"https://github.com/TooTallNate/node-https-proxy-agent"},{"package_name":"i18next@22.4.15","license":"MIT","publisher":"Jan Mühlemann","repository":"https://github.com/i18next/i18next"},{"package_name":"ieee754@1.2.1","license":"BSD-3-Clause","publisher":"Feross Aboukhadijeh","repository":"https://github.com/feross/ieee754"},{"package_name":"imurmurhash@0.1.4","license":"MIT","publisher":"Jens Taylor","repository":"https://github.com/jensyt/imurmurhash-js"},{"package_name":"inflight@1.0.6","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/npm/inflight"},{"package_name":"inherits@2.0.4","license":"ISC","repository":"https://github.com/isaacs/inherits"},{"package_name":"ini@1.3.8","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/ini"},{"package_name":"ip@2.0.0","license":"MIT","publisher":"Fedor Indutny","repository":"https://github.com/indutny/node-ip"},{"package_name":"is-fullwidth-code-point@3.0.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/is-fullwidth-code-point"},{"package_name":"is-plain-obj@1.1.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/is-plain-obj"},{"package_name":"is-plain-object@5.0.0","license":"MIT","publisher":"Jon Schlinkert","repository":"https://github.com/jonschlinkert/is-plain-object"},{"package_name":"jsonfile@4.0.0","license":"MIT","publisher":"JP Richardson","repository":"https://github.com/jprichardson/node-jsonfile"},{"package_name":"lockfile@1.0.4","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/npm/lockfile"},{"package_name":"lodash-es@4.17.21","license":"MIT","publisher":"John-David Dalton","repository":"https://github.com/lodash/lodash"},{"package_name":"lodash-unified@1.0.3","license":"MIT","publisher":"Jack Works"},{"package_name":"lodash@4.17.21","license":"MIT","publisher":"John-David Dalton","repository":"https://github.com/lodash/lodash"},{"package_name":"lru-cache@6.0.0","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/node-lru-cache"},{"package_name":"magic-string@0.30.0","license":"MIT","publisher":"Rich Harris","repository":"https://github.com/rich-harris/magic-string"},{"package_name":"megalodon@6.0.3","license":"MIT","publisher":"h3poteto","repository":"https://github.com/h3poteto/megalodon"},{"package_name":"memoize-one@6.0.0","license":"MIT","publisher":"Alex Reardon","repository":"https://github.com/alexreardon/memoize-one"},{"package_name":"mime-db@1.52.0","license":"MIT","repository":"https://github.com/jshttp/mime-db"},{"package_name":"mime-types@2.1.35","license":"MIT","repository":"https://github.com/jshttp/mime-types"},{"package_name":"mimic-response@3.1.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/mimic-response"},{"package_name":"minimatch@3.1.2","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/minimatch"},{"package_name":"minimist@1.2.8","license":"MIT","publisher":"James Halliday","repository":"https://github.com/minimistjs/minimist"},{"package_name":"mitt@2.1.0","license":"MIT","repository":"https://github.com/developit/mitt"},{"package_name":"mitt@3.0.0","license":"MIT","repository":"https://github.com/developit/mitt"},{"package_name":"mkdirp-classic@0.5.3","license":"MIT","publisher":"Mathias Buus","repository":"https://github.com/mafintosh/mkdirp-classic"},{"package_name":"mkdirp@0.5.6","license":"MIT","publisher":"James Halliday","repository":"https://github.com/substack/node-mkdirp"},{"package_name":"modify-filename@1.1.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/modify-filename"},{"package_name":"moment@2.29.4","license":"MIT","publisher":"Iskren Ivov Chernev","repository":"https://github.com/moment/moment"},{"package_name":"mousetrap@1.6.5","license":"Apache-2.0 WITH LLVM-exception","publisher":"Craig Campbell","repository":"https://github.com/ccampbell/mousetrap"},{"package_name":"ms@2.1.2","license":"MIT","repository":"https://github.com/zeit/ms"},{"package_name":"nanoid@3.3.6","license":"MIT","publisher":"Andrey Sitnik","repository":"https://github.com/ai/nanoid"},{"package_name":"napi-build-utils@1.0.2","license":"MIT","publisher":"Jim Schlight","repository":"https://github.com/inspiredware/napi-build-utils"},{"package_name":"node-abi@3.33.0","license":"MIT","publisher":"Lukas Geiger","repository":"https://github.com/electron/node-abi"},{"package_name":"node-gyp-build@4.6.0","license":"MIT","publisher":"Mathias Buus","repository":"https://github.com/prebuild/node-gyp-build"},{"package_name":"normalize-wheel-es@1.2.0","license":"BSD-3-Clause","publisher":"Bas Stottelaar","repository":"https://github.com/sxzz/normalize-wheel-es"},{"package_name":"oauth@0.10.0","license":"MIT","publisher":"Ciaran Jessup","repository":"https://github.com/ciaranj/node-oauth"},{"package_name":"object-assign-deep@0.4.0","license":"MIT","publisher":"Josh Cole","repository":"https://github.com/saikojosh/Object-Assign-Deep"},{"package_name":"once@1.4.0","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/once"},{"package_name":"opencollective-postinstall@2.0.3","license":"MIT","publisher":"Xavier Damman","repository":"https://github.com/opencollective/opencollective-postinstall"},{"package_name":"p-finally@1.0.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/p-finally"},{"package_name":"p-try@2.2.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/p-try"},{"package_name":"parse-link-header@2.0.0","license":"MIT","publisher":"Thorsten Lorenz","repository":"https://github.com/thlorenz/parse-link-header"},{"package_name":"parse-srcset@1.0.2","license":"MIT","publisher":"Alex Bell","repository":"https://github.com/albell/parse-srcset"},{"package_name":"path-exists@4.0.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/path-exists"},{"package_name":"path-is-absolute@1.0.1","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/path-is-absolute"},{"package_name":"picocolors@1.0.0","license":"ISC","publisher":"Alexey Raspopov","repository":"https://github.com/alexeyraspopov/picocolors"},{"package_name":"pify@4.0.1","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/pify"},{"package_name":"popper.js@1.16.1","license":"MIT","publisher":"Federico Zivolo","repository":"https://github.com/FezVrasta/popper.js"},{"package_name":"postcss@8.4.23","license":"MIT","publisher":"Andrey Sitnik","repository":"https://github.com/postcss/postcss"},{"package_name":"prebuild-install@7.1.1","license":"MIT","publisher":"Mathias Buus","repository":"https://github.com/prebuild/prebuild-install"},{"package_name":"proxy-from-env@1.1.0","license":"MIT","publisher":"Rob Wu","repository":"https://github.com/Rob--W/proxy-from-env"},{"package_name":"pump@3.0.0","license":"MIT","publisher":"Mathias Buus Madsen","repository":"https://github.com/mafintosh/pump"},{"package_name":"pupa@2.1.1","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/pupa"},{"package_name":"rc@1.2.8","license":"(BSD-2-Clause OR MIT OR Apache-2.0)","publisher":"Dominic Tarr","repository":"https://github.com/dominictarr/rc"},{"package_name":"read-chunk@3.2.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/read-chunk"},{"package_name":"readable-stream@3.6.1","license":"MIT","repository":"https://github.com/nodejs/readable-stream"},{"package_name":"readable-stream@3.6.2","license":"MIT","repository":"https://github.com/nodejs/readable-stream"},{"package_name":"regenerator-runtime@0.10.5","license":"MIT","publisher":"Ben Newman","repository":"https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime"},{"package_name":"regenerator-runtime@0.11.1","license":"MIT","publisher":"Ben Newman","repository":"https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime"},{"package_name":"regenerator-runtime@0.13.11","license":"MIT","publisher":"Ben Newman","repository":"https://github.com/facebook/regenerator/tree/main/packages/runtime"},{"package_name":"rimraf@2.7.1","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/rimraf"},{"package_name":"safe-buffer@5.2.1","license":"MIT","publisher":"Feross Aboukhadijeh","repository":"https://github.com/feross/safe-buffer"},{"package_name":"sanitize-html@2.10.0","license":"MIT","publisher":"Apostrophe Technologies, Inc.","repository":"https://github.com/apostrophecms/sanitize-html"},{"package_name":"semver@7.3.8","license":"ISC","publisher":"GitHub Inc.","repository":"https://github.com/npm/node-semver"},{"package_name":"signal-exit@3.0.7","license":"ISC","publisher":"Ben Coe","repository":"https://github.com/tapjs/signal-exit"},{"package_name":"simplayer@0.0.8","license":"MIT","publisher":"MaxMEllon"},{"package_name":"simple-concat@1.0.1","license":"MIT","publisher":"Feross Aboukhadijeh","repository":"https://github.com/feross/simple-concat"},{"package_name":"simple-get@4.0.1","license":"MIT","publisher":"Feross Aboukhadijeh","repository":"https://github.com/feross/simple-get"},{"package_name":"slice-ansi@3.0.0","license":"MIT","repository":"https://github.com/chalk/slice-ansi"},{"package_name":"smart-buffer@4.2.0","license":"MIT","publisher":"Josh Glazebrook","repository":"https://github.com/JoshGlazebrook/smart-buffer"},{"package_name":"socks-proxy-agent@7.0.0","license":"MIT","publisher":"Nathan Rajlich","repository":"https://github.com/TooTallNate/node-socks-proxy-agent"},{"package_name":"socks@2.7.1","license":"MIT","publisher":"Josh Glazebrook","repository":"https://github.com/JoshGlazebrook/socks"},{"package_name":"sort-keys-length@1.0.1","license":"MIT","publisher":"Kevin Mårtensson","repository":"https://github.com/kevva/sort-keys-length"},{"package_name":"sort-keys@1.1.2","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/sort-keys"},{"package_name":"source-map-js@1.0.2","license":"BSD-3-Clause","publisher":"Valentin 7rulnik Semirulnik","repository":"https://github.com/7rulnik/source-map-js"},{"package_name":"string-width@4.2.3","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/string-width"},{"package_name":"string_decoder@1.3.0","license":"MIT","repository":"https://github.com/nodejs/string_decoder"},{"package_name":"strip-ansi@6.0.1","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/chalk/strip-ansi"},{"package_name":"strip-json-comments@2.0.1","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/strip-json-comments"},{"package_name":"system-font-families@0.6.0","license":"Apache-2.0","publisher":"Ryan Burgett","repository":"https://github.com/rBurgett/system-font-families"},{"package_name":"tar-fs@2.1.1","license":"MIT","publisher":"Mathias Buus","repository":"https://github.com/mafintosh/tar-fs"},{"package_name":"tar-stream@2.2.0","license":"MIT","publisher":"Mathias Buus","repository":"https://github.com/mafintosh/tar-stream"},{"package_name":"ttfinfo@0.2.0","license":"MIT","publisher":"Trevor Dixon","repository":"https://github.com/trevordixon/ttfinfo"},{"package_name":"tunnel-agent@0.6.0","license":"Apache-2.0","publisher":"Mikeal Rogers","repository":"https://github.com/mikeal/tunnel-agent"},{"package_name":"typescript@5.0.4","license":"Apache-2.0","publisher":"Microsoft Corp.","repository":"https://github.com/Microsoft/TypeScript"},{"package_name":"unicode-emoji-json@0.4.0","license":"MIT","publisher":"Mu-An Chiou","repository":"https://github.com/muan/unicode-emoji-json"},{"package_name":"untildify@3.0.3","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/untildify"},{"package_name":"unused-filename@2.1.0","license":"MIT","publisher":"Sindre Sorhus","repository":"https://github.com/sindresorhus/unused-filename"},{"package_name":"utf-8-validate@6.0.3","license":"MIT","publisher":"Einar Otto Stangvik","repository":"https://github.com/websockets/utf-8-validate"},{"package_name":"util-deprecate@1.0.2","license":"MIT","publisher":"Nathan Rajlich","repository":"https://github.com/TooTallNate/util-deprecate"},{"package_name":"uuid@9.0.0","license":"MIT","repository":"https://github.com/uuidjs/uuid"},{"package_name":"vue-demi@0.14.0","license":"MIT","publisher":"Anthony Fu","repository":"https://github.com/antfu/vue-demi"},{"package_name":"vue-observe-visibility@2.0.0-alpha.1","license":"MIT","publisher":"Guillaume Chau","repository":"https://github.com/Akryum/vue-observe-visibility"},{"package_name":"vue-popperjs@2.3.0","license":"MIT","publisher":"Igor Ognichenko","repository":"https://github.com/RobinCK/vue-popper"},{"package_name":"vue-resize@2.0.0-alpha.1","license":"MIT","publisher":"Guillaume Chau","repository":"https://github.com/Akryum/vue-resize"},{"package_name":"vue-router@4.2.2","license":"MIT","repository":"https://github.com/vuejs/router"},{"package_name":"vue-virtual-scroller@2.0.0-beta.8","license":"MIT","publisher":"Guillaume Chau","repository":"https://github.com/Akryum/vue-virtual-scroller"},{"package_name":"vue3-i18next@0.2.2","license":"MIT","publisher":"h3poteto","repository":"https://github.com/h3poteto/vue3-i18next"},{"package_name":"vue@3.3.4","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/core"},{"package_name":"vuex-router-sync@6.0.0-rc.1","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/vuex-router-sync"},{"package_name":"vuex@4.1.0","license":"MIT","publisher":"Evan You","repository":"https://github.com/vuejs/vuex"},{"package_name":"winreg@1.2.4","license":"BSD-2-Clause","publisher":"Paul Bottin","repository":"https://github.com/fresc81/node-winreg"},{"package_name":"with-open-file@0.1.7","license":"MIT","publisher":"Raphael von der Grün","repository":"https://github.com/raphinesse/with-open-file"},{"package_name":"wrappy@1.0.2","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/npm/wrappy"},{"package_name":"write-file-atomic@2.4.3","license":"ISC","publisher":"Rebecca Turner","repository":"https://github.com/iarna/write-file-atomic"},{"package_name":"ws@8.13.0","license":"MIT","publisher":"Einar Otto Stangvik","repository":"https://github.com/websockets/ws"},{"package_name":"xtend@4.0.2","license":"MIT","publisher":"Raynos","repository":"https://github.com/Raynos/xtend"},{"package_name":"yallist@4.0.0","license":"ISC","publisher":"Isaac Z. Schlueter","repository":"https://github.com/isaacs/yallist"}] \ No newline at end of file diff --git a/src/constants/displayStyle/index.ts b/src/constants/displayStyle/index.ts deleted file mode 100644 index 8e72d37e..00000000 --- a/src/constants/displayStyle/index.ts +++ /dev/null @@ -1,27 +0,0 @@ -export type DisplayStyleType = { - name: string - value: number -} - -export type DisplayStyleList = { - DisplayNameAndUsername: DisplayStyleType - DisplayName: DisplayStyleType - Username: DisplayStyleType -} - -const displayStyleList: DisplayStyleList = { - DisplayNameAndUsername: { - name: 'preferences.appearance.display_style.display_name_and_username', - value: 0 - }, - DisplayName: { - name: 'preferences.appearance.display_style.display_name', - value: 1 - }, - Username: { - name: 'preferences.appearance.display_style.username', - value: 2 - } -} - -export default displayStyleList diff --git a/src/constants/initializer/preferences.ts b/src/constants/initializer/preferences.ts deleted file mode 100644 index 61624a7f..00000000 --- a/src/constants/initializer/preferences.ts +++ /dev/null @@ -1,99 +0,0 @@ -import DisplayStyle from '~/src/constants/displayStyle' -import Theme from '~/src/constants/theme' -import Language from '~/src/constants/language' -import TimeFormat from '~/src/constants/timeFormat' -import { LightTheme } from '~/src/constants/themeColor' -import DefaultFonts from '~/src/renderer/utils/fonts' -import { Sound } from '~/src/types/sound' -import { Timeline } from '~/src/types/timeline' -import { Notify } from '~/src/types/notify' -import { Appearance } from '~/src/types/appearance' -import { Language as LanguageSet } from '~/src/types/language' -import { General, State, Notification, BaseConfig, Other, Menu } from '~/src/types/preference' -import { Proxy, ProxySource } from '~/src/types/proxy' - -const sound: Sound = { - fav_rb: true, - toot: true -} - -const timeline: Timeline = { - cw: false, - nsfw: false, - hideAllAttachments: false -} - -const other: Other = { - launch: false, - hideOnLaunch: false -} - -const general: General = { - sound: sound, - timeline: timeline, - other: other -} - -const state: State = { - collapse: false, - hideGlobalHeader: false -} - -const notify: Notify = { - reply: true, - reblog: true, - favourite: true, - follow: true, - follow_request: true, - reaction: true, - status: true, - poll_vote: true, - poll_expired: true -} - -const language: LanguageSet = { - language: Language.en.key, - spellchecker: { - enabled: true, - languages: [Language.en.key] - } -} - -const notification: Notification = { - notify: notify -} - -const appearance: Appearance = { - theme: Theme.System.key, - fontSize: 14, - displayNameStyle: DisplayStyle.DisplayNameAndUsername.value, - timeFormat: TimeFormat.Absolute.value, - customThemeColor: LightTheme, - font: DefaultFonts[0], - tootPadding: 8 -} - -const proxy: Proxy = { - source: ProxySource.system, - manualProxyConfig: { - protocol: '', - host: '', - port: '', - username: '', - password: '' - } -} - -const menu: Menu = { - autoHideMenu: false -} - -export const Base: BaseConfig = { - general: general, - state: state, - language: language, - notification: notification, - appearance: appearance, - proxy: proxy, - menu: menu -} diff --git a/src/constants/initializer/setting.ts b/src/constants/initializer/setting.ts deleted file mode 100644 index 298dcfd9..00000000 --- a/src/constants/initializer/setting.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Setting } from '~/src/types/setting' - -export const DefaultSetting: Setting = { - accountId: 0, - markerHome: false, - markerNotifications: true -} diff --git a/src/constants/language/index.ts b/src/constants/language/index.ts deleted file mode 100644 index 31fc9d46..00000000 --- a/src/constants/language/index.ts +++ /dev/null @@ -1,151 +0,0 @@ -export type LanguageType = { - name: string - key: string - rfc4646: string -} - -export type LanguageList = { - de: LanguageType - en: LanguageType - fr: LanguageType - gd: LanguageType - ja: LanguageType - ko: LanguageType - pl: LanguageType - id: LanguageType - it: LanguageType - zh_cn: LanguageType - zh_tw: LanguageType - cs: LanguageType - es_es: LanguageType - no: LanguageType - pt_pt: LanguageType - ru: LanguageType - si: LanguageType - sv_se: LanguageType - tzm: LanguageType - fa: LanguageType - is: LanguageType - eu: LanguageType - hu: LanguageType -} - -const languageList: LanguageList = { - de: { - name: 'Deutsch', - key: 'de', - rfc4646: 'de' - }, - en: { - name: 'English', - key: 'en', - rfc4646: 'en-US' - }, - eu: { - name: 'Basque', - key: 'eu', - rfc4646: 'eu' - }, - fa: { - name: 'Persian', - key: 'fa', - rfc4646: 'fa' - }, - fr: { - name: 'Français', - key: 'fr', - rfc4646: 'fr' - }, - gd: { - name: 'Gàidhlig', - key: 'gd', - rfc4646: 'gd' - }, - ja: { - name: '日本語', - key: 'ja', - rfc4646: 'ja-JP' - }, - ko: { - name: '한국어', - key: 'ko', - rfc4646: 'ko' - }, - pl: { - name: 'Polski', - key: 'pl', - rfc4646: 'pl' - }, - hu: { - name: 'Hungarian', - key: 'hu', - rfc4646: 'hu' - }, - id: { - name: 'Indonesian', - key: 'id', - rfc4646: 'id' - }, - is: { - name: 'Icelandic', - key: 'is', - rfc4646: 'is' - }, - it: { - name: 'Italiano', - key: 'it', - rfc4646: 'it' - }, - zh_cn: { - name: '简体中文', - key: 'zh_cn', - rfc4646: 'zh-CN' - }, - zh_tw: { - name: '繁體中文', - key: 'zh_tw', - rfc4646: 'zh-TW' - }, - cs: { - name: 'čeština', - key: 'cs', - rfc4646: 'cs' - }, - es_es: { - name: 'Español', - key: 'es_es', - rfc4646: 'es-ES' - }, - no: { - name: 'norsk', - key: 'no', - rfc4646: 'no' - }, - pt_pt: { - name: 'Português', - key: 'pt_pt', - rfc4646: 'pt-PT' - }, - ru: { - name: 'русский', - key: 'ru', - rfc4646: 'ru' - }, - si: { - name: 'සිංහල', - key: 'si', - rfc4646: 'si' - }, - sv_se: { - name: 'svenska', - key: 'sv_se', - rfc4646: 'sv-SE' - }, - tzm: { - name: 'Tamaziɣt', - key: 'tzm', - rfc4646: 'tzm' - } -} - -export default languageList diff --git a/src/constants/servers/quote.ts b/src/constants/servers/quote.ts deleted file mode 100644 index 0acb30cd..00000000 --- a/src/constants/servers/quote.ts +++ /dev/null @@ -1,3 +0,0 @@ -const QuoteSupportMastodon: Array = ['fedibird.com'] - -export { QuoteSupportMastodon } diff --git a/src/constants/theme/index.ts b/src/constants/theme/index.ts deleted file mode 100644 index 3d6781ca..00000000 --- a/src/constants/theme/index.ts +++ /dev/null @@ -1,47 +0,0 @@ -export type ThemeType = { - name: string - key: string -} - -export type ThemeList = { - System: ThemeType - Light: ThemeType - Dark: ThemeType - SolarizedLight: ThemeType - SolarizedDark: ThemeType - KimbieDark: ThemeType - Custom: ThemeType -} - -const themeList: ThemeList = { - System: { - name: 'preferences.appearance.theme.system', - key: 'system' - }, - Light: { - name: 'preferences.appearance.theme.light', - key: 'light' - }, - Dark: { - name: 'preferences.appearance.theme.dark', - key: 'dark' - }, - SolarizedLight: { - name: 'preferences.appearance.theme.solarized_light', - key: 'solarized_light' - }, - SolarizedDark: { - name: 'preferences.appearance.theme.solarized_dark', - key: 'solarized_dark' - }, - KimbieDark: { - name: 'preferences.appearance.theme.kimbie_dark', - key: 'kimbie_dark' - }, - Custom: { - name: 'preferences.appearance.theme.custom', - key: 'custom' - } -} - -export default themeList diff --git a/src/constants/themeColor/index.ts b/src/constants/themeColor/index.ts deleted file mode 100644 index 4c5d533e..00000000 --- a/src/constants/themeColor/index.ts +++ /dev/null @@ -1,83 +0,0 @@ -export type ThemeColorType = { - background_color: string - selected_background_color: string - global_header_color: string - side_menu_color: string - primary_color: string - regular_color: string - secondary_color: string - border_color: string - header_menu_color: string - wrapper_mask_color: string - scrollbar_color: string -} - -export const LightTheme: ThemeColorType = { - background_color: '#ffffff', - selected_background_color: '#f2f6fc', - global_header_color: '#4a5664', - side_menu_color: '#373d48', - primary_color: '#303133', - regular_color: '#606266', - secondary_color: '#909399', - border_color: '#ebeef5', - header_menu_color: '#ffffff', - wrapper_mask_color: 'rgba(255, 255, 255, 0.7)', - scrollbar_color: 'rgba(0, 0, 0, 0.4)' -} - -export const DarkTheme: ThemeColorType = { - background_color: '#282c37', - selected_background_color: '#313543', - global_header_color: '#393f4f', - side_menu_color: '#191b22', - primary_color: '#ffffff', - regular_color: '#ebeef5', - secondary_color: '#e4e7ed', - border_color: '#606266', - header_menu_color: '#444b5d', - wrapper_mask_color: 'rgba(0, 0, 0, 0.7)', - scrollbar_color: 'rgba(255, 255, 255, 0.4)' -} - -export const SolarizedLightTheme: ThemeColorType = { - background_color: '#fdf6e3', - selected_background_color: '#eee8d5', - global_header_color: '#002b36', - side_menu_color: '#073642', - primary_color: '#657b83', - regular_color: '#586e75', - secondary_color: '#839496', - border_color: '#93a1a1', - header_menu_color: '#fdf6e3', - wrapper_mask_color: 'rgba(255, 255, 255, 0.7)', - scrollbar_color: 'rgba(0, 0, 0, 0.4)' -} - -export const SolarizedDarkTheme: ThemeColorType = { - background_color: '#073642', - selected_background_color: '#586e75', - global_header_color: '#073642', - side_menu_color: '#002b36', - primary_color: '#fdf6e3', - regular_color: '#eee8d5', - secondary_color: '#839496', - border_color: '#93a1a1', - header_menu_color: '#393f4f', - wrapper_mask_color: 'rgba(0, 0, 0, 0.7)', - scrollbar_color: 'rgba(255, 255, 255, 0.4)' -} - -export const KimbieDarkTheme: ThemeColorType = { - background_color: '#221a0f', - selected_background_color: '#2e2920', - global_header_color: '#221a0f', - side_menu_color: '#362712', - primary_color: '#fbebd4', - regular_color: '#e4c6a5', - secondary_color: '#d3af86', - border_color: '#d6baad', - header_menu_color: '#a57a4c', - wrapper_mask_color: 'rgba(0, 0, 0, 0.7)', - scrollbar_color: 'rgba(255, 255, 255, 0.4)' -} diff --git a/src/constants/timeFormat/index.ts b/src/constants/timeFormat/index.ts deleted file mode 100644 index 6bd14532..00000000 --- a/src/constants/timeFormat/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -export type TimeFormatType = { - name: string - value: number -} - -export type TimeFormatList = { - Absolute: TimeFormatType - Relative: TimeFormatType -} - -const timeFormatList: TimeFormatList = { - Absolute: { - name: 'preferences.appearance.time_format.absolute', - value: 0 - }, - Relative: { - name: 'preferences.appearance.time_format.relative', - value: 1 - } -} - -export default timeFormatList diff --git a/src/constants/visibility/index.ts b/src/constants/visibility/index.ts deleted file mode 100644 index e3af815d..00000000 --- a/src/constants/visibility/index.ts +++ /dev/null @@ -1,37 +0,0 @@ -export type VisibilityType = { - name: string - value: number - key: 'public' | 'unlisted' | 'private' | 'direct' -} - -export type VisibilityList = { - Public: VisibilityType - Unlisted: VisibilityType - Private: VisibilityType - Direct: VisibilityType -} - -const visibilityList: VisibilityList = { - Public: { - name: 'settings.general.toot.visibility.public', - value: 0, - key: 'public' - }, - Unlisted: { - name: 'settings.general.toot.visibility.unlisted', - value: 1, - key: 'unlisted' - }, - Private: { - name: 'settings.general.toot.visibility.private', - value: 2, - key: 'private' - }, - Direct: { - name: 'settings.general.toot.visibility.direct', - value: 3, - key: 'direct' - } -} - -export default visibilityList diff --git a/src/index.ejs b/src/index.ejs deleted file mode 100644 index 33bb20f6..00000000 --- a/src/index.ejs +++ /dev/null @@ -1,12 +0,0 @@ - - - - - Whalebird - - -
- - - - diff --git a/src/main/database.ts b/src/main/database.ts deleted file mode 100644 index 735a3105..00000000 --- a/src/main/database.ts +++ /dev/null @@ -1,51 +0,0 @@ -import sqlite, { Database } from 'better-sqlite3' - -const newDB = (file: string): Database => { - const db = new sqlite(file) - - // migration - db.prepare( - 'CREATE TABLE IF NOT EXISTS accounts(\ -id INTEGER PRIMARY KEY, \ -username TEXT NOT NULL, \ -account_id TEXT NOT NULL, \ -avatar TEXT NOT NULL, \ -client_id TEXT DEFAULT NULL, \ -client_secret TEXT NOT NULL, \ -access_token TEXT NOT NULL, \ -refresh_token TEXT DEFAULT NULL, \ -sort INTEGER UNIQUE NOT NULL)' - ).run() - - db.prepare( - 'CREATE TABLE IF NOT EXISTS servers(\ -id INTEGER PRIMARY KEY, \ -domain TEXT NOT NULL, \ -base_url TEXT NOT NULL, \ -sns TEXT NOT NULL, \ -account_id INTEGER UNIQUE DEFAULT NULL, \ -FOREIGN KEY (account_id) REFERENCES accounts(id) ON DELETE CASCADE)' - ).run() - db.prepare( - 'CREATE TABLE IF NOT EXISTS hashtags(\ -id INTEGER PRIMARY KEY, \ -tag TEXT NOT NULL, \ -account_id INTEGER UNIQUE NOT NULL, \ -FOREIGN KEY (account_id) REFERENCES accounts(id) ON DELETE CASCADE)' - ).run() - db.prepare( - 'CREATE TABLE IF NOT EXISTS settings(\ -id INTEGER PRIMARY KEY, \ -account_id INTEGER UNIQUE NOT NULL, \ -marker_home BOOLEAN NOT NULL DEFAULT false, \ -marker_notifications BOOLEAN NOT NULL DEFAULT true, \ -FOREIGN KEY (account_id) REFERENCES accounts(id) ON DELETE CASCADE)' - ).run() - db.prepare( - "DELETE FROM accounts WHERE id IN (SELECT accounts.id FROM accounts INNER JOIN servers ON servers.account_id = accounts.id WHERE servers.sns = 'misskey')" - ).run() - - return db -} - -export default newDB diff --git a/src/main/db/account.ts b/src/main/db/account.ts deleted file mode 100644 index 4e30489d..00000000 --- a/src/main/db/account.ts +++ /dev/null @@ -1,227 +0,0 @@ -import { Database } from 'better-sqlite3' -import { LocalAccount } from '~/src/types/localAccount' -import { LocalServer } from '~src/types/localServer' - -export const insertAccount = ( - db: Database, - username: string, - accountId: string, - avatar: string, - clientId: string, - clientSecret: string, - accessToken: string, - refreshToken: string | null, - serverId: number -): Promise => { - return new Promise((resolve, reject) => { - const f = db.transaction(() => { - const row = db.prepare('SELECT * FROM accounts ORDER BY sort DESC').get() - let order = 1 - if (row) { - order = row.sort + 1 - } - try { - const res = db - .prepare( - 'INSERT INTO accounts(username, account_id, avatar, client_id, client_secret, access_token, refresh_token, sort) VALUES (?, ?, ?, ?, ?, ?, ?, ?)' - ) - .run(username, accountId, avatar, clientId, clientSecret, accessToken, refreshToken, order) - const id = res.lastInsertRowid as number - db.prepare('UPDATE servers SET account_id = ? WHERE id = ?').run(id, serverId) - return resolve({ - id, - username, - accountId, - avatar, - clientId, - clientSecret, - accessToken, - refreshToken, - order - }) - } catch (err) { - reject(err) - } - }) - f() - }) -} - -/** - * List up authenticated accounts. - */ -export const listAccounts = (db: Database): Promise> => { - return new Promise(resolve => { - const rows = db - .prepare( - 'SELECT \ -accounts.id as id, \ -accounts.username as username, \ -accounts.account_id as remote_account_id, \ -accounts.avatar as avatar, \ -accounts.client_id as client_id, \ -accounts.client_secret as client_secret, \ -accounts.access_token as access_token, \ -accounts.refresh_token as refresh_token, \ -accounts.sort as sort, \ -servers.id as server_id, \ -servers.base_url as base_url, \ -servers.domain as domain, \ -servers.sns as sns, \ -servers.account_id as account_id \ -FROM accounts INNER JOIN servers ON servers.account_id = accounts.id ORDER BY accounts.sort' - ) - .all() - - resolve( - rows.map(r => [ - { - id: r.id, - username: r.username, - accountId: r.remote_account_id, - avatar: r.avatar, - clientId: r.client_id, - clientSecret: r.client_secret, - accessToken: r.access_token, - refreshToken: r.refresh_token, - order: r.sort - } as LocalAccount, - { - id: r.server_id, - baseURL: r.base_url, - domain: r.domain, - sns: r.sns, - accountId: r.account_id - } as LocalServer - ]) - ) - }) -} - -export const getAccount = (db: Database, id: number): Promise<[LocalAccount, LocalServer]> => { - return new Promise((resolve, reject) => { - const row = db - .prepare( - 'SELECT \ -accounts.id as id, \ -accounts.username as username, \ -accounts.account_id as remote_account_id, \ -accounts.avatar as avatar, \ -accounts.client_id as client_id, \ -accounts.client_secret as client_secret, \ -accounts.access_token as access_token, \ -accounts.refresh_token as refresh_token, \ -accounts.sort as sort, \ -servers.id as server_id, \ -servers.base_url as base_url, \ -servers.domain as domain, \ -servers.sns as sns, \ -servers.account_id as account_id \ -FROM accounts INNER JOIN servers ON servers.account_id = accounts.id WHERE accounts.id = ?' - ) - .get(id) - if (row) { - resolve([ - { - id: row.id, - username: row.username, - accountId: row.remote_account_id, - avatar: row.avatar, - clientId: row.client_id, - clientSecret: row.client_secret, - accessToken: row.access_token, - refreshToken: row.refresh_token, - order: row.sort - } as LocalAccount, - { - id: row.server_id, - baseURL: row.base_url, - domain: row.domain, - sns: row.sns, - accountId: row.account_id - } as LocalServer - ]) - } else { - reject() - } - }) -} - -export const removeAccount = (db: Database, id: number): Promise => { - return new Promise((resolve, reject) => { - db.prepare('PRAGMA foreign_keys = ON').run() - - try { - db.prepare('DELETE FROM accounts WHERE id = ?').run(id), resolve(null) - } catch (err) { - reject(err) - } - }) -} - -export const removeAllAccounts = (db: Database): Promise => { - return new Promise((resolve, reject) => { - db.prepare('PRAGMA foreign_keys = ON').run() - - try { - db.prepare('DELETE FROM accounts').run() - resolve(null) - } catch (err) { - reject(err) - } - }) -} - -export const forwardAccount = (db: Database, id: number): Promise => { - return new Promise((resolve, reject) => { - const f = db.transaction(() => { - const rows = db.prepare('SELECT * FROM accounts ORDER BY sort').all() - - const index = rows.findIndex(r => r.id === id) - if (index < 0 || index >= rows.length - 1) { - db.prepare('ROLLBACK TRANSACTION').run() - return resolve(null) - } - const target = rows[index + 1] - const base = rows[index] - - try { - db.prepare('UPDATE accounts SET sort = ? WHERE id = ?').run(-100, base.id) - db.prepare('UPDATE accounts SET sort = ? WHERE id = ?').run(base.sort, target.id) - db.prepare('UPDATE accounts SET sort = ? WHERE id = ?').run(target.sort, base.id) - return resolve(null) - } catch (err) { - console.error(err) - reject(err) - } - }) - f() - }) -} - -export const backwardAccount = (db: Database, id: number): Promise => { - return new Promise((resolve, reject) => { - const f = db.transaction(() => { - const rows = db.prepare('SELECT * FROM accounts ORDER BY sort').all() - - const index = rows.findIndex(r => r.id === id) - if (index < 1) { - db.prepare('ROLLBACK TRANSACTION').run() - return resolve(null) - } - const target = rows[index - 1] - const base = rows[index] - - try { - db.prepare('UPDATE accounts SET sort = ? WHERE id = ?').run(-100, base.id) - db.prepare('UPDATE accounts SET sort = ? WHERE id = ?').run(base.sort, target.id) - db.prepare('UPDATE accounts SET sort = ? WHERE id = ?').run(target.sort, base.id) - return resolve(null) - } catch (err) { - console.error(err) - return reject(err) - } - }) - f() - }) -} diff --git a/src/main/db/hashtags.ts b/src/main/db/hashtags.ts deleted file mode 100644 index 4994b97e..00000000 --- a/src/main/db/hashtags.ts +++ /dev/null @@ -1,59 +0,0 @@ -import { Database } from 'better-sqlite3' -import { LocalTag } from '~/src/types/localTag' - -export const listTags = (db: Database, accountId: number): Promise> => { - return new Promise(resolve => { - const rows = db.prepare('SELECT * FROM hashtags WHERE account_id = ?').all(accountId) - - resolve( - rows.map(r => ({ - id: r.id, - tagName: r.tag, - accountId: r.account_id - })) - ) - }) -} - -export const insertTag = (db: Database, accountId: number, tag: string): Promise => { - return new Promise((resolve, reject) => { - const f = db.transaction(() => { - const row = db.prepare('SELECT * FROM hashtags WHERE id = ? AND tag = ?').get(accountId, tag) - - if (row) { - resolve({ - id: row.id, - tagName: row.tag, - accountId: row.account_id - }) - } - - try { - const res = db.prepare('INSERT INTO hashtags(tag, account_id) VALUES (?, ?)').run(accountId, tag) - return resolve({ - id: res.lastInsertRowid as number, - tagName: tag, - accountId: accountId - }) - } catch (err) { - console.error(err) - reject(err) - } - }) - f() - }) -} - -export const removeTag = (db: Database, tag: LocalTag): Promise => { - return new Promise((resolve, reject) => { - db.prepare('PRAGMA foreign_keys = ON').run() - - try { - db.prepare('DELETE FROM hashtags WHERE id = ?').run(tag.id) - resolve(null) - } catch (err) { - console.error(err) - reject(err) - } - }) -} diff --git a/src/main/db/server.ts b/src/main/db/server.ts deleted file mode 100644 index c4007431..00000000 --- a/src/main/db/server.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { Database } from 'better-sqlite3' -import { LocalServer } from '~/src/types/localServer' - -export const insertServer = ( - db: Database, - baseURL: string, - domain: string, - sns: 'mastodon' | 'pleroma' | 'firefish' | 'friendica', - accountId: number | null -): Promise => { - return new Promise((resolve, reject) => { - try { - const res = db - .prepare('INSERT INTO servers(domain, base_url, sns, account_id) values (?, ?, ?, ?)') - .run(domain, baseURL, sns, accountId) - resolve({ - id: res.lastInsertRowid as number, - baseURL, - domain, - sns, - accountId - }) - } catch (err) { - reject(err) - } - }) -} - -export const getServer = (db: Database, id: number): Promise => { - return new Promise((resolve, reject) => { - const row = db.prepare('SELECT id, base_url, domain, sns, account_id FROM servers WHERE id = ?').get(id) - if (row) { - resolve({ - id: row.id, - baseURL: row.base_url, - domain: row.domain, - sns: row.sns, - accountId: row.account_id - } as LocalServer) - } else { - reject() - } - }) -} diff --git a/src/main/db/setting.ts b/src/main/db/setting.ts deleted file mode 100644 index 92405133..00000000 --- a/src/main/db/setting.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { Database } from 'better-sqlite3' -import { Setting } from '~/src/types/setting' -import { DefaultSetting } from '~/src/constants/initializer/setting' - -export const getSetting = (db: Database, accountId: number): Promise => { - return new Promise(resolve => { - const row = db.prepare('SELECT * FROM settings WHERE account_id = ?').get(accountId) - if (row) { - return resolve({ - accountId: row.account_id, - markerHome: Boolean(row.marker_home), - markerNotifications: Boolean(row.marker_notifications) - }) - } - resolve(DefaultSetting) - }) -} - -export const createOrUpdateSetting = (db: Database, setting: Setting): Promise => { - return new Promise((resolve, reject) => { - const row = db.prepare('SELECT * FROM settings WHERE account_id = ?').get(setting.accountId) - if (row) { - try { - db.prepare('UPDATE settings SET marker_home = ?, marker_notifications = ? WHERE account_id = ?').run( - setting.markerHome, - setting.markerNotifications, - setting.accountId - ) - resolve(setting) - } catch (err) { - console.error(err) - reject(err) - } - } else { - try { - db.prepare('INSERT INTO settings(account_id, marker_home, marker_notifications) VALUES (?, ?, ?)').run( - setting.accountId, - setting.markerHome, - setting.markerNotifications - ) - resolve(setting) - } catch (err) { - console.error(err) - reject(err) - } - } - }) -} diff --git a/src/main/fonts.ts b/src/main/fonts.ts deleted file mode 100644 index 345ca90b..00000000 --- a/src/main/fonts.ts +++ /dev/null @@ -1,11 +0,0 @@ -import SystemFonts from 'system-font-families' - -const fonts = async (): Promise> => { - const systemFonts = new SystemFonts() - return systemFonts.getFonts() - .then((res: string) => { - return Array.from(new Set(res)).sort() - }) -} - -export default fonts diff --git a/src/main/index.dev.ts b/src/main/index.dev.ts deleted file mode 100644 index 22854cd2..00000000 --- a/src/main/index.dev.ts +++ /dev/null @@ -1,23 +0,0 @@ -/** - * This file is used specifically and only for development. It installs - * `electron-debug` & `vue-devtools`. There shouldn't be any need to - * modify this file, but it can be used to extend your development - * environment. - */ - -/* eslint-disable */ - -import installExtension, { VUEJS3_DEVTOOLS } from 'electron-devtools-installer' - -// Install `electron-debug` with `devtron` -require('electron-debug')({ showDevTools: true }) - -// Install `vue-devtools` -require('electron').app.on('ready', () => { - installExtension(VUEJS3_DEVTOOLS) - .then(name => console.log(`Added Extension: ${name}`)) - .catch(err => console.log('Unable to install `vue-devtools`: \n', err)) -}) - -// Require `main` process to boot app -require('./index') diff --git a/src/main/index.ts b/src/main/index.ts deleted file mode 100644 index f5d689ee..00000000 --- a/src/main/index.ts +++ /dev/null @@ -1,1477 +0,0 @@ -'use strict' - -import { - app, - ipcMain, - shell, - session, - Menu, - Tray, - BrowserWindow, - BrowserWindowConstructorOptions, - MenuItemConstructorOptions, - IpcMainEvent, - nativeTheme, - IpcMainInvokeEvent, - Notification, - NotificationConstructorOptions, - clipboard -} from 'electron' -import fs from 'fs' -import log from 'electron-log' -import windowStateKeeper from 'electron-window-state' -import simplayer from 'simplayer' -import path from 'path' -import ContextMenu from 'electron-context-menu' -import { initSplashScreen, Config } from '@trodi/electron-splashscreen' -import openAboutWindow from 'about-window' -import generator, { detector, NotificationType, Entity } from 'megalodon' -import AutoLaunch from 'auto-launch' -import minimist from 'minimist' -import sanitizeHtml from 'sanitize-html' - -// db -import { backwardAccount, forwardAccount, getAccount, insertAccount, listAccounts, removeAccount, removeAllAccounts } from './db/account' -import { insertTag, listTags, removeTag } from './db/hashtags' -import { createOrUpdateSetting, getSetting } from './db/setting' -import { getServer, insertServer } from './db/server' - -import { DirectStreaming, ListStreaming, LocalStreaming, PublicStreaming, StreamingURL, TagStreaming, UserStreaming } from './websocket' -import Preferences from './preferences' -import Fonts from './fonts' -import i18next from '~/src/config/i18n' -import { i18n as I18n } from 'i18next' -import Language, { LanguageType } from '../constants/language' -import { LocalAccount } from '~/src/types/localAccount' -import { LocalTag } from '~/src/types/localTag' -import { Proxy } from '~/src/types/proxy' -import ProxyConfiguration from './proxy' -import { Menu as MenuPreferences } from '~/src/types/preference' -import { General as GeneralPreferences } from '~/src/types/preference' -import newDB from './database' -import { Setting } from '~/src/types/setting' -import { LocalServer } from '~/src/types/localServer' -import { Notify } from '~/src/types/notify' - -/** - * Context menu - */ -ContextMenu({ - showCopyImageAddress: true, - showSaveImageAs: true -}) - -/** - * Set log level - */ -log.transports.console.level = 'debug' -log.transports.file.level = 'info' - -declare namespace global { - let __static: string -} - -/** - * Set `__static` path to static files in production - * https://simulatedgreg.gitbooks.io/electron-vue/content/en/using-static-assets.html - */ -if (process.env.NODE_ENV !== 'development') { - global.__static = path.join(__dirname, '/static').replace(/\\/g, '\\\\') -} - -let mainWindow: BrowserWindow | null -let tray: Tray | null -const winURL = process.env.NODE_ENV === 'development' ? `http://localhost:9080` : path.join('file://', __dirname, '/index.html') - -// MAS build is not allowed requestSingleInstanceLock. -// ref: https://github.com/h3poteto/whalebird-desktop/issues/1030 -// ref: https://github.com/electron/electron-osx-sign/issues/137#issuecomment-307626305 -if (process.platform !== 'darwin') { - // Enforces single instance for linux and windows. - const gotTheLock = app.requestSingleInstanceLock() - - if (!gotTheLock) { - app.quit() - } else { - app.on('second-instance', () => { - // Someone tried to run a second instance, we should focus our window. - if (mainWindow) { - if (mainWindow.isMinimized()) mainWindow.restore() - if (!mainWindow!.isVisible()) { - mainWindow!.show() - mainWindow!.setSkipTaskbar(false) - } - mainWindow.focus() - } - }) - } -} - -const appId = 'social.whalebird.app' - -const splashURL = - process.env.NODE_ENV === 'development' - ? path.resolve(__dirname, '../../static/splash-screen.html') - : path.join(__dirname, '/static/splash-screen.html') - -const userData = app.getPath('userData') -const appPath = app.getPath('exe') -const dbDir = path.join(userData, '/db') - -if (!fs.existsSync(dbDir) || !fs.lstatSync(dbDir).isDirectory()) { - fs.mkdirSync(dbDir, { recursive: true }) -} - -const databasePath = path.join(dbDir, 'whalebird.db') -const db = newDB(databasePath) - -const preferencesDBPath = path.join(dbDir, 'preferences.json') - -const soundBasePath = - process.env.NODE_ENV === 'development' ? path.join(__dirname, '../../build/sounds/') : path.join(process.resourcesPath!, 'build/sounds/') -const iconBasePath = - process.env.NODE_ENV === 'development' - ? path.resolve(__dirname, '../../build/icons/') - : path.resolve(process.resourcesPath!, 'build/icons/') - -let launcher: AutoLaunch | null = null -const proxyConfiguration = new ProxyConfiguration(preferencesDBPath) - -// On MAS build, auto launch is not working. -// We have to use Launch Agent: https://github.com/Teamwork/node-auto-launch/issues/43 -// But it is too difficult to build, and Slack does not provide this function in MAS build. -// Therefore I don't provide this function for MacOS. -if (process.platform !== 'darwin') { - launcher = new AutoLaunch({ - name: 'Whalebird', - path: appPath - }) -} - -async function changeAccount(account: LocalAccount, index: number) { - // Sometimes application is closed to tray. - // In this time, mainWindow in not exist, so we have to create window. - if (mainWindow === null) { - await createWindow() - // We have to wait the web contents is loaded. - mainWindow!.webContents.on('did-finish-load', () => { - mainWindow!.webContents.send('change-account', Object.assign(account, { index: index })) - }) - } else { - mainWindow.show() - mainWindow.webContents.send('change-account', Object.assign(account, { index: index })) - } -} - -async function getLanguage() { - try { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.load() - return conf.language.language - } catch (err) { - log.warn(err) - return Language.en.key - } -} - -const getSpellChecker = async (): Promise => { - try { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.load() - return conf.language.spellchecker.enabled - } catch (err) { - return true - } -} - -const getMenuPreferences = async (): Promise => { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.load() - return conf.menu -} - -const getGeneralPreferences = async (): Promise => { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.load() - return conf.general -} - -/** - * Set application menu - * @return Whether the menu bar is auto hide. - */ -const updateApplicationMenu = async (accountsChange: Array): Promise => { - const menuPreferences = await getMenuPreferences() - const menu = ApplicationMenu(accountsChange, menuPreferences, i18next) - Menu.setApplicationMenu(menu) - let autoHideMenuBar = false - if (menuPreferences.autoHideMenu) { - autoHideMenuBar = true - } - return autoHideMenuBar -} - -/** - * Set dock menu for mac - */ -const updateDockMenu = async (accountsChange: Array) => { - if (process.platform !== 'darwin') { - return - } - - const dockMenu = Menu.buildFromTemplate(accountsChange) - app.dock.setMenu(dockMenu) -} - -async function createWindow() { - /** - * List accounts - */ - const accounts = await listAccounts(db) - const accountsChange: Array = accounts.map(([a, s], index) => { - return { - label: s.domain, - accelerator: `CmdOrCtrl+${index + 1}`, - click: () => changeAccount(a, index) - } - }) - - /** - * Get language - */ - const language = await getLanguage() - i18next.changeLanguage(language) - - /** - * Get spellcheck - */ - const spellcheck = await getSpellChecker() - - /** - * Get general preferences - */ - const generalPreferences = await getGeneralPreferences() - - /** - * Load system theme color for dark mode - */ - nativeTheme.themeSource = 'system' - - /** - * Set Application Menu - */ - const autoHideMenuBar = await updateApplicationMenu(accountsChange) - - /** - * Set dock menu for mac - */ - await updateDockMenu(accountsChange) - - /** - * Windows10 don't notify, so we have to set appId - * https://github.com/electron/electron/issues/10864 - */ - app.setAppUserModelId(appId) - - /** - * Enable accessibility - */ - app.accessibilitySupportEnabled = true - - /** - * Initial window options - */ - const mainWindowState = windowStateKeeper({ - defaultWidth: 1000, - defaultHeight: 563 - }) - - const titleBarStyle = process.platform === 'linux' ? 'hidden' : 'default' - - const mainOpts: BrowserWindowConstructorOptions = { - titleBarStyle: titleBarStyle, - x: mainWindowState.x, - y: mainWindowState.y, - width: mainWindowState.width, - height: mainWindowState.height, - backgroundColor: '#fff', - useContentSize: true, - icon: path.join(iconBasePath, '256x256.png'), - autoHideMenuBar: autoHideMenuBar, - webPreferences: { - nodeIntegration: false, - contextIsolation: false, - // To prevent CORS in renderer process. - webSecurity: false, - preload: path.resolve(__dirname, './preload.js'), - spellcheck: spellcheck - } - } - const config: Config = { - windowOpts: mainOpts, - templateUrl: splashURL, - splashScreenOpts: { - width: 425, - height: 325 - } - } - mainWindow = initSplashScreen(config) - - mainWindowState.manage(mainWindow) - - /** - * Get system proxy configuration. - */ - if (session && session.defaultSession) { - const proxyInfo = await session.defaultSession.resolveProxy('https://mastodon.social') - proxyConfiguration.setSystemProxy(proxyInfo) - log.info(`System proxy configuration: ${proxyInfo}`) - } - - /** - * Set proxy for BrowserWindow - */ - const proxyConfig = await proxyConfiguration.forMastodon() - if (proxyConfig) { - await mainWindow.webContents.session.setProxy({ proxyRules: `${proxyConfig.protocol}://${proxyConfig.host}:${proxyConfig.port}` }) - } - mainWindow.loadURL(winURL) - - mainWindow.webContents.on('will-navigate', event => event.preventDefault()) - - // Show tray icon only linux and windows. - if (process.platform !== 'darwin') { - // Show tray icon - tray = new Tray(path.join(iconBasePath, 'tray_icon.png')) - const trayMenu = TrayMenu(accountsChange, i18next) - tray.setContextMenu(trayMenu) - - // For Windows - tray.setToolTip(i18next.t('main_menu.application.name')) - tray.on('click', () => { - if (mainWindow!.isVisible()) { - mainWindow!.hide() - mainWindow!.setSkipTaskbar(true) - } else { - mainWindow!.show() - mainWindow!.setSkipTaskbar(false) - } - }) - - // Minimize to tray - mainWindow.on('close', event => { - mainWindow!.hide() - mainWindow!.setSkipTaskbar(true) - event.preventDefault() - }) - - // Minimize to tray immediately if "hide on launch" selected - // or if --hidden arg is passed - if ((generalPreferences.other.hideOnLaunch || args.hidden) && !args.show) { - mainWindow.once('show', () => { - mainWindow?.hide() - mainWindow?.setSkipTaskbar(true) - }) - } - } else { - mainWindow.on('closed', () => { - mainWindow = null - }) - } -} - -// Parse command line arguments and show help command. -const args = minimist(process.argv.slice(process.env.NODE_ENV === 'development' ? 2 : 1)) -if (args.help) { - console.log(` -Whalebird is a Fediverse client for desktop. - -Usage - $ whalebird - -Options - --help show help - --hidden start Whalebird hidden to tray - --show start Whalebird with a window -`) - process.exit(0) -} - -// Do not lower the rendering priority of Chromium when background -app.commandLine.appendSwitch('disable-renderer-backgrounding') - -app.on('ready', async () => { - createWindow() - const accounts = await listAccounts(db) - const preferences = new Preferences(preferencesDBPath) - startUserStreamings(accounts, preferences) - startDirectStreamings(accounts) - startLocalStreamings(accounts) - startPublicStreamings(accounts) -}) - -app.on('window-all-closed', () => { - // this action is called when user click the close button. - // In macOS, close button does not shutdown application. It is hide application window. - if (process.platform !== 'darwin') { - app.quit() - } else { - // In MacOS, we should change disable some menu items. - const menu = Menu.getApplicationMenu() - if (menu) { - if (menu.items[0].submenu) { - // Preferences - menu.items[0].submenu.items[2].enabled = false - } - if (menu.items[3].submenu) { - // Open Window - menu.items[3].submenu.items[1].enabled = true - // Jump to - menu.items[3].submenu.items[4].enabled = false - } - } - } -}) - -app.on('activate', () => { - if (mainWindow === null) { - createWindow() - } -}) - -ipcMain.handle('add-server', async (_: IpcMainInvokeEvent, domain: string) => { - const proxy = await proxyConfiguration.forMastodon() - const sns = await detector(`https://${domain}`, proxy) - if ((sns as string) === 'misskey') { - return new Promise((_resolve, reject) => reject('misskey is not supported yet')) - } - const server = await insertServer(db, `https://${domain}`, domain, sns, null) - return server -}) - -ipcMain.handle('add-app', async (_: IpcMainInvokeEvent, url: string) => { - const proxy = await proxyConfiguration.forMastodon() - const sns = await detector(url, proxy) - const client = generator(sns, url, null, 'Whalebird', proxy) - const appData = await client.registerApp('Whalebird', { - website: 'https://whalebird.social' - }) - if (appData.url) { - shell.openExternal(appData.url) - } - return appData -}) - -type AuthorizeRequest = { - serverID: number - baseURL: string - clientID: string - clientSecret: string - code: string -} - -ipcMain.handle('authorize', async (_: IpcMainInvokeEvent, req: AuthorizeRequest) => { - const proxy = await proxyConfiguration.forMastodon() - const sns = await detector(req.baseURL, proxy) - const client = generator(sns, req.baseURL, null, 'Whalebird', proxy) - const tokenData = await client.fetchAccessToken(req.clientID, req.clientSecret, req.code, 'urn:ietf:wg:oauth:2.0:oob') - let accessToken = tokenData.access_token - - const authorizedClient = generator(sns, req.baseURL, accessToken, 'Whalebird', proxy) - const credentials = await authorizedClient.verifyAccountCredentials() - - const account = await insertAccount( - db, - credentials.data.username, - credentials.data.id, - credentials.data.avatar, - req.clientID, - req.clientSecret, - accessToken, - tokenData.refresh_token, - req.serverID - ) - const server = await getServer(db, req.serverID) - const preferences = new Preferences(preferencesDBPath) - startUserStreaming(account, server, preferences) - startDirectStreaming(account, server) - startLocalStreaming(account, server) - startPublicStreaming(account, server) - - return account -}) - -ipcMain.handle('list-accounts', async (_: IpcMainInvokeEvent) => { - const accounts = await listAccounts(db) - return accounts -}) - -ipcMain.handle('get-local-account', async (_: IpcMainInvokeEvent, id: number) => { - const account = await getAccount(db, id) - return account -}) - -ipcMain.handle('remove-account', async (_: IpcMainInvokeEvent, id: number) => { - userStreamings[id].stop() - directStreamings[id].stop() - localStreamings[id].stop() - publicStreamings[id].stop() - await removeAccount(db, id) - - const accounts = await listAccounts(db) - const accountsChange: Array = accounts.map(([account, server], index) => { - return { - label: server.domain, - accelerator: `CmdOrCtrl+${index + 1}`, - click: () => changeAccount(account, index) - } - }) - - await updateApplicationMenu(accountsChange) - await updateDockMenu(accountsChange) - if (process.platform !== 'darwin' && tray !== null) { - tray.setContextMenu(TrayMenu(accountsChange, i18next)) - } -}) - -ipcMain.handle('forward-account', async (_: IpcMainInvokeEvent, id: number) => { - await forwardAccount(db, id) -}) - -ipcMain.handle('backward-account', async (_: IpcMainInvokeEvent, id: number) => { - await backwardAccount(db, id) -}) - -ipcMain.handle('remove-all-accounts', async (_: IpcMainInvokeEvent) => { - stopAllStreamings() - await removeAllAccounts(db) - const accounts = await listAccounts(db) - const accountsChange: Array = accounts.map(([account, server], index) => { - return { - label: server.domain, - accelerator: `CmdOrCtrl+${index + 1}`, - click: () => changeAccount(account, index) - } - }) - - await updateApplicationMenu(accountsChange) - await updateDockMenu(accountsChange) - if (process.platform !== 'darwin' && tray !== null) { - tray.setContextMenu(TrayMenu(accountsChange, i18next)) - } -}) - -ipcMain.handle('change-auto-launch', async (_: IpcMainInvokeEvent, enable: boolean) => { - if (launcher) { - const enabled = await launcher.isEnabled() - if (!enabled && enable && launcher) { - launcher.enable() - } else if (enabled && !enable && launcher) { - launcher.disable() - } - return enable - } else { - return false - } -}) - -// badge -ipcMain.on('reset-badge', () => { - if (process.platform === 'darwin') { - app.dock.setBadge('') - } -}) - -// sounds -ipcMain.on('fav-rt-action-sound', () => { - const preferences = new Preferences(preferencesDBPath) - preferences - .load() - .then(conf => { - if (conf.general.sound.fav_rb) { - const sound = path.join(soundBasePath, 'operation_sound01.wav') - simplayer(sound, (err: Error) => { - if (err) log.error(err) - }) - } - }) - .catch(err => log.error(err)) -}) - -ipcMain.on('toot-action-sound', () => { - const preferences = new Preferences(preferencesDBPath) - preferences - .load() - .then(conf => { - if (conf.general.sound.toot) { - const sound = path.join(soundBasePath, 'operation_sound02.wav') - simplayer(sound, (err: Error) => { - if (err) log.error(err) - }) - } - }) - .catch(err => log.error(err)) -}) - -// preferences -ipcMain.handle('get-preferences', async (_: IpcMainInvokeEvent) => { - const preferences = new Preferences(preferencesDBPath) - let enabled = false - if (launcher) { - enabled = await launcher.isEnabled() - } - await preferences - .update({ - general: { - other: { - launch: enabled - } - } - }) - .catch(err => console.error(err)) - const conf = await preferences.load() - return conf -}) - -ipcMain.handle('update-preferences', async (_: IpcMainInvokeEvent, data: any) => { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.update(data) - return conf -}) - -ipcMain.handle('reset-preferences', async (_: IpcMainInvokeEvent) => { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.reset() - return conf -}) - -ipcMain.handle('system-use-dark-theme', async (_: IpcMainInvokeEvent) => { - return nativeTheme.shouldUseDarkColors -}) - -ipcMain.on('change-collapse', (_event: IpcMainEvent, value: boolean) => { - const preferences = new Preferences(preferencesDBPath) - preferences - .update({ - state: { - collapse: value - } - }) - .catch(err => { - log.error(err) - }) -}) - -ipcMain.handle('get-collapse', async (_: IpcMainInvokeEvent) => { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.load() - return conf.state.collapse -}) - -ipcMain.handle('change-global-header', async (_: IpcMainInvokeEvent, value: boolean) => { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.update({ - state: { - hideGlobalHeader: value - } - }) - return conf -}) - -ipcMain.handle('get-global-header', async (_: IpcMainInvokeEvent) => { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.load() - return conf.state.hideGlobalHeader -}) - -// proxy -ipcMain.handle('update-proxy-config', async (_event: IpcMainInvokeEvent, proxy: Proxy) => { - const preferences = new Preferences(preferencesDBPath) - try { - const conf = await preferences.update({ - proxy: proxy - }) - const proxyConfig = await proxyConfiguration.forMastodon() - if (proxyConfig) { - await mainWindow?.webContents.session.setProxy({ proxyRules: `${proxyConfig.protocol}://${proxyConfig.host}:${proxyConfig.port}` }) - } else { - await mainWindow?.webContents.session.setProxy({}) - } - return conf - } catch (err) { - log.error(err) - } - return null -}) - -// language -ipcMain.handle('change-language', async (_: IpcMainInvokeEvent, value: string) => { - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.update({ - language: { - language: value - } - }) - i18next.changeLanguage(conf.language.language) - - const accounts = await listAccounts(db) - const accountsChange: Array = accounts.map(([a, s], index) => { - return { - label: s.domain, - accelerator: `CmdOrCtrl+${index + 1}`, - click: () => changeAccount(a, index) - } - }) - - await updateApplicationMenu(accountsChange) - await updateDockMenu(accountsChange) - if (process.platform !== 'darwin' && tray !== null) { - tray.setContextMenu(TrayMenu(accountsChange, i18next)) - } - return conf.language.language -}) - -ipcMain.handle('toggle-spellchecker', async (_: IpcMainInvokeEvent, value: boolean) => { - mainWindow?.webContents.session.setSpellCheckerEnabled(value) - - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.update({ - language: { - spellchecker: { - enabled: value - } - } - }) - return conf.language.spellchecker.enabled -}) - -ipcMain.handle('update-spellchecker-languages', async (_: IpcMainInvokeEvent, languages: Array) => { - const decoded: Array = languages.map(l => { - const d = decodeLanguage(l) - return d.rfc4646 - }) - mainWindow?.webContents.session.setSpellCheckerLanguages(decoded) - - const preferences = new Preferences(preferencesDBPath) - const conf = await preferences.update({ - language: { - spellchecker: { - languages: languages - } - } - }) - return conf.language.spellchecker.languages -}) - -// hashtag -ipcMain.handle('save-hashtag', async (_: IpcMainInvokeEvent, req: { accountId: number; tag: string }) => { - await insertTag(db, req.accountId, req.tag) -}) - -ipcMain.handle('list-hashtags', async (_: IpcMainInvokeEvent, accountId: number) => { - const tags = await listTags(db, accountId) - return tags -}) - -ipcMain.handle('remove-hashtag', async (_: IpcMainInvokeEvent, tag: LocalTag) => { - await removeTag(db, tag) -}) - -// Fonts -ipcMain.handle('list-fonts', async (_: IpcMainInvokeEvent) => { - const list = await Fonts() - return list -}) - -// Settings -ipcMain.handle( - 'get-account-setting', - async (_: IpcMainInvokeEvent, accountId: number): Promise => { - const setting = await getSetting(db, accountId) - return setting - } -) - -ipcMain.handle( - 'update-account-setting', - async (_: IpcMainInvokeEvent, setting: Setting): Promise => { - console.log(setting) - const res = await createOrUpdateSetting(db, setting) - return res - } -) - -// Cache -ipcMain.handle('get-cache-hashtags', async (_: IpcMainInvokeEvent) => { - // TODO: - return [] -}) - -ipcMain.handle('insert-cache-hashtags', async (_: IpcMainInvokeEvent) => { - return null -}) - -ipcMain.handle('get-cache-accounts', async (_: IpcMainInvokeEvent) => { - return [] -}) - -ipcMain.handle('insert-cache-accounts', async (_: IpcMainInvokeEvent) => { - return [] -}) - -// Application control -ipcMain.on('relaunch', () => { - app.relaunch() - app.exit() -}) - -/** - * Auto Updater - * - * Uncomment the following code below and install `electron-updater` to - * support auto updating. Code Signing with a valid certificate is required. - * https://simulatedgreg.gitbooks.io/electron-vue/content/en/using-electron-builder.html#auto-updating - */ - -/* -import { autoUpdater } from 'electron-updater' - -autoUpdater.on('update-downloaded', () => { - autoUpdater.quitAndInstall() -}) - -app.on('ready', () => { - if (process.env.NODE_ENV === 'production') autoUpdater.checkForUpdates() -}) - */ - -/** - * Generate application menu - */ -const ApplicationMenu = (accountsChange: Array, menu: MenuPreferences, i18n: I18n): Menu => { - /** - * For mac menu - */ - const macGeneralMenu: Array = - process.platform !== 'darwin' - ? [] - : [ - { - type: 'separator' - }, - { - label: i18n.t('main_menu.application.services'), - role: 'services' - }, - { - type: 'separator' - }, - { - label: i18n.t('main_menu.application.hide'), - role: 'hide' - }, - { - label: i18n.t('main_menu.application.hide_others'), - role: 'hideOthers' - }, - { - label: i18n.t('main_menu.application.show_all'), - role: 'unhide' - } - ] - - const macWindowMenu: Array = - process.platform === 'darwin' - ? [] - : [ - { - label: i18n.t('main_menu.window.always_show_menu_bar'), - type: 'checkbox', - checked: !menu.autoHideMenu, - click: item => { - changeMenuAutoHide(!item.checked) - } - }, - { - type: 'separator' - } - ] - - const applicationQuitMenu: Array = - process.platform === 'darwin' - ? [ - { - label: i18n.t('main_menu.application.quit'), - accelerator: 'CmdOrCtrl+Q', - role: 'quit' - } - ] - : [ - { - label: i18n.t('main_menu.application.quit'), - accelerator: 'CmdOrCtrl+Q', - click: () => { - mainWindow!.destroy() - } - } - ] - - const template: Array = [ - { - label: i18n.t('main_menu.application.name'), - submenu: [ - { - label: i18n.t('main_menu.application.about'), - role: 'about', - click: () => { - openAboutWindow({ - icon_path: path.join(iconBasePath, '256x256.png'), - copyright: 'Copyright (c) 2021 AkiraFukushima', - package_json_dir: path.resolve(__dirname, '../../'), - open_devtools: process.env.NODE_ENV !== 'production' - }) - } - }, - { - type: 'separator' - }, - { - label: i18n.t('main_menu.application.preferences'), - accelerator: 'CmdOrCtrl+,', - click: () => { - mainWindow!.webContents.send('open-preferences') - } - }, - ...macGeneralMenu, - { - type: 'separator' - }, - ...applicationQuitMenu - ] - }, - { - label: i18n.t('main_menu.edit.name'), - submenu: [ - { - label: i18n.t('main_menu.edit.undo'), - accelerator: 'CmdOrCtrl+Z', - role: 'undo' - }, - { - label: i18n.t('main_menu.edit.redo'), - accelerator: 'Shift+CmdOrCtrl+Z', - role: 'redo' - }, - { - type: 'separator' - }, - { - label: i18n.t('main_menu.edit.cut'), - accelerator: 'CmdOrCtrl+X', - role: 'cut' - }, - { - label: i18n.t('main_menu.edit.copy'), - accelerator: 'CmdOrCtrl+C', - role: 'copy' - }, - { - label: i18n.t('main_menu.edit.paste'), - accelerator: 'CmdOrCtrl+V', - role: 'paste' - }, - { - label: i18n.t('main_menu.edit.select_all'), - accelerator: 'CmdOrCtrl+A', - role: 'selectall' - } - ] as Array - }, - { - label: i18n.t('main_menu.view.name'), - submenu: [ - { - label: i18n.t('main_menu.view.toggle_full_screen'), - role: 'togglefullscreen' - } - ] - }, - { - label: i18n.t('main_menu.window.name'), - submenu: [ - ...macWindowMenu, - { - label: i18n.t('main_menu.window.close'), - role: 'close' - }, - { - label: i18n.t('main_menu.window.open'), - enabled: false, - click: () => { - reopenWindow() - } - }, - { - label: i18n.t('main_menu.window.minimize'), - role: 'minimize' - }, - { - type: 'separator' - }, - { - label: i18n.t('main_menu.window.jump_to'), - accelerator: 'CmdOrCtrl+K', - enabled: true, - click: () => { - mainWindow!.webContents.send('CmdOrCtrl+K') - } - }, - { - type: 'separator' - }, - ...accountsChange - ] - }, - { - label: i18n.t('main_menu.help.name'), - role: 'help', - submenu: [ - { - label: i18n.t('main_menu.application.shortcuts'), - click: () => { - mainWindow!.webContents.send('open-shortcuts-list') - } - }, - { - label: i18n.t('main_menu.help.thirdparty'), - click: () => { - mainWindow?.webContents.send('open-thirdparty-modal') - } - } - ] - } - ] - - return Menu.buildFromTemplate(template) -} - -const TrayMenu = (accountsChange: Array, i18n: I18n): Menu => { - const template: Array = [ - ...accountsChange, - { - label: i18n.t('main_menu.application.open'), - click: async () => { - if (mainWindow) { - mainWindow.show() - } else { - await createWindow() - } - } - }, - { - label: i18n.t('main_menu.application.quit'), - click: () => { - stopAllStreamings() - mainWindow!.destroy() - } - } - ] - const menu: Menu = Menu.buildFromTemplate(template) - return menu -} - -const changeMenuAutoHide = async (autoHide: boolean) => { - if (mainWindow === null) { - return null - } - mainWindow.autoHideMenuBar = autoHide - mainWindow.setMenuBarVisibility(!autoHide) - const preferences = new Preferences(preferencesDBPath) - preferences.update({ - menu: { - autoHideMenu: autoHide - } - }) - return null -} - -async function reopenWindow() { - if (mainWindow === null) { - await createWindow() - return null - } else { - return null - } -} - -const decodeLanguage = (lang: string): LanguageType => { - const l = Object.keys(Language).find(k => Language[k].key === lang) - if (l === undefined) { - return Language.en - } else { - return Language[l] - } -} - -//---------------------------------------------- -// Streamings -//---------------------------------------------- -const userStreamings: { [key: number]: UserStreaming } = {} -const directStreamings: { [key: number]: DirectStreaming } = {} -const localStreamings: { [key: number]: DirectStreaming } = {} -const publicStreamings: { [key: number]: DirectStreaming } = {} - -const startUserStreaming = async (account: LocalAccount, server: LocalServer, preferences: Preferences) => { - const proxy = await proxyConfiguration.forMastodon() - if (server.sns === 'friendica') return - const url = await StreamingURL(server.sns, account, server, proxy) - userStreamings[account.id] = new UserStreaming(server.sns, account, url, proxy) - userStreamings[account.id].start( - async (update: Entity.Status) => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`update-user-streamings-${account.id}`, update) - } - }, - async (notification: Entity.Notification) => { - await publishNotification(notification, account.id, preferences) - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`notification-user-streamings-${account.id}`, notification) - } - }, - (statusId: string) => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`delete-user-streamings-${account.id}`, statusId) - } - }, - (err: Error) => { - log.error(err) - } - ) -} - -const startDirectStreaming = async (account: LocalAccount, server: LocalServer) => { - const proxy = await proxyConfiguration.forMastodon() - if (server.sns === 'friendica') return - const url = await StreamingURL(server.sns, account, server, proxy) - directStreamings[account.id] = new DirectStreaming(server.sns, account, url, proxy) - directStreamings[account.id].start( - (update: Entity.Status) => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`update-direct-streamings-${account.id}`, update) - } - }, - (id: string) => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`delete-direct-streamings-${account.id}`, id) - } - }, - (err: Error) => { - log.error(err) - } - ) -} - -const startLocalStreaming = async (account: LocalAccount, server: LocalServer) => { - const proxy = await proxyConfiguration.forMastodon() - if (server.sns === 'friendica') return - const url = await StreamingURL(server.sns, account, server, proxy) - localStreamings[account.id] = new LocalStreaming(server.sns, account, url, proxy) - localStreamings[account.id].start( - (update: Entity.Status) => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`update-local-streamings-${account.id}`, update) - } - }, - (id: string) => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`delete-local-streamings-${account.id}`, id) - } - }, - (err: Error) => { - log.error(err) - } - ) -} - -const startPublicStreaming = async (account: LocalAccount, server: LocalServer) => { - const proxy = await proxyConfiguration.forMastodon() - if (server.sns === 'friendica') return - const url = await StreamingURL(server.sns, account, server, proxy) - publicStreamings[account.id] = new PublicStreaming(server.sns, account, url, proxy) - publicStreamings[account.id].start( - (update: Entity.Status) => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`update-public-streamings-${account.id}`, update) - } - }, - (id: string) => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send(`delete-public-streamings-${account.id}`, id) - } - }, - (err: Error) => { - log.error(err) - } - ) -} - -const stopAllStreamings = () => { - Object.keys(userStreamings).forEach((key: string) => { - userStreamings[parseInt(key)].stop() - }) - Object.keys(directStreamings).forEach((key: string) => { - directStreamings[parseInt(key)].stop() - }) - Object.keys(localStreamings).forEach((key: string) => [localStreamings[parseInt(key)].stop()]) - Object.keys(publicStreamings).forEach((key: string) => { - publicStreamings[parseInt(key)].stop() - }) -} - -const startUserStreamings = async (accounts: Array<[LocalAccount, LocalServer]>, preferences: Preferences) => { - accounts.forEach(async ([account, server]) => { - await startUserStreaming(account, server, preferences) - }) - - return userStreamings -} - -const startDirectStreamings = async (accounts: Array<[LocalAccount, LocalServer]>) => { - accounts.forEach(async ([account, server]) => { - await startDirectStreaming(account, server) - }) -} - -const startLocalStreamings = async (accounts: Array<[LocalAccount, LocalServer]>) => { - accounts.forEach(async ([account, server]) => { - await startLocalStreaming(account, server) - }) -} - -const startPublicStreamings = async (accounts: Array<[LocalAccount, LocalServer]>) => { - accounts.forEach(async ([account, server]) => { - await startPublicStreaming(account, server) - }) -} - -const publishNotification = async (notification: Entity.Notification, accountId: number, preferences: Preferences) => { - const conf = await preferences.load() - const options = createNotification(notification, conf.notification.notify) - if (options !== null) { - const notify = new Notification(options) - notify.on('click', _ => { - if (!mainWindow?.webContents.isDestroyed()) { - mainWindow?.webContents.send('open-notification-tab', accountId) - } - }) - notify.show() - } - if (process.platform === 'darwin') { - app.dock.setBadge('•') - } -} - -const createNotification = (notification: Entity.Notification, notifyConfig: Notify): NotificationConstructorOptions | null => { - if (!notification.account) return null - switch (notification.type) { - case NotificationType.Favourite: - if (notifyConfig.favourite) { - return { - title: i18next.t('notification.favourite.title'), - body: i18next.t('notification.favourite.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } - break - case NotificationType.Follow: - if (notifyConfig.follow) { - return { - title: i18next.t('notification.follow.title'), - body: i18next.t('notification.follow.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } - break - case NotificationType.FollowRequest: - if (notifyConfig.follow_request) { - return { - title: i18next.t('notification.follow_request.title'), - body: i18next.t('notification.follow_request.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } - break - case NotificationType.Mention: - if (notifyConfig.reply) { - return { - title: `${username(notification.status!.account)}`, - body: sanitizeHtml(notification.status!.content, { - allowedTags: [], - allowedAttributes: [] - }), - silent: false - } as NotificationConstructorOptions - } - break - case NotificationType.Reblog: - if (notifyConfig.reblog) { - if (notification.status && notification.status.quote) { - return { - title: i18next.t('notification.quote.title'), - body: i18next.t('notification.quote.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } else { - return { - title: i18next.t('notification.reblog.title'), - body: i18next.t('notification.reblog.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } - } - break - case NotificationType.EmojiReaction: - if (notifyConfig.reaction) { - return { - title: i18next.t('notification.reaction.title'), - body: i18next.t('notification.reaction.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } - break - case NotificationType.Status: - if (notifyConfig.status) { - return { - title: i18next.t('notification.status.title'), - body: i18next.t('notification.status.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } - break - case NotificationType.PollVote: - if (notifyConfig.poll_vote) { - return { - title: i18next.t('notification.poll_vote.title'), - body: i18next.t('notification.poll_vote.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } - break - case NotificationType.PollExpired: - if (notifyConfig.poll_expired) { - return { - title: i18next.t('notification.poll_expired.title'), - body: i18next.t('notification.poll_expired.body', { username: username(notification.account) }), - silent: false - } as NotificationConstructorOptions - } - break - default: - break - } - return null -} - -const username = (account: Entity.Account): string => { - if (account.display_name !== '') { - return account.display_name - } else { - return account.username - } -} - -//---------------------------------------- -// List streamings -//---------------------------------------- -const listStreamings: { [key: number]: ListStreaming } = {} - -type ListStreamingOpts = { - listId: string - accountId: number -} - -ipcMain.on('start-list-streaming', async (event: IpcMainEvent, obj: ListStreamingOpts) => { - const { listId, accountId } = obj - try { - const [account, server] = await getAccount(db, accountId) - - // Stop old list streaming - if (listStreamings[accountId] !== undefined) { - listStreamings[accountId].stop() - } - const proxy = await proxyConfiguration.forMastodon() - if (server.sns === 'friendica') return - const url = await StreamingURL(server.sns, account, server, proxy) - listStreamings[accountId] = new ListStreaming(server.sns, account, url, proxy) - listStreamings[accountId].start( - listId, - (update: Entity.Status) => { - if (!event.sender.isDestroyed()) { - event.sender.send(`update-list-streamings-${accountId}`, update) - } - }, - (id: string) => { - if (!event.sender.isDestroyed()) { - event.sender.send(`delete-list-streamings-${accountId}`, id) - } - }, - (err: Error) => { - log.error(err) - } - ) - } catch (err) { - log.error(err) - } -}) - -//---------------------------------------- -// Tag streamings -//---------------------------------------- -const tagStreamings: { [key: number]: TagStreaming } = {} - -type TagStreamingOpts = { - tag: string - accountId: number -} - -ipcMain.on('start-tag-streaming', async (event: IpcMainEvent, obj: TagStreamingOpts) => { - const { tag, accountId } = obj - try { - const [account, server] = await getAccount(db, accountId) - - // Stop old tag streaming - if (tagStreamings[accountId] !== undefined) { - tagStreamings[accountId].stop() - } - const proxy = await proxyConfiguration.forMastodon() - if (server.sns === 'friendica') return - const url = await StreamingURL(server.sns, account, server, proxy) - tagStreamings[accountId] = new TagStreaming(server.sns, account, url, proxy) - tagStreamings[accountId].start( - tag, - (update: Entity.Status) => { - if (!event.sender.isDestroyed()) { - event.sender.send(`update-tag-streamings-${accountId}`, update) - } - }, - (id: string) => { - if (!event.sender.isDestroyed()) { - event.sender.send(`delete-tag-streamings-${accountId}`, id) - } - }, - (err: Error) => { - log.error(err) - } - ) - } catch (err) { - log.error(err) - } -}) - -ipcMain.handle('open-browser', async (_: IpcMainInvokeEvent, url: string) => { - shell.openExternal(url) -}) - -ipcMain.handle('copy-text', async (_: IpcMainInvokeEvent, text: string) => { - clipboard.writeText(text) -}) diff --git a/src/main/preferences.ts b/src/main/preferences.ts deleted file mode 100644 index 51f25cd0..00000000 --- a/src/main/preferences.ts +++ /dev/null @@ -1,52 +0,0 @@ -import storage from 'electron-json-storage' -import log from 'electron-log' -import objectAssignDeep from 'object-assign-deep' -import { BaseConfig } from '~/src/types/preference' -import { Base } from '~/src/constants/initializer/preferences' - -export default class Preferences { - private path: string - - constructor(path: string) { - this.path = path - } - - public async load(): Promise { - try { - const preferences = await this._get() - return objectAssignDeep({}, Base, preferences) - } catch (err) { - log.error(err) - return Base - } - } - - private _get(): Promise { - return new Promise((resolve, reject) => { - storage.get(this.path, (err, data) => { - if (err) return reject(err) - return resolve(data as BaseConfig) - }) - }) - } - - private _save(data: BaseConfig): Promise { - return new Promise((resolve, reject) => { - storage.set(this.path, data, err => { - if (err) return reject(err) - return resolve(data) - }) - }) - } - - public async update(obj: any): Promise { - const current = await this.load() - const data = objectAssignDeep({}, current, obj) - const result = await this._save(data) - return result - } - - public async reset(): Promise { - return this.update(Base) - } -} diff --git a/src/main/preload.js b/src/main/preload.js deleted file mode 100644 index be32130b..00000000 --- a/src/main/preload.js +++ /dev/null @@ -1,5 +0,0 @@ -const electron = require('electron') - -global.ipcRenderer = electron.ipcRenderer -global.node_env = process.env.NODE_ENV -global.platform = process.platform diff --git a/src/main/proxy.ts b/src/main/proxy.ts deleted file mode 100644 index 76bd102e..00000000 --- a/src/main/proxy.ts +++ /dev/null @@ -1,104 +0,0 @@ -import { ProxyConfig } from 'megalodon' -import { ProxySource, ManualProxy, ProxyProtocol } from '~/src/types/proxy' -import Preferences from './preferences' - -export default class ProxyConfiguration { - public preferences: Preferences - public systemProxy: string | null = null - - constructor(preferencesDBPath: string) { - this.preferences = new Preferences(preferencesDBPath) - } - - public setSystemProxy(proxy: string) { - this.systemProxy = proxy - } - - public async forMastodon(): Promise { - const proxy = await this.getConfig() - if (!proxy) { - return false - } else { - let protocol = ProxyProtocol.http - if (proxy.protocol !== '') { - protocol = proxy.protocol - } - if (proxy.username.length > 0) { - return { - host: proxy.host, - port: parseInt(proxy.port, 10), - protocol: protocol, - auth: { - username: proxy.username, - password: proxy.password - } - } - } else { - return { - host: proxy.host, - port: parseInt(proxy.port, 10), - protocol: protocol - } - } - } - } - - public async getConfig(): Promise { - const conf = await this.preferences.load() - const source = conf.proxy.source as ProxySource - switch (source) { - case ProxySource.no: - return false - case ProxySource.system: - if (this.systemProxy) { - return this.parseSystemProxy() - } else { - return false - } - case ProxySource.manual: - return conf.proxy.manualProxyConfig - } - } - - public parseSystemProxy(): ManualProxy | false { - if (!this.systemProxy) { - return false - } - if (this.systemProxy === 'DIRECT') { - return false - } - const result = this.systemProxy.match(/^([A-Z0-9]+)\s+([a-z0-9-_.]+):([0-9]+)$/) - if (!result || result.length !== 4) { - return false - } - let protocol = ProxyProtocol.http - switch (result[1]) { - case 'PROXY': - protocol = ProxyProtocol.http - break - case 'SOCKS4': - protocol = ProxyProtocol.socks4 - break - case 'SOCKS4A': - protocol = ProxyProtocol.socks4a - break - case 'SOCKS5': - protocol = ProxyProtocol.socks5 - break - case 'SOCKS5H': - protocol = ProxyProtocol.socks5h - break - case 'SOCKS': - protocol = ProxyProtocol.socks5 - break - } - const manual: ManualProxy = { - protocol: protocol, - host: result[2], - port: result[3], - username: '', - password: '' - } - return manual - } -} diff --git a/src/main/websocket.ts b/src/main/websocket.ts deleted file mode 100644 index fb221e20..00000000 --- a/src/main/websocket.ts +++ /dev/null @@ -1,151 +0,0 @@ -import generator, { MegalodonInterface, WebSocketInterface, Entity, ProxyConfig } from 'megalodon' -import log from 'electron-log' -import { LocalAccount } from '~/src/types/localAccount' -import { LocalServer } from '~src/types/localServer' - -const StreamingURL = async ( - sns: 'mastodon' | 'pleroma' | 'firefish', - account: LocalAccount, - server: LocalServer, - proxy: ProxyConfig | false -): Promise => { - if (!account.accessToken) { - throw new Error('access token is empty') - } - const client = generator(sns, server.baseURL, account.accessToken, 'Whalebird', proxy) - const res = await client.getInstance() - if (res.data.urls) { - return res.data.urls.streaming_api - } - return new Promise((_resolve, reject) => reject('streaming URL does not exist')) -} - -export { StreamingURL } - -class WebSocket { - public client: MegalodonInterface - public listener: WebSocketInterface | null - - constructor(sns: 'mastodon' | 'pleroma' | 'firefish', account: LocalAccount, streamingURL: string, proxy: ProxyConfig | false) { - const url = streamingURL.replace(/^https:\/\//, 'wss://') - this.client = generator(sns, url, account.accessToken, 'Whalebird', proxy) - this.listener = null - } - - public bindListener(updateCallback: Function, deleteCallback: Function, errCallback: Function) { - if (!this.listener) { - log.error('listener does not exist') - return - } - - this.listener.on('update', (status: Entity.Status) => { - updateCallback(status) - }) - - this.listener.on('delete', (id: string) => { - deleteCallback(id) - }) - - this.listener.on('error', (err: Error) => { - errCallback(err) - }) - - this.listener.on('parser-error', (err: Error) => { - errCallback(err) - }) - } - - public stop() { - if (this.listener) { - this.listener.removeAllListeners('connect') - this.listener.removeAllListeners('update') - this.listener.removeAllListeners('notification') - this.listener.removeAllListeners('error') - this.listener.removeAllListeners('parser-error') - this.listener.on('error', (e: Error) => { - log.error(e) - }) - this.listener.on('parser-error', (e: Error) => { - log.error(e) - }) - this.listener.stop() - log.info('streaming stopped') - } - } -} - -export class UserStreaming extends WebSocket { - public start(updateCallback: Function, notificationCallback: Function, deleteCallback: Function, errCallback: Function) { - this.listener = this.client.userSocket() - - this.listener.on('connect', _ => { - log.info('user streaming is started') - }) - - this.listener.on('notification', (notification: Entity.Notification) => { - notificationCallback(notification) - }) - - this.bindListener(updateCallback, deleteCallback, errCallback) - } -} - -export class DirectStreaming extends WebSocket { - public start(updateCallback: Function, deleteCallback: Function, errCallback: Function) { - this.listener = this.client.directSocket() - - this.listener.on('connect', _ => { - log.info('direct streaming is started') - }) - - this.bindListener(updateCallback, deleteCallback, errCallback) - } -} - -export class LocalStreaming extends WebSocket { - public start(updateCallback: Function, deleteCallback: Function, errCallback: Function) { - this.listener = this.client.localSocket() - - this.listener.on('connect', _ => { - log.info('local streaming is started') - }) - - this.bindListener(updateCallback, deleteCallback, errCallback) - } -} - -export class PublicStreaming extends WebSocket { - public start(updateCallback: Function, deleteCallback: Function, errCallback: Function) { - this.listener = this.client.publicSocket() - - this.listener.on('connect', _ => { - log.info('public streaming is started') - }) - - this.bindListener(updateCallback, deleteCallback, errCallback) - } -} - -export class ListStreaming extends WebSocket { - public start(listID: string, updateCallback: Function, deleteCallback: Function, errCallback: Function) { - this.listener = this.client.listSocket(listID) - - this.listener.on('connect', _ => { - log.info('list streaming is started') - }) - - this.bindListener(updateCallback, deleteCallback, errCallback) - } -} - -export class TagStreaming extends WebSocket { - public start(tag: string, updateCallback: Function, deleteCallback: Function, errCallback: Function) { - this.listener = this.client.tagSocket(tag) - - this.listener.on('connect', _ => { - log.info('tag streaming is started') - }) - - this.bindListener(updateCallback, deleteCallback, errCallback) - } -} diff --git a/src/renderer/App.vue b/src/renderer/App.vue deleted file mode 100644 index 03c17239..00000000 --- a/src/renderer/App.vue +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - diff --git a/src/renderer/assets/.gitkeep b/src/renderer/assets/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/src/renderer/assets/fonts/NotoSans-Bold.ttf b/src/renderer/assets/fonts/NotoSans-Bold.ttf deleted file mode 100644 index ab11d316..00000000 Binary files a/src/renderer/assets/fonts/NotoSans-Bold.ttf and /dev/null differ diff --git a/src/renderer/assets/fonts/NotoSans-BoldItalic.ttf b/src/renderer/assets/fonts/NotoSans-BoldItalic.ttf deleted file mode 100644 index 6dfd1e61..00000000 Binary files a/src/renderer/assets/fonts/NotoSans-BoldItalic.ttf and /dev/null differ diff --git a/src/renderer/assets/fonts/NotoSans-Italic.ttf b/src/renderer/assets/fonts/NotoSans-Italic.ttf deleted file mode 100644 index 1639ad7d..00000000 Binary files a/src/renderer/assets/fonts/NotoSans-Italic.ttf and /dev/null differ diff --git a/src/renderer/assets/fonts/NotoSans-Regular.ttf b/src/renderer/assets/fonts/NotoSans-Regular.ttf deleted file mode 100644 index a1b8994e..00000000 Binary files a/src/renderer/assets/fonts/NotoSans-Regular.ttf and /dev/null differ diff --git a/src/renderer/assets/fonts/fonts.css b/src/renderer/assets/fonts/fonts.css deleted file mode 100644 index 911afa79..00000000 --- a/src/renderer/assets/fonts/fonts.css +++ /dev/null @@ -1,11 +0,0 @@ -/* === Noto Sans - regular */ -@font-face { - font-family: 'Noto Sans'; - font-style: normal; - font-weight: 400; - src: url("./NotoSans-Regular.ttf"); - src: local("Noto Sans Regular"), - local("NotoSans-Regular"), - url("./NotoSans-Regular.ttf") format("truetype"); -} - diff --git a/src/renderer/assets/images/loading-spinner-wide.svg b/src/renderer/assets/images/loading-spinner-wide.svg deleted file mode 100644 index 76847aa2..00000000 --- a/src/renderer/assets/images/loading-spinner-wide.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/renderer/assets/images/loading-spinner.svg b/src/renderer/assets/images/loading-spinner.svg deleted file mode 100644 index a6673a1b..00000000 --- a/src/renderer/assets/images/loading-spinner.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/renderer/assets/logo.png b/src/renderer/assets/logo.png deleted file mode 100644 index 63736e2c..00000000 Binary files a/src/renderer/assets/logo.png and /dev/null differ diff --git a/src/renderer/assets/timeline-transition.scss b/src/renderer/assets/timeline-transition.scss deleted file mode 100644 index 7561966a..00000000 --- a/src/renderer/assets/timeline-transition.scss +++ /dev/null @@ -1,9 +0,0 @@ -.timeline-enter-active, .timeline-leave-active { - transition: all 0.1s; -} -.timeline-enter, .timeline-leave-to { - opacity: 0; -} -.timeline-move { - transition: transform 0.1s; -} diff --git a/src/renderer/components/GlobalHeader.vue b/src/renderer/components/GlobalHeader.vue deleted file mode 100644 index 6cd7e6f4..00000000 --- a/src/renderer/components/GlobalHeader.vue +++ /dev/null @@ -1,148 +0,0 @@ - - - - - diff --git a/src/renderer/components/Login.vue b/src/renderer/components/Login.vue deleted file mode 100644 index 2856ce46..00000000 --- a/src/renderer/components/Login.vue +++ /dev/null @@ -1,62 +0,0 @@ - - - - - diff --git a/src/renderer/components/Login/Authorize.vue b/src/renderer/components/Login/Authorize.vue deleted file mode 100644 index 98c642b0..00000000 --- a/src/renderer/components/Login/Authorize.vue +++ /dev/null @@ -1,157 +0,0 @@ - - - - - diff --git a/src/renderer/components/Login/LoginForm.vue b/src/renderer/components/Login/LoginForm.vue deleted file mode 100644 index abfd2fb1..00000000 --- a/src/renderer/components/Login/LoginForm.vue +++ /dev/null @@ -1,218 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences.vue b/src/renderer/components/Preferences.vue deleted file mode 100644 index 26bc5417..00000000 --- a/src/renderer/components/Preferences.vue +++ /dev/null @@ -1,134 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences/Account.vue b/src/renderer/components/Preferences/Account.vue deleted file mode 100644 index ed0919e6..00000000 --- a/src/renderer/components/Preferences/Account.vue +++ /dev/null @@ -1,214 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences/Appearance.vue b/src/renderer/components/Preferences/Appearance.vue deleted file mode 100644 index ad6580d8..00000000 --- a/src/renderer/components/Preferences/Appearance.vue +++ /dev/null @@ -1,151 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences/Appearance/ColorPallet.vue b/src/renderer/components/Preferences/Appearance/ColorPallet.vue deleted file mode 100644 index 99e40797..00000000 --- a/src/renderer/components/Preferences/Appearance/ColorPallet.vue +++ /dev/null @@ -1,167 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences/Appearance/Toot.vue b/src/renderer/components/Preferences/Appearance/Toot.vue deleted file mode 100644 index 90acc2bc..00000000 --- a/src/renderer/components/Preferences/Appearance/Toot.vue +++ /dev/null @@ -1,254 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences/General.vue b/src/renderer/components/Preferences/General.vue deleted file mode 100644 index e91c028d..00000000 --- a/src/renderer/components/Preferences/General.vue +++ /dev/null @@ -1,182 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences/Language.vue b/src/renderer/components/Preferences/Language.vue deleted file mode 100644 index 0692f96f..00000000 --- a/src/renderer/components/Preferences/Language.vue +++ /dev/null @@ -1,145 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences/Network.vue b/src/renderer/components/Preferences/Network.vue deleted file mode 100644 index b5d99c12..00000000 --- a/src/renderer/components/Preferences/Network.vue +++ /dev/null @@ -1,128 +0,0 @@ - - - - - diff --git a/src/renderer/components/Preferences/Notification.vue b/src/renderer/components/Preferences/Notification.vue deleted file mode 100644 index e7582909..00000000 --- a/src/renderer/components/Preferences/Notification.vue +++ /dev/null @@ -1,156 +0,0 @@ - - - - - diff --git a/src/renderer/components/Settings.vue b/src/renderer/components/Settings.vue deleted file mode 100644 index e9a577ba..00000000 --- a/src/renderer/components/Settings.vue +++ /dev/null @@ -1,131 +0,0 @@ - - - - - diff --git a/src/renderer/components/Settings/Filters.vue b/src/renderer/components/Settings/Filters.vue deleted file mode 100644 index 3ec87c49..00000000 --- a/src/renderer/components/Settings/Filters.vue +++ /dev/null @@ -1,135 +0,0 @@ - - - - - diff --git a/src/renderer/components/Settings/Filters/Edit.vue b/src/renderer/components/Settings/Filters/Edit.vue deleted file mode 100644 index 81548fe7..00000000 --- a/src/renderer/components/Settings/Filters/Edit.vue +++ /dev/null @@ -1,80 +0,0 @@ - - - diff --git a/src/renderer/components/Settings/Filters/New.vue b/src/renderer/components/Settings/Filters/New.vue deleted file mode 100644 index 1f0e03bb..00000000 --- a/src/renderer/components/Settings/Filters/New.vue +++ /dev/null @@ -1,76 +0,0 @@ - - - diff --git a/src/renderer/components/Settings/Filters/form.vue b/src/renderer/components/Settings/Filters/form.vue deleted file mode 100644 index b8bceb76..00000000 --- a/src/renderer/components/Settings/Filters/form.vue +++ /dev/null @@ -1,169 +0,0 @@ - - - - - diff --git a/src/renderer/components/Settings/General.vue b/src/renderer/components/Settings/General.vue deleted file mode 100644 index 4d556812..00000000 --- a/src/renderer/components/Settings/General.vue +++ /dev/null @@ -1,84 +0,0 @@ - - - - - diff --git a/src/renderer/components/Settings/Timeline.vue b/src/renderer/components/Settings/Timeline.vue deleted file mode 100644 index 6c6e1c4f..00000000 --- a/src/renderer/components/Settings/Timeline.vue +++ /dev/null @@ -1,71 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace.vue b/src/renderer/components/TimelineSpace.vue deleted file mode 100644 index 8b72d9ff..00000000 --- a/src/renderer/components/TimelineSpace.vue +++ /dev/null @@ -1,136 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Compose.vue b/src/renderer/components/TimelineSpace/Compose.vue deleted file mode 100644 index ff68bfbc..00000000 --- a/src/renderer/components/TimelineSpace/Compose.vue +++ /dev/null @@ -1,916 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Compose/Quote.vue b/src/renderer/components/TimelineSpace/Compose/Quote.vue deleted file mode 100644 index ce4db333..00000000 --- a/src/renderer/components/TimelineSpace/Compose/Quote.vue +++ /dev/null @@ -1,125 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents.vue b/src/renderer/components/TimelineSpace/Contents.vue deleted file mode 100644 index 4cda5537..00000000 --- a/src/renderer/components/TimelineSpace/Contents.vue +++ /dev/null @@ -1,46 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Bookmarks.vue b/src/renderer/components/TimelineSpace/Contents/Bookmarks.vue deleted file mode 100644 index a517968d..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Bookmarks.vue +++ /dev/null @@ -1,248 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/DirectMessages.vue b/src/renderer/components/TimelineSpace/Contents/DirectMessages.vue deleted file mode 100644 index def43de5..00000000 --- a/src/renderer/components/TimelineSpace/Contents/DirectMessages.vue +++ /dev/null @@ -1,194 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Favourites.vue b/src/renderer/components/TimelineSpace/Contents/Favourites.vue deleted file mode 100644 index dc2b37ee..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Favourites.vue +++ /dev/null @@ -1,249 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/FollowRequests.vue b/src/renderer/components/TimelineSpace/Contents/FollowRequests.vue deleted file mode 100644 index 64c74716..00000000 --- a/src/renderer/components/TimelineSpace/Contents/FollowRequests.vue +++ /dev/null @@ -1,106 +0,0 @@ - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Hashtag.vue b/src/renderer/components/TimelineSpace/Contents/Hashtag.vue deleted file mode 100644 index ce3bd106..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Hashtag.vue +++ /dev/null @@ -1,110 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Hashtag/List.vue b/src/renderer/components/TimelineSpace/Contents/Hashtag/List.vue deleted file mode 100644 index 60d5a47b..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Hashtag/List.vue +++ /dev/null @@ -1,89 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Hashtag/Tag.vue b/src/renderer/components/TimelineSpace/Contents/Hashtag/Tag.vue deleted file mode 100644 index 647298a3..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Hashtag/Tag.vue +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Home.vue b/src/renderer/components/TimelineSpace/Contents/Home.vue deleted file mode 100644 index 5e7c521d..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Home.vue +++ /dev/null @@ -1,257 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Lists/Edit.vue b/src/renderer/components/TimelineSpace/Contents/Lists/Edit.vue deleted file mode 100644 index 9d7ff66b..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Lists/Edit.vue +++ /dev/null @@ -1,117 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Lists/Index.vue b/src/renderer/components/TimelineSpace/Contents/Lists/Index.vue deleted file mode 100644 index 8165047c..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Lists/Index.vue +++ /dev/null @@ -1,173 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Lists/Show.vue b/src/renderer/components/TimelineSpace/Contents/Lists/Show.vue deleted file mode 100644 index 86b932b1..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Lists/Show.vue +++ /dev/null @@ -1,264 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Local.vue b/src/renderer/components/TimelineSpace/Contents/Local.vue deleted file mode 100644 index 903ff8b9..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Local.vue +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Notifications.vue b/src/renderer/components/TimelineSpace/Contents/Notifications.vue deleted file mode 100644 index d96ef5a8..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Notifications.vue +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Public.vue b/src/renderer/components/TimelineSpace/Contents/Public.vue deleted file mode 100644 index 9b494177..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Public.vue +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Search.vue b/src/renderer/components/TimelineSpace/Contents/Search.vue deleted file mode 100644 index 2e7b82d9..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Search.vue +++ /dev/null @@ -1,189 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Search/Account.vue b/src/renderer/components/TimelineSpace/Contents/Search/Account.vue deleted file mode 100644 index cfe7a7eb..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Search/Account.vue +++ /dev/null @@ -1,28 +0,0 @@ - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Search/Tag.vue b/src/renderer/components/TimelineSpace/Contents/Search/Tag.vue deleted file mode 100644 index 09c8a326..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Search/Tag.vue +++ /dev/null @@ -1,28 +0,0 @@ - - - diff --git a/src/renderer/components/TimelineSpace/Contents/Search/Toots.vue b/src/renderer/components/TimelineSpace/Contents/Search/Toots.vue deleted file mode 100644 index 5c33cadd..00000000 --- a/src/renderer/components/TimelineSpace/Contents/Search/Toots.vue +++ /dev/null @@ -1,38 +0,0 @@ - - - diff --git a/src/renderer/components/TimelineSpace/Detail.vue b/src/renderer/components/TimelineSpace/Detail.vue deleted file mode 100644 index 531ca171..00000000 --- a/src/renderer/components/TimelineSpace/Detail.vue +++ /dev/null @@ -1,91 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Detail/Profile.vue b/src/renderer/components/TimelineSpace/Detail/Profile.vue deleted file mode 100644 index 39d8226b..00000000 --- a/src/renderer/components/TimelineSpace/Detail/Profile.vue +++ /dev/null @@ -1,561 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/TimelineSpace/Detail/Profile/Followers.vue b/src/renderer/components/TimelineSpace/Detail/Profile/Followers.vue deleted file mode 100644 index ce73ee66..00000000 --- a/src/renderer/components/TimelineSpace/Detail/Profile/Followers.vue +++ /dev/null @@ -1,102 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Detail/Profile/Following.vue b/src/renderer/components/TimelineSpace/Detail/Profile/Following.vue deleted file mode 100644 index b5b94585..00000000 --- a/src/renderer/components/TimelineSpace/Detail/Profile/Following.vue +++ /dev/null @@ -1,102 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Detail/Profile/Posts.vue b/src/renderer/components/TimelineSpace/Detail/Profile/Posts.vue deleted file mode 100644 index 0e715a54..00000000 --- a/src/renderer/components/TimelineSpace/Detail/Profile/Posts.vue +++ /dev/null @@ -1,96 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Detail/Status.vue b/src/renderer/components/TimelineSpace/Detail/Status.vue deleted file mode 100644 index 2029287c..00000000 --- a/src/renderer/components/TimelineSpace/Detail/Status.vue +++ /dev/null @@ -1,126 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/HeaderMenu.vue b/src/renderer/components/TimelineSpace/HeaderMenu.vue deleted file mode 100644 index a2ff6609..00000000 --- a/src/renderer/components/TimelineSpace/HeaderMenu.vue +++ /dev/null @@ -1,198 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals.vue b/src/renderer/components/TimelineSpace/Modals.vue deleted file mode 100644 index 0acbeaed..00000000 --- a/src/renderer/components/TimelineSpace/Modals.vue +++ /dev/null @@ -1,55 +0,0 @@ - - - diff --git a/src/renderer/components/TimelineSpace/Modals/AddListMember.vue b/src/renderer/components/TimelineSpace/Modals/AddListMember.vue deleted file mode 100644 index 0505cbdd..00000000 --- a/src/renderer/components/TimelineSpace/Modals/AddListMember.vue +++ /dev/null @@ -1,192 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals/ImageViewer.vue b/src/renderer/components/TimelineSpace/Modals/ImageViewer.vue deleted file mode 100644 index b60d8281..00000000 --- a/src/renderer/components/TimelineSpace/Modals/ImageViewer.vue +++ /dev/null @@ -1,132 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals/ImageViewer/Media.vue b/src/renderer/components/TimelineSpace/Modals/ImageViewer/Media.vue deleted file mode 100644 index 0bdeac79..00000000 --- a/src/renderer/components/TimelineSpace/Modals/ImageViewer/Media.vue +++ /dev/null @@ -1,71 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals/Jump.vue b/src/renderer/components/TimelineSpace/Modals/Jump.vue deleted file mode 100644 index d60372b0..00000000 --- a/src/renderer/components/TimelineSpace/Modals/Jump.vue +++ /dev/null @@ -1,157 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals/ListMembership.vue b/src/renderer/components/TimelineSpace/Modals/ListMembership.vue deleted file mode 100644 index ef33bd79..00000000 --- a/src/renderer/components/TimelineSpace/Modals/ListMembership.vue +++ /dev/null @@ -1,106 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals/MuteConfirm.vue b/src/renderer/components/TimelineSpace/Modals/MuteConfirm.vue deleted file mode 100644 index 253a26c5..00000000 --- a/src/renderer/components/TimelineSpace/Modals/MuteConfirm.vue +++ /dev/null @@ -1,58 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals/Report.vue b/src/renderer/components/TimelineSpace/Modals/Report.vue deleted file mode 100644 index 7896aeee..00000000 --- a/src/renderer/components/TimelineSpace/Modals/Report.vue +++ /dev/null @@ -1,57 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals/Shortcut.vue b/src/renderer/components/TimelineSpace/Modals/Shortcut.vue deleted file mode 100644 index cd187231..00000000 --- a/src/renderer/components/TimelineSpace/Modals/Shortcut.vue +++ /dev/null @@ -1,147 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/Modals/Thirdparty.vue b/src/renderer/components/TimelineSpace/Modals/Thirdparty.vue deleted file mode 100644 index 6d8ab066..00000000 --- a/src/renderer/components/TimelineSpace/Modals/Thirdparty.vue +++ /dev/null @@ -1,106 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/ReceiveDrop.vue b/src/renderer/components/TimelineSpace/ReceiveDrop.vue deleted file mode 100644 index d54edac8..00000000 --- a/src/renderer/components/TimelineSpace/ReceiveDrop.vue +++ /dev/null @@ -1,55 +0,0 @@ - - - - - diff --git a/src/renderer/components/TimelineSpace/SideMenu.vue b/src/renderer/components/TimelineSpace/SideMenu.vue deleted file mode 100644 index f85da4ff..00000000 --- a/src/renderer/components/TimelineSpace/SideMenu.vue +++ /dev/null @@ -1,594 +0,0 @@ - - - - - diff --git a/src/renderer/components/atoms/FailoverImg.vue b/src/renderer/components/atoms/FailoverImg.vue deleted file mode 100644 index db07fb16..00000000 --- a/src/renderer/components/atoms/FailoverImg.vue +++ /dev/null @@ -1,76 +0,0 @@ - - - - - diff --git a/src/renderer/components/molecules/Tag.vue b/src/renderer/components/molecules/Tag.vue deleted file mode 100644 index 89bc0e17..00000000 --- a/src/renderer/components/molecules/Tag.vue +++ /dev/null @@ -1,59 +0,0 @@ - - - - - diff --git a/src/renderer/components/molecules/Toot/LinkPreview.vue b/src/renderer/components/molecules/Toot/LinkPreview.vue deleted file mode 100644 index 731e6b05..00000000 --- a/src/renderer/components/molecules/Toot/LinkPreview.vue +++ /dev/null @@ -1,106 +0,0 @@ - - - - - diff --git a/src/renderer/components/molecules/Toot/Poll.vue b/src/renderer/components/molecules/Toot/Poll.vue deleted file mode 100644 index 1dfe2746..00000000 --- a/src/renderer/components/molecules/Toot/Poll.vue +++ /dev/null @@ -1,148 +0,0 @@ - - - - - diff --git a/src/renderer/components/molecules/Toot/Quote.vue b/src/renderer/components/molecules/Toot/Quote.vue deleted file mode 100644 index ff069026..00000000 --- a/src/renderer/components/molecules/Toot/Quote.vue +++ /dev/null @@ -1,85 +0,0 @@ - - - - - diff --git a/src/renderer/components/molecules/User.vue b/src/renderer/components/molecules/User.vue deleted file mode 100644 index 9df5ce0a..00000000 --- a/src/renderer/components/molecules/User.vue +++ /dev/null @@ -1,201 +0,0 @@ - - - - - diff --git a/src/renderer/components/organisms/Notification.vue b/src/renderer/components/organisms/Notification.vue deleted file mode 100644 index 309655d3..00000000 --- a/src/renderer/components/organisms/Notification.vue +++ /dev/null @@ -1,163 +0,0 @@ - - - diff --git a/src/renderer/components/organisms/Notification/Follow.vue b/src/renderer/components/organisms/Notification/Follow.vue deleted file mode 100644 index 8243634e..00000000 --- a/src/renderer/components/organisms/Notification/Follow.vue +++ /dev/null @@ -1,155 +0,0 @@ - - - - - diff --git a/src/renderer/components/organisms/Notification/FollowRequest.vue b/src/renderer/components/organisms/Notification/FollowRequest.vue deleted file mode 100644 index b74353d3..00000000 --- a/src/renderer/components/organisms/Notification/FollowRequest.vue +++ /dev/null @@ -1,155 +0,0 @@ - - - - - diff --git a/src/renderer/components/organisms/Notification/Mention.vue b/src/renderer/components/organisms/Notification/Mention.vue deleted file mode 100644 index d2f06bb1..00000000 --- a/src/renderer/components/organisms/Notification/Mention.vue +++ /dev/null @@ -1,64 +0,0 @@ - - - diff --git a/src/renderer/components/organisms/Notification/Status.vue b/src/renderer/components/organisms/Notification/Status.vue deleted file mode 100644 index bf4d9ad4..00000000 --- a/src/renderer/components/organisms/Notification/Status.vue +++ /dev/null @@ -1,152 +0,0 @@ - - - - - diff --git a/src/renderer/components/organisms/Notification/StatusReaction.vue b/src/renderer/components/organisms/Notification/StatusReaction.vue deleted file mode 100644 index 99a1cacd..00000000 --- a/src/renderer/components/organisms/Notification/StatusReaction.vue +++ /dev/null @@ -1,489 +0,0 @@ - - - - - diff --git a/src/renderer/components/organisms/StatusLoading.vue b/src/renderer/components/organisms/StatusLoading.vue deleted file mode 100644 index d1ef685d..00000000 --- a/src/renderer/components/organisms/StatusLoading.vue +++ /dev/null @@ -1,67 +0,0 @@ - - - - - diff --git a/src/renderer/components/organisms/Toot.vue b/src/renderer/components/organisms/Toot.vue deleted file mode 100644 index 61d78bd9..00000000 --- a/src/renderer/components/organisms/Toot.vue +++ /dev/null @@ -1,1079 +0,0 @@ - - - - - - - diff --git a/src/renderer/components/utils/scroll.ts b/src/renderer/components/utils/scroll.ts deleted file mode 100644 index e2a0bb0a..00000000 --- a/src/renderer/components/utils/scroll.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * Scroll to top of the element. - * @param element a target dom element - * @param point scroll target point of the element - **/ -export default function scrollTop(element: HTMLElement, point: number = 0) { - const start = element.scrollTop - const range = start - point - // Progress of scroll: 0 ~ 100 - let progress = 0 - const boost = range > 200 ? range / 200 : 2.0 - /** - * Scroll calling recursion. - **/ - const move = function () { - progress++ - const nextPos = start - range * boost * easeOut(progress / 100) - - // Stop the recursion - if (nextPos <= 0) { - element.scrollTop = 0 - return - } - - element.scrollTop = nextPos - requestAnimationFrame(move) - } - - requestAnimationFrame(move) -} - -/** - * easeOut - **/ -const easeOut = function (p: number) { - return p * (2 - p) -} diff --git a/src/renderer/errors/fetch.ts b/src/renderer/errors/fetch.ts deleted file mode 100644 index efded1ff..00000000 --- a/src/renderer/errors/fetch.ts +++ /dev/null @@ -1 +0,0 @@ -export class TimelineFetchError extends Error {} diff --git a/src/renderer/errors/load.ts b/src/renderer/errors/load.ts deleted file mode 100644 index 6c44bd2b..00000000 --- a/src/renderer/errors/load.ts +++ /dev/null @@ -1 +0,0 @@ -export class AccountLoadError extends Error {} diff --git a/src/renderer/errors/validations.ts b/src/renderer/errors/validations.ts deleted file mode 100644 index be1665eb..00000000 --- a/src/renderer/errors/validations.ts +++ /dev/null @@ -1,13 +0,0 @@ -export class NewTootBlockSubmit extends Error {} - -export class NewTootTootLength extends Error {} - -export class NewTootAttachLength extends Error {} - -export class NewTootMediaDescription extends Error {} - -export class NewTootPollInvalid extends Error {} - -export class NewTootUnknownType extends Error {} - -export class AuthenticationError extends Error {} diff --git a/src/renderer/main.ts b/src/renderer/main.ts deleted file mode 100644 index 9efcfe7a..00000000 --- a/src/renderer/main.ts +++ /dev/null @@ -1,159 +0,0 @@ -import { createApp } from 'vue' -import ElementPlus from 'element-plus' -import 'element-plus/dist/index.css' -import { library } from '@fortawesome/fontawesome-svg-core' -import { - faAngleDown, - faAngleUp, - faAngleRight, - faAngleLeft, - faAnglesRight, - faAnglesLeft, - faHome, - faBell, - faAt, - faEnvelope, - faUsers, - faStar, - faBookmark, - faGlobe, - faHashtag, - faListUl, - faCamera, - faUnlock, - faLock, - faEyeSlash, - faEye, - faPlus, - faXmark, - faSquarePollHorizontal, - faRetweet, - faUserPlus, - faReply, - faEllipsis, - faGear, - faPalette, - faUser, - faNetworkWired, - faLanguage, - faAlignLeft, - faFilter, - faRotate, - faSliders, - faUserXmark, - faHourglass, - faCheck, - faQuoteRight, - faThumbTack, - faChevronLeft, - faEllipsisVertical, - faCircleXmark, - faMagnifyingGlass, - faCircleUser, - faArrowUp, - faArrowDown, - faArrowLeft, - faArrowRight, - faSpinner, - faLink -} from '@fortawesome/free-solid-svg-icons' -import { - faFaceSmile as farFaceSmile, - faPenToSquare as farPenToSquare, - faTrashCan as farTrashCan, - faBell as farBell -} from '@fortawesome/free-regular-svg-icons' -import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome' -import { sync } from 'vuex-router-sync' -import I18NextVue from 'i18next-vue' -import 'vue-resize/dist/vue-resize.css' -import VueResize from 'vue-resize' -import VueVirtualScroller from 'vue-virtual-scroller' -import 'vue-virtual-scroller/dist/vue-virtual-scroller.css' - -import './assets/fonts/fonts.css' -import App from './App.vue' -import router from '@/router' -import store, { key } from './store' -import i18next from '~/src/config/i18n' - -library.add( - faAngleDown, - faAngleUp, - faAngleRight, - faAngleLeft, - faAnglesRight, - faAnglesLeft, - faHome, - faBell, - faAt, - faEnvelope, - faUsers, - faStar, - faBookmark, - faGlobe, - faMagnifyingGlass, - faHashtag, - faListUl, - faCircleXmark, - faCamera, - faUnlock, - faLock, - faEyeSlash, - faEye, - faPlus, - farFaceSmile, - faXmark, - faSquarePollHorizontal, - faRetweet, - faUserPlus, - faReply, - faEllipsis, - faGear, - faPalette, - faUser, - faNetworkWired, - faLanguage, - faAlignLeft, - faFilter, - farPenToSquare, - faRotate, - faSliders, - faXmark, - faUserXmark, - faHourglass, - faUserPlus, - faCheck, - faQuoteRight, - faThumbTack, - farTrashCan, - farBell, - faChevronLeft, - faEllipsisVertical, - faCircleUser, - faArrowUp, - faArrowDown, - faArrowLeft, - faArrowRight, - faSpinner, - faLink -) - -const app = createApp(App) -app.use(store, key) -app.use(router) -app.use(ElementPlus) -app.component('font-awesome-icon', FontAwesomeIcon) -app.use(VueVirtualScroller) -app.use(VueResize) -app.use(I18NextVue, { i18next }) - -app.directive('focus', { - mounted(el) { - el.focus() - } -}) - -sync(store, router) - -app.mount('#app') diff --git a/src/renderer/router/index.ts b/src/renderer/router/index.ts deleted file mode 100644 index 4a2707f9..00000000 --- a/src/renderer/router/index.ts +++ /dev/null @@ -1,223 +0,0 @@ -import { createRouter, createWebHistory } from 'vue-router' - -import Login from '@/components/Login.vue' -import LoginForm from '@/components/Login/LoginForm.vue' -import Authorize from '@/components/Login/Authorize.vue' -import Preferences from '@/components/Preferences.vue' -import PreferencesGeneral from '@/components/Preferences/General.vue' -import PreferencesAppearance from '@/components/Preferences/Appearance.vue' -import PreferencesNotification from '@/components/Preferences/Notification.vue' -import PreferencesAccount from '@/components/Preferences/Account.vue' -import PreferencesLanguage from '@/components/Preferences/Language.vue' -import PreferencesNetwork from '@/components/Preferences/Network.vue' -import GlobalHeader from '@/components/GlobalHeader.vue' -import Settings from '@/components/Settings.vue' -import SettingsGeneral from '@/components/Settings/General.vue' -import SettingsTimeline from '@/components/Settings/Timeline.vue' -import SettingsFilters from '@/components/Settings/Filters.vue' -import SettingsFiltersEdit from '@/components/Settings/Filters/Edit.vue' -import SettingsFiltersNew from '@/components/Settings/Filters/New.vue' -import TimelineSpace from '@/components/TimelineSpace.vue' -import TimelineSpaceContentsHome from '@/components/TimelineSpace/Contents/Home.vue' -import TimelineSpaceContentsNotifications from '@/components/TimelineSpace/Contents/Notifications.vue' -import TimelineSpaceContentsFavourites from '@/components/TimelineSpace/Contents/Favourites.vue' -import TimelineSpaceContentsLocal from '@/components/TimelineSpace/Contents/Local.vue' -import TimelineSpaceContentsPublic from '@/components/TimelineSpace/Contents/Public.vue' -import TimelineSpaceContentsHashtag from '@/components/TimelineSpace/Contents/Hashtag.vue' -import TimelineSpaceContentsHashtagList from '@/components/TimelineSpace/Contents/Hashtag/List.vue' -import TimelineSpaceContentsHashtagTag from '@/components/TimelineSpace/Contents/Hashtag/Tag.vue' -import TimelineSpaceContentsSearch from '@/components/TimelineSpace/Contents/Search.vue' -import TimelineSpaceContentsDirectMessages from '@/components/TimelineSpace/Contents/DirectMessages.vue' -import TimelineSpaceContentsListsIndex from '@/components/TimelineSpace/Contents/Lists/Index.vue' -import TimelineSpaceContentsListsEdit from '@/components/TimelineSpace/Contents/Lists/Edit.vue' -import TimelineSpaceContentsListsShow from '@/components/TimelineSpace/Contents/Lists/Show.vue' -import TimelineSpaceContentsFollowRequests from '@/components/TimelineSpace/Contents/FollowRequests.vue' -import TimelineSpaceContentsBookmarks from '@/components/TimelineSpace/Contents/Bookmarks.vue' - -const routes = [ - { - path: '/login/', - name: 'login', - component: Login, - children: [ - { - path: 'form', - name: 'login-form', - component: LoginForm - }, - { - path: 'authorize', - name: 'authorize', - component: Authorize - } - ] - }, - { - path: '/preferences/', - name: 'preferences', - component: Preferences, - children: [ - { - path: 'general', - name: 'general', - component: PreferencesGeneral - }, - { - path: 'appearance', - name: 'appearance', - component: PreferencesAppearance - }, - { - path: 'notification', - name: 'notification', - component: PreferencesNotification - }, - { - path: 'account', - name: 'account', - component: PreferencesAccount - }, - { - path: 'network', - name: 'network', - component: PreferencesNetwork - }, - { - path: 'language', - name: 'language', - component: PreferencesLanguage - } - ] - }, - { - path: '/', - name: 'global-header', - component: GlobalHeader, - children: [ - { - path: ':id/settings/', - component: Settings, - children: [ - { - path: 'general', - component: SettingsGeneral - }, - { - path: 'timeline', - component: SettingsTimeline - }, - { - path: 'filters', - component: SettingsFilters - }, - { - path: 'filters/new', - component: SettingsFiltersNew - }, - { - path: 'filters/:filter_id/edit', - component: SettingsFiltersEdit, - props: true - } - ] - }, - { - path: ':id/', - name: 'timeline-space', - component: TimelineSpace, - children: [ - { - path: 'home', - name: 'home', - component: TimelineSpaceContentsHome - }, - { - path: 'notifications', - name: 'notifications', - component: TimelineSpaceContentsNotifications - }, - { - path: 'follow-requests', - name: 'follow-requests', - component: TimelineSpaceContentsFollowRequests - }, - { - path: 'favourites', - name: 'favourites', - component: TimelineSpaceContentsFavourites - }, - { - path: 'bookmarks', - name: 'bookmarks', - component: TimelineSpaceContentsBookmarks - }, - { - path: 'local', - name: 'local', - component: TimelineSpaceContentsLocal - }, - { - path: 'public', - name: 'public', - component: TimelineSpaceContentsPublic - }, - { - path: 'hashtag/', - component: TimelineSpaceContentsHashtag, - children: [ - { - path: '', - name: 'hashtag-list', - component: TimelineSpaceContentsHashtagList - }, - { - path: ':tag', - name: 'tag', - component: TimelineSpaceContentsHashtagTag, - props: true - } - ] - }, - { - path: 'search', - name: 'search', - component: TimelineSpaceContentsSearch - }, - { - path: 'direct-messages', - name: 'direct-messages', - component: TimelineSpaceContentsDirectMessages - }, - { - path: 'lists', - name: 'lists', - component: TimelineSpaceContentsListsIndex - }, - { - path: 'lists/:list_id/edit', - name: 'edit-list', - component: TimelineSpaceContentsListsEdit, - props: true - }, - { - path: 'lists/:list_id', - name: 'list', - component: TimelineSpaceContentsListsShow, - props: true - } - ] - } - ] - }, - { - path: '/:pathMatch(.*)*', - redirect: '/' - } -] - -const router = createRouter({ - history: createWebHistory(), - routes: routes -}) - -export default router diff --git a/src/renderer/store/App.ts b/src/renderer/store/App.ts deleted file mode 100644 index 66c5e55c..00000000 --- a/src/renderer/store/App.ts +++ /dev/null @@ -1,183 +0,0 @@ -import { MutationTree, ActionTree, Module } from 'vuex' -import router from '@/router' -import { LightTheme, DarkTheme, SolarizedLightTheme, SolarizedDarkTheme, KimbieDarkTheme, ThemeColorType } from '~/src/constants/themeColor' -import DisplayStyle from '~/src/constants/displayStyle' -import Theme from '~/src/constants/theme' -import TimeFormat from '~/src/constants/timeFormat' -import Language from '~/src/constants/language' -import DefaultFonts from '@/utils/fonts' -import { RootState } from '@/store' -import { Notify } from '~/src/types/notify' -import { BaseConfig } from '~/src/types/preference' -import { Appearance } from '~/src/types/appearance' -import { MyWindow } from '~/src/types/global' - -const win = window as any as MyWindow - -export type AppState = { - theme: ThemeColorType - fontSize: number - displayNameStyle: number - notify: Notify - timeFormat: number - language: string - defaultFonts: Array - ignoreCW: boolean - ignoreNSFW: boolean - hideAllAttachments: boolean - tootPadding: number - userAgent: string -} - -const state = (): AppState => ({ - theme: LightTheme, - fontSize: 14, - displayNameStyle: DisplayStyle.DisplayNameAndUsername.value, - notify: { - reply: true, - reblog: true, - favourite: true, - follow: true, - follow_request: true, - reaction: true, - status: true, - poll_vote: true, - poll_expired: true - }, - tootPadding: 8, - timeFormat: TimeFormat.Absolute.value, - language: Language.en.key, - defaultFonts: DefaultFonts, - ignoreCW: false, - ignoreNSFW: false, - hideAllAttachments: false, - userAgent: 'Whalebird' -}) - -export const MUTATION_TYPES = { - UPDATE_THEME: 'updateTheme', - UPDATE_FONT_SIZE: 'updateFontSize', - UPDATE_DISPLAY_NAME_STYLE: 'updateDisplayNameStyle', - UPDATE_NOTIFY: 'updateNotify', - UPDATE_TOOT_PADDING: 'updateTootPadding', - UPDATE_TIME_FORMAT: 'updateTimeFormat', - UPDATE_LANGUAGE: 'updateLanguage', - ADD_FONT: 'addFont', - UPDATE_IGNORE_CW: 'updateIgnoreCW', - UPDATE_IGNORE_NSFW: 'updateIgnoreNSFW', - UPDATE_HIDE_ALL_ATTACHMENTS: 'updateHideAllAttachments' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_THEME]: (state: AppState, themeColorList: ThemeColorType) => { - state.theme = themeColorList - }, - [MUTATION_TYPES.UPDATE_FONT_SIZE]: (state: AppState, value: number) => { - state.fontSize = value - }, - [MUTATION_TYPES.UPDATE_DISPLAY_NAME_STYLE]: (state: AppState, value: number) => { - state.displayNameStyle = value - }, - [MUTATION_TYPES.UPDATE_NOTIFY]: (state: AppState, notify: Notify) => { - state.notify = notify - }, - [MUTATION_TYPES.UPDATE_TOOT_PADDING]: (state: AppState, value: number) => { - state.tootPadding = value - }, - [MUTATION_TYPES.UPDATE_TIME_FORMAT]: (state: AppState, format: number) => { - state.timeFormat = format - }, - [MUTATION_TYPES.UPDATE_LANGUAGE]: (state: AppState, key: string) => { - state.language = key - }, - [MUTATION_TYPES.ADD_FONT]: (state: AppState, font: string) => { - const list = [font].concat(DefaultFonts) - state.defaultFonts = Array.from(new Set(list)) - }, - [MUTATION_TYPES.UPDATE_IGNORE_CW]: (state: AppState, cw: boolean) => { - state.ignoreCW = cw - }, - [MUTATION_TYPES.UPDATE_IGNORE_NSFW]: (state: AppState, nsfw: boolean) => { - state.ignoreNSFW = nsfw - }, - [MUTATION_TYPES.UPDATE_HIDE_ALL_ATTACHMENTS]: (state: AppState, hideAllAttachments: boolean) => { - state.hideAllAttachments = hideAllAttachments - } -} - -export const ACTION_TYPES = { - WATCH_SHORTCUT_EVENTS: 'watchShortcutEvents', - REMOVE_SHORTCUT_EVENTS: 'removeShortcutEvents', - LOAD_PREFERENCES: 'loadPreferences', - UPDATE_THEME: 'updateTheme' -} - -const actions: ActionTree = { - [ACTION_TYPES.WATCH_SHORTCUT_EVENTS]: () => { - win.ipcRenderer.on('open-preferences', () => { - router.push('/preferences/general') - }) - }, - [ACTION_TYPES.REMOVE_SHORTCUT_EVENTS]: () => { - win.ipcRenderer.removeAllListeners('open-preferences') - }, - [ACTION_TYPES.LOAD_PREFERENCES]: async ({ commit, dispatch }) => { - const conf: BaseConfig = await win.ipcRenderer.invoke('get-preferences') - await dispatch('updateTheme', conf.appearance) - commit(MUTATION_TYPES.UPDATE_DISPLAY_NAME_STYLE, conf.appearance.displayNameStyle) - commit(MUTATION_TYPES.UPDATE_FONT_SIZE, conf.appearance.fontSize) - commit(MUTATION_TYPES.UPDATE_NOTIFY, conf.notification.notify) - commit(MUTATION_TYPES.UPDATE_TIME_FORMAT, conf.appearance.timeFormat) - commit(MUTATION_TYPES.UPDATE_LANGUAGE, conf.language.language) - commit(MUTATION_TYPES.UPDATE_TOOT_PADDING, conf.appearance.tootPadding) - commit(MUTATION_TYPES.ADD_FONT, conf.appearance.font) - commit(MUTATION_TYPES.UPDATE_IGNORE_CW, conf.general.timeline.cw) - commit(MUTATION_TYPES.UPDATE_IGNORE_NSFW, conf.general.timeline.nsfw) - commit(MUTATION_TYPES.UPDATE_HIDE_ALL_ATTACHMENTS, conf.general.timeline.hideAllAttachments) - return conf - }, - [ACTION_TYPES.UPDATE_THEME]: async ({ commit }, appearance: Appearance) => { - const themeKey: string = appearance.theme - switch (themeKey) { - case Theme.System.key: { - const dark: boolean = await win.ipcRenderer.invoke('system-use-dark-theme') - if (dark) { - commit(MUTATION_TYPES.UPDATE_THEME, DarkTheme) - } else { - commit(MUTATION_TYPES.UPDATE_THEME, LightTheme) - } - break - } - case Theme.Light.key: - commit(MUTATION_TYPES.UPDATE_THEME, LightTheme) - break - case Theme.Dark.key: - commit(MUTATION_TYPES.UPDATE_THEME, DarkTheme) - break - case Theme.SolarizedLight.key: - commit(MUTATION_TYPES.UPDATE_THEME, SolarizedLightTheme) - break - case Theme.SolarizedDark.key: - commit(MUTATION_TYPES.UPDATE_THEME, SolarizedDarkTheme) - break - case Theme.KimbieDark.key: - commit(MUTATION_TYPES.UPDATE_THEME, KimbieDarkTheme) - break - case Theme.Custom.key: - commit(MUTATION_TYPES.UPDATE_THEME, appearance.customThemeColor) - break - default: - commit(MUTATION_TYPES.UPDATE_THEME, LightTheme) - break - } - } -} - -const App: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default App diff --git a/src/renderer/store/GlobalHeader.ts b/src/renderer/store/GlobalHeader.ts deleted file mode 100644 index 2dd655a1..00000000 --- a/src/renderer/store/GlobalHeader.ts +++ /dev/null @@ -1,171 +0,0 @@ -import router from '@/router' -import { LocalAccount } from '~/src/types/localAccount' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' -import { MyWindow } from '~/src/types/global' -import { LocalServer } from '~src/types/localServer' -import { Entity } from 'megalodon' - -const win = window as any as MyWindow - -export type GlobalHeaderState = { - accounts: Array<[LocalAccount, LocalServer]> - changing: boolean - hide: boolean -} - -const state = (): GlobalHeaderState => ({ - accounts: [], - changing: false, - hide: false -}) - -export const MUTATION_TYPES = { - UPDATE_ACCOUNTS: 'updateAccounts', - UPDATE_CHANGING: 'updateChanging', - CHANGE_HIDE: 'changeHide' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_ACCOUNTS]: (state: GlobalHeaderState, accounts: Array<[LocalAccount, LocalServer]>) => { - state.accounts = accounts - }, - [MUTATION_TYPES.UPDATE_CHANGING]: (state: GlobalHeaderState, value: boolean) => { - state.changing = value - }, - [MUTATION_TYPES.CHANGE_HIDE]: (state: GlobalHeaderState, value: boolean) => { - state.hide = value - } -} - -export const ACTION_TYPES = { - INIT_LOAD: 'initLoad', - START_STREAMINGS: 'startStreamings', - LIST_ACCOUNTS: 'listAccounts', - WATCH_SHORTCUT_EVENTS: 'watchShortcutEvents', - REMOVE_SHORTCUT_EVENTS: 'removeShortcutEvents', - LOAD_HIDE: 'loadHide', - SWITCH_HIDE: 'switchHide', - LOAD_TIMELINES: 'loadTimelines', - BIND_STREAMINGS: 'bindStreamings', - BIND_NOTIFICATION: 'bindNotification' -} - -const actions: ActionTree = { - [ACTION_TYPES.INIT_LOAD]: async ({ dispatch }): Promise> => { - // Ignore error - try { - await dispatch(ACTION_TYPES.REMOVE_SHORTCUT_EVENTS) - await dispatch(ACTION_TYPES.LOAD_HIDE) - dispatch(ACTION_TYPES.WATCH_SHORTCUT_EVENTS) - } catch (err) { - console.error(err) - } - const accounts = await dispatch(ACTION_TYPES.LIST_ACCOUNTS) - await dispatch(ACTION_TYPES.LOAD_TIMELINES, accounts) - await dispatch(ACTION_TYPES.BIND_STREAMINGS, accounts) - // Block to root path when user use browser-back, like mouse button. - // Because any contents are not rendered when browser back to / from home. - router.beforeEach((to, from, next) => { - if (!(to.fullPath === '/' && from.name)) { - return next() - } - }) - return accounts - }, - [ACTION_TYPES.LIST_ACCOUNTS]: async ({ commit }): Promise> => { - const accounts: Array<[LocalAccount, LocalServer]> = await win.ipcRenderer.invoke('list-accounts') - commit(MUTATION_TYPES.UPDATE_ACCOUNTS, accounts) - return accounts - }, - [ACTION_TYPES.WATCH_SHORTCUT_EVENTS]: ({ state, commit, rootState, rootGetters }) => { - win.ipcRenderer.on('change-account', (_, account: LocalAccount) => { - if (state.changing) { - return null - } - if ((rootState.route.params.id as string) === account[0].id) { - return null - } - // When the modal window is active, don't change account - if (rootGetters['TimelineSpace/Modals/modalOpened']) { - return null - } - // changing finish after loading - commit(MUTATION_TYPES.UPDATE_CHANGING, true) - router.push(`/${account[0].id}/home`) - return true - }) - }, - [ACTION_TYPES.REMOVE_SHORTCUT_EVENTS]: async () => { - win.ipcRenderer.removeAllListeners('change-account') - return true - }, - [ACTION_TYPES.LOAD_HIDE]: async ({ commit }): Promise => { - const hide: boolean = await win.ipcRenderer.invoke('get-global-header') - commit(MUTATION_TYPES.CHANGE_HIDE, hide) - return hide - }, - [ACTION_TYPES.SWITCH_HIDE]: async ({ dispatch }, hide: boolean): Promise => { - await win.ipcRenderer.invoke('change-global-header', hide) - dispatch(ACTION_TYPES.LOAD_HIDE) - return true - }, - [ACTION_TYPES.BIND_NOTIFICATION]: () => { - win.ipcRenderer.removeAllListeners('open-notification-tab') - win.ipcRenderer.on('open-notification-tab', (_, id: string) => { - router.push(`/${id}/home`) - // We have to wait until change el-menu-item - setTimeout(() => router.push(`/${id}/notifications`), 500) - }) - }, - [ACTION_TYPES.LOAD_TIMELINES]: async ({ dispatch }, req: Array<[LocalAccount, LocalServer]>) => { - req.forEach(async ([account, server]) => { - await dispatch('TimelineSpace/Contents/Home/fetchTimeline', { account, server }, { root: true }) - await dispatch('TimelineSpace/Contents/Notifications/fetchNotifications', { account, server }, { root: true }) - await dispatch('TimelineSpace/Contents/Local/fetchLocalTimeline', { account, server }, { root: true }) - await dispatch('TimelineSpace/Contents/DirectMessages/fetchTimeline', { account, server }, { root: true }) - }) - }, - [ACTION_TYPES.BIND_STREAMINGS]: async ({ commit }, req: Array<[LocalAccount, LocalServer]>) => { - req.forEach(async ([account, _server]) => { - win.ipcRenderer.removeAllListeners(`update-user-streamings-${account.id}`) - win.ipcRenderer.on(`update-user-streamings-${account.id}`, (_, update: Entity.Status) => { - commit('TimelineSpace/Contents/Home/appendTimeline', { status: update, accountId: account.id }, { root: true }) - }) - win.ipcRenderer.removeAllListeners(`notification-user-streamings-${account.id}`) - win.ipcRenderer.on(`notification-user-streamings-${account.id}`, (_, notification: Entity.Notification) => { - commit('TimelineSpace/Contents/Notifications/appendNotifications', { notification, accountId: account.id }, { root: true }) - }) - win.ipcRenderer.removeAllListeners(`delete-user-streamings-${account.id}`) - win.ipcRenderer.on(`delete-user-streamings-${account.id}`, (_, id: string) => { - commit('TimelineSpace/Contents/Home/deleteToot', { statusId: id, accountId: account.id }, { root: true }) - commit('TimelineSpace/Contents/Notifications/deleteToot', { statusId: id, accountId: account.id }, { root: true }) - }) - win.ipcRenderer.removeAllListeners(`update-local-streamings-${account.id}`) - win.ipcRenderer.on(`update-local-streamings-${account.id}`, (_, update: Entity.Status) => { - commit('TimelineSpace/Contents/Local/appendTimeline', { status: update, accountId: account.id }, { root: true }) - }) - win.ipcRenderer.removeAllListeners(`delete-local-streamings-${account.id}`) - win.ipcRenderer.on(`delete-local-streamings-${account.id}`, (_, id: string) => { - commit('TimelineSpace/Contents/Local/deleteToot', { statusId: id, accountId: account.id }, { root: true }) - }) - win.ipcRenderer.removeAllListeners(`update-direct-streamings-${account.id}`) - win.ipcRenderer.on(`update-direct-streamings-${account.id}`, (_, update: Entity.Status) => { - commit('TimelineSpace/Contents/DirectMessages/appendTimeline', { status: update, accountId: account.id }, { root: true }) - }) - win.ipcRenderer.removeAllListeners(`delete-direct-streamings-${account.id}`) - win.ipcRenderer.on(`delete-direct-streamings-${account.id}`, (_, id: string) => { - commit('TimelineSpace/Contents/DirectMessages/deleteToot', { statusId: id, accountId: account.id }, { root: true }) - }) - }) - } -} - -const GlobalHeader: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default GlobalHeader diff --git a/src/renderer/store/Preferences.ts b/src/renderer/store/Preferences.ts deleted file mode 100644 index 79347c54..00000000 --- a/src/renderer/store/Preferences.ts +++ /dev/null @@ -1,38 +0,0 @@ -import General, { GeneralState } from './Preferences/General' -import Account, { AccountState } from './Preferences/Account' -import Language, { LanguageState } from './Preferences/Language' -import Appearance, { AppearanceState } from './Preferences/Appearance' -import Notification, { NotificationState } from './Preferences/Notification' -import Network, { NetworkState } from './Preferences/Network' -import { Module } from 'vuex' -import { RootState } from '@/store' - -export type PreferencesState = {} - -const state = (): PreferencesState => ({}) - -type PreferencesModule = { - General: GeneralState - Account: AccountState - Language: LanguageState - Notification: NotificationState - Appearance: AppearanceState - Network: NetworkState -} - -export type PreferencesModuleState = PreferencesState & PreferencesModule - -const Preferences: Module = { - namespaced: true, - modules: { - General, - Account, - Language, - Notification, - Appearance, - Network - }, - state: state -} - -export default Preferences diff --git a/src/renderer/store/Preferences/Account.ts b/src/renderer/store/Preferences/Account.ts deleted file mode 100644 index b8d3f659..00000000 --- a/src/renderer/store/Preferences/Account.ts +++ /dev/null @@ -1,68 +0,0 @@ -import { Module, MutationTree, ActionTree } from 'vuex' -import { LocalAccount } from '~/src/types/localAccount' -import { RootState } from '@/store' -import { MyWindow } from '~/src/types/global' -import { LocalServer } from '~src/types/localServer' - -const win = (window as any) as MyWindow - -export type AccountState = { - accounts: Array<[LocalAccount, LocalServer]> - accountLoading: boolean -} - -const state = (): AccountState => ({ - accounts: [], - accountLoading: false -}) - -export const MUTATION_TYPES = { - UPDATE_ACCOUNTS: 'updateAccounts', - UPDATE_ACCOUNT_LOADING: 'updateAccountLoading' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_ACCOUNTS]: (state, accounts: Array<[LocalAccount, LocalServer]>) => { - state.accounts = accounts - }, - [MUTATION_TYPES.UPDATE_ACCOUNT_LOADING]: (state, value: boolean) => { - state.accountLoading = value - } -} - -export const ACTION_TYPES = { - LOAD_ACCOUNTS: 'loadAccounts', - REMOVE_ACCOUNT: 'removeAccount', - FORWARD_ACCOUNT: 'forwardAccount', - BACKWARD_ACCOUNT: 'backwardAccount', - REMOVE_ALL_ACCOUNTS: 'removeAllAccounts' -} - -const actions: ActionTree = { - [ACTION_TYPES.LOAD_ACCOUNTS]: async ({ commit }): Promise> => { - const accounts: Array<[LocalAccount, LocalServer]> = await win.ipcRenderer.invoke('list-accounts') - commit(MUTATION_TYPES.UPDATE_ACCOUNTS, accounts) - return accounts - }, - [ACTION_TYPES.REMOVE_ACCOUNT]: async (_, id: number) => { - await win.ipcRenderer.invoke('remove-account', id) - }, - [ACTION_TYPES.FORWARD_ACCOUNT]: async (_, id: number) => { - await win.ipcRenderer.invoke('forward-account', id) - }, - [ACTION_TYPES.BACKWARD_ACCOUNT]: async (_, id: number) => { - await win.ipcRenderer.invoke('backward-account', id) - }, - [ACTION_TYPES.REMOVE_ALL_ACCOUNTS]: async () => { - await win.ipcRenderer.invoke('remove-all-accounts') - } -} - -const account: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default account diff --git a/src/renderer/store/Preferences/Appearance.ts b/src/renderer/store/Preferences/Appearance.ts deleted file mode 100644 index e909787b..00000000 --- a/src/renderer/store/Preferences/Appearance.ts +++ /dev/null @@ -1,155 +0,0 @@ -import DisplayStyle from '~/src/constants/displayStyle' -import Theme from '~/src/constants/theme' -import TimeFormat from '~/src/constants/timeFormat' -import { LightTheme, ThemeColorType } from '~/src/constants/themeColor' -import DefaultFonts from '@/utils/fonts' -import { Module, MutationTree, ActionTree } from 'vuex' -import { toRaw } from 'vue' -import { RootState } from '@/store' -import { Appearance } from '~/src/types/appearance' -import { BaseConfig } from '~/src/types/preference' -import { MyWindow } from '~/src/types/global' - -const win = window as any as MyWindow - -export type AppearanceState = { - appearance: Appearance - fonts: Array -} - -const state = (): AppearanceState => ({ - appearance: { - theme: Theme.System.key, - fontSize: 14, - displayNameStyle: DisplayStyle.DisplayNameAndUsername.value, - timeFormat: TimeFormat.Absolute.value, - customThemeColor: LightTheme, - font: DefaultFonts[0], - tootPadding: 8 - }, - fonts: [] -}) - -export const MUTATION_TYPES = { - UPDATE_APPEARANCE: 'updateAppearance', - UPDATE_FONTS: 'updateFonts' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_APPEARANCE]: (state, conf: Appearance) => { - state.appearance = conf - }, - [MUTATION_TYPES.UPDATE_FONTS]: (state, fonts: Array) => { - state.fonts = Array.from(new Set(fonts)) - } -} - -export const ACTION_TYPES = { - LOAD_APPEARANCE: 'loadAppearance', - LOAD_FONTS: 'loadFonts', - UPDATE_THEME: 'updateTheme', - UPDATE_FONT_SIZE: 'updateFontSize', - UPDATE_DISPLAY_NAME_STYLE: 'updateDisplayNameStyle', - UPDATE_TIME_FORMAT: 'updateTimeFormat', - UPDATE_CUSTOM_THEME_COLOR: 'updateCustomThemeColor', - UPDATE_FONT: 'updateFont', - UPDATE_TOOT_PADDING: 'updateTootPadding' -} - -const actions: ActionTree = { - [ACTION_TYPES.LOAD_APPEARANCE]: async ({ commit }) => { - const conf: BaseConfig = await win.ipcRenderer.invoke('get-preferences') - commit(MUTATION_TYPES.UPDATE_APPEARANCE, conf.appearance) - return conf - }, - [ACTION_TYPES.LOAD_FONTS]: async ({ commit }) => { - const fonts: Array = await win.ipcRenderer.invoke('list-fonts') - commit(MUTATION_TYPES.UPDATE_FONTS, [DefaultFonts[0]].concat(fonts)) - return fonts - }, - [ACTION_TYPES.UPDATE_THEME]: async ({ dispatch, commit, state }, themeKey: string) => { - const newAppearance: Appearance = Object.assign({}, toRaw(state.appearance), { - theme: themeKey - }) - const config = { - appearance: newAppearance - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config) - commit(MUTATION_TYPES.UPDATE_APPEARANCE, conf.appearance) - dispatch('App/loadPreferences', null, { root: true }) - }, - [ACTION_TYPES.UPDATE_FONT_SIZE]: async ({ dispatch, commit, state }, fontSize: number) => { - const newAppearance: Appearance = Object.assign({}, toRaw(state.appearance), { - fontSize: fontSize - }) - const config = { - appearance: newAppearance - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config) - commit(MUTATION_TYPES.UPDATE_APPEARANCE, conf.appearance) - dispatch('App/loadPreferences', null, { root: true }) - }, - [ACTION_TYPES.UPDATE_DISPLAY_NAME_STYLE]: async ({ dispatch, commit, state }, value: number) => { - const newAppearance: Appearance = Object.assign({}, toRaw(state.appearance), { - displayNameStyle: value - }) - const config = { - appearance: newAppearance - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config) - dispatch('App/loadPreferences', null, { root: true }) - commit(MUTATION_TYPES.UPDATE_APPEARANCE, conf.appearance) - }, - [ACTION_TYPES.UPDATE_TIME_FORMAT]: async ({ dispatch, commit, state }, value: number) => { - const newAppearance: Appearance = Object.assign({}, toRaw(state.appearance), { - timeFormat: value - }) - const config = { - appearance: newAppearance - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config) - dispatch('App/loadPreferences', null, { root: true }) - commit(MUTATION_TYPES.UPDATE_APPEARANCE, conf.appearance) - }, - [ACTION_TYPES.UPDATE_CUSTOM_THEME_COLOR]: async ({ dispatch, state, commit }, value: object) => { - const newCustom: ThemeColorType = Object.assign({}, toRaw(state.appearance.customThemeColor), value) - const newAppearance: Appearance = Object.assign({}, state.appearance, { - customThemeColor: newCustom - }) - const config = { - appearance: newAppearance - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config) - commit(MUTATION_TYPES.UPDATE_APPEARANCE, conf.appearance) - dispatch('App/loadPreferences', null, { root: true }) - }, - [ACTION_TYPES.UPDATE_FONT]: async ({ dispatch, state, commit }, value: string) => { - const newAppearance: Appearance = Object.assign({}, toRaw(state.appearance), { - font: value - }) - const config = { - appearance: newAppearance - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config) - commit(MUTATION_TYPES.UPDATE_APPEARANCE, conf.appearance) - dispatch('App/loadPreferences', null, { root: true }) - }, - [ACTION_TYPES.UPDATE_TOOT_PADDING]: async ({ dispatch, state, commit }, value: number) => { - const newAppearance: Appearance = Object.assign({}, toRaw(state.appearance), { - tootPadding: value - }) - const config = { - appearance: newAppearance - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config) - commit(MUTATION_TYPES.UPDATE_APPEARANCE, conf.appearance) - dispatch('App/loadPreferences', null, { root: true }) - } -} - -export default { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} as Module diff --git a/src/renderer/store/Preferences/General.ts b/src/renderer/store/Preferences/General.ts deleted file mode 100644 index b6c6a19c..00000000 --- a/src/renderer/store/Preferences/General.ts +++ /dev/null @@ -1,136 +0,0 @@ -import { Module, MutationTree, ActionTree, GetterTree } from 'vuex' -import { toRaw } from 'vue' -import { RootState } from '@/store' -import { Sound } from '~/src/types/sound' -import { Timeline } from '~/src/types/timeline' -import { BaseConfig, General, Other } from '~/src/types/preference' -import { MyWindow } from '~/src/types/global' - -const win = window as any as MyWindow - -export type GeneralState = { - general: General - loading: boolean -} - -const state = (): GeneralState => ({ - general: { - sound: { - fav_rb: true, - toot: true - }, - timeline: { - cw: false, - nsfw: false, - hideAllAttachments: false - }, - other: { - launch: false, - hideOnLaunch: false - } - }, - loading: false -}) - -export const MUTATION_TYPES = { - UPDATE_GENERAL: 'updateGeneral', - CHANGE_LOADING: 'changeLoading' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_GENERAL]: (state, conf: General) => { - state.general = conf - }, - [MUTATION_TYPES.CHANGE_LOADING]: (state, value: boolean) => { - state.loading = value - } -} - -export const ACTION_TYPES = { - LOAD_GENERAL: 'loadGeneral', - UPDATE_SOUND: 'updateSound', - UPDATE_TIMELINE: 'updateTimeline', - UPDATE_OTHER: 'updateOther', - RESET: 'reset' -} - -const actions: ActionTree = { - [ACTION_TYPES.LOAD_GENERAL]: async ({ commit }) => { - const conf: BaseConfig = await win.ipcRenderer.invoke('get-preferences').finally(() => { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - }) - commit(MUTATION_TYPES.UPDATE_GENERAL, conf.general as General) - return conf - }, - [ACTION_TYPES.UPDATE_SOUND]: async ({ commit, state }, sound: object) => { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - const newSound: Sound = Object.assign({}, state.general.sound, sound) - const newGeneral: General = Object.assign({}, toRaw(state.general), { - sound: newSound - }) - const config = { - general: newGeneral - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config).finally(() => { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - }) - commit(MUTATION_TYPES.UPDATE_GENERAL, conf.general as General) - }, - [ACTION_TYPES.UPDATE_TIMELINE]: async ({ commit, state, dispatch }, timeline: object) => { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - const newTimeline: Timeline = Object.assign({}, state.general.timeline, timeline) - const newGeneral: General = Object.assign({}, toRaw(state.general), { - timeline: newTimeline - }) - const config = { - general: newGeneral - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config).finally(() => { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - }) - commit(MUTATION_TYPES.UPDATE_GENERAL, conf.general as General) - dispatch('App/loadPreferences', null, { root: true }) - }, - [ACTION_TYPES.UPDATE_OTHER]: async ({ commit, state, dispatch }, other: {}) => { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - const newOther: Other = Object.assign({}, state.general.other, other) - const newGeneral: General = Object.assign({}, toRaw(state.general), { - other: newOther - }) - const config = { - general: newGeneral - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config).finally(() => { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - }) - commit(MUTATION_TYPES.UPDATE_GENERAL, conf.general as General) - dispatch('App/loadPreferences', null, { root: true }) - await win.ipcRenderer.invoke('change-auto-launch', newOther.launch) - }, - [ACTION_TYPES.RESET]: async ({ commit, dispatch }): Promise => { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - try { - const conf: BaseConfig = await win.ipcRenderer.invoke('reset-preferences') - await dispatch('Preferences/Language/changeLanguage', conf.language.language, { root: true }) - await dispatch('App/loadPreferences', null, { root: true }) - commit(MUTATION_TYPES.UPDATE_GENERAL, conf.general as General) - return conf.language.language - } finally { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - } - } -} - -const getters: GetterTree = { - notDarwin: () => { - return win.platform !== 'darwin' - } -} - -export default { - namespaced: true, - state: state, - mutations: mutations, - actions: actions, - getters: getters -} as Module diff --git a/src/renderer/store/Preferences/Language.ts b/src/renderer/store/Preferences/Language.ts deleted file mode 100644 index 73daad7f..00000000 --- a/src/renderer/store/Preferences/Language.ts +++ /dev/null @@ -1,81 +0,0 @@ -import Language from '~/src/constants/language' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' -import { Language as LanguageSet } from '~/src/types/language' -import { BaseConfig } from '~/src/types/preference' -import { MyWindow } from '~/src/types/global' - -const win = window as any as MyWindow - -export type LanguageState = { - language: LanguageSet -} - -const state: LanguageState = { - language: { - language: Language.en.key, - spellchecker: { - enabled: true, - languages: [Language.en.key] - } - } -} - -export const MUTATION_TYPES = { - UPDATE_LANGUAGE: 'updateLanguage', - CHANGE_LANGUAGE: 'changeLanguage', - TOGGLE_SPELLCHECKER: 'toggleSpellchecker', - UPDATE_SPELLCHECKER_LANGUAGES: 'updateSpellcheckerLanguages' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_LANGUAGE]: (state, conf: LanguageSet) => { - state.language = conf - }, - [MUTATION_TYPES.CHANGE_LANGUAGE]: (state, key: string) => { - state.language.language = key - }, - [MUTATION_TYPES.TOGGLE_SPELLCHECKER]: (state, enabled: boolean) => { - state.language.spellchecker.enabled = enabled - }, - [MUTATION_TYPES.UPDATE_SPELLCHECKER_LANGUAGES]: (state, languages: Array) => { - state.language.spellchecker.languages = languages - } -} - -export const ACTION_TYPES = { - LOAD_LANGUAGE: 'loadLanguage', - CHANGE_LANGUAGE: 'changeLanguage', - TOGGLE_SPELLCHECKER: 'toggleSpellchecker', - UPDATE_SPELLCHECKER_LANGUAGES: 'updateSpellcheckerLanguages' -} - -const actions: ActionTree = { - [ACTION_TYPES.LOAD_LANGUAGE]: async ({ commit }): Promise => { - const conf: BaseConfig = await win.ipcRenderer.invoke('get-preferences') - commit(MUTATION_TYPES.UPDATE_LANGUAGE, conf.language as LanguageSet) - return conf.language.language - }, - [ACTION_TYPES.CHANGE_LANGUAGE]: async ({ commit }, key: string): Promise => { - const value: string = await win.ipcRenderer.invoke('change-language', key) - commit(MUTATION_TYPES.CHANGE_LANGUAGE, value) - return value - }, - [ACTION_TYPES.TOGGLE_SPELLCHECKER]: async ({ commit }, enabled: boolean) => { - const value: boolean = await win.ipcRenderer.invoke('toggle-spellchecker', enabled) - commit(MUTATION_TYPES.TOGGLE_SPELLCHECKER, value) - return value - }, - [ACTION_TYPES.UPDATE_SPELLCHECKER_LANGUAGES]: async ({ commit }, languages: Array) => { - const langs: Array = await win.ipcRenderer.invoke('update-spellchecker-languages', languages) - commit(MUTATION_TYPES.UPDATE_SPELLCHECKER_LANGUAGES, langs) - return langs - } -} - -export default { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} as Module diff --git a/src/renderer/store/Preferences/Network.ts b/src/renderer/store/Preferences/Network.ts deleted file mode 100644 index 430ea67f..00000000 --- a/src/renderer/store/Preferences/Network.ts +++ /dev/null @@ -1,155 +0,0 @@ -import { Module, MutationTree, ActionTree, GetterTree } from 'vuex' -import { toRaw } from 'vue' -import { RootState } from '@/store' -import { BaseConfig } from '~/src/types/preference' -import { Proxy, ProxySource, ProxyProtocol, ManualProxy } from '~/src/types/proxy' -import { MyWindow } from '~/src/types/global' - -const win = window as any as MyWindow - -export type NetworkState = { - source: ProxySource - proxy: ManualProxy -} - -const state = (): NetworkState => { - return { - source: ProxySource.system, - proxy: { - protocol: '', - host: '', - port: '', - username: '', - password: '' - } - } -} - -export const MUTATION_TYPES = { - UPDATE_PROXY: 'updateProxy', - CHANGE_SOURCE: 'changeSource', - UPDATE_PROTOCOL: 'updateProtocol', - UPDATE_HOST: 'updateHost', - UPDATE_PORT: 'updatePort', - UPDATE_USERNAME: 'updateUsername', - UPDATE_PASSWORD: 'updatePassword' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_PROXY]: (state, config: Proxy) => { - state.source = config.source - state.proxy = config.manualProxyConfig - }, - [MUTATION_TYPES.CHANGE_SOURCE]: (state, source: 'no' | 'system' | 'manual') => { - switch (source) { - case 'no': - state.source = ProxySource.no - break - case 'system': - state.source = ProxySource.system - break - case 'manual': - state.source = ProxySource.manual - break - } - }, - [MUTATION_TYPES.UPDATE_PROTOCOL]: (state, protocol: '' | 'http' | 'https' | 'socks4' | 'socks4a' | 'socks5' | 'socks5h') => { - switch (protocol) { - case 'http': - state.proxy.protocol = ProxyProtocol.http - break - case 'https': - state.proxy.protocol = ProxyProtocol.https - break - case 'socks4': - state.proxy.protocol = ProxyProtocol.socks4 - break - case 'socks4a': - state.proxy.protocol = ProxyProtocol.socks4a - break - case 'socks5': - state.proxy.protocol = ProxyProtocol.socks5 - break - case 'socks5h': - state.proxy.protocol = ProxyProtocol.socks5h - break - default: - state.proxy.protocol = '' - break - } - }, - [MUTATION_TYPES.UPDATE_HOST]: (state, host: string) => { - state.proxy.host = host - }, - [MUTATION_TYPES.UPDATE_PORT]: (state, port: string) => { - state.proxy.port = port - }, - [MUTATION_TYPES.UPDATE_USERNAME]: (state, username: string) => { - state.proxy.username = username - }, - [MUTATION_TYPES.UPDATE_PASSWORD]: (state, password: string) => { - state.proxy.password = password - } -} - -export const ACTION_TYPES = { - LOAD_PROXY: 'loadProxy', - CHANGE_SOURCE: 'changeSource', - UPDATE_PROTOCOL: 'updateProtocol', - UPDATE_HOST: 'updateHost', - UPDATE_PORT: 'updatePort', - UPDATE_USERNAME: 'updateUsername', - UPDATE_PASSWORD: 'updatePassword', - SAVE_PROXY_CONFIG: 'saveProxyConfig' -} - -const actions: ActionTree = { - [ACTION_TYPES.LOAD_PROXY]: async ({ commit }) => { - const conf: BaseConfig = await win.ipcRenderer.invoke('get-preferences') - commit(MUTATION_TYPES.UPDATE_PROXY, conf.proxy as Proxy) - return conf - }, - [ACTION_TYPES.CHANGE_SOURCE]: ({ commit }, source: string) => { - commit(MUTATION_TYPES.CHANGE_SOURCE, source) - }, - [ACTION_TYPES.UPDATE_PROTOCOL]: ({ commit }, protocol: string) => { - commit(MUTATION_TYPES.UPDATE_PROTOCOL, protocol) - }, - [ACTION_TYPES.UPDATE_HOST]: ({ commit }, host: string) => { - commit(MUTATION_TYPES.UPDATE_HOST, host) - }, - [ACTION_TYPES.UPDATE_PORT]: ({ commit }, port: string) => { - commit(MUTATION_TYPES.UPDATE_PORT, port) - }, - [ACTION_TYPES.UPDATE_USERNAME]: ({ commit }, username: string) => { - commit(MUTATION_TYPES.UPDATE_USERNAME, username) - }, - [ACTION_TYPES.UPDATE_PASSWORD]: ({ commit }, password: string) => { - commit(MUTATION_TYPES.UPDATE_PASSWORD, password) - }, - [ACTION_TYPES.SAVE_PROXY_CONFIG]: async ({ state }) => { - const proxy: Proxy = { - source: toRaw(state.source), - manualProxyConfig: toRaw(state.proxy) - } - // Originally we have to restart all streamings after user change proxy configuration. - // But streamings are restart after close preferences. - // So we don't have to restart streaming here. - // And we have to update webContents session, but it is care in main process. - await win.ipcRenderer.invoke('update-proxy-config', proxy) - } -} - -const getters: GetterTree = { - manualProxyConfiguration: state => { - return state.source === 'manual' - } -} - -export default { - namespaced: true, - state: state, - mutations: mutations, - actions: actions, - getters: getters -} as Module diff --git a/src/renderer/store/Preferences/Notification.ts b/src/renderer/store/Preferences/Notification.ts deleted file mode 100644 index 8b9e5b25..00000000 --- a/src/renderer/store/Preferences/Notification.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' -import { Notify } from '~/src/types/notify' -import { BaseConfig, Notification } from '~/src/types/preference' -import { MyWindow } from '~/src/types/global' - -const win = window as any as MyWindow - -export type NotificationState = { - notification: Notification -} - -const state: NotificationState = { - notification: { - notify: { - reply: true, - reblog: true, - favourite: true, - follow: true, - follow_request: true, - reaction: true, - status: true, - poll_vote: true, - poll_expired: true - } - } -} - -export const MUTATION_TYPES = { - UPDATE_NOTIFICATION: 'updateNotification' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_NOTIFICATION]: (state, notification: Notification) => { - state.notification = notification - } -} - -export const ACTION_TYPES = { - LOAD_NOTIFICATION: 'loadNotification', - UPDATE_NOTIFY: 'updateNotify' -} - -const actions: ActionTree = { - [ACTION_TYPES.LOAD_NOTIFICATION]: async ({ commit }) => { - const conf: BaseConfig = await win.ipcRenderer.invoke('get-preferences') - commit(MUTATION_TYPES.UPDATE_NOTIFICATION, conf.notification) - return conf - }, - [ACTION_TYPES.UPDATE_NOTIFY]: async ({ commit, state, dispatch }, notify: object) => { - const newNotify: Notify = Object.assign({}, state.notification.notify, notify) - const newNotification: Notification = Object.assign({}, state.notification, { - notify: newNotify - }) - const config = { - notification: newNotification - } - const conf: BaseConfig = await win.ipcRenderer.invoke('update-preferences', config) - commit(MUTATION_TYPES.UPDATE_NOTIFICATION, conf.notification) - dispatch('App/loadPreferences', null, { root: true }) - } -} - -export default { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} as Module diff --git a/src/renderer/store/Settings.ts b/src/renderer/store/Settings.ts deleted file mode 100644 index 9ddcd37a..00000000 --- a/src/renderer/store/Settings.ts +++ /dev/null @@ -1,44 +0,0 @@ -import General, { GeneralState } from './Settings/General' -import Timeline, { TimelineState } from './Settings/Timeline' -import Filters, { FiltersModuleState } from './Settings/Filters' -import { Module, MutationTree } from 'vuex' -import { RootState } from '@/store' - -export type SettingsState = { - accountId: number | null -} - -const state = (): SettingsState => ({ - accountId: null -}) - -export const MUTATION_TYPES = { - CHANGE_ACCOUNT_ID: 'changeAccountId' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_ACCOUNT_ID]: (state, id: number) => { - state.accountId = id - } -} - -type SettingsModule = { - General: GeneralState - Timeline: TimelineState - Filters: FiltersModuleState -} - -export type SettingsModuleState = SettingsModule & SettingsState - -const Settings: Module = { - namespaced: true, - modules: { - General, - Timeline, - Filters - }, - state: state, - mutations: mutations -} - -export default Settings diff --git a/src/renderer/store/Settings/Filters.ts b/src/renderer/store/Settings/Filters.ts deleted file mode 100644 index ab9f3462..00000000 --- a/src/renderer/store/Settings/Filters.ts +++ /dev/null @@ -1,88 +0,0 @@ -import { Module, MutationTree, ActionTree } from 'vuex' -import generator, { Entity } from 'megalodon' -import { RootState } from '@/store' -import EditFilters, { EditFiltersState } from './Filters/Edit' -import NewFilters, { NewFiltersState } from './Filters/New' - -export type FiltersState = { - filters: Array - filtersLoading: boolean -} - -const state = (): FiltersState => ({ - filters: [], - filtersLoading: false -}) - -export const MUTATION_TYPES = { - UPDATE_FILTERS: 'updateFilters', - CHANGE_LOADING: 'changeLoading' -} - -export const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_FILTERS]: (state, filters: Array) => { - state.filters = filters - }, - [MUTATION_TYPES.CHANGE_LOADING]: (state, loading: boolean) => { - state.filtersLoading = loading - } -} - -export const ACTION_TYPES = { - FETCH_FILTERS: 'fetchFilters', - DELETE_FILTER: 'deleteFilter' -} - -export const actions: ActionTree = { - [ACTION_TYPES.FETCH_FILTERS]: async ({ commit, rootState }): Promise> => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - try { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - const res = await client.getFilters() - commit(MUTATION_TYPES.UPDATE_FILTERS, res.data) - return res.data - } finally { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - } - }, - [ACTION_TYPES.DELETE_FILTER]: async ({ commit, dispatch, rootState }, id: string) => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - try { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - await client.deleteFilter(id) - await dispatch('fetchFilters') - } finally { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - } - } -} - -type FiltersModule = { - Edit: EditFiltersState - New: NewFiltersState -} - -export type FiltersModuleState = FiltersModule & FiltersState - -const Filters: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions, - modules: { - Edit: EditFilters, - New: NewFilters - } -} - -export default Filters diff --git a/src/renderer/store/Settings/Filters/Edit.ts b/src/renderer/store/Settings/Filters/Edit.ts deleted file mode 100644 index 60485043..00000000 --- a/src/renderer/store/Settings/Filters/Edit.ts +++ /dev/null @@ -1,99 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' - -export type EditFiltersState = { - filter: Entity.Filter - loading: boolean -} - -const state = (): EditFiltersState => ({ - filter: { - id: '', - phrase: '', - expires_at: null, - context: [], - irreversible: false, - whole_word: true - } as Entity.Filter, - loading: false -}) - -export const MUTATION_TYPES = { - UPDATE_FILTER: 'updateFilter', - CHANGE_LOADING: 'changeLoading' -} - -export const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_FILTER]: (state, filter: Entity.Filter) => { - state.filter = filter - }, - [MUTATION_TYPES.CHANGE_LOADING]: (state, loading: boolean) => { - state.loading = loading - } -} - -export const ACTION_TYPES = { - FETCH_FILTER: 'fetchFilter', - EDIT_FILTER: 'editFilter', - UPDATE_FILTER: 'updateFilter' -} - -export const actions: ActionTree = { - fetchFilter: async ({ commit, rootState }, id: string): Promise => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - try { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - const res = await client.getFilter(id) - commit(MUTATION_TYPES.UPDATE_FILTER, res.data) - return res.data - } finally { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - } - }, - editFilter: ({ commit, state }, filter: any) => { - const newFilter = Object.assign({}, state.filter, filter) - commit(MUTATION_TYPES.UPDATE_FILTER, newFilter) - }, - updateFilter: async ({ commit, state, rootState }): Promise => { - if (state.filter === null) { - throw new Error('filter is not set') - } - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - try { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - let options = { - irreversible: state.filter.irreversible, - whole_word: state.filter.whole_word - } - if (state.filter.expires_at !== null) { - options = Object.assign({}, options, { - expires_in: state.filter.expires_at - }) - } - const res = await client.updateFilter(state.filter.id, state.filter.phrase, state.filter.context, options) - return res.data - } finally { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - } - } -} - -const EditFilters: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default EditFilters diff --git a/src/renderer/store/Settings/Filters/New.ts b/src/renderer/store/Settings/Filters/New.ts deleted file mode 100644 index ec2f5908..00000000 --- a/src/renderer/store/Settings/Filters/New.ts +++ /dev/null @@ -1,89 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' - -export type NewFiltersState = { - filter: Entity.Filter - loading: boolean -} - -const defaultFilter: Entity.Filter = { - id: '', - phrase: '', - expires_at: null, - context: [], - irreversible: false, - whole_word: true -} - -const state = (): NewFiltersState => ({ - filter: defaultFilter, - loading: false -}) - -export const MUTATION_TYPES = { - UPDATE_FILTER: 'updateFilter', - CHANGE_LOADING: 'changeLoading' -} - -export const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_FILTER]: (state, filter: Entity.Filter) => { - state.filter = filter - }, - [MUTATION_TYPES.CHANGE_LOADING]: (state, loading: boolean) => { - state.loading = loading - } -} - -export const ACTION_TYPES = { - EDIT_FILTER: 'editFilter', - RESET_FILTER: 'resetFilter', - CREATE_FILTER: 'createFilter' -} - -export const actions: ActionTree = { - [ACTION_TYPES.EDIT_FILTER]: ({ commit, state }, filter: any) => { - const newFilter = Object.assign({}, state.filter, filter) - commit(MUTATION_TYPES.UPDATE_FILTER, newFilter) - }, - [ACTION_TYPES.RESET_FILTER]: ({ commit }) => { - commit(MUTATION_TYPES.UPDATE_FILTER, defaultFilter) - }, - [ACTION_TYPES.CREATE_FILTER]: async ({ commit, state, dispatch, rootState }): Promise => { - if (state.filter === null) { - throw new Error('filter is not set') - } - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - try { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - let options = { - irreversible: state.filter.irreversible, - whole_word: state.filter.whole_word - } - if (state.filter.expires_at !== null) { - options = Object.assign({}, options, { - expires_in: state.filter.expires_at - }) - } - const res = await client.createFilter(state.filter.phrase, state.filter.context, options) - dispatch('resetFilter') - return res.data - } finally { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - } - } -} - -const NewFilters: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default NewFilters diff --git a/src/renderer/store/Settings/General.ts b/src/renderer/store/Settings/General.ts deleted file mode 100644 index 8f1bfe87..00000000 --- a/src/renderer/store/Settings/General.ts +++ /dev/null @@ -1,86 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import Visibility, { VisibilityType } from '~/src/constants/visibility' -import { RootState } from '@/store' - -export type GeneralState = { - visibility: number - sensitive: boolean -} - -const state = (): GeneralState => ({ - visibility: Visibility.Public.value, - sensitive: false -}) - -export const MUTATION_TYPES = { - CHANGE_VISIBILITY: 'changeVisibility', - CHANGE_SENSITIVE: 'changeSensitive' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_VISIBILITY]: (state, value: number) => { - state.visibility = value - }, - [MUTATION_TYPES.CHANGE_SENSITIVE]: (state, value: boolean) => { - state.sensitive = value - } -} - -export const ACTION_TYPES = { - FETCH_SETTINGS: 'fetchSettings', - SET_VISIBILITY: 'setVisibility', - SET_SENSITIVE: 'setSensitive' -} - -const actions: ActionTree = { - [ACTION_TYPES.FETCH_SETTINGS]: async ({ commit, rootState }): Promise => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const res = await client.verifyAccountCredentials() - const visibility: VisibilityType | undefined = (Object.values(Visibility) as Array).find(v => { - return v.key === res.data.source!.privacy - }) - commit(MUTATION_TYPES.CHANGE_VISIBILITY, visibility!.value) - commit(MUTATION_TYPES.CHANGE_SENSITIVE, res.data.source!.sensitive) - return res.data - }, - [ACTION_TYPES.SET_VISIBILITY]: async ({ commit, rootState }, value: number) => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const visibility: VisibilityType | undefined = (Object.values(Visibility) as Array).find(v => { - return v.value === value - }) - const res = await client.updateCredentials({ source: { privacy: visibility!.key } }) - commit(MUTATION_TYPES.CHANGE_VISIBILITY, visibility!.value) - return res.data - }, - [ACTION_TYPES.SET_SENSITIVE]: async ({ commit, rootState }, value: boolean) => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const res = await client.updateCredentials({ source: { sensitive: value } }) - commit(MUTATION_TYPES.CHANGE_SENSITIVE, value) - return res.data - } -} - -const General: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default General diff --git a/src/renderer/store/Settings/Timeline.ts b/src/renderer/store/Settings/Timeline.ts deleted file mode 100644 index 7ab5d0c5..00000000 --- a/src/renderer/store/Settings/Timeline.ts +++ /dev/null @@ -1,56 +0,0 @@ -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' -import { MyWindow } from '~/src/types/global' -import { Setting } from '~src/types/setting' -import { DefaultSetting } from '~/src/constants/initializer/setting' - -const win = (window as any) as MyWindow - -export type TimelineState = { - setting: Setting -} - -const state = (): TimelineState => ({ - setting: DefaultSetting -}) - -export const MUTATION_TYPES = { - UPDATE_TIMELINE_SETTING: 'updateTimelineSetting' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_TIMELINE_SETTING]: (state, setting: Setting) => { - state.setting = setting - } -} - -export const ACTION_TYPES = { - LOAD_TIMELINE_SETTING: 'loadTimelineSetting', - CHANGE_UNREAD_NOTIFICATION: 'changeUnreadNotification', - CHANGE_USER_MARKER: 'changeUserMarker' -} - -const actions: ActionTree = { - [ACTION_TYPES.LOAD_TIMELINE_SETTING]: async ({ commit, rootState }): Promise => { - const setting: Setting = await win.ipcRenderer.invoke('get-account-setting', rootState.Settings.accountId) - commit(MUTATION_TYPES.UPDATE_TIMELINE_SETTING, setting) - return true - }, - [ACTION_TYPES.CHANGE_USER_MARKER]: async ({ dispatch, state, rootState }, timeline: { key: boolean }) => { - const setting: Setting = Object.assign({}, state.setting, timeline) - setting.accountId = rootState.Settings.accountId! - console.log(setting) - await win.ipcRenderer.invoke('update-account-setting', setting) - dispatch(ACTION_TYPES.LOAD_TIMELINE_SETTING) - return true - } -} - -const Timeline: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default Timeline diff --git a/src/renderer/store/TimelineSpace.ts b/src/renderer/store/TimelineSpace.ts deleted file mode 100644 index 3ab9c303..00000000 --- a/src/renderer/store/TimelineSpace.ts +++ /dev/null @@ -1,218 +0,0 @@ -import generator, { Entity } from 'megalodon' -import SideMenu, { SideMenuState } from './TimelineSpace/SideMenu' -import HeaderMenu, { HeaderMenuState } from './TimelineSpace/HeaderMenu' -import Modals, { ModalsModuleState } from './TimelineSpace/Modals' -import Contents, { ContentsModuleState } from './TimelineSpace/Contents' -import { Module, MutationTree, ActionTree } from 'vuex' -import { LocalAccount } from '~/src/types/localAccount' -import { RootState } from '@/store' -import { AccountLoadError } from '@/errors/load' -import { MyWindow } from '~/src/types/global' -import { LocalServer } from '~/src/types/localServer' -import { Setting } from '~/src/types/setting' -import { DefaultSetting } from '~/src/constants/initializer/setting' -import Compose, { ComposeState } from './TimelineSpace/Compose' - -const win = (window as any) as MyWindow - -export type TimelineSpaceState = { - account: LocalAccount | null - server: LocalServer | null - loading: boolean - emojis: Array - tootMax: number - filters: Array - setting: Setting -} - -const state = (): TimelineSpaceState => ({ - account: null, - server: null, - loading: false, - emojis: [], - tootMax: 500, - filters: [], - setting: DefaultSetting -}) - -export const MUTATION_TYPES = { - UPDATE_ACCOUNT: 'updateAccount', - UPDATE_SERVER: 'updateServer', - CHANGE_LOADING: 'changeLoading', - UPDATE_EMOJIS: 'updateEmojis', - UPDATE_TOOT_MAX: 'updateTootMax', - UPDATE_FILTERS: 'updateFilters', - UPDATE_SETTING: 'updateSetting' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_ACCOUNT]: (state, account: LocalAccount) => { - state.account = account - }, - [MUTATION_TYPES.UPDATE_SERVER]: (state, server: LocalServer) => { - state.server = server - }, - [MUTATION_TYPES.CHANGE_LOADING]: (state, value: boolean) => { - state.loading = value - }, - [MUTATION_TYPES.UPDATE_EMOJIS]: (state, emojis: Array) => { - state.emojis = emojis - }, - [MUTATION_TYPES.UPDATE_TOOT_MAX]: (state, value: number | null) => { - if (value) { - state.tootMax = value - } else { - state.tootMax = 500 - } - }, - [MUTATION_TYPES.UPDATE_FILTERS]: (state, filters: Array) => { - state.filters = filters - }, - [MUTATION_TYPES.UPDATE_SETTING]: (state, setting: Setting) => { - state.setting = setting - } -} - -export const ACTION_TYPES = { - INIT_LOAD: 'initLoad', - PREPARE_SPACE: 'prepareSpace', - LOCAL_ACCOUNT: 'localAccount', - CLEAR_ACCOUNT: 'clearAccount', - WATCH_SHORTCUT_EVENTS: 'watchShortcutEvents', - REMOVE_SHORTCUT_EVENTS: 'removeShortcutEvents', - CLEAR_UNREAD: 'clearUnread', - FETCH_EMOJIS: 'fetchEmojis', - FETCH_FILTERS: 'fetchFilters', - FETCH_INSTANCE: 'fetchInstance', - LOAD_SETTING: 'loadSetting' -} - -const actions: ActionTree = { - [ACTION_TYPES.INIT_LOAD]: async ({ dispatch, commit }, accountId: string): Promise<[LocalAccount, LocalServer]> => { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - dispatch(ACTION_TYPES.WATCH_SHORTCUT_EVENTS) - const account: [LocalAccount, LocalServer] = await dispatch(ACTION_TYPES.LOCAL_ACCOUNT, accountId).catch(_ => { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - throw new AccountLoadError() - }) - - await dispatch(ACTION_TYPES.LOAD_SETTING) - await dispatch(ACTION_TYPES.FETCH_FILTERS) - commit(MUTATION_TYPES.CHANGE_LOADING, false) - return account - }, - [ACTION_TYPES.PREPARE_SPACE]: async ({ dispatch }) => { - await dispatch(ACTION_TYPES.FETCH_EMOJIS) - await dispatch(ACTION_TYPES.FETCH_INSTANCE) - }, - // ------------------------------------------------- - // Accounts - // ------------------------------------------------- - [ACTION_TYPES.LOCAL_ACCOUNT]: async ({ commit }, id: number): Promise<[LocalAccount, LocalServer]> => { - const account: [LocalAccount, LocalServer] = await win.ipcRenderer.invoke('get-local-account', id) - commit(MUTATION_TYPES.UPDATE_ACCOUNT, account[0]) - commit(MUTATION_TYPES.UPDATE_SERVER, account[1]) - return account - }, - [ACTION_TYPES.CLEAR_ACCOUNT]: async ({ commit }) => { - commit(MUTATION_TYPES.UPDATE_ACCOUNT, null) - return true - }, - // ----------------------------------------------- - // Shortcuts - // ----------------------------------------------- - [ACTION_TYPES.WATCH_SHORTCUT_EVENTS]: ({ commit, rootGetters }) => { - win.ipcRenderer.on('CmdOrCtrl+K', () => { - commit('TimelineSpace/Modals/Jump/changeModal', true, { root: true }) - }) - win.ipcRenderer.on('open-shortcuts-list', () => { - const modalOpened = rootGetters['TimelineSpace/Modals/modalOpened'] - if (!modalOpened) { - commit('TimelineSpace/Modals/Shortcut/changeModal', true, { root: true }) - } - }) - }, - [ACTION_TYPES.REMOVE_SHORTCUT_EVENTS]: async () => { - win.ipcRenderer.removeAllListeners('CmdOrCtrl+N') - win.ipcRenderer.removeAllListeners('CmdOrCtrl+K') - return true - }, - /** - * clearUnread - */ - [ACTION_TYPES.CLEAR_UNREAD]: async ({ dispatch }) => { - dispatch('TimelineSpace/SideMenu/clearUnread', {}, { root: true }) - }, - /** - * fetchEmojis - */ - [ACTION_TYPES.FETCH_EMOJIS]: async ({ commit, state, rootState }): Promise> => { - if (!state.server) { - return [] - } - const client = generator(state.server.sns, state.server.baseURL, null, rootState.App.userAgent) - const res = await client.getInstanceCustomEmojis() - commit(MUTATION_TYPES.UPDATE_EMOJIS, res.data) - return res.data - }, - [ACTION_TYPES.LOAD_SETTING]: async ({ commit, state }) => { - const setting: Setting = await win.ipcRenderer.invoke('get-account-setting', state.account!.id) - commit(MUTATION_TYPES.UPDATE_SETTING, setting) - }, - /** - * fetchFilters - */ - [ACTION_TYPES.FETCH_FILTERS]: async ({ commit, state, rootState }): Promise> => { - if (!state.server || !state.account) { - return [] - } - try { - const client = generator(state.server.sns, state.server.baseURL, state.account.accessToken, rootState.App.userAgent) - const res = await client.getFilters() - commit(MUTATION_TYPES.UPDATE_FILTERS, res.data) - return res.data - } catch { - return [] - } - }, - /** - * fetchInstance - */ - [ACTION_TYPES.FETCH_INSTANCE]: async ({ commit, state, rootState }) => { - if (!state.server) { - return false - } - const client = generator(state.server.sns, state.server.baseURL, null, rootState.App.userAgent) - const res = await client.getInstance() - if (res.data.configuration) { - commit(MUTATION_TYPES.UPDATE_TOOT_MAX, res.data.configuration.statuses.max_characters) - } - return true - } -} - -type TimelineSpaceModule = { - SideMenu: SideMenuState - HeaderMenu: HeaderMenuState - Modals: ModalsModuleState - Contents: ContentsModuleState - Compose: ComposeState -} - -export type TimelineSpaceModuleState = TimelineSpaceModule & TimelineSpaceState - -const TimelineSpace: Module = { - namespaced: true, - modules: { - SideMenu, - HeaderMenu, - Modals, - Contents, - Compose - }, - state: state, - mutations: mutations, - actions: actions -} - -export default TimelineSpace diff --git a/src/renderer/store/TimelineSpace/Compose.ts b/src/renderer/store/TimelineSpace/Compose.ts deleted file mode 100644 index 2efcfa9b..00000000 --- a/src/renderer/store/TimelineSpace/Compose.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { Module, MutationTree } from 'vuex' -import { RootState } from '@/store' -import { Entity } from 'megalodon' - -export type ComposeState = { - inReplyTo: Entity.Status | null - quoteTo: Entity.Status | null -} - -const state = (): ComposeState => ({ - inReplyTo: null, - quoteTo: null -}) - -export const MUTATION_TYPES = { - SET_REPLY_TO_ID: 'setReplyToId', - CLEAR_REPLY_TO_ID: 'clearReplyToId', - SET_QUOTE_TO: 'setQuoteTo', - CLEAR_QUOTE_TO: 'clearQuoteTo' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.SET_REPLY_TO_ID]: (state, inReplyTo: Entity.Status) => { - state.inReplyTo = inReplyTo - }, - [MUTATION_TYPES.CLEAR_REPLY_TO_ID]: state => { - state.inReplyTo = null - }, - [MUTATION_TYPES.SET_QUOTE_TO]: (state, quoteTo: Entity.Status) => { - state.quoteTo = quoteTo - }, - [MUTATION_TYPES.CLEAR_QUOTE_TO]: state => { - state.quoteTo = null - } -} - -const Compose: Module = { - namespaced: true, - state: state, - mutations: mutations -} - -export default Compose diff --git a/src/renderer/store/TimelineSpace/Contents.ts b/src/renderer/store/TimelineSpace/Contents.ts deleted file mode 100644 index 7263f6f1..00000000 --- a/src/renderer/store/TimelineSpace/Contents.ts +++ /dev/null @@ -1,58 +0,0 @@ -import Home, { HomeState } from './Contents/Home' -import Notifications, { NotificationsState } from './Contents/Notifications' -import Local, { LocalState } from './Contents/Local' -import DirectMessages, { DirectMessagesState } from './Contents/DirectMessages' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' - -export type ContentsState = { - loading: boolean -} - -type ContentsModule = { - Home: HomeState - Notifications: NotificationsState - DirectMessages: DirectMessagesState - Local: LocalState -} - -export type ContentsModuleState = ContentsModule & ContentsState - -const state = (): ContentsState => ({ - loading: false -}) - -export const MUTATION_TYPES = { - CHANGE_LOADING: 'changeLoading' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_LOADING]: (state, loading: boolean) => { - state.loading = loading - } -} - -export const ACTION_TYPES = { - CHANGE_LOADING: 'changeLoading' -} - -const actions: ActionTree = { - [ACTION_TYPES.CHANGE_LOADING]: ({ commit }, loading) => { - commit(MUTATION_TYPES.CHANGE_LOADING, loading) - } -} - -const Contents: Module = { - namespaced: true, - state: state, - modules: { - Home, - Notifications, - Local, - DirectMessages - }, - mutations: mutations, - actions: actions -} - -export default Contents diff --git a/src/renderer/store/TimelineSpace/Contents/DirectMessages.ts b/src/renderer/store/TimelineSpace/Contents/DirectMessages.ts deleted file mode 100644 index fe9f1be1..00000000 --- a/src/renderer/store/TimelineSpace/Contents/DirectMessages.ts +++ /dev/null @@ -1,112 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' -import { LocalAccount } from '~/src/types/localAccount' -import { LocalServer } from '~/src/types/localServer' - -export type DirectMessagesState = { - timeline: { [key: number]: Array } -} - -const state = (): DirectMessagesState => ({ - timeline: {} -}) - -export const MUTATION_TYPES = { - APPEND_TIMELINE: 'appendTimeline', - REPLACE_TIMELINE: 'replaceTimeline', - INSERT_TIMELINE: 'insertTimeline', - UPDATE_TOOT: 'updateToot', - DELETE_TOOT: 'deleteToot' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.APPEND_TIMELINE]: (state, obj: { status: Entity.Status; accountId: number }) => { - if (state.timeline[obj.accountId]) { - state.timeline[obj.accountId] = [obj.status, ...state.timeline[obj.accountId]] - } else { - state.timeline[obj.accountId] = [obj.status] - } - }, - [MUTATION_TYPES.REPLACE_TIMELINE]: (state, obj: { statuses: Array; accountId: number }) => { - state.timeline[obj.accountId] = obj.statuses - }, - [MUTATION_TYPES.INSERT_TIMELINE]: (state, obj: { statuses: Array; accountId: number }) => { - if (state.timeline[obj.accountId]) { - state.timeline[obj.accountId] = [...state.timeline[obj.accountId], ...obj.statuses] - } else { - state.timeline[obj.accountId] = obj.statuses - } - }, - [MUTATION_TYPES.UPDATE_TOOT]: (state, obj: { status: Entity.Status; accountId: number }) => { - if (!state.timeline[obj.accountId]) return - // Replace target message in DirectMessagesTimeline and notifications - state.timeline[obj.accountId] = state.timeline[obj.accountId].map(toot => { - if (toot.id === obj.status.id) { - return obj.status - } else if (toot.reblog !== null && toot.reblog.id === obj.status.id) { - // When user reblog/favourite a reblogged toot, target message is a original toot. - // So, a message which is received now is original toot. - const reblog = { - reblog: obj.status - } - return Object.assign(toot, reblog) - } else { - return toot - } - }) - }, - [MUTATION_TYPES.DELETE_TOOT]: (state, obj: { statusId: string; accountId: number }) => { - if (!state.timeline[obj.accountId]) return - state.timeline[obj.accountId] = state.timeline[obj.accountId].filter(toot => { - if (toot.reblog !== null && toot.reblog.id === obj.statusId) { - return false - } else { - return toot.id !== obj.statusId - } - }) - } -} - -export const ACTION_TYPES = { - FETCH_TIMELINE: 'fetchTimeline', - LAZY_FETCH_TIMELINE: 'lazyFetchTimeline' -} - -const actions: ActionTree = { - [ACTION_TYPES.FETCH_TIMELINE]: async ( - { commit, rootState }, - req: { account: LocalAccount; server: LocalServer } - ): Promise> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - try { - const res = await client.getConversationTimeline({ limit: 20 }) - const statuses: Array = res.data.map(con => con.last_status!) - commit(MUTATION_TYPES.REPLACE_TIMELINE, { statuses, accountId: req.account.id }) // eslint-disable-line @typescript-eslint/no-non-null-assertion - return statuses - } catch (err) { - console.error(err) - return [] - } - }, - [ACTION_TYPES.LAZY_FETCH_TIMELINE]: async ( - { commit, rootState }, - req: { lastStatus: Entity.Status; account: LocalAccount; server: LocalServer } - ): Promise | null> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - return client.getConversationTimeline({ max_id: req.lastStatus.id, limit: 20 }).then(res => { - const statuses: Array = res.data.map(con => con.last_status!) // eslint-disable-line @typescript-eslint/no-non-null-assertion - commit(MUTATION_TYPES.INSERT_TIMELINE, { statuses, accountId: req.account.id }) - return statuses - }) - } -} - -const DirectMessages: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default DirectMessages diff --git a/src/renderer/store/TimelineSpace/Contents/Home.ts b/src/renderer/store/TimelineSpace/Contents/Home.ts deleted file mode 100644 index 041f72ed..00000000 --- a/src/renderer/store/TimelineSpace/Contents/Home.ts +++ /dev/null @@ -1,245 +0,0 @@ -import generator, { Entity, FilterContext } from 'megalodon' -import { Module, MutationTree, ActionTree, GetterTree } from 'vuex' -import { RootState } from '@/store' -import { LoadingCard } from '@/types/loading-card' -import { LocalServer } from '~/src/types/localServer' -import { LocalAccount } from '~/src/types/localAccount' - -export type HomeState = { - timeline: { [key: number]: Array } -} - -const state = (): HomeState => ({ - timeline: {} -}) - -export const MUTATION_TYPES = { - APPEND_TIMELINE: 'appendTimeline', - REPLACE_TIMELINE: 'replaceTimeline', - INSERT_TIMELINE: 'insertTimeline', - UPDATE_TOOT: 'updateToot', - DELETE_TOOT: 'deleteToot', - APPEND_TIMELINE_AFTER_LOADING_CARD: 'appendTimelineAfterLoadingCard' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.APPEND_TIMELINE]: (state, obj: { status: Entity.Status; accountId: number }) => { - if (state.timeline[obj.accountId]) { - state.timeline[obj.accountId] = [obj.status, ...state.timeline[obj.accountId]] - } else { - state.timeline[obj.accountId] = [obj.status] - } - }, - [MUTATION_TYPES.REPLACE_TIMELINE]: (state, obj: { statuses: Array; accountId: number }) => { - state.timeline[obj.accountId] = obj.statuses - }, - [MUTATION_TYPES.INSERT_TIMELINE]: (state, obj: { statuses: Array; accountId: number }) => { - if (state.timeline[obj.accountId]) { - state.timeline[obj.accountId] = [...state.timeline[obj.accountId], ...obj.statuses] - } else { - state.timeline[obj.accountId] = obj.statuses - } - }, - [MUTATION_TYPES.UPDATE_TOOT]: (state, obj: { status: Entity.Status; accountId: number }) => { - if (!state.timeline[obj.accountId]) return - // Replace target message in homeTimeline and notifications - state.timeline[obj.accountId] = state.timeline[obj.accountId].map(status => { - if (status.id === 'loading-card') { - return status - } - const toot = status as Entity.Status - if (toot.id === obj.status.id) { - return obj.status - } else if (toot.reblog !== null && toot.reblog.id === obj.status.id) { - // When user reblog/favourite a reblogged toot, target message is a original toot. - // So, a message which is received now is original toot. - const reblog = { - reblog: obj.status - } - return Object.assign(toot, reblog) - } else { - return toot - } - }) - }, - [MUTATION_TYPES.DELETE_TOOT]: (state, obj: { statusId: string; accountId: number }) => { - if (!state.timeline[obj.accountId]) return - state.timeline[obj.accountId] = state.timeline[obj.accountId].filter(status => { - if (status.id === 'loading-card') { - return true - } - const toot = status as Entity.Status - if (toot.reblog !== null && toot.reblog.id === obj.statusId) { - return false - } else { - return toot.id !== obj.statusId - } - }) - }, - [MUTATION_TYPES.APPEND_TIMELINE_AFTER_LOADING_CARD]: ( - state, - obj: { statuses: Array; accountId: number } - ) => { - if (!state.timeline[obj.accountId]) return - const tl = state.timeline[obj.accountId].flatMap(status => { - if (status.id !== 'loading-card') { - return status - } else { - return obj.statuses - } - }) - // Reject duplicated status in timeline - state.timeline[obj.accountId] = Array.from(new Set(tl)) - } -} - -export const ACTION_TYPES = { - FETCH_TIMELINE: 'fetchTimeline', - LAZY_FETCH_TIMELINE: 'lazyFetchTimeline', - FETCH_TIMELINE_SINCE: 'fetchTimelineSince', - GET_MARKER: 'getMarker', - SAVE_MARKER: 'saveMarker' -} - -const actions: ActionTree = { - // vue - [ACTION_TYPES.FETCH_TIMELINE]: async ({ dispatch, commit, rootState }, req: { account: LocalAccount; server: LocalServer }) => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - const marker: Entity.Marker | null = await dispatch(ACTION_TYPES.GET_MARKER, req).catch(err => { - console.error(err) - }) - - if (rootState.TimelineSpace.setting.markerHome && marker !== null && marker.home) { - const last = await client.getStatus(marker.home.last_read_id) - const lastReadStatus = last.data - - let timeline: Array = [lastReadStatus] - const card: LoadingCard = { - type: 'middle-load', - since_id: lastReadStatus.id, - // We don't need to fill this field in the first fetching. - // Because in most cases there is no new statuses at the first fetching. - // After new statuses are received, if the number of unread statuses is more than 20, max_id is not necessary. - // We can fill max_id when calling fetchTimelineSince. - // If the number of unread statuses is less than 20, max_id is necessary, but it is enough to reject duplicated statuses. - // So we do it in mutation. - max_id: null, - id: 'loading-card', - uri: 'loading-card' - } - - const res = await client.getHomeTimeline({ limit: 20, max_id: lastReadStatus.id }) - // Make sure whether new statuses exist or not. - const nextResponse = await client.getHomeTimeline({ limit: 1, min_id: lastReadStatus.id }) - if (nextResponse.data.length > 0) { - timeline = ([card] as Array).concat(timeline).concat(res.data) - } else { - timeline = timeline.concat(res.data) - } - commit(MUTATION_TYPES.REPLACE_TIMELINE, { statuses: timeline, accountId: req.account.id }) - return res.data - } else { - const res = await client.getHomeTimeline({ limit: 20 }) - commit(MUTATION_TYPES.REPLACE_TIMELINE, { statuses: res.data, accountId: req.account.id }) - return res.data - } - }, - [ACTION_TYPES.LAZY_FETCH_TIMELINE]: async ( - { commit, rootState }, - req: { lastStatus: Entity.Status; account: LocalAccount; server: LocalServer } - ): Promise | null> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - return client.getHomeTimeline({ max_id: req.lastStatus.id, limit: 20 }).then(res => { - commit(MUTATION_TYPES.INSERT_TIMELINE, { statuses: res.data, accountId: req.account.id }) - return res.data - }) - }, - [ACTION_TYPES.FETCH_TIMELINE_SINCE]: async ( - { state, rootState, commit }, - req: { sinceId: string; account: LocalAccount; server: LocalServer } - ): Promise | null> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - const cardIndex = state.timeline[req.account.id].findIndex(s => { - if (s.id === 'loading-card') { - return true - } - return false - }) - let maxID: string | null = null - if (cardIndex > 0) { - maxID = state.timeline[req.account.id][cardIndex - 1].id - } - // Memo: What happens when we specify both of max_id and min_id? - // What is the difference between max_id & since_id and max_id & min_id? - // The max_id & since_id: - // We can get statuses which are older than max_id and newer than since_id. - // If the number of statuses exceeds the limit, it truncates older statuses. - // That means, the status immediately after since_id is not included in the response. - // The max_id & min_id: - // Also, we can get statuses which are older than max_id and newer than min_id. - // If the number of statuses exceeds the limit, it truncates newer statuses. - // That means, the status immediately before max_id is not included in the response. - let params = { min_id: req.sinceId, limit: 20 } - if (maxID !== null) { - params = Object.assign({}, params, { - max_id: maxID - }) - } - - const res = await client.getHomeTimeline(params) - if (res.data.length >= 20) { - const card: LoadingCard = { - type: 'middle-load', - since_id: res.data[0].id, - max_id: maxID, - id: 'loading-card', - uri: 'loading-card' - } - let timeline: Array = [card] - timeline = timeline.concat(res.data) - commit(MUTATION_TYPES.APPEND_TIMELINE_AFTER_LOADING_CARD, { statuses: timeline, accountId: req.account.id }) - } else { - commit(MUTATION_TYPES.APPEND_TIMELINE_AFTER_LOADING_CARD, { statuses: res.data, accountId: req.account.id }) - } - return res.data - }, - [ACTION_TYPES.GET_MARKER]: async ({ rootState }, req: { account: LocalAccount; server: LocalServer }): Promise => { - if (!rootState.TimelineSpace.setting.markerHome) { - return null - } - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - let serverMarker: Entity.Marker | {} = {} - try { - const res = await client.getMarkers(['home']) - serverMarker = res.data - } catch (err) { - console.warn(err) - } - return serverMarker - }, - [ACTION_TYPES.SAVE_MARKER]: async ({ state, rootState }, req: { account: LocalAccount; server: LocalServer }) => { - const timeline = state.timeline[req.account.id] - if (timeline.length === 0 || timeline[0].id === 'loading-card') { - return - } - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - const res = await client.saveMarkers({ home: { last_read_id: timeline[0].id } }) - return res.data - } -} - -const getters: GetterTree = { - filters: (_state, _getters, rootState) => { - return rootState.TimelineSpace.filters.filter(f => f.context.includes(FilterContext.Home) && !f.irreversible) - } -} - -const Home: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions, - getters: getters -} - -export default Home diff --git a/src/renderer/store/TimelineSpace/Contents/Local.ts b/src/renderer/store/TimelineSpace/Contents/Local.ts deleted file mode 100644 index 4fcb4726..00000000 --- a/src/renderer/store/TimelineSpace/Contents/Local.ts +++ /dev/null @@ -1,110 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' -import { LocalAccount } from '~src/types/localAccount' -import { LocalServer } from '~src/types/localServer' - -export type LocalState = { - timeline: { [key: number]: Array } -} - -const state = (): LocalState => ({ - timeline: {} -}) - -export const MUTATION_TYPES = { - APPEND_TIMELINE: 'appendTimeline', - REPLACE_TIMELINE: 'replaceTimeline', - INSERT_TIMELINE: 'insertTimeline', - UPDATE_TOOT: 'updateToot', - DELETE_TOOT: 'deleteToot' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.APPEND_TIMELINE]: (state, obj: { status: Entity.Status; accountId: number }) => { - if (state.timeline[obj.accountId]) { - state.timeline[obj.accountId] = [obj.status, ...state.timeline[obj.accountId]] - } else { - state.timeline[obj.accountId] = [obj.status] - } - }, - [MUTATION_TYPES.REPLACE_TIMELINE]: (state, obj: { statuses: Array; accountId: number }) => { - state.timeline[obj.accountId] = obj.statuses - }, - [MUTATION_TYPES.INSERT_TIMELINE]: (state, obj: { statuses: Array; accountId: number }) => { - if (state.timeline[obj.accountId]) { - state.timeline[obj.accountId] = [...state.timeline[obj.accountId], ...obj.statuses] - } else { - state.timeline[obj.accountId] = obj.statuses - } - }, - [MUTATION_TYPES.UPDATE_TOOT]: (state, obj: { status: Entity.Status; accountId: number }) => { - if (!state.timeline[obj.accountId]) return - state.timeline[obj.accountId] = state.timeline[obj.accountId].map(toot => { - if (toot.id === obj.status.id) { - return obj.status - } else if (toot.reblog !== null && toot.reblog.id === obj.status.id) { - // When user reblog/favourite a reblogged toot, target message is a original toot. - // So, a message which is received now is original toot. - const reblog = { - reblog: obj.status - } - return Object.assign(toot, reblog) - } else { - return toot - } - }) - }, - [MUTATION_TYPES.DELETE_TOOT]: (state, obj: { statusId: string; accountId: number }) => { - if (!state.timeline[obj.accountId]) return - state.timeline[obj.accountId] = state.timeline[obj.accountId].filter(toot => { - if (toot.reblog !== null && toot.reblog.id === obj.statusId) { - return false - } else { - return toot.id !== obj.statusId - } - }) - } -} - -export const ACTION_TYPES = { - FETCH_LOCAL_TIMELINE: 'fetchLocalTimeline', - LAZY_FETCH_TIMELINE: 'lazyFetchTimeline' -} - -const actions: ActionTree = { - [ACTION_TYPES.FETCH_LOCAL_TIMELINE]: async ( - { commit, rootState }, - req: { account: LocalAccount; server: LocalServer } - ): Promise> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - - try { - const res = await client.getLocalTimeline({ limit: 20 }) - commit(MUTATION_TYPES.REPLACE_TIMELINE, { statuses: res.data, accountId: req.account.id }) - return res.data - } catch (err) { - console.error(err) - return [] - } - }, - [ACTION_TYPES.LAZY_FETCH_TIMELINE]: async ( - { commit, rootState }, - req: { lastStatus: Entity.Status; account: LocalAccount; server: LocalServer } - ): Promise | null> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - return client.getLocalTimeline({ max_id: req.lastStatus.id, limit: 20 }).then(res => { - commit(MUTATION_TYPES.INSERT_TIMELINE, { statuses: res.data, accountId: req.account.id }) - return res.data - }) - } -} - -const Local: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default Local diff --git a/src/renderer/store/TimelineSpace/Contents/Notifications.ts b/src/renderer/store/TimelineSpace/Contents/Notifications.ts deleted file mode 100644 index 673c9e21..00000000 --- a/src/renderer/store/TimelineSpace/Contents/Notifications.ts +++ /dev/null @@ -1,241 +0,0 @@ -import generator, { Entity, FilterContext } from 'megalodon' -import { Module, MutationTree, ActionTree, GetterTree } from 'vuex' -import { RootState } from '@/store' -import { MyWindow } from '~/src/types/global' -import { LoadingCard } from '@/types/loading-card' -import { LocalServer } from '~/src/types/localServer' -import { LocalAccount } from '~/src/types/localAccount' - -const win = (window as any) as MyWindow - -export type NotificationsState = { - notifications: { [key: number]: Array } -} - -const state = (): NotificationsState => ({ - notifications: {} -}) - -export const MUTATION_TYPES = { - APPEND_NOTIFICATIONS: 'appendNotifications', - REPLACE_NOTIFICATIONS: 'updateNotifications', - INSERT_NOTIFICATIONS: 'insertNotifications', - UPDATE_TOOT: 'updateToot', - DELETE_TOOT: 'deleteToot', - APPEND_NOTIFICATIONS_AFTER_LOADING_CARD: 'appendNotificationsAfterLoadingCard' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.APPEND_NOTIFICATIONS]: (state, obj: { notification: Entity.Notification; accountId: number }) => { - if (state.notifications[obj.accountId]) { - state.notifications[obj.accountId] = [obj.notification, ...state.notifications[obj.accountId]] - } else { - state.notifications[obj.accountId] = [obj.notification] - } - }, - [MUTATION_TYPES.REPLACE_NOTIFICATIONS]: (state, obj: { notifications: Array; accountId: number }) => { - state.notifications[obj.accountId] = obj.notifications - }, - [MUTATION_TYPES.INSERT_NOTIFICATIONS]: (state, obj: { notifications: Array; accountId: number }) => { - if (state.notifications[obj.accountId]) { - state.notifications[obj.accountId] = [...state.notifications[obj.accountId], ...obj.notifications] - } else { - state.notifications[obj.accountId] = obj.notifications - } - }, - [MUTATION_TYPES.UPDATE_TOOT]: (state, obj: { status: Entity.Status; accountId: number }) => { - if (!state.notifications[obj.accountId]) return - state.notifications[obj.accountId] = state.notifications[obj.accountId].map(notification => { - // I want to update toot only mention. - // Because Toot component don't use status information when other patterns. - if (notification.type === 'mention' && notification.status && notification.status.id === obj.status.id) { - const status = { - status: obj.status - } - return Object.assign(notification, status) - } else { - return notification - } - }) - }, - [MUTATION_TYPES.DELETE_TOOT]: (state, obj: { statusId: string; accountId: number }) => { - if (!state.notifications[obj.accountId]) return - state.notifications[obj.accountId] = state.notifications[obj.accountId].filter(notify => { - if (notify.id === 'loading-card') { - return true - } - const notification = notify as Entity.Notification - if (notification.status) { - if (notification.status.reblog && notification.status.reblog.id === obj.statusId) { - return false - } else { - return notification.status.id !== obj.statusId - } - } else { - return true - } - }) - }, - [MUTATION_TYPES.APPEND_NOTIFICATIONS_AFTER_LOADING_CARD]: ( - state, - obj: { notifications: Array; accountId: number } - ) => { - if (!state.notifications[obj.accountId]) return - const n = state.notifications[obj.accountId].flatMap(notify => { - if (notify.id !== 'loading-card') { - return notify - } else { - return obj.notifications - } - }) - // Reject duplicated status in timeline - state.notifications[obj.accountId] = Array.from(new Set(n)) - } -} - -export const ACTION_TYPES = { - FETCH_NOTIFICATIONS: 'fetchNotifications', - LAZY_FETCH_NOTIFICATIONS: 'lazyFetchNotifications', - FETCH_NOTIFICATIONS_SINCE: 'fetchNotificationsSince', - RESET_BADGE: 'resetBadge', - GET_MARKER: 'getMarker', - SAVE_MARKER: 'saveMarker' -} - -const actions: ActionTree = { - [ACTION_TYPES.FETCH_NOTIFICATIONS]: async ( - { dispatch, commit, rootState }, - req: { account: LocalAccount; server: LocalServer } - ): Promise> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - - const marker: Entity.Marker | null = await dispatch(ACTION_TYPES.GET_MARKER, req).catch(err => { - console.error(err) - }) - - if (rootState.TimelineSpace.setting.markerNotifications && marker !== null && marker.notifications) { - // The result does not contain max_id's notification, when we specify max_id parameter in get notifications. - // So we need to get max_id's notification. - const nextResponse = await client.getNotifications({ limit: 1, min_id: marker.notifications.last_read_id }) - if (nextResponse.data.length > 0) { - const card: LoadingCard = { - type: 'middle-load', - since_id: marker.notifications.last_read_id, - // We don't need to fill this field in the first fetching. - // Because in most cases there is no new statuses at the first fetching. - // After new statuses are received, if the number of unread statuses is more than 30, max_id is not necessary. - // We can fill max_id when calling fetchTimelineSince. - // If the number of unread statuses is less than 30, max_id is necessary, but it is enough to reject duplicated statuses. - // So we do it in mutation. - max_id: null, - id: 'loading-card', - uri: 'loading-card' - } - let notifications: Array = [card] - const res = await client.getNotifications({ limit: 30, max_id: nextResponse.data[0].id }) - notifications = notifications.concat(res.data) - commit(MUTATION_TYPES.REPLACE_NOTIFICATIONS, { notifications, accountId: req.account.id }) - commit('TimelineSpace/SideMenu/changeUnreadNotifications', true, { root: true }) - return res.data - } - } - const res = await client.getNotifications({ limit: 30 }) - commit(MUTATION_TYPES.REPLACE_NOTIFICATIONS, { notifications: res.data, accountId: req.account.id }) - return res.data - }, - [ACTION_TYPES.LAZY_FETCH_NOTIFICATIONS]: async ( - { commit, rootState }, - req: { lastNotification: Entity.Notification; account: LocalAccount; server: LocalServer } - ): Promise | null> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - return client.getNotifications({ max_id: req.lastNotification.id, limit: 30 }).then(res => { - commit(MUTATION_TYPES.INSERT_NOTIFICATIONS, { notifications: res.data, accountId: req.account.id }) - return res.data - }) - }, - [ACTION_TYPES.FETCH_NOTIFICATIONS_SINCE]: async ( - { state, rootState, commit }, - req: { sinceId: string; account: LocalAccount; server: LocalServer } - ): Promise | null> => { - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - const cardIndex = state.notifications[req.account.id].findIndex(s => { - if (s.id === 'loading-card') { - return true - } - return false - }) - let maxID: string | null = null - if (cardIndex > 0) { - maxID = state.notifications[req.account.id][cardIndex - 1].id - } - let params = { min_id: req.sinceId, limit: 30 } - if (maxID !== null) { - params = Object.assign({}, params, { - max_id: maxID - }) - } - - const res = await client.getNotifications(params) - if (res.data.length >= 30) { - const card: LoadingCard = { - type: 'middle-load', - since_id: res.data[0].id, - max_id: maxID, - id: 'loading-card', - uri: 'loading-card' - } - let notifications: Array = [card] - notifications = notifications.concat(res.data) - commit(MUTATION_TYPES.APPEND_NOTIFICATIONS_AFTER_LOADING_CARD, { notifications, accountId: req.account.id }) - } else { - commit(MUTATION_TYPES.APPEND_NOTIFICATIONS_AFTER_LOADING_CARD, { notifications: res.data, accountId: req.account.id }) - } - return res.data - }, - [ACTION_TYPES.RESET_BADGE]: () => { - win.ipcRenderer.send('reset-badge') - }, - [ACTION_TYPES.GET_MARKER]: async ({ rootState }, req: { account: LocalAccount; server: LocalServer }): Promise => { - if (!rootState.TimelineSpace.setting.markerNotifications) { - return null - } - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - let serverMarker: Entity.Marker | {} = {} - try { - const res = await client.getMarkers(['notifications']) - serverMarker = res.data - } catch (err) { - console.warn(err) - } - return serverMarker - }, - [ACTION_TYPES.SAVE_MARKER]: async ({ state, rootState }, req: { account: LocalAccount; server: LocalServer }) => { - const notifications = state.notifications[req.account.id] - if (notifications.length === 0 || notifications[0].id === 'loading-card') { - return - } - - const client = generator(req.server.sns, req.server.baseURL, req.account.accessToken, rootState.App.userAgent) - const res = await client.saveMarkers({ notifications: { last_read_id: notifications[0].id } }) - if (rootState.TimelineSpace.server!.sns === 'pleroma') { - await client.readNotifications({ max_id: notifications[0].id }) - } - return res.data - } -} - -const getters: GetterTree = { - filters: (_state, _getters, rootState) => { - return rootState.TimelineSpace.filters.filter(f => f.context.includes(FilterContext.Notifications) && !f.irreversible) - } -} - -const Notifications: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions, - getters: getters -} - -export default Notifications diff --git a/src/renderer/store/TimelineSpace/HeaderMenu.ts b/src/renderer/store/TimelineSpace/HeaderMenu.ts deleted file mode 100644 index db5f9e68..00000000 --- a/src/renderer/store/TimelineSpace/HeaderMenu.ts +++ /dev/null @@ -1,71 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' -import AxiosLoading from '@/utils/axiosLoading' - -export type HeaderMenuState = { - title: string - reload: boolean - loading: boolean -} - -const state = (): HeaderMenuState => ({ - title: 'Home', - reload: false, - loading: false -}) - -export const MUTATION_TYPES = { - UPDATE_TITLE: 'updateTitle', - CHANGE_RELOAD: 'changeReload', - CHANGE_LOADING: 'changeLoading' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.UPDATE_TITLE]: (state, title: string) => { - state.title = title - }, - [MUTATION_TYPES.CHANGE_RELOAD]: (state, value: boolean) => { - state.reload = value - }, - [MUTATION_TYPES.CHANGE_LOADING]: (state, value: boolean) => { - state.loading = value - } -} - -export const ACTION_TYPES = { - FETCH_LIST: 'fetchList', - SETUP_LOADING: 'setupLoading' -} - -const actions: ActionTree = { - [ACTION_TYPES.FETCH_LIST]: async ({ commit, rootState }, listID: string): Promise => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const res = await client.getList(listID) - commit(MUTATION_TYPES.UPDATE_TITLE, `#${res.data.title}`) - return res.data - }, - [ACTION_TYPES.SETUP_LOADING]: ({ commit }) => { - const axiosLoading = new AxiosLoading() - axiosLoading.on('start', (_: number) => { - commit(MUTATION_TYPES.CHANGE_LOADING, true) - }) - axiosLoading.on('done', () => { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - }) - } -} - -const HeaderMenu: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default HeaderMenu diff --git a/src/renderer/store/TimelineSpace/Modals.ts b/src/renderer/store/TimelineSpace/Modals.ts deleted file mode 100644 index 233dfe8d..00000000 --- a/src/renderer/store/TimelineSpace/Modals.ts +++ /dev/null @@ -1,55 +0,0 @@ -import ImageViewer, { ImageViewerState } from './Modals/ImageViewer' -import Jump, { JumpState } from './Modals/Jump' -import ListMembership, { ListMembershipState } from './Modals/ListMembership' -import AddListMember, { AddListMemberState } from './Modals/AddListMember' -import MuteConfirm, { MuteConfirmState } from './Modals/MuteConfirm' -import Shortcut, { ShortcutState } from './Modals/Shortcut' -import Report, { ReportState } from './Modals/Report' -import { Module, GetterTree } from 'vuex' -import { RootState } from '@/store/index' - -export type ModalsState = {} - -type ModalsModule = { - Jump: JumpState - AddListMember: AddListMemberState - ImageViewer: ImageViewerState - ListMembership: ListMembershipState - MuteConfirm: MuteConfirmState - Report: ReportState - Shortcut: ShortcutState -} - -export type ModalsModuleState = ModalsModule & ModalsState - -const state = (): ModalsState => ({}) - -const getters: GetterTree = { - modalOpened: (_state, _getters, rootState) => { - const imageViewer = rootState.TimelineSpace.Modals.ImageViewer.modalOpen - const jump = rootState.TimelineSpace.Modals.Jump.modalOpen - const listMembership = rootState.TimelineSpace.Modals.ListMembership.modalOpen - const addListMember = rootState.TimelineSpace.Modals.AddListMember.modalOpen - const shortcut = rootState.TimelineSpace.Modals.Shortcut.modalOpen - const muteConfirm = rootState.TimelineSpace.Modals.MuteConfirm.modalOpen - const report = rootState.TimelineSpace.Modals.Report.modalOpen - return imageViewer || jump || listMembership || addListMember || shortcut || muteConfirm || report - } -} - -const Modals: Module = { - namespaced: true, - modules: { - ImageViewer, - Jump, - ListMembership, - AddListMember, - MuteConfirm, - Shortcut, - Report - }, - state: state, - getters: getters -} - -export default Modals diff --git a/src/renderer/store/TimelineSpace/Modals/AddListMember.ts b/src/renderer/store/TimelineSpace/Modals/AddListMember.ts deleted file mode 100644 index 578d0402..00000000 --- a/src/renderer/store/TimelineSpace/Modals/AddListMember.ts +++ /dev/null @@ -1,75 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' - -export type AddListMemberState = { - modalOpen: boolean - accounts: Array - targetListId: string | null -} - -const state = (): AddListMemberState => ({ - modalOpen: false, - accounts: [], - targetListId: null -}) - -export const MUTATION_TYPES = { - CHANGE_MODAL: 'changeModal', - UPDATE_ACCOUNTS: 'updateAccounts', - SET_LIST_ID: 'setListId' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_MODAL]: (state, value: boolean) => { - state.modalOpen = value - }, - [MUTATION_TYPES.UPDATE_ACCOUNTS]: (state, accounts: Array) => { - state.accounts = accounts - }, - [MUTATION_TYPES.SET_LIST_ID]: (state, id: string) => { - state.targetListId = id - } -} - -export const ACTION_TYPES = { - CHANGE_MODAL: 'changeModal', - SEARCH: 'search', - ADD: 'add' -} - -const actions: ActionTree = { - [ACTION_TYPES.CHANGE_MODAL]: ({ commit }, value: boolean) => { - commit(MUTATION_TYPES.CHANGE_MODAL, value) - }, - [ACTION_TYPES.SEARCH]: async ({ commit, rootState }, name: string): Promise> => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const res = await client.searchAccount(name, { following: true }) - commit(MUTATION_TYPES.UPDATE_ACCOUNTS, res.data) - return res.data - }, - [ACTION_TYPES.ADD]: async ({ state, rootState }, account: Entity.Account): Promise<{}> => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const res = await client.addAccountsToList(state.targetListId!, [account.id]) - return res.data - } -} - -const AddListMember: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default AddListMember diff --git a/src/renderer/store/TimelineSpace/Modals/ImageViewer.ts b/src/renderer/store/TimelineSpace/Modals/ImageViewer.ts deleted file mode 100644 index b4a97cf3..00000000 --- a/src/renderer/store/TimelineSpace/Modals/ImageViewer.ts +++ /dev/null @@ -1,116 +0,0 @@ -import { Module, MutationTree, ActionTree, GetterTree } from 'vuex' -import { Entity } from 'megalodon' -import { RootState } from '@/store' - -export type ImageViewerState = { - modalOpen: boolean - currentIndex: number - mediaList: Array - loading: boolean -} - -const state = (): ImageViewerState => ({ - modalOpen: false, - currentIndex: -1, - mediaList: [], - loading: false -}) - -export const MUTATION_TYPES = { - CHANGE_MODAL: 'changeModal', - CHANGE_CURRENT_INDEX: 'changeCurrentIndex', - CHANGE_MEDIA_LIST: 'changeMediaList', - INCREMENT_INDEX: 'incrementIndex', - DECREMENT_INDEX: 'decrementIndex', - CHANGE_LOADING: 'changeLoading' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_MODAL]: (state, value: boolean) => { - state.modalOpen = value - }, - [MUTATION_TYPES.CHANGE_CURRENT_INDEX]: (state, currentIndex: number) => { - state.currentIndex = currentIndex - }, - [MUTATION_TYPES.CHANGE_MEDIA_LIST]: (state, mediaList: Array) => { - state.mediaList = mediaList - }, - [MUTATION_TYPES.INCREMENT_INDEX]: state => { - state.currentIndex++ - }, - [MUTATION_TYPES.DECREMENT_INDEX]: state => { - state.currentIndex-- - }, - [MUTATION_TYPES.CHANGE_LOADING]: (state, value: boolean) => { - state.loading = value - } -} - -export const ACTION_TYPES = { - OPEN_MODAL: 'openModal', - CLOSE_MODAL: 'closeModal', - INCREMENT_INDEX: 'incrementIndex', - DECREMENT_INDEX: 'decrementIndex', - LOADED: 'loaded' -} - -const actions: ActionTree = { - [ACTION_TYPES.OPEN_MODAL]: ({ commit }, { currentIndex, mediaList }) => { - commit(MUTATION_TYPES.CHANGE_MODAL, true) - commit(MUTATION_TYPES.CHANGE_CURRENT_INDEX, currentIndex as number) - commit(MUTATION_TYPES.CHANGE_MEDIA_LIST, mediaList as Array) - commit(MUTATION_TYPES.CHANGE_LOADING, true) - }, - [ACTION_TYPES.CLOSE_MODAL]: ({ commit }) => { - commit(MUTATION_TYPES.CHANGE_MODAL, false) - commit(MUTATION_TYPES.CHANGE_CURRENT_INDEX, -1) - commit(MUTATION_TYPES.CHANGE_MEDIA_LIST, []) - commit(MUTATION_TYPES.CHANGE_LOADING, false) - }, - [ACTION_TYPES.INCREMENT_INDEX]: ({ commit }) => { - commit(MUTATION_TYPES.INCREMENT_INDEX) - commit(MUTATION_TYPES.CHANGE_LOADING, true) - }, - [ACTION_TYPES.DECREMENT_INDEX]: ({ commit }) => { - commit(MUTATION_TYPES.DECREMENT_INDEX) - commit(MUTATION_TYPES.CHANGE_LOADING, true) - }, - [ACTION_TYPES.LOADED]: ({ commit }) => { - commit(MUTATION_TYPES.CHANGE_LOADING, false) - } -} - -const getters: GetterTree = { - imageURL: (state): string | null => { - if (state.currentIndex >= 0) { - return state.mediaList[state.currentIndex].url - } - return null - }, - imageType: (state): string | null => { - if (state.currentIndex >= 0) { - return state.mediaList[state.currentIndex].type - } - return null - }, - showLeft: (state): boolean => { - const notFirst = state.currentIndex > 0 - const isManyItem = state.mediaList.length > 1 - return notFirst && isManyItem - }, - showRight: (state): boolean => { - const notLast = state.currentIndex < state.mediaList.length - 1 - const isManyItem = state.mediaList.length > 1 - return notLast && isManyItem - } -} - -const ImageViewer: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions, - getters: getters -} - -export default ImageViewer diff --git a/src/renderer/store/TimelineSpace/Modals/Jump.ts b/src/renderer/store/TimelineSpace/Modals/Jump.ts deleted file mode 100644 index a567f060..00000000 --- a/src/renderer/store/TimelineSpace/Modals/Jump.ts +++ /dev/null @@ -1,102 +0,0 @@ -import router from '@/router' -import i18n from '~/src/config/i18n' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' - -export type Channel = { - name: string - path: string -} - -export type JumpState = { - modalOpen: boolean - channel: string - defaultChannelList: Array - selectedChannel: Channel -} - -const state = (): JumpState => ({ - modalOpen: false, - channel: '', - defaultChannelList: [ - { - name: i18n.t('side_menu.home'), - path: 'home' - }, - { - name: i18n.t('side_menu.notification'), - path: 'notifications' - }, - { - name: i18n.t('side_menu.favourite'), - path: 'favourites' - }, - { - name: i18n.t('side_menu.local'), - path: 'local' - }, - { - name: i18n.t('side_menu.public'), - path: 'public' - }, - { - name: i18n.t('side_menu.hashtag'), - path: 'hashtag' - }, - { - name: i18n.t('side_menu.search'), - path: 'search' - }, - { - name: i18n.t('side_menu.direct'), - path: 'direct-messages' - } - ], - selectedChannel: { - name: i18n.t('side_menu.home'), - path: 'home' - } -}) - -export const MUTATION_TYPES = { - CHANGE_MODAL: 'changeModal', - UPDATE_CHANNEL: 'updateChannel', - CHANGE_SELECTED: 'changeSelected' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_MODAL]: (state, value: boolean) => { - state.modalOpen = value - }, - [MUTATION_TYPES.UPDATE_CHANNEL]: (state, channel: string) => { - state.channel = channel - }, - [MUTATION_TYPES.CHANGE_SELECTED]: (state, channel: Channel) => { - state.selectedChannel = channel - } -} - -export const ACTION_TYPES = { - JUMP_CURRENT_SELECTED: 'jumpCurrentSelected', - JUMP: 'jump' -} - -const actions: ActionTree = { - [ACTION_TYPES.JUMP_CURRENT_SELECTED]: ({ state, commit, rootState }) => { - commit(MUTATION_TYPES.CHANGE_MODAL, false) - router.push({ path: `/${rootState.TimelineSpace.account!.id}/${state.selectedChannel.path}` }) - }, - [ACTION_TYPES.JUMP]: ({ commit, rootState }, channel: Channel) => { - commit(MUTATION_TYPES.CHANGE_MODAL, false) - router.push({ path: `/${rootState.TimelineSpace.account!.id}/${channel.path}` }) - } -} - -const Jump: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default Jump diff --git a/src/renderer/store/TimelineSpace/Modals/ListMembership.ts b/src/renderer/store/TimelineSpace/Modals/ListMembership.ts deleted file mode 100644 index 88e02823..00000000 --- a/src/renderer/store/TimelineSpace/Modals/ListMembership.ts +++ /dev/null @@ -1,107 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' - -export type ListMembershipState = { - modalOpen: boolean - account: Entity.Account | null - lists: Array - belongToLists: Array -} - -const state = (): ListMembershipState => ({ - modalOpen: false, - account: null, - lists: [], - belongToLists: [] -}) - -export const MUTATION_TYPES = { - CHANGE_MODAL: 'changeModal', - CHANGE_ACCOUNT: 'changeAccount', - CHANGE_BELONG_TO_LISTS: 'changeBelongToLists', - CHANGE_LISTS: 'changeLists' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_MODAL]: (state, value: boolean) => { - state.modalOpen = value - }, - [MUTATION_TYPES.CHANGE_ACCOUNT]: (state, account: Entity.Account) => { - state.account = account - }, - [MUTATION_TYPES.CHANGE_BELONG_TO_LISTS]: (state, lists: Array) => { - state.belongToLists = lists - }, - [MUTATION_TYPES.CHANGE_LISTS]: (state, lists: Array) => { - state.lists = lists - } -} - -export const ACTION_TYPES = { - CHANGE_MODAL: 'changeModal', - SET_ACCOUNT: 'setAccount', - FETCH_LIST_MEMBERSHIP: 'fetchListMembership', - FETCH_LISTS: 'fetchLists', - CHANGE_BELONG_TO_LISTS: 'changeBelongToLists' -} - -const actions: ActionTree = { - [ACTION_TYPES.CHANGE_MODAL]: ({ commit }, value: boolean) => { - commit(MUTATION_TYPES.CHANGE_MODAL, value) - }, - [ACTION_TYPES.SET_ACCOUNT]: ({ commit }, account: Entity.Account) => { - commit(MUTATION_TYPES.CHANGE_ACCOUNT, account) - }, - [ACTION_TYPES.FETCH_LIST_MEMBERSHIP]: async ({ commit, rootState }, account: Entity.Account) => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const res = await client.getAccountLists(account.id) - commit(MUTATION_TYPES.CHANGE_BELONG_TO_LISTS, res.data) - return res.data - }, - [ACTION_TYPES.FETCH_LISTS]: async ({ commit, rootState }) => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const res = await client.getLists() - commit(MUTATION_TYPES.CHANGE_LISTS, res.data) - return res.data - }, - [ACTION_TYPES.CHANGE_BELONG_TO_LISTS]: async ({ rootState, dispatch, state }, belongToLists: Array) => { - // Calculate diff - const removedLists = state.belongToLists.map(l => l.id).filter(i => belongToLists.indexOf(i) === -1) - const addedLists = belongToLists.filter(i => state.belongToLists.map(l => l.id).indexOf(i) === -1) - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const removedPromise = removedLists.map(id => { - return client.deleteAccountsFromList(id, [state.account!.id]) - }) - const addedPromise = addedLists.map(id => { - return client.addAccountsToList(id, [state.account!.id]) - }) - const res = await Promise.all(removedPromise.concat(addedPromise)) - await dispatch('fetchListMembership', state.account!) - return res - } -} - -const ListMembership: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default ListMembership diff --git a/src/renderer/store/TimelineSpace/Modals/MuteConfirm.ts b/src/renderer/store/TimelineSpace/Modals/MuteConfirm.ts deleted file mode 100644 index 80e7e133..00000000 --- a/src/renderer/store/TimelineSpace/Modals/MuteConfirm.ts +++ /dev/null @@ -1,61 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' - -export type MuteConfirmState = { - modalOpen: boolean - account: Entity.Account | null -} - -const state = (): MuteConfirmState => ({ - modalOpen: false, - account: null -}) - -export const MUTATION_TYPES = { - CHANGE_MODAL: 'changeModal', - CHANGE_ACCOUNT: 'changeAccount' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_MODAL]: (state, value: boolean) => { - state.modalOpen = value - }, - [MUTATION_TYPES.CHANGE_ACCOUNT]: (state, account: Entity.Account) => { - state.account = account - } -} - -export const ACTION_TYPES = { - CHANGE_MODAL: 'changeModal', - CHANGE_ACCOUNT: 'changeAccount', - SUBMIT: 'submit' -} - -const actions: ActionTree = { - [ACTION_TYPES.CHANGE_MODAL]: ({ commit }, value: boolean) => { - commit(MUTATION_TYPES.CHANGE_MODAL, value) - }, - [ACTION_TYPES.CHANGE_ACCOUNT]: ({ commit }, account: Entity.Account) => { - commit(MUTATION_TYPES.CHANGE_ACCOUNT, account) - }, - [ACTION_TYPES.SUBMIT]: async ({ state, rootState }, notify: boolean) => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - const res = await client.muteAccount(state.account!.id, notify) - return res.data - } -} - -const MuteConfirm: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default MuteConfirm diff --git a/src/renderer/store/TimelineSpace/Modals/Report.ts b/src/renderer/store/TimelineSpace/Modals/Report.ts deleted file mode 100644 index 29e04675..00000000 --- a/src/renderer/store/TimelineSpace/Modals/Report.ts +++ /dev/null @@ -1,55 +0,0 @@ -import generator, { Entity } from 'megalodon' -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' - -export type ReportState = { - modalOpen: boolean - message: Entity.Status | null -} - -const state = (): ReportState => ({ - modalOpen: false, - message: null -}) - -export const MUTATION_TYPES = { - CHANGE_MODAL_OPEN: 'changeModalOpen', - CHANGE_MESSAGE: 'changeMessage' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_MODAL_OPEN]: (state, value: boolean) => { - state.modalOpen = value - }, - [MUTATION_TYPES.CHANGE_MESSAGE]: (state, message: Entity.Status) => { - state.message = message - } -} - -export const ACTION_TYPES = { - OPEN_REPORT: 'openReport', - SUBMIT: 'submit' -} - -const actions: ActionTree = { - [ACTION_TYPES.OPEN_REPORT]: ({ commit }, message: Entity.Status) => { - commit(MUTATION_TYPES.CHANGE_MESSAGE, message) - commit(MUTATION_TYPES.CHANGE_MODAL_OPEN, true) - }, - [ACTION_TYPES.SUBMIT]: async ({ rootState }, { account_id, status_id, comment }) => { - const client = generator( - rootState.TimelineSpace.server!.sns, - rootState.TimelineSpace.server!.baseURL, - rootState.TimelineSpace.account!.accessToken, - rootState.App.userAgent - ) - return client.report(account_id, { comment: comment, status_ids: [status_id] }) - } -} - -export default { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} as Module diff --git a/src/renderer/store/TimelineSpace/Modals/Shortcut.ts b/src/renderer/store/TimelineSpace/Modals/Shortcut.ts deleted file mode 100644 index 48235342..00000000 --- a/src/renderer/store/TimelineSpace/Modals/Shortcut.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { Module, MutationTree } from 'vuex' -import { RootState } from '@/store' - -export type ShortcutState = { - modalOpen: boolean -} - -const state = (): ShortcutState => ({ - modalOpen: false -}) - -export const MUTATION_TYPES = { - CHANGE_MODAL: 'changeModal' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_MODAL]: (state, value: boolean) => { - state.modalOpen = value - } -} - -export default { - namespaced: true, - state: state, - mutations: mutations -} as Module diff --git a/src/renderer/store/TimelineSpace/SideMenu.ts b/src/renderer/store/TimelineSpace/SideMenu.ts deleted file mode 100644 index 0f54552c..00000000 --- a/src/renderer/store/TimelineSpace/SideMenu.ts +++ /dev/null @@ -1,87 +0,0 @@ -import { Module, MutationTree, ActionTree } from 'vuex' -import { RootState } from '@/store' -import { MyWindow } from '~/src/types/global' - -const win = (window as any) as MyWindow - -export type SideMenuState = { - unreadHomeTimeline: boolean - unreadNotifications: boolean - unreadLocalTimeline: boolean - unreadDirectMessagesTimeline: boolean - unreadPublicTimeline: boolean - collapse: boolean -} - -const state = (): SideMenuState => ({ - unreadHomeTimeline: false, - unreadNotifications: false, - unreadLocalTimeline: false, - unreadDirectMessagesTimeline: false, - unreadPublicTimeline: false, - collapse: false -}) - -export const MUTATION_TYPES = { - CHANGE_UNREAD_HOME_TIMELINE: 'changeUnreadHomeTimeline', - CHANGE_UNREAD_NOTIFICATIONS: 'changeUnreadNotifications', - CHANGE_UNREAD_LOCAL_TIMELINE: 'changeUnreadLocalTimeline', - CHANGE_UNREAD_DIRECT_MESSAGES_TIMELINE: 'changeUnreadDirectMessagesTimeline', - CHANGE_UNREAD_PUBLIC_TIMELINE: 'changeUnreadPublicTimeline', - CHANGE_COLLAPSE: 'changeCollapse' -} - -const mutations: MutationTree = { - [MUTATION_TYPES.CHANGE_UNREAD_HOME_TIMELINE]: (state, value: boolean) => { - state.unreadHomeTimeline = value - }, - [MUTATION_TYPES.CHANGE_UNREAD_NOTIFICATIONS]: (state, value: boolean) => { - state.unreadNotifications = value - }, - [MUTATION_TYPES.CHANGE_UNREAD_LOCAL_TIMELINE]: (state, value: boolean) => { - state.unreadLocalTimeline = value - }, - [MUTATION_TYPES.CHANGE_UNREAD_DIRECT_MESSAGES_TIMELINE]: (state, value: boolean) => { - state.unreadDirectMessagesTimeline = value - }, - [MUTATION_TYPES.CHANGE_UNREAD_PUBLIC_TIMELINE]: (state, value: boolean) => { - state.unreadPublicTimeline = value - }, - [MUTATION_TYPES.CHANGE_COLLAPSE]: (state, collapse: boolean) => { - state.collapse = collapse - } -} - -export const ACTION_TYPES = { - CLEAR_UNREAD: 'clearUnread', - CHANGE_COLLAPSE: 'changeCollapse', - READ_COLLAPSE: 'readCollapse' -} - -const actions: ActionTree = { - [ACTION_TYPES.CLEAR_UNREAD]: ({ commit }) => { - commit(MUTATION_TYPES.CHANGE_UNREAD_HOME_TIMELINE, false) - commit(MUTATION_TYPES.CHANGE_UNREAD_NOTIFICATIONS, false) - commit(MUTATION_TYPES.CHANGE_UNREAD_LOCAL_TIMELINE, false) - commit(MUTATION_TYPES.CHANGE_UNREAD_DIRECT_MESSAGES_TIMELINE, false) - commit(MUTATION_TYPES.CHANGE_UNREAD_PUBLIC_TIMELINE, false) - }, - [ACTION_TYPES.CHANGE_COLLAPSE]: ({ commit }, value: boolean) => { - win.ipcRenderer.send('change-collapse', value) - commit(MUTATION_TYPES.CHANGE_COLLAPSE, value) - }, - [ACTION_TYPES.READ_COLLAPSE]: async ({ commit }) => { - const value: boolean = await win.ipcRenderer.invoke('get-collapse') - commit(MUTATION_TYPES.CHANGE_COLLAPSE, value) - return value - } -} - -const SideMenu: Module = { - namespaced: true, - state: state, - mutations: mutations, - actions: actions -} - -export default SideMenu diff --git a/src/renderer/store/index.ts b/src/renderer/store/index.ts deleted file mode 100644 index 6114f8a7..00000000 --- a/src/renderer/store/index.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { createStore, createLogger, Store, useStore as baseUseStore } from 'vuex' -import { RouteLocationNormalized } from 'vue-router' -import { InjectionKey } from 'vue' - -import App, { AppState } from './App' -import GlobalHeader, { GlobalHeaderState } from './GlobalHeader' -import TimelineSpace, { TimelineSpaceModuleState } from './TimelineSpace' -import Preferences, { PreferencesModuleState } from './Preferences' -import Settings, { SettingsModuleState } from './Settings' -import { MyWindow } from '~/src/types/global' - -const win = (window as any) as MyWindow - -export interface RootState { - App: AppState - GlobalHeader: GlobalHeaderState - TimelineSpace: TimelineSpaceModuleState - Preferences: PreferencesModuleState - Settings: SettingsModuleState - route: RouteLocationNormalized -} - -export const key: InjectionKey> = Symbol('store') - -export function useStore() { - return baseUseStore(key) -} - -export default createStore({ - strict: win.node_env !== 'production', - plugins: win.node_env !== 'production' ? [createLogger({})] : [], - modules: { - App, - GlobalHeader, - TimelineSpace, - Preferences, - Settings - } -}) diff --git a/src/renderer/types/element-ui.d.ts b/src/renderer/types/element-ui.d.ts deleted file mode 100644 index 4193619b..00000000 --- a/src/renderer/types/element-ui.d.ts +++ /dev/null @@ -1 +0,0 @@ -declare module 'element-ui/lib/locale/lang/en' diff --git a/src/renderer/types/i18next-sync-fs-backend.d.ts b/src/renderer/types/i18next-sync-fs-backend.d.ts deleted file mode 100644 index d2c7b362..00000000 --- a/src/renderer/types/i18next-sync-fs-backend.d.ts +++ /dev/null @@ -1 +0,0 @@ -declare module 'i18next-sync-fs-backend' diff --git a/src/renderer/types/loadPosition.ts b/src/renderer/types/loadPosition.ts deleted file mode 100644 index 20f1fe95..00000000 --- a/src/renderer/types/loadPosition.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { Entity } from 'megalodon' - -export type LoadPosition = { - status: Entity.Status -} - -export type LoadPositionWithAccount = LoadPosition & { - account: Entity.Account -} - -export type LoadPositionWithList = LoadPosition & { - list_id: string -} - -export type LoadPositionWithTag = LoadPosition & { - tag: string -} diff --git a/src/renderer/types/loading-card.ts b/src/renderer/types/loading-card.ts deleted file mode 100644 index e88de974..00000000 --- a/src/renderer/types/loading-card.ts +++ /dev/null @@ -1,7 +0,0 @@ -export type LoadingCard = { - type: 'middle-load' - max_id: string | null - since_id: string | null - id: 'loading-card' - uri: 'loading-card' -} diff --git a/src/renderer/types/removeAccountFromList.ts b/src/renderer/types/removeAccountFromList.ts deleted file mode 100644 index 6d0bdb0d..00000000 --- a/src/renderer/types/removeAccountFromList.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { Entity } from 'megalodon' - -export type RemoveAccountFromList = { - account: Entity.Account - listId: string -} diff --git a/src/renderer/types/vue-popperjs.d.ts b/src/renderer/types/vue-popperjs.d.ts deleted file mode 100644 index f3d4cca6..00000000 --- a/src/renderer/types/vue-popperjs.d.ts +++ /dev/null @@ -1 +0,0 @@ -declare module 'vue-popperjs' diff --git a/src/renderer/types/vue-shortkey.d.ts b/src/renderer/types/vue-shortkey.d.ts deleted file mode 100644 index 517887ad..00000000 --- a/src/renderer/types/vue-shortkey.d.ts +++ /dev/null @@ -1 +0,0 @@ -declare module 'vue-shortkey' diff --git a/src/renderer/types/vue.d.ts b/src/renderer/types/vue.d.ts deleted file mode 100644 index 051d2fa1..00000000 --- a/src/renderer/types/vue.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare module '*.vue' { - import { ComponentOptions } from 'vue' - const component: ComponentOptions - export default component -} diff --git a/src/renderer/utils/axiosLoading.ts b/src/renderer/utils/axiosLoading.ts deleted file mode 100644 index f389747f..00000000 --- a/src/renderer/utils/axiosLoading.ts +++ /dev/null @@ -1,39 +0,0 @@ -import axios, { AxiosResponse } from 'axios' -import { EventEmitter } from 'events' - -class AxiosLoading extends EventEmitter { - public requestCounter: number - - constructor() { - super() - this.requestCounter = 0 - this.setupRequest() - this.setupResponse() - } - - private setupRequest() { - axios.interceptors.request.use(config => { - this.requestCounter++ - this.emit('start', this.requestCounter) - return config - }) - } - - private setupResponse() { - const response = (response: AxiosResponse) => { - if (--this.requestCounter === 0) { - this.emit('done', {}) - } - return response - } - const error = (error: any) => { - if (--this.requestCounter === 0) { - this.emit('done', {}) - } - return Promise.reject(error) - } - axios.interceptors.response.use(response, error) - } -} - -export default AxiosLoading diff --git a/src/renderer/utils/datetime.ts b/src/renderer/utils/datetime.ts deleted file mode 100644 index 88fe7e4a..00000000 --- a/src/renderer/utils/datetime.ts +++ /dev/null @@ -1,12 +0,0 @@ -import moment from 'moment' -import TimeFormat from '~/src/constants/timeFormat' - -export const parseDatetime = (datetime: string, format: number, language: string): string => { - switch (format) { - case TimeFormat.Relative.value: - moment.locale(language) - return moment(datetime).fromNow() - default: - return moment(datetime).format('YYYY-MM-DD HH:mm:ss') - } -} diff --git a/src/renderer/utils/emojify.ts b/src/renderer/utils/emojify.ts deleted file mode 100644 index 6e7f4ae0..00000000 --- a/src/renderer/utils/emojify.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Entity } from 'megalodon' - -const emojify = (str: string, customEmoji: Array = []): string => { - let result = str - customEmoji.map(emoji => { - const reg = new RegExp(`:${emoji.shortcode}:`, 'g') - const match = result.match(reg) - if (!match) return emoji - const replaceTag = `${emoji.shortcode}` - result = result.replace(reg, replaceTag) - return emoji - }) - return result -} - -export default emojify diff --git a/src/renderer/utils/filter.ts b/src/renderer/utils/filter.ts deleted file mode 100644 index 36e361b1..00000000 --- a/src/renderer/utils/filter.ts +++ /dev/null @@ -1,38 +0,0 @@ -import { Entity } from 'megalodon' - -// refs: https://github.com/tootsuite/mastodon/blob/c3aef491d66aec743a3a53e934a494f653745b61/app/javascript/mastodon/selectors/index.js#L43 - -const filtered = (status: string, filters: Array): boolean => { - if (filters.length === 0) { - return false - } - - const regexp = filterRegexp(filters) - return status.match(regexp) !== null -} - -const filterRegexp = (filters: Array): RegExp => { - return new RegExp( - filters - .map(f => { - let exp = escapeRegExp(f.phrase) - - if (f.whole_word) { - if (/^[\w]/.test(exp)) { - exp = `\\b${exp}` - } - - if (/[\w]$/.test(exp)) { - exp = `${exp}\\b` - } - } - return exp - }) - .join('|'), - 'i' - ) -} - -const escapeRegExp = (str: string) => str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') - -export default filtered diff --git a/src/renderer/utils/fonts/index.ts b/src/renderer/utils/fonts/index.ts deleted file mode 100644 index cdeeeeef..00000000 --- a/src/renderer/utils/fonts/index.ts +++ /dev/null @@ -1,16 +0,0 @@ -export default [ - 'Noto Sans', - 'Noto Sans CJK JP', - 'Takaoゴシック', - 'ヒラギノ角ゴ ProN W3', - '-apple-system', - 'BlinkMacSystemFont', - 'Segoe UI', - 'Roboto', - 'Helvetica Neue', - 'Apple Color Emoji', - 'Segoe UI Emoji', - 'Segoe UI Symbol', - 'Noto Color Emoji', - 'Noto Emoji' -] diff --git a/src/renderer/utils/quoteSupported.ts b/src/renderer/utils/quoteSupported.ts deleted file mode 100644 index 54b99572..00000000 --- a/src/renderer/utils/quoteSupported.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { QuoteSupportMastodon } from '~/src/constants/servers/quote' - -const quoteSupported = (sns: 'mastodon' | 'pleroma' | 'firefish' | 'friendica', domain: string): boolean => { - if (QuoteSupportMastodon.includes(domain)) { - return true - } - if (sns === 'firefish') { - return true - } - return false -} - -export default quoteSupported diff --git a/src/renderer/utils/suggestText.ts b/src/renderer/utils/suggestText.ts deleted file mode 100644 index 1ba2dd99..00000000 --- a/src/renderer/utils/suggestText.ts +++ /dev/null @@ -1,31 +0,0 @@ -// https://github.com/tootsuite/mastodon/blob/master/app/javascript/mastodon/components/autosuggest_textarea.js -const textAtCursorMatch = ( - str: string, - cursorPosition: number, - separators: Array = ['@', '#', ':'] -): [number | null, string | null] => { - let word: string - - const left = str.slice(0, cursorPosition).search(/\S+$/) - const right = str.slice(cursorPosition).search(/\s/) - - if (right < 0) { - word = str.slice(left) - } else { - word = str.slice(left, right + cursorPosition) - } - - if (!word || word.trim().length < 3 || separators.indexOf(word[0]) === -1) { - return [null, null] - } - - word = word.trim().toLowerCase() - - if (word.length > 0) { - return [left + 1, word] - } else { - return [null, null] - } -} - -export default textAtCursorMatch diff --git a/src/renderer/utils/tootParser.ts b/src/renderer/utils/tootParser.ts deleted file mode 100644 index d43ab3cd..00000000 --- a/src/renderer/utils/tootParser.ts +++ /dev/null @@ -1,122 +0,0 @@ -import { Entity } from 'megalodon' - -export type ParsedAccount = { - username: string - acct: string - url: string -} - -export function findLink(target: HTMLElement | null, parentClass = 'toot'): string | null { - if (!target) { - return null - } - if (target.localName === 'a') { - return (target as HTMLLinkElement).href - } - if (target.parentNode === undefined || target.parentNode === null) { - return null - } - const parent = target.parentNode as HTMLElement - if (parent.getAttribute('class') === parentClass) { - return null - } - return findLink(parent, parentClass) -} - -export function findTag(target: HTMLElement, parentClass = 'toot'): string | null { - const targetClass = target.getAttribute('class') - if (targetClass && targetClass.includes('hashtag')) { - return parseTag((target as HTMLLinkElement).href) - } - // In Pleroma, link does not have class. - // So I have to check URL. - const link = target as HTMLLinkElement - if (link.href && link.href.match(/^https:\/\/[a-zA-Z0-9-.]+\/(tag|tags)\/.+/)) { - return parseTag(link.href) - } - if (target.parentNode === undefined || target.parentNode === null) { - return null - } - const parent = target.parentNode as HTMLElement - if (parent.getAttribute('class') === parentClass) { - return null - } - return findTag(parent, parentClass) -} - -function parseTag(tagURL: string): string | null { - const res = tagURL.match(/^https:\/\/([a-zA-Z0-9-.]+)\/(tag|tags)\/(.+)/) - if (!res) { - return null - } - return res[3] -} - -export function findAccount(target: HTMLElement, parentClass = 'toot'): ParsedAccount | null { - const targetClass = target.getAttribute('class') - const link = target as HTMLLinkElement - if (targetClass && targetClass.includes('u-url')) { - if (link.href && link.href.match(/^https:\/\/[a-zA-Z0-9-.]+\/users\/[a-zA-Z0-9-_.]+$/)) { - return parsePleromaAccount(link.href) - } else { - return parseMastodonAccount(link.href) - } - } - // In Pleroma, link does not have class. - // So we have to check URL. - if (link.href && link.href.match(/^https:\/\/[a-zA-Z0-9-.]+\/@[a-zA-Z0-9-_.]+$/)) { - return parseMastodonAccount(link.href) - } - // Toot URL of Pleroma does not contain @. - if (link.href && link.href.match(/^https:\/\/[a-zA-Z0-9-.]+\/users\/[a-zA-Z0-9-_.]+$/)) { - return parsePleromaAccount(link.href) - } - if (target.parentNode === undefined || target.parentNode === null) { - return null - } - const parent = target.parentNode as HTMLElement - if (parent.getAttribute('class') === parentClass) { - return null - } - return findAccount(parent, parentClass) -} - -export function parseMastodonAccount(accountURL: string): ParsedAccount | null { - const res = accountURL.match(/^https:\/\/([a-zA-Z0-9-.]+)\/(@[a-zA-Z0-9-_.]+)$/) - if (!res) { - return null - } - const domainName = res[1] - const accountName = res[2] - return { - username: accountName, - acct: `${accountName}@${domainName}`, - url: accountURL - } -} - -export function parsePleromaAccount(accountURL: string): ParsedAccount | null { - const res = accountURL.match(/^https:\/\/([a-zA-Z0-9-.]+)\/users\/([a-zA-Z0-9-_.]+)$/) - if (!res) { - return null - } - const domainName = res[1] - const accountName = res[2] - return { - username: `@${accountName}`, - acct: `@${accountName}@${domainName}`, - url: accountURL - } -} - -export const accountMatch = (findAccounts: Array, parsedAccount: ParsedAccount, domain: string): Entity.Account | false => { - const account = findAccounts.find(a => `@${a.acct}` === parsedAccount.acct) - if (account) return account - const pleromaUser = findAccounts.find(a => a.acct === parsedAccount.acct) - if (pleromaUser) return pleromaUser - const localUser = findAccounts.find(a => `@${a.username}@${domain}` === parsedAccount.acct) - if (localUser) return localUser - const user = findAccounts.find(a => a.url === parsedAccount.url) - if (!user) return false - return user -} diff --git a/src/renderer/utils/username.ts b/src/renderer/utils/username.ts deleted file mode 100644 index 43c33582..00000000 --- a/src/renderer/utils/username.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Entity } from 'megalodon' -import DisplayStyle from '~/src/constants/displayStyle' -import emojify from '@/utils/emojify' - -export const usernameWithStyle = (account: Entity.Account, displayNameStyle: number) => { - switch (displayNameStyle) { - case DisplayStyle.DisplayNameAndUsername.value: - if (account.display_name !== '') { - return emojify(account.display_name, account.emojis) - } else { - return account.acct - } - case DisplayStyle.DisplayName.value: - if (account.display_name !== '') { - return emojify(account.display_name, account.emojis) - } else { - return account.acct - } - default: - return account.acct - } -} - -export const accountNameWithStyle = (account: Entity.Account, displayNameStyle: number) => { - switch (displayNameStyle) { - case DisplayStyle.DisplayNameAndUsername.value: - return `@${account.acct}` - default: - return '' - } -} diff --git a/src/renderer/utils/validator.ts b/src/renderer/utils/validator.ts deleted file mode 100644 index 5dbf73bf..00000000 --- a/src/renderer/utils/validator.ts +++ /dev/null @@ -1,2 +0,0 @@ -// eslint-disable-next-line -export const domainFormat = /^(((?!\-))(xn\-\-)?[a-z0-9\-_]{0,61}[a-z0-9]{1,1}\.)*(xn\-\-)?([a-z0-9\-]{1,61}|[a-z0-9\-]{1,30})\.[a-z]{2,}$/ diff --git a/src/types/accountNotification.ts b/src/types/accountNotification.ts deleted file mode 100644 index 61ceea58..00000000 --- a/src/types/accountNotification.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { Entity } from 'megalodon' - -export type AccountNotification = { - id: string - notification: Entity.Notification -} diff --git a/src/types/appearance.ts b/src/types/appearance.ts deleted file mode 100644 index 7c9c69ad..00000000 --- a/src/types/appearance.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { ThemeColorType } from '~/src/constants/themeColor' - -export type Appearance = { - theme: string - fontSize: number - displayNameStyle: number - timeFormat: number - customThemeColor: ThemeColorType - font: string - tootPadding: number -} diff --git a/src/types/cachedAccount.ts b/src/types/cachedAccount.ts deleted file mode 100644 index 7a82b299..00000000 --- a/src/types/cachedAccount.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type CachedAccount = { - _id?: string - acct: string - owner_id: string -} diff --git a/src/types/enabledTimelines.ts b/src/types/enabledTimelines.ts deleted file mode 100644 index d7b576e8..00000000 --- a/src/types/enabledTimelines.ts +++ /dev/null @@ -1,12 +0,0 @@ -export type EnabledTimelines = { - home: boolean - notification: boolean - mention: boolean - direct: boolean - favourite: boolean - bookmark: boolean - local: boolean - public: boolean - tag: boolean - list: boolean -} diff --git a/src/types/global.ts b/src/types/global.ts deleted file mode 100644 index 375a8b99..00000000 --- a/src/types/global.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Shell, IpcRenderer, Clipboard } from 'electron' - -export interface MyWindow extends Window { - shell: Shell - ipcRenderer: IpcRenderer - clipboard: Clipboard - node_env: string - platform: string - static_path: string -} diff --git a/src/types/insertAccountCache.ts b/src/types/insertAccountCache.ts deleted file mode 100644 index 6229e863..00000000 --- a/src/types/insertAccountCache.ts +++ /dev/null @@ -1,4 +0,0 @@ -export type InsertAccountCache = { - ownerID: number - accts: Array -} diff --git a/src/types/language.ts b/src/types/language.ts deleted file mode 100644 index 5e9b6c80..00000000 --- a/src/types/language.ts +++ /dev/null @@ -1,7 +0,0 @@ -export type Language = { - language: string - spellchecker: { - enabled: boolean - languages: Array - } -} diff --git a/src/types/localAccount.ts b/src/types/localAccount.ts deleted file mode 100644 index faeab45d..00000000 --- a/src/types/localAccount.ts +++ /dev/null @@ -1,11 +0,0 @@ -export type LocalAccount = { - id: number - username: string - accountId: string - avatar: string - clientId: string | null - clientSecret: string - accessToken: string - refreshToken: string | null - order: number -} diff --git a/src/types/localServer.ts b/src/types/localServer.ts deleted file mode 100644 index 8d3c49f9..00000000 --- a/src/types/localServer.ts +++ /dev/null @@ -1,7 +0,0 @@ -export type LocalServer = { - id: number - baseURL: string - domain: string - sns: 'mastodon' | 'pleroma' | 'firefish' | 'friendica' - accountId: number | null -} diff --git a/src/types/localTag.ts b/src/types/localTag.ts deleted file mode 100644 index c9870113..00000000 --- a/src/types/localTag.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type LocalTag = { - id: number - tagName: string - accountId: number -} diff --git a/src/types/notify.ts b/src/types/notify.ts deleted file mode 100644 index 5b21ab88..00000000 --- a/src/types/notify.ts +++ /dev/null @@ -1,11 +0,0 @@ -export type Notify = { - reply: boolean - reblog: boolean - favourite: boolean - follow: boolean - follow_request: boolean - reaction: boolean - status: boolean - poll_vote: boolean - poll_expired: boolean -} diff --git a/src/types/preference.ts b/src/types/preference.ts deleted file mode 100644 index 8c7bfd78..00000000 --- a/src/types/preference.ts +++ /dev/null @@ -1,40 +0,0 @@ -import { Sound } from '~/src/types/sound' -import { Timeline } from '~/src/types/timeline' -import { Notify } from '~/src/types/notify' -import { Appearance } from '~/src/types/appearance' -import { Language } from '~/src/types/language' -import { Proxy } from '~/src/types/proxy' - -export type Other = { - launch: boolean - hideOnLaunch: boolean -} - -export type General = { - sound: Sound - timeline: Timeline - other: Other -} - -export type State = { - collapse: boolean - hideGlobalHeader: boolean -} - -export type Notification = { - notify: Notify -} - -export type Menu = { - autoHideMenu: boolean -} - -export type BaseConfig = { - general: General - state: State - language: Language - notification: Notification - appearance: Appearance - proxy: Proxy - menu: Menu -} diff --git a/src/types/proxy.ts b/src/types/proxy.ts deleted file mode 100644 index f71ba7c0..00000000 --- a/src/types/proxy.ts +++ /dev/null @@ -1,27 +0,0 @@ -export enum ProxySource { - no = 'no', - system = 'system', - manual = 'manual' -} - -export enum ProxyProtocol { - http = 'http', - https = 'https', - socks4 = 'socks4', - socks4a = 'socks4a', - socks5 = 'socks5', - socks5h = 'socks5h' -} - -export type ManualProxy = { - protocol: '' | ProxyProtocol - host: string - port: string - username: string - password: string -} - -export type Proxy = { - source: ProxySource - manualProxyConfig: ManualProxy -} diff --git a/src/types/setting.ts b/src/types/setting.ts deleted file mode 100644 index f5f23c0b..00000000 --- a/src/types/setting.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type Setting = { - accountId: number - markerHome: boolean - markerNotifications: boolean -} diff --git a/src/types/sound.ts b/src/types/sound.ts deleted file mode 100644 index d6f301e3..00000000 --- a/src/types/sound.ts +++ /dev/null @@ -1,4 +0,0 @@ -export type Sound = { - fav_rb: boolean, - toot: boolean -} diff --git a/src/types/timeline.ts b/src/types/timeline.ts deleted file mode 100644 index 2be8cd16..00000000 --- a/src/types/timeline.ts +++ /dev/null @@ -1,5 +0,0 @@ -export type Timeline = { - cw: boolean - nsfw: boolean - hideAllAttachments: boolean -} diff --git a/static/.gitkeep b/static/.gitkeep deleted file mode 100644 index e69de29b..00000000 diff --git a/static/images/loading.svg b/static/images/loading.svg deleted file mode 100644 index 5ef9322e..00000000 --- a/static/images/loading.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/static/splash-screen.html b/static/splash-screen.html deleted file mode 100644 index c3df6777..00000000 --- a/static/splash-screen.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - -
-
- -
-
- -
-
- - diff --git a/tsconfig.json b/tsconfig.json index afbdaecc..7e2d690e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,33 +1,19 @@ { "compilerOptions": { - "target": "es6", - "module": "esnext", - "lib": [ - "dom", - "dom.iterable", - "es6" - ], - "sourceMap": true, - "downlevelIteration": true, - "strict": true, - "resolveJsonModule": true, - "noImplicitAny": false, - "strictNullChecks": true, - "strictFunctionTypes": true, - "strictPropertyInitialization": true, - "noImplicitThis": true, - "alwaysStrict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true, - "moduleResolution": "node", - "esModuleInterop": true, + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, "skipLibCheck": true, - "baseUrl": "./", - "paths": { - "@*": ["src/renderer*"], - "~*": ["./*"] - } - } + "strict": false, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "incremental": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve" + }, + "exclude": ["node_modules", "renderer/next.config.js", "app", "dist"] } diff --git a/windows-store.svg b/windows-store.svg deleted file mode 100644 index 21c139ed..00000000 --- a/windows-store.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/yarn.lock b/yarn.lock index 7d07d58c..a47cceb6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,10 +7,10 @@ resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.1.1.tgz#9274ec7460652f9c632c59addf24efb1684ef876" integrity sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ== -"@aashutoshrathi/word-wrap@^1.2.3": - version "1.2.6" - resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" - integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== "@ampproject/remapping@^2.2.0": version "2.2.1" @@ -20,14 +20,7 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@babel/code-frame@^7.0.0": - version "7.21.4" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" - integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/code-frame@^7.21.4", "@babel/code-frame@^7.22.13": +"@babel/code-frame@^7.22.13": version "7.22.13" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== @@ -35,35 +28,25 @@ "@babel/highlight" "^7.22.13" chalk "^2.4.2" -"@babel/compat-data@^7.20.5": - version "7.21.7" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" - integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9", "@babel/compat-data@^7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.2.tgz#6a12ced93455827037bfb5ed8492820d60fc32cc" + integrity sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ== -"@babel/compat-data@^7.22.0": - version "7.22.3" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.3.tgz#cd502a6a0b6e37d7ad72ce7e71a7160a3ae36f7e" - integrity sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ== - -"@babel/compat-data@^7.22.20", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.20.tgz#8df6e96661209623f1975d66c35ffca66f3306d0" - integrity sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw== - -"@babel/core@^7.1.0", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.22.1", "@babel/core@^7.7.5": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.0.tgz#f8259ae0e52a123eb40f552551e647b506a94d83" - integrity sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ== +"@babel/core@7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.2.tgz#ed10df0d580fff67c5f3ee70fd22e2e4c90a9f94" + integrity sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ== dependencies: "@ampproject/remapping" "^2.2.0" "@babel/code-frame" "^7.22.13" "@babel/generator" "^7.23.0" "@babel/helper-compilation-targets" "^7.22.15" "@babel/helper-module-transforms" "^7.23.0" - "@babel/helpers" "^7.23.0" + "@babel/helpers" "^7.23.2" "@babel/parser" "^7.23.0" "@babel/template" "^7.22.15" - "@babel/traverse" "^7.23.0" + "@babel/traverse" "^7.23.2" "@babel/types" "^7.23.0" convert-source-map "^2.0.0" debug "^4.1.0" @@ -71,25 +54,6 @@ json5 "^2.2.3" semver "^6.3.1" -"@babel/eslint-parser@^7.21.8": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz#263f059c476e29ca4972481a17b8b660cb025a34" - integrity sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg== - dependencies: - "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" - eslint-visitor-keys "^2.1.0" - semver "^6.3.1" - -"@babel/generator@^7.22.3": - version "7.22.3" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.3.tgz#0ff675d2edb93d7596c5f6728b52615cfc0df01e" - integrity sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A== - dependencies: - "@babel/types" "^7.22.3" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" - jsesc "^2.5.1" - "@babel/generator@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420" @@ -100,7 +64,7 @@ "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5": +"@babel/helper-annotate-as-pure@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== @@ -114,17 +78,6 @@ dependencies: "@babel/types" "^7.22.15" -"@babel/helper-compilation-targets@^7.20.7": - version "7.22.1" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.1.tgz#bfcd6b7321ffebe33290d68550e2c9d7eb7c7a58" - integrity sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ== - dependencies: - "@babel/compat-data" "^7.22.0" - "@babel/helper-validator-option" "^7.21.0" - browserslist "^4.21.3" - lru-cache "^5.1.1" - semver "^6.3.0" - "@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz#0698fc44551a26cf29f18d4662d5bf545a6cfc52" @@ -136,21 +89,7 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.18.6": - version "7.20.12" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz#4349b928e79be05ed2d1643b20b99bb87c503819" - integrity sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-function-name" "^7.19.0" - "@babel/helper-member-expression-to-functions" "^7.20.7" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.20.7" - "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" - "@babel/helper-split-export-declaration" "^7.18.6" - -"@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.5": +"@babel/helper-create-class-features-plugin@^7.22.11", "@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.22.5": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz#97a61b385e57fe458496fad19f8e63b63c867de4" integrity sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg== @@ -174,10 +113,10 @@ regexpu-core "^5.3.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.4.2": - version "0.4.2" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" - integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== +"@babel/helper-define-polyfill-provider@^0.4.3": + version "0.4.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz#a71c10f7146d809f4a256c373f462d9bba8cf6ba" + integrity sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -185,37 +124,11 @@ lodash.debounce "^4.0.8" resolve "^1.14.2" -"@babel/helper-environment-visitor@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" - integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== - -"@babel/helper-environment-visitor@^7.22.1": - version "7.22.1" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.1.tgz#ac3a56dbada59ed969d712cf527bd8271fe3eba8" - integrity sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA== - "@babel/helper-environment-visitor@^7.22.20", "@babel/helper-environment-visitor@^7.22.5": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== -"@babel/helper-function-name@^7.19.0": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" - integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== - dependencies: - "@babel/template" "^7.18.10" - "@babel/types" "^7.19.0" - -"@babel/helper-function-name@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" - integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== - dependencies: - "@babel/template" "^7.20.7" - "@babel/types" "^7.21.0" - "@babel/helper-function-name@^7.22.5", "@babel/helper-function-name@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" @@ -224,13 +137,6 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.23.0" -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - "@babel/helper-hoist-variables@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" @@ -238,13 +144,6 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-member-expression-to-functions@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz#a6f26e919582275a93c3aa6594756d71b0bb7f05" - integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw== - dependencies: - "@babel/types" "^7.20.7" - "@babel/helper-member-expression-to-functions@^7.22.15": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" @@ -270,13 +169,6 @@ "@babel/helper-split-export-declaration" "^7.22.6" "@babel/helper-validator-identifier" "^7.22.20" -"@babel/helper-optimise-call-expression@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" - integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== - dependencies: - "@babel/types" "^7.18.6" - "@babel/helper-optimise-call-expression@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" @@ -289,12 +181,7 @@ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== -"@babel/helper-plugin-utils@^7.20.2": - version "7.21.5" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" - integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== - -"@babel/helper-remap-async-to-generator@^7.22.5", "@babel/helper-remap-async-to-generator@^7.22.9": +"@babel/helper-remap-async-to-generator@^7.22.20", "@babel/helper-remap-async-to-generator@^7.22.5": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz#7b68e1cb4fa964d2996fd063723fb48eca8498e0" integrity sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw== @@ -303,18 +190,6 @@ "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-wrap-function" "^7.22.20" -"@babel/helper-replace-supers@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331" - integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A== - dependencies: - "@babel/helper-environment-visitor" "^7.18.9" - "@babel/helper-member-expression-to-functions" "^7.20.7" - "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/template" "^7.20.7" - "@babel/traverse" "^7.20.7" - "@babel/types" "^7.20.7" - "@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" @@ -331,13 +206,6 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-skip-transparent-expression-wrappers@^7.20.0": - version "7.20.0" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" - integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== - dependencies: - "@babel/types" "^7.20.0" - "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" @@ -345,13 +213,6 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - "@babel/helper-split-export-declaration@^7.22.6": version "7.22.6" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" @@ -359,21 +220,16 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.21.5", "@babel/helper-string-parser@^7.22.5": +"@babel/helper-string-parser@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== -"@babel/helper-validator-identifier@^7.19.1", "@babel/helper-validator-identifier@^7.22.20": +"@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-option@^7.21.0": - version "7.21.0" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" - integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== - "@babel/helper-validator-option@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040" @@ -388,16 +244,16 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.22.19" -"@babel/helpers@^7.23.0": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.1.tgz#44e981e8ce2b9e99f8f0b703f3326a4636c16d15" - integrity sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA== +"@babel/helpers@^7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.2.tgz#2832549a6e37d484286e15ba36a5330483cac767" + integrity sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ== dependencies: "@babel/template" "^7.22.15" - "@babel/traverse" "^7.23.0" + "@babel/traverse" "^7.23.2" "@babel/types" "^7.23.0" -"@babel/highlight@^7.18.6", "@babel/highlight@^7.22.13": +"@babel/highlight@^7.22.13": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== @@ -406,16 +262,11 @@ chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.21.3", "@babel/parser@^7.21.9", "@babel/parser@^7.22.15", "@babel/parser@^7.23.0": +"@babel/parser@^7.22.15", "@babel/parser@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719" integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw== -"@babel/parser@^7.14.7", "@babel/parser@^7.20.15", "@babel/parser@^7.22.4": - version "7.22.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.4.tgz#a770e98fd785c231af9d93f6459d36770993fb32" - integrity sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA== - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962" @@ -432,25 +283,6 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/plugin-transform-optional-chaining" "^7.22.15" -"@babel/plugin-proposal-class-properties@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" - integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-proposal-object-rest-spread@^7.20.7": - version "7.20.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" - integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== - dependencies: - "@babel/compat-data" "^7.20.5" - "@babel/helper-compilation-targets" "^7.20.7" - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.20.7" - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": version "7.21.0-placeholder-for-preset-env.2" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" @@ -463,14 +295,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": +"@babel/plugin-syntax-class-properties@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== @@ -512,7 +337,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": +"@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== @@ -526,7 +351,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": +"@babel/plugin-syntax-jsx@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" + integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== @@ -540,7 +372,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": +"@babel/plugin-syntax-numeric-separator@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== @@ -575,13 +407,20 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": +"@babel/plugin-syntax-top-level-await@^7.14.5": version "7.14.5" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== dependencies: "@babel/helper-plugin-utils" "^7.14.5" +"@babel/plugin-syntax-typescript@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" + integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" @@ -597,14 +436,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-async-generator-functions@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.15.tgz#3b153af4a6b779f340d5b80d3f634f55820aefa3" - integrity sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w== +"@babel/plugin-transform-async-generator-functions@^7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.2.tgz#054afe290d64c6f576f371ccc321772c8ea87ebb" + integrity sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ== dependencies: - "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.9" + "@babel/helper-remap-async-to-generator" "^7.22.20" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-transform-async-to-generator@^7.22.5": @@ -623,14 +462,14 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-block-scoping@^7.22.15": +"@babel/plugin-transform-block-scoping@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.0.tgz#8744d02c6c264d82e1a4bc5d2d501fd8aff6f022" integrity sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g== dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-class-properties@^7.22.5": +"@babel/plugin-transform-class-properties@7.22.5", "@babel/plugin-transform-class-properties@^7.22.5": version "7.22.5" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== @@ -670,7 +509,7 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/template" "^7.22.5" -"@babel/plugin-transform-destructuring@^7.22.15": +"@babel/plugin-transform-destructuring@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.0.tgz#6447aa686be48b32eaf65a73e0e2c0bd010a266c" integrity sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg== @@ -762,7 +601,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-amd@^7.22.5": +"@babel/plugin-transform-modules-amd@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.0.tgz#05b2bc43373faa6d30ca89214731f76f966f3b88" integrity sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw== @@ -770,7 +609,7 @@ "@babel/helper-module-transforms" "^7.23.0" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-modules-commonjs@^7.22.15": +"@babel/plugin-transform-modules-commonjs@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.0.tgz#b3dba4757133b2762c00f4f94590cf6d52602481" integrity sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ== @@ -779,7 +618,7 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.22.11": +"@babel/plugin-transform-modules-systemjs@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.0.tgz#77591e126f3ff4132a40595a6cccd00a6b60d160" integrity sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg== @@ -828,7 +667,7 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-object-rest-spread@^7.22.15": +"@babel/plugin-transform-object-rest-spread@7.22.15", "@babel/plugin-transform-object-rest-spread@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.15.tgz#21a95db166be59b91cde48775310c0df6e1da56f" integrity sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q== @@ -855,7 +694,7 @@ "@babel/helper-plugin-utils" "^7.22.5" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.22.15": +"@babel/plugin-transform-optional-chaining@7.23.0", "@babel/plugin-transform-optional-chaining@^7.22.15", "@babel/plugin-transform-optional-chaining@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.0.tgz#73ff5fc1cf98f542f09f29c0631647d8ad0be158" integrity sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g== @@ -864,13 +703,6 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-transform-parameters@^7.20.7": - version "7.21.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db" - integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ== - dependencies: - "@babel/helper-plugin-utils" "^7.20.2" - "@babel/plugin-transform-parameters@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.15.tgz#719ca82a01d177af358df64a514d64c2e3edb114" @@ -918,16 +750,16 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-runtime@^7.21.4": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.15.tgz#3a625c4c05a39e932d7d34f5d4895cdd0172fdc9" - integrity sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g== +"@babel/plugin-transform-runtime@7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.2.tgz#c956a3f8d1aa50816ff6c30c6288d66635c12990" + integrity sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA== dependencies: "@babel/helper-module-imports" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" + babel-plugin-polyfill-corejs2 "^0.4.6" + babel-plugin-polyfill-corejs3 "^0.8.5" + babel-plugin-polyfill-regenerator "^0.5.3" semver "^6.3.1" "@babel/plugin-transform-shorthand-properties@^7.22.5": @@ -966,6 +798,16 @@ dependencies: "@babel/helper-plugin-utils" "^7.22.5" +"@babel/plugin-transform-typescript@^7.22.15": + version "7.22.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz#15adef906451d86349eb4b8764865c960eb54127" + integrity sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.15" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-typescript" "^7.22.5" + "@babel/plugin-transform-unicode-escapes@^7.22.10": version "7.22.10" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.10.tgz#c723f380f40a2b2f57a62df24c9005834c8616d9" @@ -997,12 +839,12 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/preset-env@^7.21.5": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.20.tgz#de9e9b57e1127ce0a2f580831717f7fb677ceedb" - integrity sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg== +"@babel/preset-env@7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.23.2.tgz#1f22be0ff0e121113260337dbc3e58fafce8d059" + integrity sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ== dependencies: - "@babel/compat-data" "^7.22.20" + "@babel/compat-data" "^7.23.2" "@babel/helper-compilation-targets" "^7.22.15" "@babel/helper-plugin-utils" "^7.22.5" "@babel/helper-validator-option" "^7.22.15" @@ -1028,15 +870,15 @@ "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.15" + "@babel/plugin-transform-async-generator-functions" "^7.23.2" "@babel/plugin-transform-async-to-generator" "^7.22.5" "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.15" + "@babel/plugin-transform-block-scoping" "^7.23.0" "@babel/plugin-transform-class-properties" "^7.22.5" "@babel/plugin-transform-class-static-block" "^7.22.11" "@babel/plugin-transform-classes" "^7.22.15" "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.15" + "@babel/plugin-transform-destructuring" "^7.23.0" "@babel/plugin-transform-dotall-regex" "^7.22.5" "@babel/plugin-transform-duplicate-keys" "^7.22.5" "@babel/plugin-transform-dynamic-import" "^7.22.11" @@ -1048,9 +890,9 @@ "@babel/plugin-transform-literals" "^7.22.5" "@babel/plugin-transform-logical-assignment-operators" "^7.22.11" "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.15" - "@babel/plugin-transform-modules-systemjs" "^7.22.11" + "@babel/plugin-transform-modules-amd" "^7.23.0" + "@babel/plugin-transform-modules-commonjs" "^7.23.0" + "@babel/plugin-transform-modules-systemjs" "^7.23.0" "@babel/plugin-transform-modules-umd" "^7.22.5" "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" "@babel/plugin-transform-new-target" "^7.22.5" @@ -1059,7 +901,7 @@ "@babel/plugin-transform-object-rest-spread" "^7.22.15" "@babel/plugin-transform-object-super" "^7.22.5" "@babel/plugin-transform-optional-catch-binding" "^7.22.11" - "@babel/plugin-transform-optional-chaining" "^7.22.15" + "@babel/plugin-transform-optional-chaining" "^7.23.0" "@babel/plugin-transform-parameters" "^7.22.15" "@babel/plugin-transform-private-methods" "^7.22.5" "@babel/plugin-transform-private-property-in-object" "^7.22.11" @@ -1076,10 +918,10 @@ "@babel/plugin-transform-unicode-regex" "^7.22.5" "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" "@babel/preset-modules" "0.1.6-no-external-plugins" - "@babel/types" "^7.22.19" - babel-plugin-polyfill-corejs2 "^0.4.5" - babel-plugin-polyfill-corejs3 "^0.8.3" - babel-plugin-polyfill-regenerator "^0.5.2" + "@babel/types" "^7.23.0" + babel-plugin-polyfill-corejs2 "^0.4.6" + babel-plugin-polyfill-corejs3 "^0.8.5" + babel-plugin-polyfill-regenerator "^0.5.3" core-js-compat "^3.31.0" semver "^6.3.1" @@ -1092,39 +934,38 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/register@^7.21.0": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.22.15.tgz#c2c294a361d59f5fa7bcc8b97ef7319c32ecaec7" - integrity sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg== +"@babel/preset-typescript@7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.2.tgz#c8de488130b7081f7e1482936ad3de5b018beef4" + integrity sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA== dependencies: - clone-deep "^4.0.1" - find-cache-dir "^2.0.0" - make-dir "^2.1.0" - pirates "^4.0.5" - source-map-support "^0.5.16" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.15" + "@babel/plugin-syntax-jsx" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.23.0" + "@babel/plugin-transform-typescript" "^7.22.15" "@babel/regjsgen@^0.8.0": version "0.8.0" resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== -"@babel/runtime@7.23.1", "@babel/runtime@^7.18.6", "@babel/runtime@^7.22.5", "@babel/runtime@^7.8.4": - version "7.23.1" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.1.tgz#72741dc4d413338a91dcb044a86f3c0bc402646d" - integrity sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g== +"@babel/runtime-corejs3@7.23.2", "@babel/runtime-corejs3@^7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.23.2.tgz#a5cd9d8b408fb946b2f074b21ea40c04e516795c" + integrity sha512-54cIh74Z1rp4oIjsHjqN+WM4fMyCBYe+LpZ9jWm51CZ1fbH3SkAzQD/3XLoNkjbJ7YEmjobLXyvQrFypRHOrXw== + dependencies: + core-js-pure "^3.30.2" + regenerator-runtime "^0.14.0" + +"@babel/runtime@7.23.2", "@babel/runtime@^7.8.4": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.23.2.tgz#062b0ac103261d68a966c4c7baf2ae3e62ec3885" + integrity sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg== dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.18.10", "@babel/template@^7.20.7": - version "7.21.9" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.21.9.tgz#bf8dad2859130ae46088a99c1f265394877446fb" - integrity sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/parser" "^7.21.9" - "@babel/types" "^7.21.5" - -"@babel/template@^7.22.15", "@babel/template@^7.22.5", "@babel/template@^7.3.3": +"@babel/template@^7.22.15", "@babel/template@^7.22.5": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== @@ -1133,26 +974,10 @@ "@babel/parser" "^7.22.15" "@babel/types" "^7.22.15" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.20.7": - version "7.22.4" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.4.tgz#c3cf96c5c290bd13b55e29d025274057727664c0" - integrity sha512-Tn1pDsjIcI+JcLKq1AVlZEr4226gpuAQTsLMorsYg9tuS/kG7nuwwJ4AB8jfQuEgb/COBwR/DqJxmoiYFu5/rQ== - dependencies: - "@babel/code-frame" "^7.21.4" - "@babel/generator" "^7.22.3" - "@babel/helper-environment-visitor" "^7.22.1" - "@babel/helper-function-name" "^7.21.0" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.22.4" - "@babel/types" "^7.22.4" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/traverse@^7.23.0": - version "7.23.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.0.tgz#18196ddfbcf4ccea324b7f6d3ada00d8c5a99c53" - integrity sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw== +"@babel/traverse@^7.23.2": + version "7.23.2" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8" + integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw== dependencies: "@babel/code-frame" "^7.22.13" "@babel/generator" "^7.23.0" @@ -1165,7 +990,7 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.20.7", "@babel/types@^7.21.5", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": +"@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.4.4": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb" integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg== @@ -1174,37 +999,10 @@ "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" -"@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.21.0", "@babel/types@^7.22.3", "@babel/types@^7.22.4": - version "7.22.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.4.tgz#56a2653ae7e7591365dabf20b76295410684c071" - integrity sha512-Tx9x3UBHTTsMSW85WB2kphxYQVvrZ/t1FxD88IpSgIjiUJlCm9z+xWIDwyo1vffTwSqteqyznB8ZE9vYYk16zA== - dependencies: - "@babel/helper-string-parser" "^7.21.5" - "@babel/helper-validator-identifier" "^7.19.1" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@cnakazawa/watch@^1.0.3": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" - integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== - dependencies: - exec-sh "^0.3.2" - minimist "^1.2.0" - -"@csstools/selector-specificity@^2.0.2": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-2.1.1.tgz#c9c61d9fe5ca5ac664e1153bb0aa0eba1c6d6308" - integrity sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw== - -"@ctrl/tinycolor@^3.4.1": - version "3.5.0" - resolved "https://registry.yarnpkg.com/@ctrl/tinycolor/-/tinycolor-3.5.0.tgz#6e52b3d1c38d13130101771821e09cdd414a16bc" - integrity sha512-tlJpwF40DEQcfR/QF+wNMVyGMaO9FQp6Z1Wahj4Gk3CJQYHwA2xVG7iKDFdW6zuxZY9XWOpGcfNCTsX4McOsOg== +"@badgateway/oauth2-client@^2.2.4": + version "2.2.4" + resolved "https://registry.yarnpkg.com/@badgateway/oauth2-client/-/oauth2-client-2.2.4.tgz#6401b1d71f06944a320cfacd4285acbb54788d9d" + integrity sha512-R9MJWnf9gT5a38hNmAN4CFBB9yshvEVNYPb9iPgX7JIUAaqHjl3csivDcJESH3riRJMFVOEOqV4BsjamyYbsBg== "@develar/schema-utils@~2.6.5": version "2.6.5" @@ -1214,10 +1012,14 @@ ajv "^6.12.0" ajv-keywords "^3.4.1" -"@discoveryjs/json-ext@^0.5.0": - version "0.5.7" - resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70" - integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw== +"@electron/asar@^3.2.1": + version "3.2.7" + resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.2.7.tgz#bb8117dc6fd0c06a922ae7fb1c0e2d433e35a6e5" + integrity sha512-8FaSCAIiZGYFWyjeevPQt+0e9xCK9YmJ2Rjg5SXgdsXon6cRnU0Yxnbe6CvJbQn26baifur2Y2G5EBayRIsjyg== + dependencies: + commander "^5.0.0" + glob "^7.1.6" + minimatch "^3.0.4" "@electron/get@^2.0.0": version "2.0.3" @@ -1234,7 +1036,7 @@ optionalDependencies: global-agent "^3.0.0" -"@electron/notarize@^2.0.0": +"@electron/notarize@2.1.0": version "2.1.0" resolved "https://registry.yarnpkg.com/@electron/notarize/-/notarize-2.1.0.tgz#76aaec10c8687225e8d0a427cc9df67611c46ff3" integrity sha512-Q02xem1D0sg4v437xHgmBLxI2iz/fc0D4K7fiVWHa/AnW8o7D751xyKNXgziA6HrTOme9ul1JfWN5ark8WH1xA== @@ -1243,349 +1045,66 @@ fs-extra "^9.0.1" promise-retry "^2.0.1" -"@electron/universal@1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-1.2.1.tgz#3c2c4ff37063a4e9ab1e6ff57db0bc619bc82339" - integrity sha512-7323HyMh7KBAl/nPDppdLsC87G6RwRU02dy5FPeGB1eS7rUePh55+WNWiDPLhFQqqVPHzh77M69uhmoT8XnwMQ== +"@electron/osx-sign@1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.0.5.tgz#0af7149f2fce44d1a8215660fd25a9fb610454d8" + integrity sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww== dependencies: + compare-version "^0.1.2" + debug "^4.3.4" + fs-extra "^10.0.0" + isbinaryfile "^4.0.8" + minimist "^1.2.6" + plist "^3.0.5" + +"@electron/universal@1.4.1": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-1.4.1.tgz#3fbda2a5ed9ff9f3304c8e8316b94c1e3a7b3785" + integrity sha512-lE/U3UNw1YHuowNbTmKNs9UlS3En3cPgwM5MI+agIgr/B1hSze9NdOP0qn7boZaI9Lph8IDv3/24g9IxnJP7aQ== + dependencies: + "@electron/asar" "^3.2.1" "@malept/cross-spawn-promise" "^1.1.0" - asar "^3.1.0" debug "^4.3.1" - dir-compare "^2.4.0" + dir-compare "^3.0.0" fs-extra "^9.0.1" minimatch "^3.0.4" plist "^3.0.4" -"@element-plus/icons-vue@^2.0.6": - version "2.0.10" - resolved "https://registry.yarnpkg.com/@element-plus/icons-vue/-/icons-vue-2.0.10.tgz#60808d613c3dbdad025577022be8a972739ade21" - integrity sha512-ygEZ1mwPjcPo/OulhzLE7mtDrQBWI8vZzEWSNB2W/RNCRjoQGwbaK4N8lV4rid7Ts4qvySU3njMN7YCiSlSaTQ== - -"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" - integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== +"@floating-ui/core@^1.4.2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.5.0.tgz#5c05c60d5ae2d05101c3021c1a2a350ddc027f8c" + integrity sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg== dependencies: - eslint-visitor-keys "^3.3.0" + "@floating-ui/utils" "^0.1.3" -"@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1": - version "4.9.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.0.tgz#7ccb5f58703fa61ffdcbf39e2c604a109e781162" - integrity sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ== - -"@eslint/eslintrc@^2.1.2": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz#c6936b4b328c64496692f76944e755738be62396" - integrity sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g== +"@floating-ui/dom@^1.5.1": + version "1.5.3" + resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.5.3.tgz#54e50efcb432c06c23cd33de2b575102005436fa" + integrity sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA== dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.6.0" - globals "^13.19.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" + "@floating-ui/core" "^1.4.2" + "@floating-ui/utils" "^0.1.3" -"@eslint/js@8.50.0": - version "8.50.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.50.0.tgz#9e93b850f0f3fa35f5fa59adfd03adae8488e484" - integrity sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ== - -"@floating-ui/core@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.2.1.tgz#074182a1d277f94569c50a6b456e62585d463c8e" - integrity sha512-LSqwPZkK3rYfD7GKoIeExXOyYx6Q1O4iqZWwIehDNuv3Dv425FIAE8PRwtAx1imEolFTHgBEcoFHm9MDnYgPCg== - -"@floating-ui/dom@^1.0.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.2.1.tgz#8f93906e1a3b9f606ce78afb058e874344dcbe07" - integrity sha512-Rt45SmRiV8eU+xXSB9t0uMYiQ/ZWGE/jumse2o3i5RGlyvcbqOF4q+1qBnzLE2kZ5JGhq0iMkcGXUKbFe7MpTA== +"@floating-ui/react-dom@^2.0.1": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.0.2.tgz#fab244d64db08e6bed7be4b5fcce65315ef44d20" + integrity sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ== dependencies: - "@floating-ui/core" "^1.2.1" + "@floating-ui/dom" "^1.5.1" -"@fortawesome/fontawesome-common-types@6.4.2": - version "6.4.2" - resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.4.2.tgz#1766039cad33f8ad87f9467b98e0d18fbc8f01c5" - integrity sha512-1DgP7f+XQIJbLFCTX1V2QnxVmpLdKdzzo2k8EmvDOePfchaIGQ9eCHj2up3/jNEbZuBqel5OxiaOJf37TWauRA== - -"@fortawesome/fontawesome-svg-core@^6.4.0": - version "6.4.2" - resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.4.2.tgz#37f4507d5ec645c8b50df6db14eced32a6f9be09" - integrity sha512-gjYDSKv3TrM2sLTOKBc5rH9ckje8Wrwgx1CxAPbN5N3Fm4prfi7NsJVWd1jklp7i5uSCVwhZS5qlhMXqLrpAIg== +"@floating-ui/react@^0.24.3": + version "0.24.8" + resolved "https://registry.yarnpkg.com/@floating-ui/react/-/react-0.24.8.tgz#e079e2836990be3fce9665ab509360a5447251a1" + integrity sha512-AuYeDoaR8jtUlUXtZ1IJ/6jtBkGnSpJXbGNzokBL87VDJ8opMq1Bgrc0szhK482ReQY6KZsMoZCVSb4xwalkBA== dependencies: - "@fortawesome/fontawesome-common-types" "6.4.2" + "@floating-ui/react-dom" "^2.0.1" + aria-hidden "^1.2.3" + tabbable "^6.0.1" -"@fortawesome/free-regular-svg-icons@^6.4.0": - version "6.4.2" - resolved "https://registry.yarnpkg.com/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.4.2.tgz#aee79ed76ce5dd04931352f9d83700761b8b1b25" - integrity sha512-0+sIUWnkgTVVXVAPQmW4vxb9ZTHv0WstOa3rBx9iPxrrrDH6bNLsDYuwXF9b6fGm+iR7DKQvQshUH/FJm3ed9Q== - dependencies: - "@fortawesome/fontawesome-common-types" "6.4.2" - -"@fortawesome/free-solid-svg-icons@^6.4.0": - version "6.4.2" - resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.4.2.tgz#33a02c4cb6aa28abea7bc082a9626b7922099df4" - integrity sha512-sYwXurXUEQS32fZz9hVCUUv/xu49PEJEyUOsA51l6PU/qVgfbTb2glsTEaJngVVT8VqBATRIdh7XVgV1JF1LkA== - dependencies: - "@fortawesome/fontawesome-common-types" "6.4.2" - -"@fortawesome/vue-fontawesome@^3.0.3": - version "3.0.3" - resolved "https://registry.yarnpkg.com/@fortawesome/vue-fontawesome/-/vue-fontawesome-3.0.3.tgz#633e2998d11f7d4ed41f0d5ea461a22ec9b9d034" - integrity sha512-KCPHi9QemVXGMrfuwf3nNnNo129resAIQWut9QTAMXmXqL2ErABC6ohd2yY5Ipq0CLWNbKHk8TMdTXL/Zf3ZhA== - -"@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6" - integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== - -"@humanwhocodes/config-array@^0.11.11": - version "0.11.11" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz#88a04c570dbbc7dd943e4712429c3df09bc32844" - integrity sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA== - dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.5" - -"@humanwhocodes/module-importer@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" - integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== - -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-26.6.2.tgz#4e04bc464014358b03ab4937805ee36a0aeb98f2" - integrity sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g== - dependencies: - "@jest/types" "^26.6.2" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^26.6.2" - jest-util "^26.6.2" - slash "^3.0.0" - -"@jest/core@^26.6.3": - version "26.6.3" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-26.6.3.tgz#7639fcb3833d748a4656ada54bde193051e45fad" - integrity sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw== - dependencies: - "@jest/console" "^26.6.2" - "@jest/reporters" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-changed-files "^26.6.2" - jest-config "^26.6.3" - jest-haste-map "^26.6.2" - jest-message-util "^26.6.2" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-resolve-dependencies "^26.6.3" - jest-runner "^26.6.3" - jest-runtime "^26.6.3" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" - jest-watcher "^26.6.2" - micromatch "^4.0.2" - p-each-series "^2.1.0" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-26.6.2.tgz#ba364cc72e221e79cc8f0a99555bf5d7577cf92c" - integrity sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA== - dependencies: - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - jest-mock "^26.6.2" - -"@jest/fake-timers@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz#459c329bcf70cee4af4d7e3f3e67848123535aad" - integrity sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA== - dependencies: - "@jest/types" "^26.6.2" - "@sinonjs/fake-timers" "^6.0.1" - "@types/node" "*" - jest-message-util "^26.6.2" - jest-mock "^26.6.2" - jest-util "^26.6.2" - -"@jest/globals@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-26.6.2.tgz#5b613b78a1aa2655ae908eba638cc96a20df720a" - integrity sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA== - dependencies: - "@jest/environment" "^26.6.2" - "@jest/types" "^26.6.2" - expect "^26.6.2" - -"@jest/reporters@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-26.6.2.tgz#1f518b99637a5f18307bd3ecf9275f6882a667f6" - integrity sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - chalk "^4.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.2" - graceful-fs "^4.2.4" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^4.0.3" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.0.2" - jest-haste-map "^26.6.2" - jest-resolve "^26.6.2" - jest-util "^26.6.2" - jest-worker "^26.6.2" - slash "^3.0.0" - source-map "^0.6.0" - string-length "^4.0.1" - terminal-link "^2.0.0" - v8-to-istanbul "^7.0.0" - optionalDependencies: - node-notifier "^8.0.0" - -"@jest/schemas@^29.6.3": - version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" - integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== - dependencies: - "@sinclair/typebox" "^0.27.8" - -"@jest/source-map@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-26.6.2.tgz#29af5e1e2e324cafccc936f218309f54ab69d535" - integrity sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA== - dependencies: - callsites "^3.0.0" - graceful-fs "^4.2.4" - source-map "^0.6.0" - -"@jest/test-result@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-26.6.2.tgz#55da58b62df134576cc95476efa5f7949e3f5f18" - integrity sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ== - dependencies: - "@jest/console" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^26.6.3": - version "26.6.3" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz#98e8a45100863886d074205e8ffdc5a7eb582b17" - integrity sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw== - dependencies: - "@jest/test-result" "^26.6.2" - graceful-fs "^4.2.4" - jest-haste-map "^26.6.2" - jest-runner "^26.6.3" - jest-runtime "^26.6.3" - -"@jest/transform@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-26.6.2.tgz#5ac57c5fa1ad17b2aae83e73e45813894dcf2e4b" - integrity sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA== - dependencies: - "@babel/core" "^7.1.0" - "@jest/types" "^26.6.2" - babel-plugin-istanbul "^6.0.0" - chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.4" - jest-haste-map "^26.6.2" - jest-regex-util "^26.0.0" - jest-util "^26.6.2" - micromatch "^4.0.2" - pirates "^4.0.1" - slash "^3.0.0" - source-map "^0.6.1" - write-file-atomic "^3.0.0" - -"@jest/transform@^29.7.0": - version "29.7.0" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" - integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== - dependencies: - "@babel/core" "^7.11.6" - "@jest/types" "^29.6.3" - "@jridgewell/trace-mapping" "^0.3.18" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^2.0.0" - fast-json-stable-stringify "^2.1.0" - graceful-fs "^4.2.9" - jest-haste-map "^29.7.0" - jest-regex-util "^29.6.3" - jest-util "^29.7.0" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - write-file-atomic "^4.0.2" - -"@jest/types@^26.6.2": - version "26.6.2" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" - integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^15.0.0" - chalk "^4.0.0" - -"@jest/types@^29.6.3": - version "29.6.3" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" - integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== - dependencies: - "@jest/schemas" "^29.6.3" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" +"@floating-ui/utils@^0.1.3": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.1.6.tgz#22958c042e10b67463997bd6ea7115fe28cbcaf9" + integrity sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A== "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": version "0.3.3" @@ -1614,24 +1133,19 @@ "@jridgewell/gen-mapping" "^0.3.0" "@jridgewell/trace-mapping" "^0.3.9" -"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14": +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": version "1.4.15" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.19" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" - integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.20" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" + integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" -"@leichtgewicht/ip-codec@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" - integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== - "@malept/cross-spawn-promise@^1.1.0": version "1.1.1" resolved "https://registry.yarnpkg.com/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz#504af200af6b98e198bce768bc1730c6936ae01d" @@ -1649,12 +1163,75 @@ lodash "^4.17.15" tmp-promise "^3.0.2" -"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": - version "5.1.1-v1" - resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129" - integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg== - dependencies: - eslint-scope "5.1.1" +"@next/env@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/env/-/env-12.3.4.tgz#c787837d36fcad75d72ff8df6b57482027d64a47" + integrity sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A== + +"@next/swc-android-arm-eabi@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.4.tgz#fd1c2dafe92066c6120761c6a39d19e666dc5dd0" + integrity sha512-cM42Cw6V4Bz/2+j/xIzO8nK/Q3Ly+VSlZJTa1vHzsocJRYz8KT6MrreXaci2++SIZCF1rVRCDgAg5PpqRibdIA== + +"@next/swc-android-arm64@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.3.4.tgz#11a146dae7b8bca007239b21c616e83f77b19ed4" + integrity sha512-5jf0dTBjL+rabWjGj3eghpLUxCukRhBcEJgwLedewEA/LJk2HyqCvGIwj5rH+iwmq1llCWbOky2dO3pVljrapg== + +"@next/swc-darwin-arm64@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.3.4.tgz#14ac8357010c95e67327f47082af9c9d75d5be79" + integrity sha512-DqsSTd3FRjQUR6ao0E1e2OlOcrF5br+uegcEGPVonKYJpcr0MJrtYmPxd4v5T6UCJZ+XzydF7eQo5wdGvSZAyA== + +"@next/swc-darwin-x64@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.3.4.tgz#e7dc63cd2ac26d15fb84d4d2997207fb9ba7da0f" + integrity sha512-PPF7tbWD4k0dJ2EcUSnOsaOJ5rhT3rlEt/3LhZUGiYNL8KvoqczFrETlUx0cUYaXe11dRA3F80Hpt727QIwByQ== + +"@next/swc-freebsd-x64@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.3.4.tgz#fe7ceec58746fdf03f1fcb37ec1331c28e76af93" + integrity sha512-KM9JXRXi/U2PUM928z7l4tnfQ9u8bTco/jb939pdFUHqc28V43Ohd31MmZD1QzEK4aFlMRaIBQOWQZh4D/E5lQ== + +"@next/swc-linux-arm-gnueabihf@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.3.4.tgz#d7016934d02bfc8bd69818ffb0ae364b77b17af7" + integrity sha512-3zqD3pO+z5CZyxtKDTnOJ2XgFFRUBciOox6EWkoZvJfc9zcidNAQxuwonUeNts6Xbm8Wtm5YGIRC0x+12YH7kw== + +"@next/swc-linux-arm64-gnu@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.3.4.tgz#43a7bc409b03487bff5beb99479cacdc7bd29af5" + integrity sha512-kiX0vgJGMZVv+oo1QuObaYulXNvdH/IINmvdZnVzMO/jic/B8EEIGlZ8Bgvw8LCjH3zNVPO3mGrdMvnEEPEhKA== + +"@next/swc-linux-arm64-musl@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.3.4.tgz#4d1db6de6dc982b974cd1c52937111e3e4a34bd3" + integrity sha512-EETZPa1juczrKLWk5okoW2hv7D7WvonU+Cf2CgsSoxgsYbUCZ1voOpL4JZTOb6IbKMDo6ja+SbY0vzXZBUMvkQ== + +"@next/swc-linux-x64-gnu@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.3.4.tgz#c3b414d77bab08b35f7dd8943d5586f0adb15e38" + integrity sha512-4csPbRbfZbuWOk3ATyWcvVFdD9/Rsdq5YHKvRuEni68OCLkfy4f+4I9OBpyK1SKJ00Cih16NJbHE+k+ljPPpag== + +"@next/swc-linux-x64-musl@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.3.4.tgz#187a883ec09eb2442a5ebf126826e19037313c61" + integrity sha512-YeBmI+63Ro75SUiL/QXEVXQ19T++58aI/IINOyhpsRL1LKdyfK/35iilraZEFz9bLQrwy1LYAR5lK200A9Gjbg== + +"@next/swc-win32-arm64-msvc@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.3.4.tgz#89befa84e453ed2ef9a888f375eba565a0fde80b" + integrity sha512-Sd0qFUJv8Tj0PukAYbCCDbmXcMkbIuhnTeHm9m4ZGjCf6kt7E/RMs55Pd3R5ePjOkN7dJEuxYBehawTR/aPDSQ== + +"@next/swc-win32-ia32-msvc@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.3.4.tgz#cb50c08f0e40ead63642a7f269f0c8254261f17c" + integrity sha512-rt/vv/vg/ZGGkrkKcuJ0LyliRdbskQU+91bje+PgoYmxTZf/tYs6IfbmgudBJk6gH3QnjHWbkphDdRQrseRefQ== + +"@next/swc-win32-x64-msvc@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.3.4.tgz#d28ea15a72cdcf96201c60a43e9630cd7fda168f" + integrity sha512-DQ20JEfTBZAgF8QCjYfJhv2/279M6onxFjdG/+5B0Cyj00/EdBxiWb2eGGFgQhrBbNv/lsvzFbbi0Ptf8Vw/bg== "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -1669,7 +1246,7 @@ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== -"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": +"@nodelib/fs.walk@^1.2.3": version "1.2.8" resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== @@ -1677,85 +1254,22 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@npmcli/fs@^1.0.0": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257" - integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ== - dependencies: - "@gar/promisify" "^1.0.1" - semver "^7.3.5" - -"@npmcli/fs@^2.1.0": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-2.1.2.tgz#a9e2541a4a2fec2e69c29b35e6060973da79b865" - integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== - dependencies: - "@gar/promisify" "^1.1.3" - semver "^7.3.5" - -"@npmcli/move-file@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" - integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - -"@npmcli/move-file@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-2.0.1.tgz#26f6bdc379d87f75e55739bab89db525b06100e4" - integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== - dependencies: - mkdirp "^1.0.4" - rimraf "^3.0.2" - -"@pkgr/utils@^2.3.1": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc" - integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw== - dependencies: - cross-spawn "^7.0.3" - fast-glob "^3.3.0" - is-glob "^4.0.3" - open "^9.1.0" - picocolors "^1.0.0" - tslib "^2.6.0" - -"@popperjs/core@npm:@sxzz/popperjs-es@^2.11.7": - version "2.11.7" - resolved "https://registry.yarnpkg.com/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz#a7f69e3665d3da9b115f9e71671dae1b97e13671" - integrity sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ== - -"@samverschueren/stream-to-observable@^0.3.0": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301" - integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ== - dependencies: - any-observable "^0.3.0" - -"@sinclair/typebox@^0.27.8": - version "0.27.8" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" - integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== +"@popperjs/core@^2.9.3": + version "2.11.8" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f" + integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A== "@sindresorhus/is@^4.0.0": version "4.6.0" resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.6.0.tgz#3c7c9c46e678feefe7a2e5bb609d3dbd665ffb3f" integrity sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw== -"@sinonjs/commons@^1.7.0": - version "1.8.6" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" - integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== +"@swc/helpers@0.4.11": + version "0.4.11" + resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.11.tgz#db23a376761b3d31c26502122f349a21b592c8de" + integrity sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw== dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^6.0.1": - version "6.0.1" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz#293674fccb3262ac782c7aadfdeca86b10c75c40" - integrity sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA== - dependencies: - "@sinonjs/commons" "^1.7.0" + tslib "^2.4.0" "@szmarczak/http-timer@^4.0.5": version "4.0.6" @@ -1764,88 +1278,11 @@ dependencies: defer-to-connect "^2.0.0" -"@tootallnate/once@1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" - integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== - "@tootallnate/once@2": version "2.0.0" resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== -"@trodi/electron-splashscreen@^1.0.2": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@trodi/electron-splashscreen/-/electron-splashscreen-1.0.2.tgz#9996383cbe2adce89ad78545d2edbda756ecfe68" - integrity sha512-Lb36omHRFRAN4nkgPacmxXYgGKXDXxrNlDFXoZp6+ceAIC4kExOvoxj/WyCOtZXLd48MygR3QpjDvflpX67+4A== - -"@types/auto-launch@^5.0.2": - version "5.0.3" - resolved "https://registry.yarnpkg.com/@types/auto-launch/-/auto-launch-5.0.3.tgz#c36322ee25bcc5b9f636e6e7d15533f92f8f291e" - integrity sha512-+YEpP9vt+X9BkxdJ+dpKsfmVEX0wrhryR5TERprs0hcnrSpGJTT4gfDayvfyX7RFLLkpe0cvLj8A6WibJjkB0g== - -"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14", "@types/babel__core@^7.1.7": - version "7.20.2" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.2.tgz#215db4f4a35d710256579784a548907237728756" - integrity sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA== - dependencies: - "@babel/parser" "^7.20.7" - "@babel/types" "^7.20.7" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.5" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.5.tgz#281f4764bcbbbc51fdded0f25aa587b4ce14da95" - integrity sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.2" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.2.tgz#843e9f1f47c957553b0c374481dc4772921d6a6b" - integrity sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.20.2" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.2.tgz#4ddf99d95cfdd946ff35d2b65c978d9c9bf2645d" - integrity sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw== - dependencies: - "@babel/types" "^7.20.7" - -"@types/babel__traverse@^7.0.4": - version "7.18.3" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.3.tgz#dfc508a85781e5698d5b33443416b6268c4b3e8d" - integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w== - dependencies: - "@babel/types" "^7.3.0" - -"@types/better-sqlite3@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@types/better-sqlite3/-/better-sqlite3-7.6.3.tgz#117c3c182e300799b84d1b7e1781c27d8d536505" - integrity sha512-YS64N9SNDT/NAvou3QNdzAu3E2om/W/0dhORimtPGLef+zSK5l1vDzfsWb4xgXOgfhtOI5ZDTRxnvRPb22AIVQ== - dependencies: - "@types/node" "*" - -"@types/body-parser@*": - version "1.19.3" - resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.3.tgz#fb558014374f7d9e56c8f34bab2042a3a07d25cd" - integrity sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ== - dependencies: - "@types/connect" "*" - "@types/node" "*" - -"@types/bonjour@^3.5.9": - version "3.5.11" - resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.11.tgz#fbaa46a1529ea5c5e46cde36e4be6a880db55b84" - integrity sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg== - dependencies: - "@types/node" "*" - "@types/cacheable-request@^6.0.1": version "6.0.3" resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183" @@ -1856,165 +1293,50 @@ "@types/node" "*" "@types/responselike" "^1.0.0" -"@types/connect-history-api-fallback@^1.3.5": - version "1.5.1" - resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.1.tgz#6e5e3602d93bda975cebc3449e1a318340af9e20" - integrity sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw== - dependencies: - "@types/express-serve-static-core" "*" - "@types/node" "*" - -"@types/connect@*": - version "3.4.36" - resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.36.tgz#e511558c15a39cb29bd5357eebb57bd1459cd1ab" - integrity sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w== - dependencies: - "@types/node" "*" - "@types/debug@^4.1.6": - version "4.1.7" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82" - integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg== + version "4.1.10" + resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.10.tgz#f23148a6eb771a34c466a4fc28379d8101e84494" + integrity sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA== dependencies: "@types/ms" "*" -"@types/electron-json-storage@^4.5.0": - version "4.5.1" - resolved "https://registry.yarnpkg.com/@types/electron-json-storage/-/electron-json-storage-4.5.1.tgz#82ed27c02943ef0e93575ea79cefcfca50baf502" - integrity sha512-zVcapjNXAmPlVMUc8DkgYzb7f8CQCNT30CwNmyQ0/3WFkP3kOLAMcfIhQIDPW5AtMe16Ne4cDBjQbFcF2g4+iw== - "@types/eslint-scope@^3.7.3": - version "3.7.5" - resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.5.tgz#e28b09dbb1d9d35fdfa8a884225f00440dfc5a3e" - integrity sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA== + version "3.7.6" + resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.6.tgz#585578b368ed170e67de8aae7b93f54a1b2fdc26" + integrity sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ== dependencies: "@types/eslint" "*" "@types/estree" "*" "@types/eslint@*": - version "8.44.3" - resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.3.tgz#96614fae4875ea6328f56de38666f582d911d962" - integrity sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g== + version "8.44.6" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.6.tgz#60e564551966dd255f4c01c459f0b4fb87068603" + integrity sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw== dependencies: "@types/estree" "*" "@types/json-schema" "*" "@types/estree@*", "@types/estree@^1.0.0": - version "1.0.2" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.2.tgz#ff02bc3dc8317cd668dfec247b750ba1f1d62453" - integrity sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.4.tgz#d9748f5742171b26218516cf1828b8eafaf8a9fa" + integrity sha512-2JwWnHK9H+wUZNorf2Zr6ves96WHoWDJIftkcxPKsS7Djta6Zu519LarhRNljPXkpsZR2ZMwNCPeW7omW07BJw== -"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33": - version "4.17.37" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.37.tgz#7e4b7b59da9142138a2aaa7621f5abedce8c7320" - integrity sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg== - dependencies: - "@types/node" "*" - "@types/qs" "*" - "@types/range-parser" "*" - "@types/send" "*" - -"@types/express@*", "@types/express@^4.17.13": - version "4.17.18" - resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.18.tgz#efabf5c4495c1880df1bdffee604b143b29c4a95" - integrity sha512-Sxv8BSLLgsBYmcnGdGjjEjqET2U+AKAdCRODmMiq02FgjwuV75Ut85DRpvFjyw/Mk0vgUOliGRU0UUmuuZHByQ== - dependencies: - "@types/body-parser" "*" - "@types/express-serve-static-core" "^4.17.33" - "@types/qs" "*" - "@types/serve-static" "*" - -"@types/fs-extra@^9.0.11": +"@types/fs-extra@9.0.13", "@types/fs-extra@^9.0.11": version "9.0.13" resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45" integrity sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA== dependencies: "@types/node" "*" -"@types/glob@^7.1.1": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" - integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== - dependencies: - "@types/minimatch" "*" - "@types/node" "*" - -"@types/graceful-fs@^4.1.2": - version "4.1.6" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae" - integrity sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw== - dependencies: - "@types/node" "*" - -"@types/graceful-fs@^4.1.3": - version "4.1.7" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.7.tgz#30443a2e64fd51113bc3e2ba0914d47109695e2a" - integrity sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw== - dependencies: - "@types/node" "*" - -"@types/html-minifier-terser@^6.0.0": - version "6.1.0" - resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" - integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== - "@types/http-cache-semantics@*": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.2.tgz#abe102d06ccda1efdf0ed98c10ccf7f36a785a41" - integrity sha512-FD+nQWA2zJjh4L9+pFXqWOi0Hs1ryBCfI+985NjluQ1p8EYtoLvjLOKidXBtZ4/IcxDX4o8/E8qDS3540tNliw== + version "4.0.3" + resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.3.tgz#a3ff232bf7d5c55f38e4e45693eda2ebb545794d" + integrity sha512-V46MYLFp08Wf2mmaBhvgjStM3tPa+2GAdy/iqoX+noX1//zje2x4XmrIU0cAwyClATsTmahbtoQ2EwP7I5WSiA== -"@types/http-errors@*": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.2.tgz#a86e00bbde8950364f8e7846687259ffcd96e8c2" - integrity sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg== - -"@types/http-proxy@^1.17.8": - version "1.17.12" - resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.12.tgz#86e849e9eeae0362548803c37a0a1afc616bd96b" - integrity sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw== - dependencies: - "@types/node" "*" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - -"@types/istanbul-lib-report@*": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#412e0725ef41cde73bfa03e0e833eaff41e0fd63" - integrity sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.2.tgz#edc8e421991a3b4df875036d381fc0a5a982f549" - integrity sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/jest@27.5.2": - version "27.5.2" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.5.2.tgz#ec49d29d926500ffb9fd22b84262e862049c026c" - integrity sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA== - dependencies: - jest-matcher-utils "^27.0.0" - pretty-format "^27.0.0" - -"@types/jsdom@^21.1.1": - version "21.1.3" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-21.1.3.tgz#a88c5dc65703e1b10b2a7839c12db49662b43ff0" - integrity sha512-1zzqSP+iHJYV4lB3lZhNBa012pubABkj9yG/GuXuf6LZH1cSPIJBqFDrm5JX65HHt6VOnNYdTui/0ySerRbMgA== - dependencies: - "@types/node" "*" - "@types/tough-cookie" "*" - parse5 "^7.0.0" - -"@types/json-schema@*", "@types/json-schema@^7.0.12", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.13" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85" - integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ== +"@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": + version "7.0.14" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.14.tgz#74a97a5573980802f32c8e47b663530ab3b6b7d1" + integrity sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw== "@types/keyv@^3.1.4": version "3.1.4" @@ -2023,503 +1345,78 @@ dependencies: "@types/node" "*" -"@types/lodash-es@^4.17.6": - version "4.17.6" - resolved "https://registry.yarnpkg.com/@types/lodash-es/-/lodash-es-4.17.6.tgz#c2ed4c8320ffa6f11b43eb89e9eaeec65966a0a0" - integrity sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg== - dependencies: - "@types/lodash" "*" - -"@types/lodash@*", "@types/lodash@^4.14.182": - version "4.14.191" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.191.tgz#09511e7f7cba275acd8b419ddac8da9a6a79e2fa" - integrity sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ== - -"@types/mime@*": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.2.tgz#c1ae807f13d308ee7511a5b81c74f327028e66e8" - integrity sha512-Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ== - -"@types/mime@^1": - version "1.3.3" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.3.tgz#bbe64987e0eb05de150c305005055c7ad784a9ce" - integrity sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg== - -"@types/minimatch@*": - version "5.1.2" - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" - integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== - -"@types/minimist@^1.2.0": - version "1.2.2" - resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" - integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== - "@types/ms@*": - version "0.7.31" - resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" - integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== + version "0.7.33" + resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.33.tgz#80bf1da64b15f21fd8c1dc387c31929317d99ee9" + integrity sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ== -"@types/node@*", "@types/node@^20.2.5": - version "20.8.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.0.tgz#10ddf0119cf20028781c06d7115562934e53f745" - integrity sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ== - -"@types/node@^16.11.26": - version "16.18.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.12.tgz#e3bfea80e31523fde4292a6118f19ffa24fd6f65" - integrity sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw== - -"@types/normalize-package-data@^2.4.0": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz#9b0e3e8533fe5024ad32d6637eb9589988b6fdca" - integrity sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A== - -"@types/oauth@^0.9.2": - version "0.9.2" - resolved "https://registry.yarnpkg.com/@types/oauth/-/oauth-0.9.2.tgz#846f11d732deadff4303228d81f07a7b377df287" - integrity sha512-Nu3/abQ6yR9VlsCdX3aiGsWFkj6OJvJqDvg/36t8Gwf2mFXdBZXPDN3K+2yfeA6Lo2m1Q12F8Qil9TZ48nWhOQ== +"@types/node@*": + version "20.8.10" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.8.10.tgz#a5448b895c753ae929c26ce85cab557c6d4a365e" + integrity sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w== dependencies: - "@types/node" "*" + undici-types "~5.26.4" -"@types/parse-json@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" - integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - -"@types/parse-link-header@^2.0.1": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/parse-link-header/-/parse-link-header-2.0.1.tgz#be4b412eb36e5d6bffc481e3f6e38b7706a4c9ee" - integrity sha512-BrKNSrRTqn3UkMXvdVtr/znJch0PMBpEvEP8oBkxDx7eEGntuFLI+WpA5HGsNHK4SlqyhaMa+Ks0ViwyixQB5w== +"@types/node@^18.11.18": + version "18.18.8" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.18.8.tgz#2b285361f2357c8c8578ec86b5d097c7f464cfd6" + integrity sha512-OLGBaaK5V3VRBS1bAkMVP2/W9B+H8meUfl866OrMNQqt7wDgdpWPp5o6gmIc9pB+lIQHSq4ZL8ypeH1vPxcPaQ== + dependencies: + undici-types "~5.26.4" "@types/plist@^3.0.1": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@types/plist/-/plist-3.0.2.tgz#61b3727bba0f5c462fe333542534a0c3e19ccb01" - integrity sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw== + version "3.0.4" + resolved "https://registry.yarnpkg.com/@types/plist/-/plist-3.0.4.tgz#af0c5ffaf30d2302460adc17861021323c1410f9" + integrity sha512-pTa9xUFQFM9WJGSWHajYNljD+DbVylE1q9IweK1LBhUYJdJ28YNU8j3KZ4Q1Qw+cSl4+QLLLOVmqNjhhvVO8fA== dependencies: "@types/node" "*" xmlbuilder ">=11.0.1" -"@types/prettier@^2.0.0": - version "2.7.2" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.2.tgz#6c2324641cc4ba050a8c710b2b251b377581fbf0" - integrity sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg== +"@types/prop-types@*": + version "15.7.9" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.9.tgz#b6f785caa7ea1fe4414d9df42ee0ab67f23d8a6d" + integrity sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g== -"@types/qs@*": - version "6.9.8" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.8.tgz#f2a7de3c107b89b441e071d5472e6b726b4adf45" - integrity sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg== - -"@types/range-parser@*": - version "1.2.5" - resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.5.tgz#38bd1733ae299620771bd414837ade2e57757498" - integrity sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA== +"@types/react@^18.0.26": + version "18.2.33" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.33.tgz#055356243dc4350a9ee6c6a2c07c5cae12e38877" + integrity sha512-v+I7S+hu3PIBoVkKGpSYYpiBT1ijqEzWpzQD62/jm4K74hPpSP7FF9BnKG6+fg2+62weJYkkBWDJlZt5JO/9hg== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" "@types/responselike@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.1.tgz#1dd57e54509b3b95c7958e52709567077019d65d" - integrity sha512-TiGnitEDxj2X0j+98Eqk5lv/Cij8oHd32bU4D/Yw6AOq7vvTk0gSD2GPj0G/HkvhMoVsdlhYF4yqqlyPBTM6Sg== + version "1.0.2" + resolved "https://registry.yarnpkg.com/@types/responselike/-/responselike-1.0.2.tgz#8de1b0477fd7c12df77e50832fa51701a8414bd6" + integrity sha512-/4YQT5Kp6HxUDb4yhRkm0bJ7TbjvTddqX7PZ5hz6qV3pxSo72f/6YPRo+Mu2DU307tm9IioO69l7uAwn5XNcFA== dependencies: "@types/node" "*" -"@types/retry@0.12.0": - version "0.12.0" - resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" - integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== - -"@types/semver@^7.5.0": - version "7.5.3" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.3.tgz#9a726e116beb26c24f1ccd6850201e1246122e04" - integrity sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw== - -"@types/send@*": - version "0.17.2" - resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.2.tgz#af78a4495e3c2b79bfbdac3955fdd50e03cc98f2" - integrity sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw== - dependencies: - "@types/mime" "^1" - "@types/node" "*" - -"@types/serve-index@^1.9.1": - version "1.9.2" - resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.2.tgz#cb26e775678a8526b73a5d980a147518740aaecd" - integrity sha512-asaEIoc6J+DbBKXtO7p2shWUpKacZOoMBEGBgPG91P8xhO53ohzHWGCs4ScZo5pQMf5ukQzVT9fhX1WzpHihig== - dependencies: - "@types/express" "*" - -"@types/serve-static@*", "@types/serve-static@^1.13.10": - version "1.15.3" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.3.tgz#2cfacfd1fd4520bbc3e292cca432d5e8e2e3ee61" - integrity sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg== - dependencies: - "@types/http-errors" "*" - "@types/mime" "*" - "@types/node" "*" - -"@types/sockjs@^0.3.33": - version "0.3.34" - resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.34.tgz#43e10e549b36d2ba2589278f00f81b5d7ccda167" - integrity sha512-R+n7qBFnm/6jinlteC9DBL5dGiDGjWAvjo4viUanpnc/dG1y7uDoacXPIQ/PQEg1fI912SMHIa014ZjRpvDw4g== - dependencies: - "@types/node" "*" - -"@types/stack-utils@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" - integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== - -"@types/tough-cookie@*": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.3.tgz#3d06b6769518450871fbc40770b7586334bdfd90" - integrity sha512-THo502dA5PzG/sfQH+42Lw3fvmYkceefOspdCwpHRul8ik2Jv1K8I5OZz1AT3/rs46kwgMCe9bSBmDLYkkOMGg== +"@types/scheduler@*": + version "0.16.5" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.5.tgz#4751153abbf8d6199babb345a52e1eb4167d64af" + integrity sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw== "@types/verror@^1.10.3": - version "1.10.6" - resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.6.tgz#3e600c62d210c5826460858f84bcbb65805460bb" - integrity sha512-NNm+gdePAX1VGvPcGZCDKQZKYSiAWigKhKaz5KF94hG6f2s8de9Ow5+7AbXoeKxL8gavZfk4UquSAygOF2duEQ== - -"@types/web-bluetooth@^0.0.16": - version "0.0.16" - resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz#1d12873a8e49567371f2a75fe3e7f7edca6662d8" - integrity sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ== - -"@types/web-bluetooth@^0.0.17": - version "0.0.17" - resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.17.tgz#5c9f3c617f64a9735d7b72a7cc671e166d900c40" - integrity sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA== + version "1.10.8" + resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.8.tgz#5324a03e0885ffe6fef0192900aec317abbb2997" + integrity sha512-YhUhnxRYs/NiVUbIs3F/EzviDP/NZCEAE2Mx5DUqLdldUmphOhFCVh7Kc+7zlYEExM0P8dzfbJi0yRlNb2Bw5g== "@types/ws@^8.5.5": - version "8.5.6" - resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.6.tgz#e9ad51f0ab79b9110c50916c9fcbddc36d373065" - integrity sha512-8B5EO9jLVCy+B58PLHvLDuOD8DRVMgQzq8d55SjLCOn9kqGyqOvy27exVaTio1q1nX5zLu8/6N0n2ThSxOM6tg== + version "8.5.8" + resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.8.tgz#13efec7bd439d0bdf2af93030804a94f163b1430" + integrity sha512-flUksGIQCnJd6sZ1l5dqCEG/ksaoAg/eUwiLAGTJQcfgvZJKF++Ta4bJA6A5aPSJmsr+xlseHn4KLgVlNnvPTg== dependencies: "@types/node" "*" -"@types/yargs-parser@*": - version "21.0.1" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.1.tgz#07773d7160494d56aa882d7531aac7319ea67c3b" - integrity sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ== - -"@types/yargs@^15.0.0": - version "15.0.15" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.15.tgz#e609a2b1ef9e05d90489c2f5f45bbfb2be092158" - integrity sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg== - dependencies: - "@types/yargs-parser" "*" - -"@types/yargs@^17.0.1": - version "17.0.22" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.22.tgz#7dd37697691b5f17d020f3c63e7a45971ff71e9a" - integrity sha512-pet5WJ9U8yPVRhkwuEIp5ktAeAqRZOq4UdAyWLWzxbtpyXnzbtLdKiXAjJzi/KLmPGS9wk86lUFWZFN6sISo4g== - dependencies: - "@types/yargs-parser" "*" - -"@types/yargs@^17.0.8": - version "17.0.26" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.26.tgz#388e5002a8b284ad7b4599ba89920a6d74d8d79a" - integrity sha512-Y3vDy2X6zw/ZCumcwLpdhM5L7jmyGpmBCTYMHDLqT2IKVMYRRLdv6ZakA+wxhra6Z/3bwhNbNl9bDGXaFU+6rw== - dependencies: - "@types/yargs-parser" "*" - "@types/yauzl@^2.9.1": - version "2.10.0" - resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599" - integrity sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw== + version "2.10.2" + resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.2.tgz#dab926ef9b41a898bc943f11bca6b0bad6d4b729" + integrity sha512-Km7XAtUIduROw7QPgvcft0lIupeG8a8rdKL8RiSyKvlE7dYY31fEn41HVuQsRFDuROA8tA4K2UVL+WdfFmErBA== dependencies: "@types/node" "*" -"@typescript-eslint/eslint-plugin@^6.0.0", "@typescript-eslint/eslint-plugin@^6.7.0": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.3.tgz#d98046e9f7102d49a93d944d413c6055c47fafd7" - integrity sha512-vntq452UHNltxsaaN+L9WyuMch8bMd9CqJ3zhzTPXXidwbf5mqqKCVXEuvRZUqLJSTLeWE65lQwyXsRGnXkCTA== - dependencies: - "@eslint-community/regexpp" "^4.5.1" - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/type-utils" "6.7.3" - "@typescript-eslint/utils" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" - debug "^4.3.4" - graphemer "^1.4.0" - ignore "^5.2.4" - natural-compare "^1.4.0" - semver "^7.5.4" - ts-api-utils "^1.0.1" - -"@typescript-eslint/parser@^6.0.0", "@typescript-eslint/parser@^6.7.0": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.7.3.tgz#aaf40092a32877439e5957e18f2d6a91c82cc2fd" - integrity sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ== - dependencies: - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/typescript-estree" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.7.3.tgz#07e5709c9bdae3eaf216947433ef97b3b8b7d755" - integrity sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ== - dependencies: - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" - -"@typescript-eslint/type-utils@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.7.3.tgz#c2c165c135dda68a5e70074ade183f5ad68f3400" - integrity sha512-Fc68K0aTDrKIBvLnKTZ5Pf3MXK495YErrbHb1R6aTpfK5OdSFj0rVN7ib6Tx6ePrZ2gsjLqr0s98NG7l96KSQw== - dependencies: - "@typescript-eslint/typescript-estree" "6.7.3" - "@typescript-eslint/utils" "6.7.3" - debug "^4.3.4" - ts-api-utils "^1.0.1" - -"@typescript-eslint/types@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.7.3.tgz#0402b5628a63f24f2dc9d4a678e9a92cc50ea3e9" - integrity sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw== - -"@typescript-eslint/typescript-estree@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.3.tgz#ec5bb7ab4d3566818abaf0e4a8fa1958561b7279" - integrity sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g== - dependencies: - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/visitor-keys" "6.7.3" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.5.4" - ts-api-utils "^1.0.1" - -"@typescript-eslint/utils@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.7.3.tgz#96c655816c373135b07282d67407cb577f62e143" - integrity sha512-vzLkVder21GpWRrmSR9JxGZ5+ibIUSudXlW52qeKpzUEQhRSmyZiVDDj3crAth7+5tmN1ulvgKaCU2f/bPRCzg== - dependencies: - "@eslint-community/eslint-utils" "^4.4.0" - "@types/json-schema" "^7.0.12" - "@types/semver" "^7.5.0" - "@typescript-eslint/scope-manager" "6.7.3" - "@typescript-eslint/types" "6.7.3" - "@typescript-eslint/typescript-estree" "6.7.3" - semver "^7.5.4" - -"@typescript-eslint/visitor-keys@6.7.3": - version "6.7.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.3.tgz#83809631ca12909bd2083558d2f93f5747deebb2" - integrity sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg== - dependencies: - "@typescript-eslint/types" "6.7.3" - eslint-visitor-keys "^3.4.1" - -"@volar/language-core@1.10.1", "@volar/language-core@~1.10.0": - version "1.10.1" - resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.10.1.tgz#76789c5b0c214eeff8add29cbff0333d89b6fc4a" - integrity sha512-JnsM1mIPdfGPxmoOcK1c7HYAsL6YOv0TCJ4aW3AXPZN/Jb4R77epDyMZIVudSGjWMbvv/JfUa+rQ+dGKTmgwBA== - dependencies: - "@volar/source-map" "1.10.1" - -"@volar/source-map@1.10.1", "@volar/source-map@~1.10.0": - version "1.10.1" - resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.10.1.tgz#b806845782cc615f2beba94624ff34a700f302f5" - integrity sha512-3/S6KQbqa7pGC8CxPrg69qHLpOvkiPHGJtWPkI/1AXCsktkJ6gIk/5z4hyuMp8Anvs6eS/Kvp/GZa3ut3votKA== - dependencies: - muggle-string "^0.3.1" - -"@volar/typescript@~1.10.0": - version "1.10.1" - resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.10.1.tgz#b20341c1cc5785b4de0669ea645e1619c97a4764" - integrity sha512-+iiO9yUSRHIYjlteT+QcdRq8b44qH19/eiUZtjNtuh6D9ailYM7DVR0zO2sEgJlvCaunw/CF9Ov2KooQBpR4VQ== - dependencies: - "@volar/language-core" "1.10.1" - -"@vue/compiler-core@3.3.4": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz#7fbf591c1c19e1acd28ffd284526e98b4f581128" - integrity sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g== - dependencies: - "@babel/parser" "^7.21.3" - "@vue/shared" "3.3.4" - estree-walker "^2.0.2" - source-map-js "^1.0.2" - -"@vue/compiler-dom@3.3.4", "@vue/compiler-dom@^3.3.0": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz#f56e09b5f4d7dc350f981784de9713d823341151" - integrity sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w== - dependencies: - "@vue/compiler-core" "3.3.4" - "@vue/shared" "3.3.4" - -"@vue/compiler-sfc@3.3.4", "@vue/compiler-sfc@^3.3.4": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz#b19d942c71938893535b46226d602720593001df" - integrity sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ== - dependencies: - "@babel/parser" "^7.20.15" - "@vue/compiler-core" "3.3.4" - "@vue/compiler-dom" "3.3.4" - "@vue/compiler-ssr" "3.3.4" - "@vue/reactivity-transform" "3.3.4" - "@vue/shared" "3.3.4" - estree-walker "^2.0.2" - magic-string "^0.30.0" - postcss "^8.1.10" - source-map-js "^1.0.2" - -"@vue/compiler-ssr@3.3.4": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz#9d1379abffa4f2b0cd844174ceec4a9721138777" - integrity sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ== - dependencies: - "@vue/compiler-dom" "3.3.4" - "@vue/shared" "3.3.4" - -"@vue/devtools-api@^6.0.0-beta.11", "@vue/devtools-api@^6.5.0": - version "6.5.0" - resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz#98b99425edee70b4c992692628fa1ea2c1e57d07" - integrity sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q== - -"@vue/eslint-config-prettier@^8.0.0": - version "8.0.0" - resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-8.0.0.tgz#de5cb77ed483b43683d17a788808a0fa4e7bd07e" - integrity sha512-55dPqtC4PM/yBjhAr+yEw6+7KzzdkBuLmnhBrDfp4I48+wy+Giqqj9yUr5T2uD/BkBROjjmqnLZmXRdOx/VtQg== - dependencies: - eslint-config-prettier "^8.8.0" - eslint-plugin-prettier "^5.0.0" - -"@vue/eslint-config-typescript@^12.0.0": - version "12.0.0" - resolved "https://registry.yarnpkg.com/@vue/eslint-config-typescript/-/eslint-config-typescript-12.0.0.tgz#0ce22d97af5e4155f3f2e7b21a48cfde8a6f3365" - integrity sha512-StxLFet2Qe97T8+7L8pGlhYBBr8Eg05LPuTDVopQV6il+SK6qqom59BA/rcFipUef2jD8P2X44Vd8tMFytfvlg== - dependencies: - "@typescript-eslint/eslint-plugin" "^6.7.0" - "@typescript-eslint/parser" "^6.7.0" - vue-eslint-parser "^9.3.1" - -"@vue/language-core@1.8.15": - version "1.8.15" - resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-1.8.15.tgz#e84536f529f706c072037d495bfd610d4661fbae" - integrity sha512-zche5Aw8kkvp3YaghuLiOZyVIpoWHjSQ0EfjxGSsqHOPMamdCoa9x3HtbenpR38UMUoKJ88wiWuiOrV3B/Yq+A== - dependencies: - "@volar/language-core" "~1.10.0" - "@volar/source-map" "~1.10.0" - "@vue/compiler-dom" "^3.3.0" - "@vue/reactivity" "^3.3.0" - "@vue/shared" "^3.3.0" - minimatch "^9.0.0" - muggle-string "^0.3.1" - vue-template-compiler "^2.7.14" - -"@vue/reactivity-transform@3.3.4": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz#52908476e34d6a65c6c21cd2722d41ed8ae51929" - integrity sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw== - dependencies: - "@babel/parser" "^7.20.15" - "@vue/compiler-core" "3.3.4" - "@vue/shared" "3.3.4" - estree-walker "^2.0.2" - magic-string "^0.30.0" - -"@vue/reactivity@3.3.4", "@vue/reactivity@^3.3.0": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.3.4.tgz#a27a29c6cd17faba5a0e99fbb86ee951653e2253" - integrity sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ== - dependencies: - "@vue/shared" "3.3.4" - -"@vue/runtime-core@3.3.4": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz#4bb33872bbb583721b340f3088888394195967d1" - integrity sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA== - dependencies: - "@vue/reactivity" "3.3.4" - "@vue/shared" "3.3.4" - -"@vue/runtime-dom@3.3.4": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz#992f2579d0ed6ce961f47bbe9bfe4b6791251566" - integrity sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ== - dependencies: - "@vue/runtime-core" "3.3.4" - "@vue/shared" "3.3.4" - csstype "^3.1.1" - -"@vue/server-renderer@3.3.4": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz#ea46594b795d1536f29bc592dd0f6655f7ea4c4c" - integrity sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ== - dependencies: - "@vue/compiler-ssr" "3.3.4" - "@vue/shared" "3.3.4" - -"@vue/shared@3.3.4", "@vue/shared@^3.3.0": - version "3.3.4" - resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.4.tgz#06e83c5027f464eef861c329be81454bc8b70780" - integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ== - -"@vue/typescript@1.8.15": - version "1.8.15" - resolved "https://registry.yarnpkg.com/@vue/typescript/-/typescript-1.8.15.tgz#ee8f7a99cf93597fa5503dc27125ddad3bcd32a7" - integrity sha512-qWyanQKXOsK84S8rP7QBrqsvUdQ0nZABZmTjXMpb3ox4Bp5IbkscREA3OPUrkgl64mAxwwCzIWcOc3BPTCPjQw== - dependencies: - "@volar/typescript" "~1.10.0" - "@vue/language-core" "1.8.15" - -"@vueuse/core@10.4.1": - version "10.4.1" - resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-10.4.1.tgz#fc2c8a83a571c207aaedbe393b22daa6d35123f2" - integrity sha512-DkHIfMIoSIBjMgRRvdIvxsyboRZQmImofLyOHADqiVbQVilP8VVHDhBX2ZqoItOgu7dWa8oXiNnScOdPLhdEXg== - dependencies: - "@types/web-bluetooth" "^0.0.17" - "@vueuse/metadata" "10.4.1" - "@vueuse/shared" "10.4.1" - vue-demi ">=0.14.5" - -"@vueuse/core@^9.1.0": - version "9.13.0" - resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-9.13.0.tgz#2f69e66d1905c1e4eebc249a01759cf88ea00cf4" - integrity sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw== - dependencies: - "@types/web-bluetooth" "^0.0.16" - "@vueuse/metadata" "9.13.0" - "@vueuse/shared" "9.13.0" - vue-demi "*" - -"@vueuse/math@^10.1.2": - version "10.4.1" - resolved "https://registry.yarnpkg.com/@vueuse/math/-/math-10.4.1.tgz#94d23a95355eafa87baf5bc690ee03457c356ebc" - integrity sha512-8XAssBPg6jQ9Z/oD4Yq+gkSjr/r2Sm7pyloWf7i8RQNXiXvf39N0rNZBufFXezKeDa2JmsuMR8JsqlIW7AnG/w== - dependencies: - "@vueuse/shared" "10.4.1" - vue-demi ">=0.14.5" - -"@vueuse/metadata@10.4.1": - version "10.4.1" - resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-10.4.1.tgz#9d2ff5c67abf17a8c07865c2413fbd0e92f7b7d7" - integrity sha512-2Sc8X+iVzeuMGHr6O2j4gv/zxvQGGOYETYXEc41h0iZXIRnRbJZGmY/QP8dvzqUelf8vg0p/yEA5VpCEu+WpZg== - -"@vueuse/metadata@9.13.0": - version "9.13.0" - resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-9.13.0.tgz#bc25a6cdad1b1a93c36ce30191124da6520539ff" - integrity sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ== - -"@vueuse/shared@10.4.1": - version "10.4.1" - resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-10.4.1.tgz#d5ce33033c156efb60664b5d6034d6cd4e2f530c" - integrity sha512-vz5hbAM4qA0lDKmcr2y3pPdU+2EVw/yzfRsBdu+6+USGa4PxqSQRYIUC9/NcT06y+ZgaTsyURw2I9qOFaaXHAg== - dependencies: - vue-demi ">=0.14.5" - -"@vueuse/shared@9.13.0": - version "9.13.0" - resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-9.13.0.tgz#089ff4cc4e2e7a4015e57a8f32e4b39d096353b9" - integrity sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw== - dependencies: - vue-demi "*" - "@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5": version "1.11.6" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24" @@ -2641,20 +1538,10 @@ "@webassemblyjs/ast" "1.11.6" "@xtuc/long" "4.2.2" -"@webpack-cli/configtest@^2.1.1": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.1.1.tgz#3b2f852e91dac6e3b85fb2a314fb8bef46d94646" - integrity sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw== - -"@webpack-cli/info@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.2.tgz#cc3fbf22efeb88ff62310cf885c5b09f44ae0fdd" - integrity sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A== - -"@webpack-cli/serve@^2.0.5": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e" - integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ== +"@xmldom/xmldom@^0.8.8": + version "0.8.10" + resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99" + integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw== "@xtuc/ieee754@^1.2.0": version "1.2.0" @@ -2666,103 +1553,23 @@ resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== -abab@^2.0.3, abab@^2.0.5, abab@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" - integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== - -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - -about-window@^1.15.2: - version "1.15.2" - resolved "https://registry.yarnpkg.com/about-window/-/about-window-1.15.2.tgz#0397216ce0cb6e8a4fa9ba12941e56d481d712b5" - integrity sha512-31mDAnLUfKm4uShfMzeEoS6a3nEto2tUt4zZn7qyAKedaTV4p0dGiW1n+YG8vtRh78mZiewghWJmoxDY+lHyYg== - -accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: - version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" - integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== - dependencies: - mime-types "~2.1.34" - negotiator "0.6.3" - -accessibility-developer-tools@^2.11.0: - version "2.12.0" - resolved "https://registry.yarnpkg.com/accessibility-developer-tools/-/accessibility-developer-tools-2.12.0.tgz#3da0cce9d6ec6373964b84f35db7cfc3df7ab514" - integrity sha512-ltexLD/Bzwr1tDskQQFi88L4akbn8zFLIFIc00vFkH3G4hNEHruuJVcJuJTeUXLxms9dSon+cHSCmfFThnowFQ== - -acorn-globals@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" - integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== - dependencies: - acorn "^7.1.1" - acorn-walk "^7.1.1" - acorn-import-assertions@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== -acorn-jsx@^5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== +acorn@^8.7.1, acorn@^8.8.2: + version "8.11.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b" + integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== -acorn-walk@^7.1.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" - integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== - -acorn@^7.1.1: - version "7.4.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" - integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== - -acorn@^8.2.4: - version "8.8.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== - -acorn@^8.7.1, acorn@^8.8.2, acorn@^8.9.0: - version "8.10.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5" - integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw== - -agent-base@6, agent-base@^6.0.2: +agent-base@6: version "6.0.2" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== dependencies: debug "4" -agent-base@^7.0.2: - version "7.1.0" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.0.tgz#536802b76bc0b34aa50195eb2442276d613e3434" - integrity sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg== - dependencies: - debug "^4.3.4" - -agentkeepalive@^4.1.3, agentkeepalive@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz#a7975cbb9f83b367f06c90cc51ff28fe7d499717" - integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA== - dependencies: - debug "^4.1.0" - depd "^1.1.2" - humanize-ms "^1.2.1" - -aggregate-error@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" - integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== - dependencies: - clean-stack "^2.0.0" - indent-string "^4.0.0" - ajv-formats@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" @@ -2782,7 +1589,7 @@ ajv-keywords@^5.1.0: dependencies: fast-deep-equal "^3.1.3" -ajv@^6.10.0, ajv@^6.12.0, ajv@^6.12.4, ajv@^6.12.5: +ajv@^6.10.0, ajv@^6.12.0, ajv@^6.12.5: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -2792,7 +1599,7 @@ ajv@^6.10.0, ajv@^6.12.0, ajv@^6.12.4, ajv@^6.12.5: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ajv@^8.0.0, ajv@^8.0.1, ajv@^8.9.0: +ajv@^8.0.0, ajv@^8.6.3, ajv@^8.9.0: version "8.12.0" resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1" integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA== @@ -2802,74 +1609,11 @@ ajv@^8.0.0, ajv@^8.0.1, ajv@^8.9.0: require-from-string "^2.0.2" uri-js "^4.2.2" -align-text@^0.1.1, align-text@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" - integrity sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg== - dependencies: - kind-of "^3.0.2" - longest "^1.0.1" - repeat-string "^1.5.2" - -all-object-keys@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/all-object-keys/-/all-object-keys-2.2.0.tgz#4e0cd06357eefc006741f6bb8a47dde500dbe01c" - integrity sha512-x8eEZ/ZhC6OjCKanec3y7DpCj/Kymife0yVkq56XDWUwZcZotzC0ejgO5/dbgRiBVMRb09dY+JP9dySCHysl9A== - dependencies: - try-catch "^3.0.0" - -amdefine@>=0.0.4: - version "1.0.1" - resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" - integrity sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg== - -animate.css@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/animate.css/-/animate.css-4.1.1.tgz#614ec5a81131d7e4dc362a58143f7406abd68075" - integrity sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ== - -ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== - -ansi-escapes@^4.2.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-html-community@0.0.8, ansi-html-community@^0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" - integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw== - -ansi-regex@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" - integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== - -ansi-regex@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" - integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== - -ansi-regex@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" - integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== - -ansi-regex@^5.0.0, ansi-regex@^5.0.1: +ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== -ansi-styles@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" - integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== - ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -2884,25 +1628,12 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== -any-observable@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" - integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== - -anymatch@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" - integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== - dependencies: - micromatch "^3.1.4" - normalize-path "^2.1.1" - -anymatch@^3.0.3, anymatch@~3.1.2: +anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== @@ -2915,156 +1646,62 @@ app-builder-bin@4.0.0: resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-4.0.0.tgz#1df8e654bd1395e4a319d82545c98667d7eed2f0" integrity sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA== -app-builder-lib@23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-23.6.0.tgz#03cade02838c077db99d86212d61c5fc1d6da1a8" - integrity sha512-dQYDuqm/rmy8GSCE6Xl/3ShJg6Ab4bZJMT8KaTKGzT436gl1DN4REP3FCWfXoh75qGTJ+u+WsdnnpO9Jl8nyMA== +app-builder-lib@24.6.4: + version "24.6.4" + resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-24.6.4.tgz#5bf77dd89d3ee557bc615b9ddfaf383f3e51577b" + integrity sha512-m9931WXb83teb32N0rKg+ulbn6+Hl8NV5SUpVDOVz9MWOXfhV6AQtTdftf51zJJvCQnQugGtSqoLvgw6mdF/Rg== dependencies: "7zip-bin" "~5.1.1" "@develar/schema-utils" "~2.6.5" - "@electron/universal" "1.2.1" + "@electron/notarize" "2.1.0" + "@electron/osx-sign" "1.0.5" + "@electron/universal" "1.4.1" "@malept/flatpak-bundler" "^0.4.0" + "@types/fs-extra" "9.0.13" async-exit-hook "^2.0.1" bluebird-lst "^1.0.9" - builder-util "23.6.0" - builder-util-runtime "9.1.1" + builder-util "24.5.0" + builder-util-runtime "9.2.1" chromium-pickle-js "^0.2.0" debug "^4.3.4" - ejs "^3.1.7" - electron-osx-sign "^0.6.0" - electron-publish "23.6.0" + ejs "^3.1.8" + electron-publish "24.5.0" form-data "^4.0.0" fs-extra "^10.1.0" hosted-git-info "^4.1.0" is-ci "^3.0.0" - isbinaryfile "^4.0.10" + isbinaryfile "^5.0.0" js-yaml "^4.1.0" lazy-val "^1.0.5" - minimatch "^3.1.2" - read-config-file "6.2.0" + minimatch "^5.1.1" + read-config-file "6.3.2" sanitize-filename "^1.6.3" - semver "^7.3.7" - tar "^6.1.11" + semver "^7.3.8" + tar "^6.1.12" temp-file "^3.4.0" -applescript@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/applescript/-/applescript-1.0.0.tgz#bb87af568cad034a4e48c4bdaf6067a3a2701317" - integrity sha512-yvtNHdWvtbYEiIazXAdp/NY+BBb65/DAseqlNiJQjOx9DynuzOYDbVLBJvuc0ve0VL9x6B3OHF6eH52y9hCBtQ== - -"aproba@^1.0.3 || ^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" - integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== - -are-we-there-yet@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd" - integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== - dependencies: - delegates "^1.0.0" - readable-stream "^3.6.0" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" +arg@5.0.2, arg@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== -arr-diff@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" - integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== - -arr-flatten@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" - integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== - -arr-union@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" - integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== - -array-flatten@1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" - integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== - -array-flatten@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" - integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array-unique@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" - integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== - -arrify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" - integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== - -asar@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/asar/-/asar-3.2.0.tgz#e6edb5edd6f627ebef04db62f771c61bea9c1221" - integrity sha512-COdw2ZQvKdFGFxXwX3oYh2/sOsJWJegrdJCGxnN4MZ7IULgRBp9P6665aqj9z1v9VwP4oP1hRBojRDQ//IGgAg== +aria-hidden@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.3.tgz#14aeb7fb692bbb72d69bebfa47279c1fd725e954" + integrity sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ== dependencies: - chromium-pickle-js "^0.2.0" - commander "^5.0.0" - glob "^7.1.6" - minimatch "^3.0.4" - optionalDependencies: - "@types/glob" "^7.1.1" - -asn1.js@^5.2.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" - integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== - dependencies: - bn.js "^4.0.0" - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - safer-buffer "^2.1.0" + tslib "^2.0.0" assert-plus@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== -assert@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/assert/-/assert-2.1.0.tgz#6d92a238d05dc02e7427c881fb8be81c8448b2dd" - integrity sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw== - dependencies: - call-bind "^1.0.2" - is-nan "^1.3.2" - object-is "^1.1.5" - object.assign "^4.1.4" - util "^0.12.5" - -assign-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" - integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== - -ast-types@0.9.6: - version "0.9.6" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" - integrity sha512-qEdtR2UH78yyHX/AUNfXmJTlM48XoFZKBdwi1nzkI1mJL21cmbu0cvjxjpkXJ5NENMq42H+hNs8VLJcqXLerBQ== - astral-regex@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" @@ -3075,33 +1712,11 @@ async-exit-hook@^2.0.1: resolved "https://registry.yarnpkg.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz#8bd8b024b0ec9b1c01cccb9af9db29bd717dfaf3" integrity sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw== -async-foreach@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" - integrity sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA== - -async-validator@^4.2.5: - version "4.2.5" - resolved "https://registry.yarnpkg.com/async-validator/-/async-validator-4.2.5.tgz#c96ea3332a521699d0afaaceed510a54656c6339" - integrity sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg== - -async@^2.0.0: - version "2.6.4" - resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" - integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== - dependencies: - lodash "^4.17.14" - async@^3.2.3: version "3.2.4" resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c" integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ== -async@~0.2.6: - version "0.2.10" - resolved "https://registry.yarnpkg.com/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1" - integrity sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ== - asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" @@ -3112,26 +1727,22 @@ at-least-node@^1.0.0: resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== -atob@^2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" - integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== +atomically@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/atomically/-/atomically-1.7.0.tgz#c07a0458432ea6dbc9a3506fffa424b48bccaafe" + integrity sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w== -auto-launch@^5.0.5: - version "5.0.6" - resolved "https://registry.yarnpkg.com/auto-launch/-/auto-launch-5.0.6.tgz#ccc238ddc07b2fa84e96a1bc2fd11b581a20cb2d" - integrity sha512-OgxiAm4q9EBf9EeXdPBiVNENaWE3jUZofwrhAkWjHDYGezu1k3FRZHU8V2FBxGuSJOHzKmTJEd0G7L7/0xDGFA== +autoprefixer@^10.4.16: + version "10.4.16" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.16.tgz#fad1411024d8670880bdece3970aa72e3572feb8" + integrity sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ== dependencies: - applescript "^1.0.0" - mkdirp "^0.5.1" - path-is-absolute "^1.0.0" - untildify "^3.0.2" - winreg "1.2.4" - -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + browserslist "^4.21.10" + caniuse-lite "^1.0.30001538" + fraction.js "^4.3.6" + normalize-range "^0.1.2" + picocolors "^1.0.0" + postcss-value-parser "^4.2.0" axios@1.5.1: version "1.5.1" @@ -3142,34 +1753,7 @@ axios@1.5.1: form-data "^4.0.0" proxy-from-env "^1.1.0" -babel-jest@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-26.6.3.tgz#d87d25cb0037577a0c89f82e5755c5d293c01056" - integrity sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA== - dependencies: - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/babel__core" "^7.1.7" - babel-plugin-istanbul "^6.0.0" - babel-preset-jest "^26.6.2" - chalk "^4.0.0" - graceful-fs "^4.2.4" - slash "^3.0.0" - -babel-jest@^29.5.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" - integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== - dependencies: - "@jest/transform" "^29.7.0" - "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^29.6.3" - chalk "^4.0.0" - graceful-fs "^4.2.9" - slash "^3.0.0" - -babel-loader@^9.1.2: +babel-loader@9.1.3: version "9.1.3" resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-9.1.3.tgz#3d0e01b4e69760cc694ee306fe16d358aa1c6f9a" integrity sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw== @@ -3177,184 +1761,45 @@ babel-loader@^9.1.2: find-cache-dir "^4.0.0" schema-utils "^4.0.0" -babel-plugin-istanbul@^6.0.0, babel-plugin-istanbul@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" - integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^5.0.4" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz#8185bd030348d254c6d7dd974355e6a28b21e62d" - integrity sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.0.0" - "@types/babel__traverse" "^7.0.6" - -babel-plugin-jest-hoist@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" - integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.1.14" - "@types/babel__traverse" "^7.0.6" - -babel-plugin-polyfill-corejs2@^0.4.5: - version "0.4.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" - integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== +babel-plugin-polyfill-corejs2@^0.4.6: + version "0.4.6" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz#b2df0251d8e99f229a8e60fc4efa9a68b41c8313" + integrity sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.4.2" + "@babel/helper-define-polyfill-provider" "^0.4.3" semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.8.3: - version "0.8.4" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.4.tgz#1fac2b1dcef6274e72b3c72977ed8325cb330591" - integrity sha512-9l//BZZsPR+5XjyJMPtZSK4jv0BsTO1zDac2GC6ygx9WLGlcsnRd1Co0B2zT5fF5Ic6BZy+9m3HNZ3QcOeDKfg== +babel-plugin-polyfill-corejs3@^0.8.5: + version "0.8.6" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz#25c2d20002da91fe328ff89095c85a391d6856cf" + integrity sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - core-js-compat "^3.32.2" + "@babel/helper-define-polyfill-provider" "^0.4.3" + core-js-compat "^3.33.1" -babel-plugin-polyfill-regenerator@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" - integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== +babel-plugin-polyfill-regenerator@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz#d4c49e4b44614607c13fb769bcd85c72bb26a4a5" + integrity sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.2" - -babel-polyfill@^6.23.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" - integrity sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ== - dependencies: - babel-runtime "^6.26.0" - core-js "^2.5.0" - regenerator-runtime "^0.10.5" - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - -babel-preset-jest@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz#747872b1171df032252426586881d62d31798fee" - integrity sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ== - dependencies: - babel-plugin-jest-hoist "^26.6.2" - babel-preset-current-node-syntax "^1.0.0" - -babel-preset-jest@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" - integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== - dependencies: - babel-plugin-jest-hoist "^29.6.3" - babel-preset-current-node-syntax "^1.0.0" - -babel-runtime@^6.26.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" - integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== - dependencies: - core-js "^2.4.0" - regenerator-runtime "^0.11.0" + "@babel/helper-define-polyfill-provider" "^0.4.3" balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== -balanced-match@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-2.0.0.tgz#dc70f920d78db8b858535795867bf48f820633d9" - integrity sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA== - base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== -base@^0.11.1: - version "0.11.2" - resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" - integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== - dependencies: - cache-base "^1.0.1" - class-utils "^0.3.5" - component-emitter "^1.2.1" - define-property "^1.0.0" - isobject "^3.0.1" - mixin-deep "^1.2.0" - pascalcase "^0.1.1" - -batch@0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" - integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== - -better-sqlite3@8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-8.2.0.tgz#4ef6185b88992723de7e00cfa67585ac59f320bd" - integrity sha512-8eTzxGk9535SB3oSNu0tQ6I4ZffjVCBUjKHN9QeeIFtphBX0sEd0NxAuglBNR9TO5ThnxBB7GqzfcYo9kjadJQ== - dependencies: - bindings "^1.5.0" - prebuild-install "^7.1.0" - -big-integer@^1.6.44: - version "1.6.51" - resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" - integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== - -big.js@^5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" - integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== - binary-extensions@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== -bindings@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" - integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== - dependencies: - file-uri-to-path "1.0.0" - -bl@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - bluebird-lst@^1.0.9: version "1.0.9" resolved "https://registry.yarnpkg.com/bluebird-lst/-/bluebird-lst-1.0.9.tgz#a64a0e4365658b9ab5fe875eb9dfb694189bb41c" @@ -3362,66 +1807,16 @@ bluebird-lst@^1.0.9: dependencies: bluebird "^3.5.5" -bluebird@^3.5.0, bluebird@^3.5.5: +bluebird@^3.5.5: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== -bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: - version "4.12.0" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== - -bn.js@^5.0.0, bn.js@^5.1.1: - version "5.2.1" - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" - integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== - -body-parser@1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" - integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== - dependencies: - bytes "3.1.2" - content-type "~1.0.4" - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - http-errors "2.0.0" - iconv-lite "0.4.24" - on-finished "2.4.1" - qs "6.11.0" - raw-body "2.5.1" - type-is "~1.6.18" - unpipe "1.0.0" - -bonjour-service@^1.0.11: - version "1.1.1" - resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135" - integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg== - dependencies: - array-flatten "^2.1.2" - dns-equal "^1.0.0" - fast-deep-equal "^3.1.3" - multicast-dns "^7.2.5" - -boolbase@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== - boolean@^3.0.1: version "3.2.0" resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== -bplist-parser@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" - integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== - dependencies: - big-integer "^1.6.44" - brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -3437,22 +1832,6 @@ brace-expansion@^2.0.1: dependencies: balanced-match "^1.0.0" -braces@^2.3.1: - version "2.3.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" - integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== - dependencies: - arr-flatten "^1.1.0" - array-unique "^0.3.2" - extend-shallow "^2.0.1" - fill-range "^4.0.0" - isobject "^3.0.1" - repeat-element "^1.1.2" - snapdragon "^0.8.1" - snapdragon-node "^2.0.1" - split-string "^3.0.2" - to-regex "^3.0.1" - braces@^3.0.2, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" @@ -3460,78 +1839,7 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" -brorand@^1.0.1, brorand@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" - integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== - -browser-process-hrtime@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" - integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== - -browserify-aes@^1.0.0, browserify-aes@^1.0.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" - integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== - dependencies: - buffer-xor "^1.0.3" - cipher-base "^1.0.0" - create-hash "^1.1.0" - evp_bytestokey "^1.0.3" - inherits "^2.0.1" - safe-buffer "^5.0.1" - -browserify-cipher@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" - integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== - dependencies: - browserify-aes "^1.0.4" - browserify-des "^1.0.0" - evp_bytestokey "^1.0.0" - -browserify-des@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" - integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== - dependencies: - cipher-base "^1.0.1" - des.js "^1.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: - version "4.1.0" - resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" - integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== - dependencies: - bn.js "^5.0.0" - randombytes "^2.0.1" - -browserify-sign@^4.0.0: - version "4.2.1" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" - integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== - dependencies: - bn.js "^5.1.1" - browserify-rsa "^4.0.1" - create-hash "^1.2.0" - create-hmac "^1.1.7" - elliptic "^6.5.3" - inherits "^2.0.4" - parse-asn1 "^5.1.5" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -browserify-zlib@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" - integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== - dependencies: - pako "~1.0.5" - -browserslist@^4.14.5, browserslist@^4.21.10, browserslist@^4.21.9: +browserslist@^4.14.5, browserslist@^4.21.10, browserslist@^4.21.9, browserslist@^4.22.1: version "4.22.1" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619" integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ== @@ -3541,69 +1849,22 @@ browserslist@^4.14.5, browserslist@^4.21.10, browserslist@^4.21.9: node-releases "^2.0.13" update-browserslist-db "^1.0.13" -browserslist@^4.21.3: - version "4.21.5" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" - integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== - dependencies: - caniuse-lite "^1.0.30001449" - electron-to-chromium "^1.4.284" - node-releases "^2.0.8" - update-browserslist-db "^1.0.10" - -bs-logger@0.x: - version "0.2.6" - resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== - dependencies: - fast-json-stable-stringify "2.x" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-alloc-unsafe@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" - integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== - -buffer-alloc@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" - integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== - dependencies: - buffer-alloc-unsafe "^1.1.0" - buffer-fill "^1.0.0" - buffer-crc32@~0.2.3: version "0.2.13" resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== -buffer-equal@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" - integrity sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ== +buffer-equal@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.1.tgz#2f7651be5b1b3f057fcd6e7ee16cf34767077d90" + integrity sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg== -buffer-fill@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" - integrity sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ== - -buffer-from@1.x, buffer-from@^1.0.0: +buffer-from@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== -buffer-xor@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" - integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== - -buffer@^5.1.0, buffer@^5.5.0: +buffer@^5.1.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== @@ -3611,137 +1872,36 @@ buffer@^5.1.0, buffer@^5.5.0: base64-js "^1.3.1" ieee754 "^1.1.13" -buffer@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" - integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.2.1" - -bufferutil@^4.0.7: - version "4.0.7" - resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.7.tgz#60c0d19ba2c992dd8273d3f73772ffc894c153ad" - integrity sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw== - dependencies: - node-gyp-build "^4.3.0" - -builder-util-runtime@9.1.1: - version "9.1.1" - resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.1.1.tgz#2da7b34e78a64ad14ccd070d6eed4662d893bd60" - integrity sha512-azRhYLEoDvRDR8Dhis4JatELC/jUvYjm4cVSj7n9dauGTOM2eeNn9KS0z6YA6oDsjI1xphjNbY6PZZeHPzzqaw== +builder-util-runtime@9.2.1: + version "9.2.1" + resolved "https://registry.yarnpkg.com/builder-util-runtime/-/builder-util-runtime-9.2.1.tgz#3184dcdf7ed6c47afb8df733813224ced4f624fd" + integrity sha512-2rLv/uQD2x+dJ0J3xtsmI12AlRyk7p45TEbE/6o/fbb633e/S3pPgm+ct+JHsoY7r39dKHnGEFk/AASRFdnXmA== dependencies: debug "^4.3.4" sax "^1.2.4" -builder-util@23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-23.6.0.tgz#1880ec6da7da3fd6fa19b8bd71df7f39e8d17dd9" - integrity sha512-QiQHweYsh8o+U/KNCZFSvISRnvRctb8m/2rB2I1JdByzvNKxPeFLlHFRPQRXab6aYeXc18j9LpsDLJ3sGQmWTQ== +builder-util@24.5.0: + version "24.5.0" + resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-24.5.0.tgz#8683c9a7a1c5c9f9a4c4d2789ecca0e47dddd3f9" + integrity sha512-STnBmZN/M5vGcv01u/K8l+H+kplTaq4PAIn3yeuufUKSpcdro0DhJWxPI81k5XcNfC//bjM3+n9nr8F9uV4uAQ== dependencies: "7zip-bin" "~5.1.1" "@types/debug" "^4.1.6" - "@types/fs-extra" "^9.0.11" app-builder-bin "4.0.0" bluebird-lst "^1.0.9" - builder-util-runtime "9.1.1" - chalk "^4.1.1" + builder-util-runtime "9.2.1" + chalk "^4.1.2" cross-spawn "^7.0.3" debug "^4.3.4" - fs-extra "^10.0.0" + fs-extra "^10.1.0" http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" + https-proxy-agent "^5.0.1" is-ci "^3.0.0" js-yaml "^4.1.0" source-map-support "^0.5.19" stat-mode "^1.0.0" temp-file "^3.4.0" -builtin-status-codes@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" - integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== - -bundle-name@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-3.0.0.tgz#ba59bcc9ac785fb67ccdbf104a2bf60c099f0e1a" - integrity sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw== - dependencies: - run-applescript "^5.0.0" - -bytes@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" - integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== - -bytes@3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" - integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== - -cacache@^15.2.0: - version "15.3.0" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb" - integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ== - dependencies: - "@npmcli/fs" "^1.0.0" - "@npmcli/move-file" "^1.0.1" - chownr "^2.0.0" - fs-minipass "^2.0.0" - glob "^7.1.4" - infer-owner "^1.0.4" - lru-cache "^6.0.0" - minipass "^3.1.1" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.2" - mkdirp "^1.0.3" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^8.0.1" - tar "^6.0.2" - unique-filename "^1.1.1" - -cacache@^16.1.0: - version "16.1.3" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e" - integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== - dependencies: - "@npmcli/fs" "^2.1.0" - "@npmcli/move-file" "^2.0.0" - chownr "^2.0.0" - fs-minipass "^2.1.0" - glob "^8.0.1" - infer-owner "^1.0.4" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - mkdirp "^1.0.4" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^9.0.0" - tar "^6.1.11" - unique-filename "^2.0.0" - -cache-base@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" - integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== - dependencies: - collection-visit "^1.0.0" - component-emitter "^1.2.1" - get-value "^2.0.6" - has-value "^1.0.0" - isobject "^3.0.1" - set-value "^2.0.0" - to-object-path "^0.3.0" - union-value "^1.0.0" - unset-value "^1.0.0" - cacheable-lookup@^5.0.3: version "5.0.4" resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz#5a6b865b2c44357be3d5ebc2a467b032719a7005" @@ -3760,108 +1920,17 @@ cacheable-request@^7.0.2: normalize-url "^6.0.1" responselike "^2.0.0" -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" +camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001541: + version "1.0.30001559" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001559.tgz#95a982440d3d314c471db68d02664fb7536c5a30" + integrity sha512-cPiMKZgqgkg5LY3/ntGeLFUpi6tzddBNS58A4tnTgQw1zON7u2sZMU7SzOeVH4tj20++9ggL+V6FDOFMTaFFYA== -camel-case@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" - integrity sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w== - dependencies: - no-case "^2.2.0" - upper-case "^1.1.1" - -camel-case@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" - integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== - dependencies: - pascal-case "^3.1.2" - tslib "^2.0.3" - -camelcase-keys@^6.2.2: - version "6.2.2" - resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" - integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg== - dependencies: - camelcase "^5.3.1" - map-obj "^4.0.0" - quick-lru "^4.0.1" - -camelcase@^1.0.2: - version "1.2.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" - integrity sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g== - -camelcase@^5.0.0, camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.0.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001541: - version "1.0.30001541" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001541.tgz#b1aef0fadd87fb72db4dcb55d220eae17b81cdb1" - integrity sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw== - -capture-exit@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" - integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== - dependencies: - rsvp "^4.8.4" - -center-align@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" - integrity sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ== - dependencies: - align-text "^0.1.3" - lazy-cache "^1.0.3" - -cfonts@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/cfonts/-/cfonts-3.2.0.tgz#3c72b79679e48d19c620614d1134326a1f22cdec" - integrity sha512-CFGxRY6aBuOgK85bceCpmMMhuyO6IwcAyyeapB//DtRzm7NbAEsDuuZzBoQxVonz+C2BmZ3swqB/YgcmW+rh3A== - dependencies: - supports-color "^8" - window-size "^1.1.1" - -chalk@^1.0.0, chalk@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" - integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== - dependencies: - ansi-styles "^2.2.1" - escape-string-regexp "^1.0.2" - has-ansi "^2.0.0" - strip-ansi "^3.0.0" - supports-color "^2.0.0" - -chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: +chalk@4.1.2, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -3869,39 +1938,14 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: ansi-styles "^4.1.0" supports-color "^7.1.0" -change-case@3.0.x: - version "3.0.2" - resolved "https://registry.yarnpkg.com/change-case/-/change-case-3.0.2.tgz#fd48746cce02f03f0a672577d1d3a8dc2eceb037" - integrity sha512-Mww+SLF6MZ0U6kdg11algyKd5BARbyM4TbFBepwowYSR5ClfQGCGtxNXgykpN0uF/bstWeaGDT4JWaDh8zWAHA== +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: - camel-case "^3.0.0" - constant-case "^2.0.0" - dot-case "^2.1.0" - header-case "^1.0.0" - is-lower-case "^1.1.0" - is-upper-case "^1.1.0" - lower-case "^1.1.1" - lower-case-first "^1.0.0" - no-case "^2.3.2" - param-case "^2.1.0" - pascal-case "^2.0.0" - path-case "^2.1.0" - sentence-case "^2.1.0" - snake-case "^2.1.0" - swap-case "^1.1.0" - title-case "^2.1.0" - upper-case "^1.1.1" - upper-case-first "^1.1.0" - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -chardet@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" chokidar@^3.5.3: version "3.5.3" @@ -3918,11 +1962,6 @@ chokidar@^3.5.3: optionalDependencies: fsevents "~2.3.2" -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - chownr@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" @@ -3938,84 +1977,15 @@ chromium-pickle-js@^0.2.0: resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" integrity sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw== -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - ci-info@^3.2.0: - version "3.8.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" - integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== + version "3.9.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" + integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== -cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" - integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - -cjs-module-lexer@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz#4186fcca0eae175970aee870b9fe2d6cf8d5655f" - integrity sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw== - -class-utils@^0.3.5: - version "0.3.6" - resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" - integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== - dependencies: - arr-union "^3.1.0" - define-property "^0.2.5" - isobject "^3.0.0" - static-extend "^0.1.1" - -clean-css@3.4.x: - version "3.4.28" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-3.4.28.tgz#bf1945e82fc808f55695e6ddeaec01400efd03ff" - integrity sha512-aTWyttSdI2mYi07kWqHi24NUU9YlELFKGOAgFzZjDN1064DMAOy2FBuoyGmkKRlXkbpXd0EVHmiVkbKhKoirTw== - dependencies: - commander "2.8.x" - source-map "0.4.x" - -clean-css@^5.2.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.2.tgz#70ecc7d4d4114921f5d298349ff86a31a9975224" - integrity sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww== - dependencies: - source-map "~0.6.0" - -clean-stack@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" - integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== - -cli-color@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/cli-color/-/cli-color-2.0.3.tgz#73769ba969080629670f3f2ef69a4bf4e7cc1879" - integrity sha512-OkoZnxyC4ERN3zLzZaY9Emb7f/MhBOIpePv0Ycok0fJYT+Ouo00UBEIwsVsr0yoow++n5YWlSUgST9GKhNHiRQ== - dependencies: - d "^1.0.1" - es5-ext "^0.10.61" - es6-iterator "^2.0.3" - memoizee "^0.4.15" - timers-ext "^0.1.7" - -cli-cursor@^2.0.0, cli-cursor@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" - integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== - dependencies: - restore-cursor "^2.0.0" - -cli-truncate@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" - integrity sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg== - dependencies: - slice-ansi "0.0.4" - string-width "^1.0.1" +classnames@^2.2.6: + version "2.3.2" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.2.tgz#351d813bf0137fcc6a76a16b88208d2560a0d924" + integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw== cli-truncate@^2.1.0: version "2.1.0" @@ -4025,29 +1995,6 @@ cli-truncate@^2.1.0: slice-ansi "^3.0.0" string-width "^4.2.0" -cli-width@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" - integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== - -cliui@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" - integrity sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA== - dependencies: - center-align "^0.1.1" - right-align "^0.1.1" - wordwrap "0.0.2" - -cliui@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" - integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^6.2.0" - cliui@^8.0.1: version "8.0.1" resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" @@ -4073,29 +2020,6 @@ clone-response@^1.0.2: dependencies: mimic-response "^1.0.0" -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== - -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== - -collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== - -collection-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" - integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== - dependencies: - map-visit "^1.0.0" - object-visit "^1.0.0" - color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" @@ -4120,26 +2044,6 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== -color-support@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - -colord@^2.9.3: - version "2.9.3" - resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" - integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== - -colorette@^2.0.10, colorette@^2.0.14: - version "2.0.20" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" - integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== - -colors@1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" - integrity sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw== - combined-stream@^1.0.8: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" @@ -4147,190 +2051,82 @@ combined-stream@^1.0.8: dependencies: delayed-stream "~1.0.0" -commander@2.8.x: - version "2.8.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.8.1.tgz#06be367febfda0c330aa1e2a072d3dc9762425d4" - integrity sha512-+pJLBFVk+9ZZdlAOB5WuIElVPPth47hILFkmGym57aq8kwxsowvByvB0DHs1vQAhyMZzdcpTtF0VDKGkSDR4ZQ== - dependencies: - graceful-readlink ">= 1.0.0" - -commander@2.9.0, commander@2.9.x: - version "2.9.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.9.0.tgz#9c99094176e12240cb22d6c5146098400fe0f7d4" - integrity sha512-bmkUukX8wAOjHdN26xj5c4ctEV22TQ7dQYhSmuckKhToXrkUn0iIaolHdIxYYqD55nhpSPA9zPQ1yP57GdXP2A== - dependencies: - graceful-readlink ">= 1.0.0" - -commander@^10.0.1: - version "10.0.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" - integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== - -commander@^2.19.0, commander@^2.20.0: +commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + commander@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== -commander@^8.3.0: - version "8.3.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" - integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== - common-path-prefix@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/common-path-prefix/-/common-path-prefix-3.0.0.tgz#7d007a7e07c58c4b4d5f433131a19141b29f11e0" integrity sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w== -commondir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" - integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== - compare-version@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080" integrity sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A== -component-emitter@^1.2.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" - integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== - -compressible@~2.0.16: - version "2.0.18" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" - integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== - dependencies: - mime-db ">= 1.43.0 < 2" - -compression@^1.7.4: - version "1.7.4" - resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" - integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== - dependencies: - accepts "~1.3.5" - bytes "3.0.0" - compressible "~2.0.16" - debug "2.6.9" - on-headers "~1.0.2" - safe-buffer "5.1.2" - vary "~1.1.2" - concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== -connect-history-api-fallback@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" - integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== - -console-control-strings@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== - -constant-case@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-2.0.0.tgz#4175764d389d3fa9c8ecd29186ed6005243b6a46" - integrity sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ== +conf@^10.2.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/conf/-/conf-10.2.0.tgz#838e757be963f1a2386dfe048a98f8f69f7b55d6" + integrity sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg== dependencies: - snake-case "^2.1.0" - upper-case "^1.1.1" + ajv "^8.6.3" + ajv-formats "^2.1.1" + atomically "^1.7.0" + debounce-fn "^4.0.0" + dot-prop "^6.0.1" + env-paths "^2.2.1" + json-schema-typed "^7.0.3" + onetime "^5.1.2" + pkg-up "^3.1.0" + semver "^7.3.5" -content-disposition@0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" - integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== +config-file-ts@^0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.4.tgz#6c0741fbe118a7cf786c65f139030f0448a2cc99" + integrity sha512-cKSW0BfrSaAUnxpgvpXPLaaW/umg4bqg4k3GO1JqlRfpx+d5W0GDXznCMkWotJQek5Mmz1MJVChQnz3IVaeMZQ== dependencies: - safe-buffer "5.2.1" - -content-type@~1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" - integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== - -convert-source-map@^1.4.0, convert-source-map@^1.6.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" - integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + glob "^7.1.6" + typescript "^4.0.2" convert-source-map@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -cookie-signature@1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" - integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== - -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== - -copy-descriptor@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" - integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== - -copy-webpack-plugin@^11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz#96d4dbdb5f73d02dd72d0528d1958721ab72e04a" - integrity sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ== +core-js-compat@^3.31.0, core-js-compat@^3.33.1: + version "3.33.2" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.33.2.tgz#3ea4563bfd015ad4e4b52442865b02c62aba5085" + integrity sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw== dependencies: - fast-glob "^3.2.11" - glob-parent "^6.0.1" - globby "^13.1.1" - normalize-path "^3.0.0" - schema-utils "^4.0.0" - serialize-javascript "^6.0.0" + browserslist "^4.22.1" -core-js-compat@^3.31.0, core-js-compat@^3.32.2: - version "3.32.2" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.2.tgz#8047d1a8b3ac4e639f0d4f66d4431aa3b16e004c" - integrity sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ== - dependencies: - browserslist "^4.21.10" - -core-js@^2.4.0, core-js@^2.5.0: - version "2.6.12" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" - integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== - -core-js@^3.23.5, core-js@^3.30.2: - version "3.32.2" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.32.2.tgz#172fb5949ef468f93b4be7841af6ab1f21992db7" - integrity sha512-pxXSw1mYZPDGvTQqEc5vgIb83jGQKFGYWY76z4a7weZXUolw3G+OvpZqSRcfYOoOVUQJYEPsWeQK8pKEnUtWxQ== +core-js-pure@^3.30.2: + version "3.33.2" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.33.2.tgz#644830db2507ef84d068a70980ccd99c275f5fa6" + integrity sha512-a8zeCdyVk7uF2elKIGz67AjcXOxjRbwOLz8SbklEso1V+2DoW4OkAMZN9S9GBgvZIaqQi/OemFX4OiSoQEmg1Q== core-util-is@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== -core-util-is@~1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" - integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== - -cosmiconfig@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.1.0.tgz#1443b9afa596b670082ea46cbd8f6a62b84635f6" - integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== - dependencies: - "@types/parse-json" "^4.0.0" - import-fresh "^3.2.1" - parse-json "^5.0.0" - path-type "^4.0.0" - yaml "^1.10.0" - crc@^3.8.0: version "3.8.0" resolved "https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz#ad60269c2c856f8c299e2c4cc0de4556914056c6" @@ -4338,56 +2134,7 @@ crc@^3.8.0: dependencies: buffer "^5.1.0" -create-ecdh@^4.0.0: - version "4.0.4" - resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" - integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== - dependencies: - bn.js "^4.1.0" - elliptic "^6.5.3" - -create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" - integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== - dependencies: - cipher-base "^1.0.1" - inherits "^2.0.1" - md5.js "^1.3.4" - ripemd160 "^2.0.1" - sha.js "^2.4.0" - -create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" - integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== - dependencies: - cipher-base "^1.0.3" - create-hash "^1.1.0" - inherits "^2.0.1" - ripemd160 "^2.0.0" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - -cross-env@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf" - integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw== - dependencies: - cross-spawn "^7.0.1" - -cross-spawn@^6.0.0: - version "6.0.5" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== - dependencies: - nice-try "^1.0.4" - path-key "^2.0.1" - semver "^5.5.0" - shebang-command "^1.2.0" - which "^1.2.9" - -cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: +cross-spawn@^7.0.1, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -4396,175 +2143,40 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -crypto-browserify@^3.12.0: - version "3.12.0" - resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" - integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== - dependencies: - browserify-cipher "^1.0.0" - browserify-sign "^4.0.0" - create-ecdh "^4.0.0" - create-hash "^1.1.0" - create-hmac "^1.1.0" - diffie-hellman "^5.0.0" - inherits "^2.0.1" - pbkdf2 "^3.0.3" - public-encrypt "^4.0.0" - randombytes "^2.0.0" - randomfill "^1.0.3" - -css-functions-list@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/css-functions-list/-/css-functions-list-3.1.0.tgz#cf5b09f835ad91a00e5959bcfc627cd498e1321b" - integrity sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w== - -css-loader@^6.7.3: - version "6.8.1" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.8.1.tgz#0f8f52699f60f5e679eab4ec0fcd68b8e8a50a88" - integrity sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g== - dependencies: - icss-utils "^5.1.0" - postcss "^8.4.21" - postcss-modules-extract-imports "^3.0.0" - postcss-modules-local-by-default "^4.0.3" - postcss-modules-scope "^3.0.0" - postcss-modules-values "^4.0.0" - postcss-value-parser "^4.2.0" - semver "^7.3.8" - -css-select@^4.1.3: - version "4.3.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" - integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== - dependencies: - boolbase "^1.0.0" - css-what "^6.0.1" - domhandler "^4.3.1" - domutils "^2.8.0" - nth-check "^2.0.1" - -css-what@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== - cssesc@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssom@^0.4.4: - version "0.4.4" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" - integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== - -cssom@~0.3.6: - version "0.3.8" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" - integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== - -cssstyle@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" - integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== - dependencies: - cssom "~0.3.6" - -cssstyle@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-3.0.0.tgz#17ca9c87d26eac764bb8cfd00583cff21ce0277a" - integrity sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg== - dependencies: - rrweb-cssom "^0.6.0" - -csstype@^3.1.1: +csstype@^3.0.2: version "3.1.2" resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== -d@1, d@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== - dependencies: - es5-ext "^0.10.50" - type "^1.0.1" - -data-urls@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" - integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== - dependencies: - abab "^2.0.3" - whatwg-mimetype "^2.3.0" - whatwg-url "^8.0.0" - -data-urls@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-4.0.0.tgz#333a454eca6f9a5b7b0f1013ff89074c3f522dd4" - integrity sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g== - dependencies: - abab "^2.0.6" - whatwg-mimetype "^3.0.0" - whatwg-url "^12.0.0" - -date-fns@^1.27.2: - version "1.30.1" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" - integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== - dayjs@^1.11.10: version "1.11.10" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.10.tgz#68acea85317a6e164457d6d6947564029a6a16a0" integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ== -dayjs@^1.11.3: - version "1.11.8" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.8.tgz#4282f139c8c19dd6d0c7bd571e30c2d0ba7698ea" - integrity sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ== - -de-indent@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" - integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== - -debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: - version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" - integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== +debounce-fn@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/debounce-fn/-/debounce-fn-4.0.0.tgz#ed76d206d8a50e60de0dd66d494d82835ffe61c7" + integrity sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ== dependencies: - ms "2.0.0" + mimic-fn "^3.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: +debounce@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/debounce/-/debounce-1.2.1.tgz#38881d8f4166a5c5848020c11827b834bcb3e0a5" + integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug== + +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" -decamelize-keys@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" - integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg== - dependencies: - decamelize "^1.1.0" - map-obj "^1.0.0" - -decamelize@^1.0.0, decamelize@^1.1.0, decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -decimal.js@^10.2.1, decimal.js@^10.4.3: - version "10.4.3" - resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.3.tgz#1044092884d245d1b7f65725fa4ad4c6f781cc23" - integrity sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA== - -decode-uri-component@^0.2.0: - version "0.2.2" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" - integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== - decompress-response@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" @@ -4572,71 +2184,21 @@ decompress-response@^6.0.0: dependencies: mimic-response "^3.1.0" -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-is@^0.1.3, deep-is@~0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deepmerge@^4.2.2: - version "4.3.1" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" - integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== - -default-browser-id@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c" - integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== - dependencies: - bplist-parser "^0.2.0" - untildify "^4.0.0" - -default-browser@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-4.0.0.tgz#53c9894f8810bf86696de117a6ce9085a3cbc7da" - integrity sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA== - dependencies: - bundle-name "^3.0.0" - default-browser-id "^3.0.0" - execa "^7.1.1" - titleize "^3.0.0" - -default-gateway@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" - integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg== - dependencies: - execa "^5.0.0" - defer-to-connect@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== define-data-property@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.0.tgz#0db13540704e1d8d479a0656cf781267531b9451" - integrity sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g== + version "1.1.1" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3" + integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== dependencies: get-intrinsic "^1.2.1" gopd "^1.0.1" has-property-descriptors "^1.0.0" -define-lazy-prop@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" - integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== - -define-lazy-prop@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" - integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== - -define-properties@^1.1.3, define-properties@^1.1.4: +define-properties@^1.1.3: version "1.2.1" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== @@ -4645,144 +2207,48 @@ define-properties@^1.1.3, define-properties@^1.1.4: has-property-descriptors "^1.0.0" object-keys "^1.1.1" -define-property@^0.2.5: - version "0.2.5" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" - integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== - dependencies: - is-descriptor "^0.1.0" - -define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" - integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== - dependencies: - is-descriptor "^1.0.0" - -define-property@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" - integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== - dependencies: - is-descriptor "^1.0.2" - isobject "^3.0.1" - -del@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" - integrity sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg== - dependencies: - globby "^11.0.1" - graceful-fs "^4.2.4" - is-glob "^4.0.1" - is-path-cwd "^2.2.0" - is-path-inside "^3.0.2" - p-map "^4.0.0" - rimraf "^3.0.2" - slash "^3.0.0" - delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== - -depd@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" - integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== - -depd@^1.1.2, depd@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" - integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== - -des.js@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" - integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== - dependencies: - inherits "^2.0.1" - minimalistic-assert "^1.0.0" - -destroy@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" - integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== - -detect-libc@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - detect-node@^2.0.4: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== -devtron@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/devtron/-/devtron-1.4.0.tgz#b5e748bd6e95bbe70bfcc68aae6fe696119441e1" - integrity sha512-BFWB7plA0PSprN1l3UnI4jtzV4xopPFaB87nF1Kl5yNjMwdHDxUVb8ov9ymQA1ZfeulbstVLYGDkUTJ8YZpKJw== +dexie@^3.2.4: + version "3.2.4" + resolved "https://registry.yarnpkg.com/dexie/-/dexie-3.2.4.tgz#b22a9729be1102acb2eee16102ea6e2bc76454cf" + integrity sha512-VKoTQRSv7+RnffpOJ3Dh6ozknBqzWw/F3iqMdsZg958R0AS8AnY9x9d1lbwENr0gzeGJHXKcGhAMRaqys6SxqA== + +didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + +dir-compare@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/dir-compare/-/dir-compare-3.3.0.tgz#2c749f973b5c4b5d087f11edaae730db31788416" + integrity sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg== dependencies: - accessibility-developer-tools "^2.11.0" - highlight.js "^9.3.0" - humanize-plus "^1.8.1" + buffer-equal "^1.0.0" + minimatch "^3.0.4" -diff-sequences@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" - integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== +dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== -diff-sequences@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327" - integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ== - -diffie-hellman@^5.0.0: - version "5.0.3" - resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" - integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== +dmg-builder@24.6.4: + version "24.6.4" + resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-24.6.4.tgz#e19b8305f7e1ea0b4faaa30382c81b9d6de39863" + integrity sha512-BNcHRc9CWEuI9qt0E655bUBU/j/3wUCYBVKGu1kVpbN5lcUdEJJJeiO0NHK3dgKmra6LUUZlo+mWqc+OCbi0zw== dependencies: - bn.js "^4.1.0" - miller-rabin "^4.0.0" - randombytes "^2.0.0" - -dir-compare@^2.4.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/dir-compare/-/dir-compare-2.4.0.tgz#785c41dc5f645b34343a4eafc50b79bac7f11631" - integrity sha512-l9hmu8x/rjVC9Z2zmGzkhOEowZvW7pmYws5CWHutg8u1JgvsKWMx7Q/UODeu4djLZ4FgW5besw5yvMQnBHzuCA== - dependencies: - buffer-equal "1.0.0" - colors "1.0.3" - commander "2.9.0" - minimatch "3.0.4" - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -dmg-builder@23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-23.6.0.tgz#d39d3871bce996f16c07d2cafe922d6ecbb2a948" - integrity sha512-jFZvY1JohyHarIAlTbfQOk+HnceGjjAdFjVn3n8xlDWKsYNqbO4muca6qXEZTfGXeQMG7TYim6CeS5XKSfSsGA== - dependencies: - app-builder-lib "23.6.0" - builder-util "23.6.0" - builder-util-runtime "9.1.1" - fs-extra "^10.0.0" + app-builder-lib "24.6.4" + builder-util "24.5.0" + builder-util-runtime "9.2.1" + fs-extra "^10.1.0" iconv-lite "^0.6.2" js-yaml "^4.1.0" optionalDependencies: @@ -4802,115 +2268,12 @@ dmg-license@^1.0.11: smart-buffer "^4.0.2" verror "^1.10.0" -dns-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" - integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== - -dns-packet@^5.2.2: - version "5.6.1" - resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.1.tgz#ae888ad425a9d1478a0674256ab866de1012cf2f" - integrity sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw== +dot-prop@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" + integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== dependencies: - "@leichtgewicht/ip-codec" "^2.0.1" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -dom-converter@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" - integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== - dependencies: - utila "~0.4" - -dom-serializer@^1.0.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" - integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.2.0" - entities "^2.0.0" - -dom-serializer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" - integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.2" - entities "^4.2.0" - -domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" - integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== - -domexception@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" - integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== - dependencies: - webidl-conversions "^5.0.0" - -domexception@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/domexception/-/domexception-4.0.0.tgz#4ad1be56ccadc86fc76d033353999a8037d03673" - integrity sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw== - dependencies: - webidl-conversions "^7.0.0" - -domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" - integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== - dependencies: - domelementtype "^2.2.0" - -domhandler@^5.0.2, domhandler@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" - integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== - dependencies: - domelementtype "^2.3.0" - -domutils@^2.5.2, domutils@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" - integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== - dependencies: - dom-serializer "^1.0.1" - domelementtype "^2.2.0" - domhandler "^4.2.0" - -domutils@^3.0.1: - version "3.1.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" - integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== - dependencies: - dom-serializer "^2.0.0" - domelementtype "^2.3.0" - domhandler "^5.0.3" - -dot-case@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-2.1.1.tgz#34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee" - integrity sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug== - dependencies: - no-case "^2.2.0" - -dot-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" - integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" + is-obj "^2.0.0" dotenv-expand@^5.1.0: version "5.1.0" @@ -4922,268 +2285,88 @@ dotenv@^9.0.2: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-9.0.2.tgz#dacc20160935a37dea6364aa1bef819fb9b6ab05" integrity sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg== -ee-first@1.1.1: +easy-bem@^1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" - integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + resolved "https://registry.yarnpkg.com/easy-bem/-/easy-bem-1.1.1.tgz#1bfcc10425498090bcfddc0f9c000aba91399e03" + integrity sha512-GJRqdiy2h+EXy6a8E6R+ubmqUM08BK0FWNq41k24fup6045biQ8NXxoXimiwegMQvFFV3t1emADdGNL1TlS61A== -ejs@^3.1.7: - version "3.1.8" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.8.tgz#758d32910c78047585c7ef1f92f9ee041c1c190b" - integrity sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ== +ejs@^3.1.8: + version "3.1.9" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361" + integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== dependencies: jake "^10.8.5" -electron-builder@23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-23.6.0.tgz#c79050cbdce90ed96c5feb67c34e9e0a21b5331b" - integrity sha512-y8D4zO+HXGCNxFBV/JlyhFnoQ0Y0K7/sFH+XwIbj47pqaW8S6PGYQbjoObolKBR1ddQFPt4rwp4CnwMJrW3HAw== +electron-builder@^24.6.4: + version "24.6.4" + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-24.6.4.tgz#c51271e49b9a02c9a3ec444f866b6008c4d98a1d" + integrity sha512-uNWQoU7pE7qOaIQ6CJHpBi44RJFVG8OHRBIadUxrsDJVwLLo8Nma3K/EEtx5/UyWAQYdcK4nVPYKoRqBb20hbA== dependencies: - "@types/yargs" "^17.0.1" - app-builder-lib "23.6.0" - builder-util "23.6.0" - builder-util-runtime "9.1.1" - chalk "^4.1.1" - dmg-builder "23.6.0" - fs-extra "^10.0.0" + app-builder-lib "24.6.4" + builder-util "24.5.0" + builder-util-runtime "9.2.1" + chalk "^4.1.2" + dmg-builder "24.6.4" + fs-extra "^10.1.0" is-ci "^3.0.0" lazy-val "^1.0.5" - read-config-file "6.2.0" - simple-update-notifier "^1.0.7" - yargs "^17.5.1" + read-config-file "6.3.2" + simple-update-notifier "2.0.0" + yargs "^17.6.2" -electron-context-menu@^3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/electron-context-menu/-/electron-context-menu-3.6.1.tgz#42f117e15309687b22283e6f8f7a0d95a19afe84" - integrity sha512-lcpO6tzzKUROeirhzBjdBWNqayEThmdW+2I2s6H6QMrwqTVyT3EK47jW3Nxm60KTxl5/bWfEoIruoUNn57/QkQ== - dependencies: - cli-truncate "^2.1.0" - electron-dl "^3.2.1" - electron-is-dev "^2.0.0" - -electron-debug@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/electron-debug/-/electron-debug-3.2.0.tgz#46a15b555c3b11872218c65ea01d058aa0814920" - integrity sha512-7xZh+LfUvJ52M9rn6N+tPuDw6oRAjxUj9SoxAZfJ0hVCXhZCsdkrSt7TgXOiWiEOBgEV8qwUIO/ScxllsPS7ow== - dependencies: - electron-is-dev "^1.1.0" - electron-localshortcut "^3.1.0" - -electron-devtools-installer@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/electron-devtools-installer/-/electron-devtools-installer-3.2.0.tgz#acc48d24eb7033fe5af284a19667e73b78d406d0" - integrity sha512-t3UczsYugm4OAbqvdImMCImIMVdFzJAHgbwHpkl5jmfu1izVgUcP/mnrPqJIpEeCK1uZGpt+yHgWEN+9EwoYhQ== - dependencies: - rimraf "^3.0.2" - semver "^7.2.1" - tslib "^2.1.0" - unzip-crx-3 "^0.2.0" - -electron-dl@^3.2.1: - version "3.5.0" - resolved "https://registry.yarnpkg.com/electron-dl/-/electron-dl-3.5.0.tgz#7a80bf13f168f7e5204774eee89dbc7c86de957b" - integrity sha512-Oj+VSuScVx8hEKM2HEvTQswTX6G3MLh7UoAz/oZuvKyNDfudNi1zY6PK/UnFoK1nCl9DF6k+3PFwElKbtZlDig== - dependencies: - ext-name "^5.0.0" - pupa "^2.0.1" - unused-filename "^2.1.0" - -electron-is-accelerator@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/electron-is-accelerator/-/electron-is-accelerator-0.1.2.tgz#509e510c26a56b55e17f863a4b04e111846ab27b" - integrity sha512-fLGSAjXZtdn1sbtZxx52+krefmtNuVwnJCV2gNiVt735/ARUboMl8jnNC9fZEqQdlAv2ZrETfmBUsoQci5evJA== - -electron-is-dev@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/electron-is-dev/-/electron-is-dev-1.2.0.tgz#2e5cea0a1b3ccf1c86f577cee77363ef55deb05e" - integrity sha512-R1oD5gMBPS7PVU8gJwH6CtT0e6VSoD0+SzSnYpNm+dBkcijgA+K7VAMHDfnRq/lkKPZArpzplTW6jfiMYosdzw== - -electron-is-dev@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/electron-is-dev/-/electron-is-dev-2.0.0.tgz#833487a069b8dad21425c67a19847d9064ab19bd" - integrity sha512-3X99K852Yoqu9AcW50qz3ibYBWY79/pBhlMCab8ToEWS48R0T9tyxRiQhwylE7zQdXrMnx2JKqUJyMPmt5FBqA== - -electron-json-storage@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/electron-json-storage/-/electron-json-storage-4.6.0.tgz#13ca643b9cd280316d645affd83ee6dd0c15a244" - integrity sha512-gAgNsnA7tEtV9LzzOnZTyVIb3cQtCva+bEBVT5pbRGU8ZSZTVKPBrTxIAYjeVfdSjyNXgfb1mr/CZrOJgeHyqg== - dependencies: - async "^2.0.0" - lockfile "^1.0.4" - lodash "^4.0.1" - mkdirp "^0.5.1" - rimraf "^2.5.1" - write-file-atomic "^2.4.2" - -electron-localshortcut@^3.1.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/electron-localshortcut/-/electron-localshortcut-3.2.1.tgz#cfc83a3eff5e28faf98ddcc87f80a2ce4f623cd3" - integrity sha512-DWvhKv36GsdXKnaFFhEiK8kZZA+24/yFLgtTwJJHc7AFgDjNRIBJZ/jq62Y/dWv9E4ypYwrVWN2bVrCYw1uv7Q== - dependencies: - debug "^4.0.1" - electron-is-accelerator "^0.1.0" - keyboardevent-from-electron-accelerator "^2.0.0" - keyboardevents-areequal "^0.2.1" - -electron-log@^4.4.8: - version "4.4.8" - resolved "https://registry.yarnpkg.com/electron-log/-/electron-log-4.4.8.tgz#fcb9f714dbcaefb6ac7984c4683912c74730248a" - integrity sha512-QQ4GvrXO+HkgqqEOYbi+DHL7hj5JM+nHi/j+qrN9zeeXVKy8ZABgbu4CnG+BBqDZ2+tbeq9tUC4DZfIWFU5AZA== - -electron-mock-ipc@^0.3.12: - version "0.3.12" - resolved "https://registry.yarnpkg.com/electron-mock-ipc/-/electron-mock-ipc-0.3.12.tgz#f9a7dca9a23a95dbe5a62f27cca12768d4cb88c0" - integrity sha512-/uwZRpbX+k4E+GesmREg6XcQiTLNhi35M/cw8Czr+ij9k+EYTYY3UPkILnsTr5KTEeAx5/uypf/KwjZDQFDyjA== - -electron-osx-sign@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/electron-osx-sign/-/electron-osx-sign-0.6.0.tgz#9b69c191d471d9458ef5b1e4fdd52baa059f1bb8" - integrity sha512-+hiIEb2Xxk6eDKJ2FFlpofCnemCbjbT5jz+BKGpVBrRNT3kWTGs4DfNX6IzGwgi33hUcXF+kFs9JW+r6Wc1LRg== - dependencies: - bluebird "^3.5.0" - compare-version "^0.1.2" - debug "^2.6.8" - isbinaryfile "^3.0.2" - minimist "^1.2.0" - plist "^3.0.1" - -electron-publish@23.6.0: - version "23.6.0" - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-23.6.0.tgz#ac9b469e0b07752eb89357dd660e5fb10b3d1ce9" - integrity sha512-jPj3y+eIZQJF/+t5SLvsI5eS4mazCbNYqatv5JihbqOstIM13k0d1Z3vAWntvtt13Itl61SO6seicWdioOU5dg== +electron-publish@24.5.0: + version "24.5.0" + resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-24.5.0.tgz#492a4d7caa232e88ee3c18f5c3b4dc637e5e1b3a" + integrity sha512-zwo70suH15L15B4ZWNDoEg27HIYoPsGJUF7xevLJLSI7JUPC8l2yLBdLGwqueJ5XkDL7ucYyRZzxJVR8ElV9BA== dependencies: "@types/fs-extra" "^9.0.11" - builder-util "23.6.0" - builder-util-runtime "9.1.1" - chalk "^4.1.1" - fs-extra "^10.0.0" + builder-util "24.5.0" + builder-util-runtime "9.2.1" + chalk "^4.1.2" + fs-extra "^10.1.0" lazy-val "^1.0.5" mime "^2.5.2" -electron-to-chromium@^1.4.284: - version "1.4.536" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.536.tgz#ebdf960fbc27fb8bd0b0dfa9a899cc333bb15f1c" - integrity sha512-L4VgC/76m6y8WVCgnw5kJy/xs7hXrViCFdNKVG8Y7B2isfwrFryFyJzumh3ugxhd/oB1uEaEEvRdmeLrnd7OFA== +electron-serve@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/electron-serve/-/electron-serve-1.1.0.tgz#507f56c8512c501880d3a9bec792fa92512af378" + integrity sha512-tQJBCbXKoKCfkBC143QCqnEtT1s8dNE2V+b/82NF6lxnGO/2Q3a3GSLHtKl3iEDQgdzTf9pH7p418xq2rXbz1Q== + +electron-store@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/electron-store/-/electron-store-8.1.0.tgz#46a398f2bd9aa83c4a9daaae28380e2b3b9c7597" + integrity sha512-2clHg/juMjOH0GT9cQ6qtmIvK183B39ZXR0bUoPwKwYHJsEF3quqyDzMFUAu+0OP8ijmN2CbPRAelhNbWUbzwA== + dependencies: + conf "^10.2.0" + type-fest "^2.17.0" electron-to-chromium@^1.4.535: - version "1.4.537" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.537.tgz#aac4101db53066be1e49baedd000a26bc754adc9" - integrity sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA== + version "1.4.571" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.571.tgz#8aa71539eb82db98740c3ec861256cc34e0356fd" + integrity sha512-Sc+VtKwKCDj3f/kLBjdyjMpNzoZsU6WuL/wFb6EH8USmHEcebxRXcRrVpOpayxd52tuey4RUDpUsw5OS5LhJqg== -electron-window-state@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/electron-window-state/-/electron-window-state-5.0.3.tgz#4f36d09e3f953d87aff103bf010f460056050aa8" - integrity sha512-1mNTwCfkolXl3kMf50yW3vE2lZj0y92P/HYWFBrb+v2S/pCka5mdwN3cagKm458A7NjndSwijynXgcLWRodsVg== - dependencies: - jsonfile "^4.0.0" - mkdirp "^0.5.1" - -electron-windows-store@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/electron-windows-store/-/electron-windows-store-2.1.0.tgz#c217f0c0617fd70afd2d475c88eb35e8f9bb615e" - integrity sha512-+kBL20yeY2ahJxvZ6dDtE3gPqWLZI5Glnx7VBLA1cGXagS82PZTFueuvDyLGLcKtI48lhPhW9QmdZ9omh+yKTA== - dependencies: - chalk "^2.4.1" - commander "^2.19.0" - debug "^4.1.0" - fs-extra "^7.0.0" - inquirer "^6.2.0" - lodash.defaults "^4.2.0" - lodash.merge "^4.6.1" - multiline "^2.0.0" - path-exists "^3.0.0" - -electron@22.3.25: - version "22.3.25" - resolved "https://registry.yarnpkg.com/electron/-/electron-22.3.25.tgz#a9a70b63a6712c658cd7fab343129b2a78450f80" - integrity sha512-AjrP7bebMs/IPsgmyowptbA7jycTkrJC7jLZTb5JoH30PkBC6pZx/7XQ0aDok82SsmSiF4UJDOg+HoLrEBiqmg== +electron@^26.2.2: + version "26.4.2" + resolved "https://registry.yarnpkg.com/electron/-/electron-26.4.2.tgz#2f976a3c30558f09ced3f5876862b4c21172c02c" + integrity sha512-BOfQUOIvsq5NnssWOMqcZnA5M0ull620wvQoJq3WhXN1wJAsWu+cdjHvREyxnHbArPkV+F+x3YAi5Dt+UKoqhw== dependencies: "@electron/get" "^2.0.0" - "@types/node" "^16.11.26" + "@types/node" "^18.11.18" extract-zip "^2.0.1" -elegant-spinner@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" - integrity sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ== - -element-plus@^2.3.14: - version "2.3.14" - resolved "https://registry.yarnpkg.com/element-plus/-/element-plus-2.3.14.tgz#302a23916b0c3375fcf4b927d7b94483dac13e1b" - integrity sha512-9yvxUaU4jXf2ZNPdmIxoj/f8BG8CDcGM6oHa9JIqxLjQlfY4bpzR1E5CjNimnOX3rxO93w1TQ0jTVt0RSxh9kA== - dependencies: - "@ctrl/tinycolor" "^3.4.1" - "@element-plus/icons-vue" "^2.0.6" - "@floating-ui/dom" "^1.0.1" - "@popperjs/core" "npm:@sxzz/popperjs-es@^2.11.7" - "@types/lodash" "^4.14.182" - "@types/lodash-es" "^4.17.6" - "@vueuse/core" "^9.1.0" - async-validator "^4.2.5" - dayjs "^1.11.3" - escape-html "^1.0.3" - lodash "^4.17.21" - lodash-es "^4.17.21" - lodash-unified "^1.0.2" - memoize-one "^6.0.0" - normalize-wheel-es "^1.2.0" - -elliptic@^6.5.3: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== - dependencies: - bn.js "^4.11.9" - brorand "^1.1.0" - hash.js "^1.0.0" - hmac-drbg "^1.0.1" - inherits "^2.0.4" - minimalistic-assert "^1.0.1" - minimalistic-crypto-utils "^1.0.1" - -emittery@^0.7.1: - version "0.7.2" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.7.2.tgz#25595908e13af0f5674ab419396e2fb394cdfa82" - integrity sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ== - -emoji-mart-vue-fast@^15.0.0: - version "15.0.0" - resolved "https://registry.yarnpkg.com/emoji-mart-vue-fast/-/emoji-mart-vue-fast-15.0.0.tgz#4e671090b8ec522f04bb7eca0dba4abda4e8e6b5" - integrity sha512-3BzkDrs60JyT00dLHMAxWKbpFhbyaW9C+q1AjtqGovSxTu8TC2mYAGsvTmXNYKm39IRRAS56v92TihOcB98IsQ== - dependencies: - "@babel/runtime" "^7.18.6" - core-js "^3.23.5" - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== -emojis-list@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" - integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== - -encodeurl@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" - integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== - -encoding@^0.1.12, encoding@^0.1.13: - version "0.1.13" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" - integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== - dependencies: - iconv-lite "^0.6.2" - -end-of-stream@^1.1.0, end-of-stream@^1.4.1: +end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== dependencies: once "^1.4.0" -enhanced-resolve@^5.0.0, enhanced-resolve@^5.15.0: +enhanced-resolve@^5.15.0, enhanced-resolve@^5.7.0: version "5.15.0" resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== @@ -5191,160 +2374,41 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.15.0: graceful-fs "^4.2.4" tapable "^2.2.0" -entities@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" - integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== - -entities@^4.2.0, entities@^4.4.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" - integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== - -env-paths@^2.2.0: +env-paths@^2.2.0, env-paths@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== -envinfo@^7.7.3: - version "7.10.0" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13" - integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw== - err-code@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - es-module-lexer@^1.2.1: version "1.3.1" resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz#c1b0dd5ada807a3b3155315911f364dc4e909db1" integrity sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q== -es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50, es5-ext@^0.10.53, es5-ext@^0.10.61, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.46: - version "0.10.62" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5" - integrity sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA== - dependencies: - es6-iterator "^2.0.3" - es6-symbol "^3.1.3" - next-tick "^1.1.0" - es6-error@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== -es6-iterator@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" - integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g== - dependencies: - d "1" - es5-ext "^0.10.35" - es6-symbol "^3.1.1" - -es6-symbol@^3.1.1, es6-symbol@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== - dependencies: - d "^1.0.1" - ext "^1.1.2" - -es6-templates@^0.2.2: - version "0.2.3" - resolved "https://registry.yarnpkg.com/es6-templates/-/es6-templates-0.2.3.tgz#5cb9ac9fb1ded6eb1239342b81d792bbb4078ee4" - integrity sha512-sziUVwcvQ+lOsrTyUY0Q11ilAPj+dy7AQ1E1MgSaHTaaAFTffaa08QSlGNU61iyVaroyb6nYdBV6oD7nzn6i8w== - dependencies: - recast "~0.11.12" - through "~2.3.6" - -es6-weak-map@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" - integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== - dependencies: - d "1" - es5-ext "^0.10.46" - es6-iterator "^2.0.3" - es6-symbol "^3.1.1" - escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== -escape-goat@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-2.1.1.tgz#1b2dc77003676c457ec760b2dc68edb648188675" - integrity sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q== - -escape-html@^1.0.3, escape-html@~1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" - integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== - -escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: +escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== -escodegen@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" - integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== - dependencies: - esprima "^4.0.1" - estraverse "^5.2.0" - esutils "^2.0.2" - optionator "^0.8.1" - optionalDependencies: - source-map "~0.6.1" - -eslint-config-prettier@^8.8.0: - version "8.10.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11" - integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg== - -eslint-plugin-prettier@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.0.tgz#6887780ed95f7708340ec79acfdf60c35b9be57a" - integrity sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w== - dependencies: - prettier-linter-helpers "^1.0.0" - synckit "^0.8.5" - -eslint-plugin-vue@^9.14.1: - version "9.17.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.17.0.tgz#4501547373f246547083482838b4c8f4b28e5932" - integrity sha512-r7Bp79pxQk9I5XDP0k2dpUC7Ots3OSWgvGZNu3BxmKK6Zg7NgVtcOB6OCna5Kb9oQwJPl5hq183WD0SY5tZtIQ== - dependencies: - "@eslint-community/eslint-utils" "^4.4.0" - natural-compare "^1.4.0" - nth-check "^2.1.1" - postcss-selector-parser "^6.0.13" - semver "^7.5.4" - vue-eslint-parser "^9.3.1" - xml-name-validator "^4.0.0" - eslint-scope@5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" @@ -5353,93 +2417,6 @@ eslint-scope@5.1.1: esrecurse "^4.3.0" estraverse "^4.1.1" -eslint-scope@^7.1.1, eslint-scope@^7.2.2: - version "7.2.2" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" - integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-visitor-keys@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: - version "3.4.3" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" - integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== - -eslint@^8.49.0: - version "8.50.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.50.0.tgz#2ae6015fee0240fcd3f83e1e25df0287f487d6b2" - integrity sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.6.1" - "@eslint/eslintrc" "^2.1.2" - "@eslint/js" "8.50.0" - "@humanwhocodes/config-array" "^0.11.11" - "@humanwhocodes/module-importer" "^1.0.1" - "@nodelib/fs.walk" "^1.2.8" - ajv "^6.12.4" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.2.2" - eslint-visitor-keys "^3.4.3" - espree "^9.6.1" - esquery "^1.4.2" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - find-up "^5.0.0" - glob-parent "^6.0.2" - globals "^13.19.0" - graphemer "^1.4.0" - ignore "^5.2.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - is-path-inside "^3.0.3" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.3" - strip-ansi "^6.0.1" - text-table "^0.2.0" - -espree@^9.3.1, espree@^9.6.0, espree@^9.6.1: - version "9.6.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" - integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== - dependencies: - acorn "^8.9.0" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.1" - -esprima@^4.0.0, esprima@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esprima@~3.1.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - integrity sha512-AWwVMNxwhN8+NIPQzAQZCm7RkLC4RbM3B1OobMuyp3i+w73X57KCKaVIxaRZb+DYCojq7rspo+fmuQfAboyhFg== - -esquery@^1.4.0, esquery@^1.4.2: - version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" - integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== - dependencies: - estraverse "^5.1.0" - esrecurse@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" @@ -5452,86 +2429,22 @@ estraverse@^4.1.1: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== -estraverse@^5.1.0, estraverse@^5.2.0: +estraverse@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== -estree-walker@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" - integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== - esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== -etag@~1.8.1: - version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" - integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== - -event-emitter@^0.3.5: - version "0.3.5" - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" - integrity sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA== - dependencies: - d "1" - es5-ext "~0.10.14" - -eventemitter3@^4.0.0: - version "4.0.7" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" - integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== - -events@^3.2.0: +events@^3.2.0, events@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== -evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" - integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== - dependencies: - md5.js "^1.3.4" - safe-buffer "^5.1.1" - -exec-sh@^0.3.2: - version "0.3.6" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" - integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== - -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" - integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== - dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - human-signals "^1.1.1" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.0" - onetime "^5.1.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" - -execa@^5.0.0: +execa@5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== @@ -5546,153 +2459,6 @@ execa@^5.0.0: signal-exit "^3.0.3" strip-final-newline "^2.0.0" -execa@^7.1.1: - version "7.2.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9" - integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.1" - human-signals "^4.3.0" - is-stream "^3.0.0" - merge-stream "^2.0.0" - npm-run-path "^5.1.0" - onetime "^6.0.0" - signal-exit "^3.0.7" - strip-final-newline "^3.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== - -expand-brackets@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" - integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== - dependencies: - debug "^2.3.3" - define-property "^0.2.5" - extend-shallow "^2.0.1" - posix-character-classes "^0.1.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -expand-template@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" - integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== - -expect@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/expect/-/expect-26.6.2.tgz#c6b996bf26bf3fe18b67b2d0f51fc981ba934417" - integrity sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA== - dependencies: - "@jest/types" "^26.6.2" - ansi-styles "^4.0.0" - jest-get-type "^26.3.0" - jest-matcher-utils "^26.6.2" - jest-message-util "^26.6.2" - jest-regex-util "^26.0.0" - -express@^4.17.3: - version "4.18.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" - integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== - dependencies: - accepts "~1.3.8" - array-flatten "1.1.1" - body-parser "1.20.1" - content-disposition "0.5.4" - content-type "~1.0.4" - cookie "0.5.0" - cookie-signature "1.0.6" - debug "2.6.9" - depd "2.0.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - finalhandler "1.2.0" - fresh "0.5.2" - http-errors "2.0.0" - merge-descriptors "1.0.1" - methods "~1.1.2" - on-finished "2.4.1" - parseurl "~1.3.3" - path-to-regexp "0.1.7" - proxy-addr "~2.0.7" - qs "6.11.0" - range-parser "~1.2.1" - safe-buffer "5.2.1" - send "0.18.0" - serve-static "1.15.0" - setprototypeof "1.2.0" - statuses "2.0.1" - type-is "~1.6.18" - utils-merge "1.0.1" - vary "~1.1.2" - -ext-list@^2.0.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/ext-list/-/ext-list-2.2.2.tgz#0b98e64ed82f5acf0f2931babf69212ef52ddd37" - integrity sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA== - dependencies: - mime-db "^1.28.0" - -ext-name@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/ext-name/-/ext-name-5.0.0.tgz#70781981d183ee15d13993c8822045c506c8f0a6" - integrity sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ== - dependencies: - ext-list "^2.0.0" - sort-keys-length "^1.0.0" - -ext@^1.1.2: - version "1.7.0" - resolved "https://registry.yarnpkg.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f" - integrity sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw== - dependencies: - type "^2.7.2" - -extend-shallow@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" - integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== - dependencies: - is-extendable "^0.1.0" - -extend-shallow@^3.0.0, extend-shallow@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" - integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== - dependencies: - assign-symbols "^1.0.0" - is-extendable "^1.0.1" - -external-editor@^3.0.3: - version "3.1.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== - dependencies: - chardet "^0.7.0" - iconv-lite "^0.4.24" - tmp "^0.0.33" - -extglob@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" - integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== - dependencies: - array-unique "^0.3.2" - define-property "^1.0.0" - expand-brackets "^2.1.4" - extend-shallow "^2.0.1" - fragment-cache "^0.2.1" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - extract-zip@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" @@ -5714,23 +2480,7 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== -fast-diff@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" - integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== - -fast-glob@^3.2.11, fast-glob@^3.2.12: - version "3.2.12" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-glob@^3.2.9, fast-glob@^3.3.0: +fast-glob@^3.3.0: version "3.3.1" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.1.tgz#784b4e897340f3dbbef17413b3f11acf03c874c4" integrity sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg== @@ -5741,26 +2491,11 @@ fast-glob@^3.2.9, fast-glob@^3.3.0: merge2 "^1.3.0" micromatch "^4.0.4" -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: +fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fastest-levenshtein@^1.0.12, fastest-levenshtein@^1.0.16: - version "1.0.16" - resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" - integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== - -fastparse@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" - integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== - fastq@^1.6.0: version "1.15.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" @@ -5768,20 +2503,6 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" -faye-websocket@^0.11.3: - version "0.11.4" - resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" - integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== - dependencies: - websocket-driver ">=0.5.1" - -fb-watchman@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" - integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== - dependencies: - bser "2.1.1" - fd-slicer@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" @@ -5789,63 +2510,13 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" -figures@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" - integrity sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ== - dependencies: - escape-string-regexp "^1.0.5" - object-assign "^4.1.0" - -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== - dependencies: - escape-string-regexp "^1.0.5" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -file-loader@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" - integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== - dependencies: - loader-utils "^2.0.0" - schema-utils "^3.0.0" - -file-type@^10.11.0: - version "10.11.0" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-10.11.0.tgz#2961d09e4675b9fb9a3ee6b69e9cd23f43fd1890" - integrity sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw== - -file-uri-to-path@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" - integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== - -filelist@^1.0.1: +filelist@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== dependencies: minimatch "^5.0.1" -fill-range@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" - integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== - dependencies: - extend-shallow "^2.0.1" - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range "^2.1.0" - fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" @@ -5853,28 +2524,6 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" -finalhandler@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" - integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== - dependencies: - debug "2.6.9" - encodeurl "~1.0.2" - escape-html "~1.0.3" - on-finished "2.4.1" - parseurl "~1.3.3" - statuses "2.0.1" - unpipe "~1.0.0" - -find-cache-dir@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" - integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== - dependencies: - commondir "^1.0.1" - make-dir "^2.0.0" - pkg-dir "^3.0.0" - find-cache-dir@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-4.0.0.tgz#a30ee0448f81a3990708f6453633c733e2f6eec2" @@ -5890,22 +2539,6 @@ find-up@^3.0.0: dependencies: locate-path "^3.0.0" -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - find-up@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" @@ -5914,51 +2547,38 @@ find-up@^6.3.0: locate-path "^7.1.0" path-exists "^5.0.0" -flat-cache@^3.0.4: - version "3.1.0" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.1.0.tgz#0e54ab4a1a60fe87e2946b6b00657f1c99e1af3f" - integrity sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew== +flowbite-react@^0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/flowbite-react/-/flowbite-react-0.6.4.tgz#84fddcde95f0df1bfe443eae1f402ac7f5ae1882" + integrity sha512-36mhawQRalOyq40ZLXesCTvcidYBO0vRFb672YSfflQHl5mENzB3o1SW6oGPpedmS/rWTlK+VBK7ia+1UYr+6w== dependencies: - flatted "^3.2.7" - keyv "^4.5.3" - rimraf "^3.0.2" + "@floating-ui/react" "^0.24.3" + flowbite "^1.6.6" + react-icons "^4.10.1" + react-indiana-drag-scroll "^2.2.0" + tailwind-merge "^1.13.2" -flatted@^3.2.7: - version "3.2.9" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" - integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== +flowbite@^1.6.6: + version "1.8.1" + resolved "https://registry.yarnpkg.com/flowbite/-/flowbite-1.8.1.tgz#a1f5fb039c4c275414a457089b4917a67e9153a5" + integrity sha512-lXTcO8a6dRTPFpINyOLcATCN/pK1Of/jY4PryklPllAiqH64tSDUsOdQpar3TO59ZXWwugm2e92oaqwH6X90Xg== + dependencies: + "@popperjs/core" "^2.9.3" + mini-svg-data-uri "^1.4.3" -follow-redirects@^1.0.0: +flowbite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/flowbite/-/flowbite-2.0.0.tgz#f149f63f4752722d888b1300a5f5071a6bf98b7d" + integrity sha512-gP/iC/WuznQ5XBzikhaSs4RDs49zrvoAdHbWMHSY3l7nVJX0xJz+dELIlLjh+czLdEVTMLxUjuARYYwCb5q34A== + dependencies: + "@popperjs/core" "^2.9.3" + mini-svg-data-uri "^1.4.3" + +follow-redirects@^1.15.0: version "1.15.3" resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a" integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q== -follow-redirects@^1.15.0: - version "1.15.2" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" - integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -for-in@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" - integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== - -form-data@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" - integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== - dependencies: - asynckit "^0.4.0" - combined-stream "^1.0.8" - mime-types "^2.1.12" - form-data@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" @@ -5968,27 +2588,19 @@ form-data@^4.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" -forwarded@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" - integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== +fraction.js@^4.3.6: + version "4.3.7" + resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" + integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew== -fragment-cache@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" - integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== +fs-extra@11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" + integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== dependencies: - map-cache "^0.2.2" - -fresh@0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" - integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" fs-extra@^10.0.0, fs-extra@^10.1.0: version "10.1.0" @@ -5999,15 +2611,6 @@ fs-extra@^10.0.0, fs-extra@^10.1.0: jsonfile "^6.0.1" universalify "^2.0.0" -fs-extra@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== - dependencies: - graceful-fs "^4.1.2" - jsonfile "^4.0.0" - universalify "^0.1.0" - fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -6027,118 +2630,60 @@ fs-extra@^9.0.0, fs-extra@^9.0.1: jsonfile "^6.0.1" universalify "^2.0.0" -fs-minipass@^2.0.0, fs-minipass@^2.1.0: +fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== dependencies: minipass "^3.0.0" -fs-monkey@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.5.tgz#fe450175f0db0d7ea758102e1d84096acb925788" - integrity sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew== - fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== -fsevents@^2.1.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -fsevents@^2.3.2, fsevents@~2.3.2: +fsevents@~2.3.2: version "2.3.3" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -gauge@^4.0.3: - version "4.0.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce" - integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== - dependencies: - aproba "^1.0.3 || ^2.0.0" - color-support "^1.1.3" - console-control-strings "^1.1.0" - has-unicode "^2.0.1" - signal-exit "^3.0.7" - string-width "^4.2.3" - strip-ansi "^6.0.1" - wide-align "^1.1.5" - -gaze@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" - integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== - dependencies: - globule "^1.0.0" +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== -get-caller-file@^2.0.1, get-caller-file@^2.0.5: +get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== +get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.2.tgz#281b7622971123e1ef4b3c90fd7539306da93f3b" + integrity sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA== dependencies: - function-bind "^1.1.1" - has "^1.0.3" + function-bind "^1.1.2" has-proto "^1.0.1" has-symbols "^1.0.3" + hasown "^2.0.0" -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-stdin@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" - integrity sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw== - -get-stream@^4.0.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" - integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== - dependencies: - pump "^3.0.0" - -get-stream@^5.0.0, get-stream@^5.1.0: +get-stream@^5.1.0: version "5.2.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== dependencies: pump "^3.0.0" -get-stream@^6.0.0, get-stream@^6.0.1: +get-stream@^6.0.0: version "6.0.1" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== -get-value@^2.0.3, get-value@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" - integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== - -github-from-package@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== - glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -6146,7 +2691,7 @@ glob-parent@^5.1.2, glob-parent@~5.1.2: dependencies: is-glob "^4.0.1" -glob-parent@^6.0.1, glob-parent@^6.0.2: +glob-parent@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== @@ -6158,7 +2703,19 @@ glob-to-regexp@^0.4.1: resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== -glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: +glob@7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.1.3, glob@^7.1.6: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -6170,29 +2727,6 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, gl once "^1.3.0" path-is-absolute "^1.0.0" -glob@^8.0.1: - version "8.1.0" - resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" - integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^5.0.1" - once "^1.3.0" - -glob@~7.1.1: - version "7.1.7" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" - integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.0.4" - once "^1.3.0" - path-is-absolute "^1.0.0" - global-agent@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-3.0.0.tgz#ae7cd31bd3583b93c5a16437a1afe27cc33a1ab6" @@ -6205,34 +2739,11 @@ global-agent@^3.0.0: semver "^7.3.2" serialize-error "^7.0.1" -global-modules@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== - dependencies: - global-prefix "^3.0.0" - -global-prefix@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== - dependencies: - ini "^1.3.5" - kind-of "^6.0.2" - which "^1.3.1" - globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== -globals@^13.19.0: - version "13.22.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.22.0.tgz#0c9fcb9c48a2494fbb5edbfee644285543eba9d8" - integrity sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw== - dependencies: - type-fest "^0.20.2" - globalthis@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" @@ -6240,43 +2751,6 @@ globalthis@^1.0.1: dependencies: define-properties "^1.1.3" -globby@^11.0.1, globby@^11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" - -globby@^13.1.1: - version "13.1.3" - resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.3.tgz#f62baf5720bcb2c1330c8d4ef222ee12318563ff" - integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw== - dependencies: - dir-glob "^3.0.1" - fast-glob "^3.2.11" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^4.0.0" - -globjoin@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" - integrity sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg== - -globule@^1.0.0: - version "1.3.4" - resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.4.tgz#7c11c43056055a75a6e68294453c17f2796170fb" - integrity sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg== - dependencies: - glob "~7.1.1" - lodash "^4.17.21" - minimatch "~3.0.2" - gopd@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" @@ -6301,48 +2775,11 @@ got@^11.8.5: p-cancelable "^2.0.0" responselike "^2.0.0" -graceful-fs@^4.1.11: - version "4.2.10" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== - -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9: version "4.2.11" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== -"graceful-readlink@>= 1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/graceful-readlink/-/graceful-readlink-1.0.1.tgz#4cafad76bc62f02fa039b2f94e9a3dd3a391a725" - integrity sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w== - -graphemer@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" - integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== - -growly@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" - integrity sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw== - -handle-thing@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" - integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== - -hard-rejection@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" - integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== - -has-ansi@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" - integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== - dependencies: - ansi-regex "^2.0.0" - has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -6354,284 +2791,41 @@ has-flag@^4.0.0: integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz#52ba30b6c5ec87fd89fa574bc1c39125c6f65340" + integrity sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg== dependencies: - get-intrinsic "^1.1.1" + get-intrinsic "^1.2.2" has-proto@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== -has-symbols@^1.0.2, has-symbols@^1.0.3: +has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has-unicode@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== - -has-value@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" - integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== - dependencies: - get-value "^2.0.3" - has-values "^0.1.4" - isobject "^2.0.0" - -has-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" - integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== - dependencies: - get-value "^2.0.6" - has-values "^1.0.0" - isobject "^3.0.0" - -has-values@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" - integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== - -has-values@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" - integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== - dependencies: - is-number "^3.0.0" - kind-of "^4.0.0" - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hash-base@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" - integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== - dependencies: - inherits "^2.0.4" - readable-stream "^3.6.0" - safe-buffer "^5.2.0" - -hash-sum@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-1.0.2.tgz#33b40777754c6432573c120cc3808bbd10d47f04" - integrity sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA== - -hash-sum@^2.0.0: +hasown@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" - integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== - -hash.js@^1.0.0, hash.js@^1.0.3: - version "1.1.7" - resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" - integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" + integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== dependencies: - inherits "^2.0.3" - minimalistic-assert "^1.0.1" + function-bind "^1.1.2" -he@1.1.x: - version "1.1.1" - resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" - integrity sha512-z/GDPjlRMNOa2XJiB4em8wJpuuBfrFOlYKTZxtpkdr1uPdibHI8rYA3MY0KDObpVyaes0e/aunid/t88ZI2EKA== - -he@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" - integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== - -header-case@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/header-case/-/header-case-1.0.1.tgz#9535973197c144b09613cd65d317ef19963bd02d" - integrity sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ== - dependencies: - no-case "^2.2.0" - upper-case "^1.1.3" - -highlight.js@^9.3.0: - version "9.18.5" - resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.5.tgz#d18a359867f378c138d6819edfc2a8acd5f29825" - integrity sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA== - -hmac-drbg@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" - integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== - dependencies: - hash.js "^1.0.3" - minimalistic-assert "^1.0.0" - minimalistic-crypto-utils "^1.0.1" - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^4.0.1, hosted-git-info@^4.1.0: +hosted-git-info@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== dependencies: lru-cache "^6.0.0" -hpack.js@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" - integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== - dependencies: - inherits "^2.0.1" - obuf "^1.0.0" - readable-stream "^2.0.1" - wbuf "^1.1.0" - -html-encoding-sniffer@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" - integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== - dependencies: - whatwg-encoding "^1.0.5" - -html-encoding-sniffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9" - integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA== - dependencies: - whatwg-encoding "^2.0.0" - -html-entities@^2.1.0, html-entities@^2.3.2: - version "2.4.0" - resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061" - integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ== - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -html-minifier-terser@^6.0.2: - version "6.1.0" - resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" - integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== - dependencies: - camel-case "^4.1.2" - clean-css "^5.2.2" - commander "^8.3.0" - he "^1.2.0" - param-case "^3.0.4" - relateurl "^0.2.7" - terser "^5.10.0" - -html-minifier@^2.1.5: - version "2.1.7" - resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-2.1.7.tgz#9051d6fcbbcf214ed307e1ad74f432bb9ad655cc" - integrity sha512-HDb93Rn0fdb/DS0DbTDapR9LlK8zrSccJwukR5Mt+adCd6+ocTpymknnUiBo3JTQ3nXLC3qPhA5diIGdO1CF4A== - dependencies: - change-case "3.0.x" - clean-css "3.4.x" - commander "2.9.x" - he "1.1.x" - ncname "1.0.x" - relateurl "0.2.x" - uglify-js "2.6.x" - -html-tags@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.2.0.tgz#dbb3518d20b726524e4dd43de397eb0a95726961" - integrity sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg== - -html-webpack-plugin@^5.5.1: - version "5.5.3" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-5.5.3.tgz#72270f4a78e222b5825b296e5e3e1328ad525a3e" - integrity sha512-6YrDKTuqaP/TquFH7h4srYWsZx+x6k6+FbsTm0ziCwGHDP78Unr1r9F/H4+sGmMbX08GQcJ+K64x55b+7VM/jg== - dependencies: - "@types/html-minifier-terser" "^6.0.0" - html-minifier-terser "^6.0.2" - lodash "^4.17.21" - pretty-error "^4.0.0" - tapable "^2.0.0" - -htmlparser2@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" - integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== - dependencies: - domelementtype "^2.0.1" - domhandler "^4.0.0" - domutils "^2.5.2" - entities "^2.0.0" - -htmlparser2@^8.0.0: - version "8.0.2" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" - integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.3" - domutils "^3.0.1" - entities "^4.4.0" - -http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0: +http-cache-semantics@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a" integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ== -http-deceiver@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" - integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== - -http-errors@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" - integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== - dependencies: - depd "2.0.0" - inherits "2.0.4" - setprototypeof "1.2.0" - statuses "2.0.1" - toidentifier "1.0.1" - -http-errors@~1.6.2: - version "1.6.3" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" - integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== - dependencies: - depd "~1.1.2" - inherits "2.0.3" - setprototypeof "1.1.0" - statuses ">= 1.4.0 < 2" - -http-parser-js@>=0.5.1: - version "0.5.8" - resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" - integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== - -http-proxy-agent@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" - integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== - dependencies: - "@tootallnate/once" "1" - agent-base "6" - debug "4" - http-proxy-agent@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" @@ -6641,26 +2835,6 @@ http-proxy-agent@^5.0.0: agent-base "6" debug "4" -http-proxy-middleware@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" - integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== - dependencies: - "@types/http-proxy" "^1.17.8" - http-proxy "^1.18.1" - is-glob "^4.0.1" - is-plain-obj "^3.0.0" - micromatch "^4.0.2" - -http-proxy@^1.18.1: - version "1.18.1" - resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" - integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== - dependencies: - eventemitter3 "^4.0.0" - follow-redirects "^1.0.0" - requires-port "^1.0.0" - http2-wrapper@^1.0.0-beta.5.2: version "1.0.3" resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz#b8f55e0c1f25d4ebd08b3b0c2c079f9590800b3d" @@ -6669,12 +2843,7 @@ http2-wrapper@^1.0.0-beta.5.2: quick-lru "^5.1.1" resolve-alpn "^1.0.0" -https-browserify@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" - integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== - -https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: +https-proxy-agent@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== @@ -6682,53 +2851,11 @@ https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: agent-base "6" debug "4" -https-proxy-agent@^7.0.2: - version "7.0.2" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz#e2645b846b90e96c6e6f347fb5b2e41f1590b09b" - integrity sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA== - dependencies: - agent-base "^7.0.2" - debug "4" - -human-signals@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" - integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== - human-signals@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== -human-signals@^4.3.0: - version "4.3.1" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" - integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== - -humanize-ms@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" - integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== - dependencies: - ms "^2.0.0" - -humanize-plus@^1.8.1: - version "1.8.2" - resolved "https://registry.yarnpkg.com/humanize-plus/-/humanize-plus-1.8.2.tgz#a65b34459ad6367adbb3707a82a3c9f916167030" - integrity sha512-jaLeQyyzjjINGv7O9JJegjsaUcWjSj/1dcXvLEgU3pGdqCdP1PiC/uwr+saJXhTNBHZtmKnmpXyazgh+eceRxA== - -i18next-vue@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/i18next-vue/-/i18next-vue-2.2.1.tgz#409affaabb692cdf9362eab1c0c66f91ab38cae2" - integrity sha512-C8iotPy4YhhEDSG1QFzn5zGu8Xkpai5O8UFPS9swELccl3qpbkYwBCi8CfcsUCIIgBX7wUIqsG8f0cViGhqScw== - -i18next@^23.0.0: - version "23.5.1" - resolved "https://registry.yarnpkg.com/i18next/-/i18next-23.5.1.tgz#7f7c35ffaa907618d9489f106d5006b09fbca3d3" - integrity sha512-JelYzcaCoFDaa+Ysbfz2JsGAKkrHiMG6S61+HLBUEIPaF40WMwW9hCPymlQGrP+wWawKxKPuSuD71WZscCsWHg== - dependencies: - "@babel/runtime" "^7.22.5" - iconv-corefoundation@^1.1.7: version "1.1.7" resolved "https://registry.yarnpkg.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz#31065e6ab2c9272154c8b0821151e2c88f1b002a" @@ -6737,81 +2864,18 @@ iconv-corefoundation@^1.1.7: cli-truncate "^2.1.0" node-addon-api "^1.6.3" -iconv-lite@0.4.24, iconv-lite@^0.4.24: - version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" - integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== - dependencies: - safer-buffer ">= 2.1.2 < 3" - -iconv-lite@0.6.3, iconv-lite@^0.6.2: +iconv-lite@^0.6.2: version "0.6.3" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== dependencies: safer-buffer ">= 2.1.2 < 3.0.0" -icss-utils@^5.0.0, icss-utils@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" - integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== - -ieee754@^1.1.13, ieee754@^1.2.1: +ieee754@^1.1.13: version "1.2.1" resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== -ignore@^5.2.0, ignore@^5.2.1, ignore@^5.2.4: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== - -immediate@~3.0.5: - version "3.0.6" - resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" - integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== - -import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-lazy@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" - integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== - -import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" - integrity sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -infer-owner@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" - integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== - inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -6820,87 +2884,11 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4: +inherits@2: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== -inherits@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" - integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== - -ini@^1.3.5, ini@~1.3.0: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -inquirer@^6.2.0: - version "6.5.2" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" - integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== - dependencies: - ansi-escapes "^3.2.0" - chalk "^2.4.2" - cli-cursor "^2.1.0" - cli-width "^2.0.0" - external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.12" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" - strip-ansi "^5.1.0" - through "^2.3.6" - -interpret@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4" - integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ== - -ip@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.0.tgz#4cf4ab182fee2314c75ede1276f8c80b479936da" - integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== - -ipaddr.js@1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" - integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== - -ipaddr.js@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f" - integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ== - -is-accessor-descriptor@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" - integrity sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A== - dependencies: - kind-of "^3.0.2" - -is-accessor-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" - integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== - dependencies: - kind-of "^6.0.0" - -is-arguments@^1.0.4: - version "1.1.1" - resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" - integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - is-binary-path@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" @@ -6908,23 +2896,6 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" -is-buffer@^1.1.5: - version "1.1.6" - resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" - integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== - -is-callable@^1.1.3: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== - dependencies: - ci-info "^2.0.0" - is-ci@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" @@ -6932,279 +2903,68 @@ is-ci@^3.0.0: dependencies: ci-info "^3.2.0" -is-core-module@^2.13.0, is-core-module@^2.9.0: - version "2.13.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" - integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== +is-core-module@^2.13.0: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== dependencies: - has "^1.0.3" - -is-core-module@^2.5.0: - version "2.11.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" - integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== - dependencies: - has "^1.0.3" - -is-data-descriptor@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" - integrity sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg== - dependencies: - kind-of "^3.0.2" - -is-data-descriptor@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" - integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== - dependencies: - kind-of "^6.0.0" - -is-descriptor@^0.1.0: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" - integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== - dependencies: - is-accessor-descriptor "^0.1.6" - is-data-descriptor "^0.1.4" - kind-of "^5.0.0" - -is-descriptor@^1.0.0, is-descriptor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" - integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== - dependencies: - is-accessor-descriptor "^1.0.0" - is-data-descriptor "^1.0.0" - kind-of "^6.0.2" - -is-docker@^2.0.0, is-docker@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" - integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== - -is-docker@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200" - integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== - -is-extendable@^0.1.0, is-extendable@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" - integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== - -is-extendable@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" - integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== - dependencies: - is-plain-object "^2.0.4" + hasown "^2.0.0" is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== - dependencies: - number-is-nan "^1.0.0" - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== - is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-generator-function@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.10.tgz#f1558baf1ac17e0deea7c0415c438351ff2b3c72" - integrity sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A== - dependencies: - has-tostringtag "^1.0.0" - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: +is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" -is-inside-container@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" - integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== - dependencies: - is-docker "^3.0.0" - -is-lambda@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" - integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== - -is-lower-case@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/is-lower-case/-/is-lower-case-1.1.3.tgz#7e147be4768dc466db3bfb21cc60b31e6ad69393" - integrity sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA== - dependencies: - lower-case "^1.1.0" - -is-nan@^1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d" - integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w== - dependencies: - call-bind "^1.0.0" - define-properties "^1.1.3" - -is-number@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" - integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== - dependencies: - kind-of "^3.0.2" - is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-observable@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" - integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== - dependencies: - symbol-observable "^1.1.0" +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== -is-path-cwd@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" - integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== - -is-path-inside@^3.0.2, is-path-inside@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== - -is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" - integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== - -is-plain-obj@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" - integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== - -is-plain-object@^2.0.3, is-plain-object@^2.0.4: +is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" -is-plain-object@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" - integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== - -is-potential-custom-element-name@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" - integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== - -is-promise@^2.1.0, is-promise@^2.2.2: - version "2.2.2" - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" - integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== - -is-stream@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" - integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== - is-stream@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== -is-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" - integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== - -is-typed-array@^1.1.3: - version "1.1.12" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" - integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== - dependencies: - which-typed-array "^1.1.11" - -is-typedarray@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" - integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== - -is-upper-case@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-upper-case/-/is-upper-case-1.1.2.tgz#8d0b1fa7e7933a1e58483600ec7d9661cbaf756f" - integrity sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw== - dependencies: - upper-case "^1.1.0" - -is-windows@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" - integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== - -is-wsl@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" - integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== - dependencies: - is-docker "^2.0.0" - -isarray@1.0.0, isarray@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" - integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== - -isbinaryfile@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.3.tgz#5d6def3edebf6e8ca8cae9c30183a804b5f8be80" - integrity sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw== - dependencies: - buffer-alloc "^1.2.0" - -isbinaryfile@^4.0.10: +isbinaryfile@^4.0.8: version "4.0.10" resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3" integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw== +isbinaryfile@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.0.tgz#034b7e54989dab8986598cbcea41f66663c65234" + integrity sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg== + isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== -isobject@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" - integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== - dependencies: - isarray "1.0.0" - -isobject@^3.0.0, isobject@^3.0.1: +isobject@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== @@ -7214,492 +2974,15 @@ isomorphic-ws@^5.0.0: resolved "https://registry.yarnpkg.com/isomorphic-ws/-/isomorphic-ws-5.0.0.tgz#e5529148912ecb9b451b46ed44d53dae1ce04bbf" integrity sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw== -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - -istanbul-lib-instrument@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" - integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== - dependencies: - "@babel/core" "^7.7.5" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.0.0" - semver "^6.3.0" - -istanbul-lib-instrument@^5.0.4: - version "5.2.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" - integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== - dependencies: - "@babel/core" "^7.12.3" - "@babel/parser" "^7.14.7" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.2.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" - integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.0.2: - version "3.1.5" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.5.tgz#cc9a6ab25cb25659810e4785ed9d9fb742578bae" - integrity sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - jake@^10.8.5: - version "10.8.5" - resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" - integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== + version "10.8.7" + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f" + integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w== dependencies: async "^3.2.3" chalk "^4.0.2" - filelist "^1.0.1" - minimatch "^3.0.4" - -jest-changed-files@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-26.6.2.tgz#f6198479e1cc66f22f9ae1e22acaa0b429c042d0" - integrity sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ== - dependencies: - "@jest/types" "^26.6.2" - execa "^4.0.0" - throat "^5.0.0" - -jest-cli@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-26.6.3.tgz#43117cfef24bc4cd691a174a8796a532e135e92a" - integrity sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg== - dependencies: - "@jest/core" "^26.6.3" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.4" - import-local "^3.0.2" - is-ci "^2.0.0" - jest-config "^26.6.3" - jest-util "^26.6.2" - jest-validate "^26.6.2" - prompts "^2.0.1" - yargs "^15.4.1" - -jest-config@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-26.6.3.tgz#64f41444eef9eb03dc51d5c53b75c8c71f645349" - integrity sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg== - dependencies: - "@babel/core" "^7.1.0" - "@jest/test-sequencer" "^26.6.3" - "@jest/types" "^26.6.2" - babel-jest "^26.6.3" - chalk "^4.0.0" - deepmerge "^4.2.2" - glob "^7.1.1" - graceful-fs "^4.2.4" - jest-environment-jsdom "^26.6.2" - jest-environment-node "^26.6.2" - jest-get-type "^26.3.0" - jest-jasmine2 "^26.6.3" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" - micromatch "^4.0.2" - pretty-format "^26.6.2" - -jest-diff@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" - integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== - dependencies: - chalk "^4.0.0" - diff-sequences "^26.6.2" - jest-get-type "^26.3.0" - pretty-format "^26.6.2" - -jest-diff@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def" - integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw== - dependencies: - chalk "^4.0.0" - diff-sequences "^27.5.1" - jest-get-type "^27.5.1" - pretty-format "^27.5.1" - -jest-docblock@^26.0.0: - version "26.0.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-26.0.0.tgz#3e2fa20899fc928cb13bd0ff68bd3711a36889b5" - integrity sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w== - dependencies: - detect-newline "^3.0.0" - -jest-each@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-26.6.2.tgz#02526438a77a67401c8a6382dfe5999952c167cb" - integrity sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A== - dependencies: - "@jest/types" "^26.6.2" - chalk "^4.0.0" - jest-get-type "^26.3.0" - jest-util "^26.6.2" - pretty-format "^26.6.2" - -jest-environment-jsdom@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz#78d09fe9cf019a357009b9b7e1f101d23bd1da3e" - integrity sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q== - dependencies: - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - jest-mock "^26.6.2" - jest-util "^26.6.2" - jsdom "^16.4.0" - -jest-environment-node@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-26.6.2.tgz#824e4c7fb4944646356f11ac75b229b0035f2b0c" - integrity sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag== - dependencies: - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - jest-mock "^26.6.2" - jest-util "^26.6.2" - -jest-get-type@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" - integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== - -jest-get-type@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1" - integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw== - -jest-haste-map@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa" - integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w== - dependencies: - "@jest/types" "^26.6.2" - "@types/graceful-fs" "^4.1.2" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.4" - jest-regex-util "^26.0.0" - jest-serializer "^26.6.2" - jest-util "^26.6.2" - jest-worker "^26.6.2" - micromatch "^4.0.2" - sane "^4.0.3" - walker "^1.0.7" - optionalDependencies: - fsevents "^2.1.2" - -jest-haste-map@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" - integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== - dependencies: - "@jest/types" "^29.6.3" - "@types/graceful-fs" "^4.1.3" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.9" - jest-regex-util "^29.6.3" - jest-util "^29.7.0" - jest-worker "^29.7.0" - micromatch "^4.0.4" - walker "^1.0.8" - optionalDependencies: - fsevents "^2.3.2" - -jest-jasmine2@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz#adc3cf915deacb5212c93b9f3547cd12958f2edd" - integrity sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg== - dependencies: - "@babel/traverse" "^7.1.0" - "@jest/environment" "^26.6.2" - "@jest/source-map" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - expect "^26.6.2" - is-generator-fn "^2.0.0" - jest-each "^26.6.2" - jest-matcher-utils "^26.6.2" - jest-message-util "^26.6.2" - jest-runtime "^26.6.3" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - pretty-format "^26.6.2" - throat "^5.0.0" - -jest-leak-detector@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz#7717cf118b92238f2eba65054c8a0c9c653a91af" - integrity sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg== - dependencies: - jest-get-type "^26.3.0" - pretty-format "^26.6.2" - -jest-matcher-utils@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz#8e6fd6e863c8b2d31ac6472eeb237bc595e53e7a" - integrity sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw== - dependencies: - chalk "^4.0.0" - jest-diff "^26.6.2" - jest-get-type "^26.3.0" - pretty-format "^26.6.2" - -jest-matcher-utils@^27.0.0: - version "27.5.1" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab" - integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw== - dependencies: - chalk "^4.0.0" - jest-diff "^27.5.1" - jest-get-type "^27.5.1" - pretty-format "^27.5.1" - -jest-message-util@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-26.6.2.tgz#58173744ad6fc0506b5d21150b9be56ef001ca07" - integrity sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA== - dependencies: - "@babel/code-frame" "^7.0.0" - "@jest/types" "^26.6.2" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.4" - micromatch "^4.0.2" - pretty-format "^26.6.2" - slash "^3.0.0" - stack-utils "^2.0.2" - -jest-mock@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-26.6.2.tgz#d6cb712b041ed47fe0d9b6fc3474bc6543feb302" - integrity sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew== - dependencies: - "@jest/types" "^26.6.2" - "@types/node" "*" - -jest-pnp-resolver@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" - integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== - -jest-regex-util@^26.0.0: - version "26.0.0" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28" - integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A== - -jest-regex-util@^29.6.3: - version "29.6.3" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" - integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== - -jest-resolve-dependencies@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz#6680859ee5d22ee5dcd961fe4871f59f4c784fb6" - integrity sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg== - dependencies: - "@jest/types" "^26.6.2" - jest-regex-util "^26.0.0" - jest-snapshot "^26.6.2" - -jest-resolve@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-26.6.2.tgz#a3ab1517217f469b504f1b56603c5bb541fbb507" - integrity sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ== - dependencies: - "@jest/types" "^26.6.2" - chalk "^4.0.0" - graceful-fs "^4.2.4" - jest-pnp-resolver "^1.2.2" - jest-util "^26.6.2" - read-pkg-up "^7.0.1" - resolve "^1.18.1" - slash "^3.0.0" - -jest-runner@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-26.6.3.tgz#2d1fed3d46e10f233fd1dbd3bfaa3fe8924be159" - integrity sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ== - dependencies: - "@jest/console" "^26.6.2" - "@jest/environment" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.7.1" - exit "^0.1.2" - graceful-fs "^4.2.4" - jest-config "^26.6.3" - jest-docblock "^26.0.0" - jest-haste-map "^26.6.2" - jest-leak-detector "^26.6.2" - jest-message-util "^26.6.2" - jest-resolve "^26.6.2" - jest-runtime "^26.6.3" - jest-util "^26.6.2" - jest-worker "^26.6.2" - source-map-support "^0.5.6" - throat "^5.0.0" - -jest-runtime@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-26.6.3.tgz#4f64efbcfac398331b74b4b3c82d27d401b8fa2b" - integrity sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw== - dependencies: - "@jest/console" "^26.6.2" - "@jest/environment" "^26.6.2" - "@jest/fake-timers" "^26.6.2" - "@jest/globals" "^26.6.2" - "@jest/source-map" "^26.6.2" - "@jest/test-result" "^26.6.2" - "@jest/transform" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/yargs" "^15.0.0" - chalk "^4.0.0" - cjs-module-lexer "^0.6.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.2.4" - jest-config "^26.6.3" - jest-haste-map "^26.6.2" - jest-message-util "^26.6.2" - jest-mock "^26.6.2" - jest-regex-util "^26.0.0" - jest-resolve "^26.6.2" - jest-snapshot "^26.6.2" - jest-util "^26.6.2" - jest-validate "^26.6.2" - slash "^3.0.0" - strip-bom "^4.0.0" - yargs "^15.4.1" - -jest-serializer@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1" - integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g== - dependencies: - "@types/node" "*" - graceful-fs "^4.2.4" - -jest-snapshot@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-26.6.2.tgz#f3b0af1acb223316850bd14e1beea9837fb39c84" - integrity sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og== - dependencies: - "@babel/types" "^7.0.0" - "@jest/types" "^26.6.2" - "@types/babel__traverse" "^7.0.4" - "@types/prettier" "^2.0.0" - chalk "^4.0.0" - expect "^26.6.2" - graceful-fs "^4.2.4" - jest-diff "^26.6.2" - jest-get-type "^26.3.0" - jest-haste-map "^26.6.2" - jest-matcher-utils "^26.6.2" - jest-message-util "^26.6.2" - jest-resolve "^26.6.2" - natural-compare "^1.4.0" - pretty-format "^26.6.2" - semver "^7.3.2" - -jest-util@^26.1.0, jest-util@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1" - integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q== - dependencies: - "@jest/types" "^26.6.2" - "@types/node" "*" - chalk "^4.0.0" - graceful-fs "^4.2.4" - is-ci "^2.0.0" - micromatch "^4.0.2" - -jest-util@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" - integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== - dependencies: - "@jest/types" "^29.6.3" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-validate@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-26.6.2.tgz#23d380971587150467342911c3d7b4ac57ab20ec" - integrity sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ== - dependencies: - "@jest/types" "^26.6.2" - camelcase "^6.0.0" - chalk "^4.0.0" - jest-get-type "^26.3.0" - leven "^3.1.0" - pretty-format "^26.6.2" - -jest-watcher@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-26.6.2.tgz#a5b683b8f9d68dbcb1d7dae32172d2cca0592975" - integrity sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ== - dependencies: - "@jest/test-result" "^26.6.2" - "@jest/types" "^26.6.2" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - jest-util "^26.6.2" - string-length "^4.0.1" - -jest-worker@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" - integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^7.0.0" + filelist "^1.0.4" + minimatch "^3.1.2" jest-worker@^27.4.5: version "27.5.1" @@ -7710,48 +2993,16 @@ jest-worker@^27.4.5: merge-stream "^2.0.0" supports-color "^8.0.0" -jest-worker@^29.7.0: - version "29.7.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" - integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== - dependencies: - "@types/node" "*" - jest-util "^29.7.0" - merge-stream "^2.0.0" - supports-color "^8.0.0" +jiti@^1.19.1: + version "1.21.0" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.0.tgz#7c97f8fe045724e136a397f7340475244156105d" + integrity sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q== -jest@^26.6.3: - version "26.6.3" - resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.3.tgz#40e8fdbe48f00dfa1f0ce8121ca74b88ac9148ef" - integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q== - dependencies: - "@jest/core" "^26.6.3" - import-local "^3.0.2" - jest-cli "^26.6.3" - -js-base64@^2.4.9: - version "2.6.4" - resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" - integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== - -js-tokens@^4.0.0: +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-tokens@^8.0.0: - version "8.0.1" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-8.0.1.tgz#f068fde9bd2f9f4a24ad78f3b4fa787216b433e3" - integrity sha512-3AGrZT6tuMm1ZWWn9mLXh7XMfi2YtiLNPALCVxBCiUVq0LD1OQMxV/AdS/s7rLJU5o9i/jBZw/N4vXXL5dm29A== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -7759,68 +3010,6 @@ js-yaml@^4.1.0: dependencies: argparse "^2.0.1" -jsdom@^16.4.0: - version "16.7.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" - integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== - dependencies: - abab "^2.0.5" - acorn "^8.2.4" - acorn-globals "^6.0.0" - cssom "^0.4.4" - cssstyle "^2.3.0" - data-urls "^2.0.0" - decimal.js "^10.2.1" - domexception "^2.0.1" - escodegen "^2.0.0" - form-data "^3.0.0" - html-encoding-sniffer "^2.0.1" - http-proxy-agent "^4.0.1" - https-proxy-agent "^5.0.0" - is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.0" - parse5 "6.0.1" - saxes "^5.0.1" - symbol-tree "^3.2.4" - tough-cookie "^4.0.0" - w3c-hr-time "^1.0.2" - w3c-xmlserializer "^2.0.0" - webidl-conversions "^6.1.0" - whatwg-encoding "^1.0.5" - whatwg-mimetype "^2.3.0" - whatwg-url "^8.5.0" - ws "^7.4.6" - xml-name-validator "^3.0.0" - -jsdom@^22.1.0: - version "22.1.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-22.1.0.tgz#0fca6d1a37fbeb7f4aac93d1090d782c56b611c8" - integrity sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw== - dependencies: - abab "^2.0.6" - cssstyle "^3.0.0" - data-urls "^4.0.0" - decimal.js "^10.4.3" - domexception "^4.0.0" - form-data "^4.0.0" - html-encoding-sniffer "^3.0.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.1" - is-potential-custom-element-name "^1.0.1" - nwsapi "^2.2.4" - parse5 "^7.1.2" - rrweb-cssom "^0.6.0" - saxes "^6.0.0" - symbol-tree "^3.2.4" - tough-cookie "^4.1.2" - w3c-xmlserializer "^4.0.0" - webidl-conversions "^7.0.0" - whatwg-encoding "^2.0.0" - whatwg-mimetype "^3.0.0" - whatwg-url "^12.0.1" - ws "^8.13.0" - xml-name-validator "^4.0.0" - jsesc@^2.5.1: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" @@ -7836,12 +3025,7 @@ json-buffer@3.0.1: resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== -json-loader@^0.5.7: - version "0.5.7" - resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" - integrity sha512-QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w== - -json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: +json-parse-even-better-errors@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== @@ -7856,28 +3040,21 @@ json-schema-traverse@^1.0.0: resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json-schema-typed@^7.0.3: + version "7.0.3" + resolved "https://registry.yarnpkg.com/json-schema-typed/-/json-schema-typed-7.0.3.tgz#23ff481b8b4eebcd2ca123b4fa0409e66469a2d9" + integrity sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A== json-stringify-safe@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== -json5@2.x, json5@^2.1.2, json5@^2.2.0, json5@^2.2.3: +json5@^2.2.0, json5@^2.2.2, json5@^2.2.3: version "2.2.3" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== -json5@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" - integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== - dependencies: - minimist "^1.2.0" - jsonfile@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" @@ -7894,190 +3071,38 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" -jszip@^3.1.0: - version "3.10.1" - resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz#34aee70eb18ea1faec2f589208a157d1feb091c2" - integrity sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g== - dependencies: - lie "~3.3.0" - pako "~1.0.2" - readable-stream "~2.3.6" - setimmediate "^1.0.5" - -keyboardevent-from-electron-accelerator@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/keyboardevent-from-electron-accelerator/-/keyboardevent-from-electron-accelerator-2.0.0.tgz#ace21b1aa4e47148815d160057f9edb66567c50c" - integrity sha512-iQcmNA0M4ETMNi0kG/q0h/43wZk7rMeKYrXP7sqKIJbHkTU8Koowgzv+ieR/vWJbOwxx5nDC3UnudZ0aLSu4VA== - -keyboardevents-areequal@^0.2.1: - version "0.2.2" - resolved "https://registry.yarnpkg.com/keyboardevents-areequal/-/keyboardevents-areequal-0.2.2.tgz#88191ec738ce9f7591c25e9056de928b40277194" - integrity sha512-Nv+Kr33T0mEjxR500q+I6IWisOQ0lK1GGOncV0kWE6n4KFmpcu7RUX5/2B0EUtX51Cb0HjZ9VJsSY3u4cBa0kw== - -keyv@^4.0.0, keyv@^4.5.3: - version "4.5.3" - resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.3.tgz#00873d2b046df737963157bd04f294ca818c9c25" - integrity sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug== +keyv@^4.0.0: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== dependencies: json-buffer "3.0.1" -kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" - integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== - dependencies: - is-buffer "^1.1.5" - -kind-of@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" - integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== - dependencies: - is-buffer "^1.1.5" - -kind-of@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" - integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== - -kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3: +kind-of@^6.0.2: version "6.0.3" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -known-css-properties@^0.26.0: - version "0.26.0" - resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.26.0.tgz#008295115abddc045a9f4ed7e2a84dc8b3a77649" - integrity sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg== - -known-css-properties@^0.28.0: - version "0.28.0" - resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.28.0.tgz#8a8be010f368b3036fe6ab0ef4bbbed972bd6274" - integrity sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ== - -launch-editor@^2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.0.tgz#4c0c1a6ac126c572bd9ff9a30da1d2cae66defd7" - integrity sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ== - dependencies: - picocolors "^1.0.0" - shell-quote "^1.7.3" - -lazy-cache@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" - integrity sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ== - lazy-val@^1.0.4, lazy-val@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/lazy-val/-/lazy-val-1.0.5.tgz#6cf3b9f5bc31cee7ee3e369c0832b7583dcd923d" integrity sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q== -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -levn@~0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" - integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== - dependencies: - prelude-ls "~1.1.2" - type-check "~0.3.2" - -lie@~3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz#dcf82dee545f46074daf200c7c1c5a08e0f40f6a" - integrity sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ== - dependencies: - immediate "~3.0.5" +lilconfig@^2.0.5, lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== lines-and-columns@^1.1.6: version "1.2.4" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== -listr-silent-renderer@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" - integrity sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA== - -listr-update-renderer@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" - integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== - dependencies: - chalk "^1.1.3" - cli-truncate "^0.2.1" - elegant-spinner "^1.0.1" - figures "^1.7.0" - indent-string "^3.0.0" - log-symbols "^1.0.2" - log-update "^2.3.0" - strip-ansi "^3.0.1" - -listr-verbose-renderer@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" - integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== - dependencies: - chalk "^2.4.1" - cli-cursor "^2.1.0" - date-fns "^1.27.2" - figures "^2.0.0" - -listr@^0.14.3: - version "0.14.3" - resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" - integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== - dependencies: - "@samverschueren/stream-to-observable" "^0.3.0" - is-observable "^1.1.0" - is-promise "^2.1.0" - is-stream "^1.1.0" - listr-silent-renderer "^1.1.1" - listr-update-renderer "^0.5.0" - listr-verbose-renderer "^0.5.0" - p-map "^2.0.0" - rxjs "^6.3.3" - loader-runner@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== -loader-utils@^1.0.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3" - integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^1.0.1" - -loader-utils@^2.0.0: - version "2.0.4" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" - integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== - dependencies: - big.js "^5.2.2" - emojis-list "^3.0.0" - json5 "^2.1.2" - locate-path@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" @@ -8086,20 +3111,6 @@ locate-path@^3.0.0: p-locate "^3.0.0" path-exists "^3.0.0" -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - locate-path@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.2.0.tgz#69cb1779bd90b35ab1e771e1f2f89a202c2a8a8a" @@ -8107,87 +3118,22 @@ locate-path@^7.1.0: dependencies: p-locate "^6.0.0" -lockfile@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/lockfile/-/lockfile-1.0.4.tgz#07f819d25ae48f87e538e6578b6964a4981a5609" - integrity sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA== - dependencies: - signal-exit "^3.0.2" - -lodash-es@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" - integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== - -lodash-unified@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/lodash-unified/-/lodash-unified-1.0.3.tgz#80b1eac10ed2eb02ed189f08614a29c27d07c894" - integrity sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ== - lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== -lodash.defaults@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" - integrity sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ== - -lodash.merge@^4.6.1, lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash.truncate@^4.4.2: - version "4.4.2" - resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" - integrity sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw== - -lodash@4.x, lodash@^4.0.1, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0: +lodash@^4.17.15: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== -log-symbols@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" - integrity sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ== +loose-envify@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: - chalk "^1.0.0" - -log-update@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" - integrity sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg== - dependencies: - ansi-escapes "^3.0.0" - cli-cursor "^2.0.0" - wrap-ansi "^3.0.1" - -longest@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" - integrity sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg== - -lower-case-first@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1" - integrity sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA== - dependencies: - lower-case "^1.1.2" - -lower-case@^1.1.0, lower-case@^1.1.1, lower-case@^1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" - integrity sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA== - -lower-case@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" - integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== - dependencies: - tslib "^2.0.3" + js-tokens "^3.0.0 || ^4.0.0" lowercase-keys@^2.0.0: version "2.0.0" @@ -8208,118 +3154,6 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" -lru-cache@^7.7.1: - version "7.14.1" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.14.1.tgz#8da8d2f5f59827edb388e63e459ac23d6d408fea" - integrity sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA== - -lru-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" - integrity sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ== - dependencies: - es5-ext "~0.10.2" - -magic-string@^0.30.0: - version "0.30.0" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.0.tgz#fd58a4748c5c4547338a424e90fa5dd17f4de529" - integrity sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ== - dependencies: - "@jridgewell/sourcemap-codec" "^1.4.13" - -make-dir@^2.0.0, make-dir@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" - integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== - dependencies: - pify "^4.0.1" - semver "^5.6.0" - -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@1.x: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -make-fetch-happen@^10.0.4: - version "10.2.1" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" - integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== - dependencies: - agentkeepalive "^4.2.1" - cacache "^16.1.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^5.0.0" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^7.7.1" - minipass "^3.1.6" - minipass-collect "^1.0.2" - minipass-fetch "^2.0.3" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^0.6.3" - promise-retry "^2.0.1" - socks-proxy-agent "^7.0.0" - ssri "^9.0.0" - -make-fetch-happen@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968" - integrity sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg== - dependencies: - agentkeepalive "^4.1.3" - cacache "^15.2.0" - http-cache-semantics "^4.1.0" - http-proxy-agent "^4.0.1" - https-proxy-agent "^5.0.0" - is-lambda "^1.0.1" - lru-cache "^6.0.0" - minipass "^3.1.3" - minipass-collect "^1.0.2" - minipass-fetch "^1.3.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.4" - negotiator "^0.6.2" - promise-retry "^2.0.1" - socks-proxy-agent "^6.0.0" - ssri "^8.0.0" - -makeerror@1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" - integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== - dependencies: - tmpl "1.0.5" - -map-cache@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" - integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== - -map-obj@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" - integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== - -map-obj@^4.0.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" - integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== - -map-visit@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" - integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== - dependencies: - object-visit "^1.0.0" - matcher@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" @@ -8327,129 +3161,33 @@ matcher@^3.0.0: dependencies: escape-string-regexp "^4.0.0" -mathml-tag-names@^2.1.3: - version "2.1.3" - resolved "https://registry.yarnpkg.com/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz#4ddadd67308e780cf16a47685878ee27b736a0a3" - integrity sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg== - -md5.js@^1.3.4: - version "1.3.5" - resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" - integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== +megalodon@^9.1.1: + version "9.1.1" + resolved "https://registry.yarnpkg.com/megalodon/-/megalodon-9.1.1.tgz#0707f58b6323db5328cef7acba63f22859e07dcc" + integrity sha512-8WQjRiMFrGtf/IEUP8bJxxjQgXkevBg8fl/vHt4agd6HuGdyEhQg/DHKqXKvXWLH1KipTs9z0278eFTDqOpr2A== dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - safe-buffer "^5.1.2" - -media-typer@0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" - integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== - -megalodon@8.1.4: - version "8.1.4" - resolved "https://registry.yarnpkg.com/megalodon/-/megalodon-8.1.4.tgz#bf660307f964a77306a9a443dc1b318382ebe909" - integrity sha512-9XYogBMY/Fc01QedqKRwFB/VrxfARYAEk4BCEK7/iU9iN39JN0ioA927KpwmLghShSiKYupFwnYcCb/a/IkO5A== - dependencies: - "@types/oauth" "^0.9.2" + "@badgateway/oauth2-client" "^2.2.4" "@types/ws" "^8.5.5" axios "1.5.1" dayjs "^1.11.10" + events "^3.3.0" form-data "^4.0.0" - https-proxy-agent "^7.0.2" isomorphic-ws "^5.0.0" - oauth "^0.10.0" object-assign-deep "^0.4.0" - parse-link-header "^2.0.0" - socks-proxy-agent "^8.0.2" - typescript "5.2.2" uuid "^9.0.1" ws "8.14.2" -memfs@^3.4.3: - version "3.6.0" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6" - integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ== - dependencies: - fs-monkey "^1.0.4" - -memoize-one@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045" - integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw== - -memoizee@^0.4.15: - version "0.4.15" - resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.15.tgz#e6f3d2da863f318d02225391829a6c5956555b72" - integrity sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ== - dependencies: - d "^1.0.1" - es5-ext "^0.10.53" - es6-weak-map "^2.0.3" - event-emitter "^0.3.5" - is-promise "^2.2.2" - lru-queue "^0.1.0" - next-tick "^1.1.0" - timers-ext "^0.1.7" - -meow@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/meow/-/meow-9.0.0.tgz#cd9510bc5cac9dee7d03c73ee1f9ad959f4ea364" - integrity sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ== - dependencies: - "@types/minimist" "^1.2.0" - camelcase-keys "^6.2.2" - decamelize "^1.2.0" - decamelize-keys "^1.1.0" - hard-rejection "^2.1.0" - minimist-options "4.1.0" - normalize-package-data "^3.0.0" - read-pkg-up "^7.0.1" - redent "^3.0.0" - trim-newlines "^3.0.0" - type-fest "^0.18.0" - yargs-parser "^20.2.3" - -merge-descriptors@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" - integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== - merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== -merge2@^1.3.0, merge2@^1.4.1: +merge2@^1.3.0: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -methods@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" - integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== - -micromatch@^3.1.4: - version "3.1.10" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" - integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - braces "^2.3.1" - define-property "^2.0.2" - extend-shallow "^3.0.2" - extglob "^2.0.4" - fragment-cache "^0.2.1" - kind-of "^6.0.2" - nanomatch "^1.2.9" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.2" - -micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: +micromatch@^4.0.4, micromatch@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== @@ -8457,50 +3195,32 @@ micromatch@^4.0.0, micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5: braces "^3.0.2" picomatch "^2.3.1" -miller-rabin@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" - integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== - dependencies: - bn.js "^4.0.0" - brorand "^1.0.1" - -mime-db@1.52.0, "mime-db@>= 1.43.0 < 2", mime-db@^1.28.0: +mime-db@1.52.0: version "1.52.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== -mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: +mime-types@^2.1.12, mime-types@^2.1.27: version "2.1.35" resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" -mime@1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - mime@^2.5.2: version "2.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== - mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -mimic-fn@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" - integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== +mimic-fn@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-3.1.0.tgz#65755145bbf3e36954b949c16450427451d5ca74" + integrity sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ== mimic-response@^1.0.0: version "1.0.1" @@ -8512,140 +3232,43 @@ mimic-response@^3.1.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== +mini-svg-data-uri@^1.4.3: + version "1.4.4" + resolved "https://registry.yarnpkg.com/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz#8ab0aabcdf8c29ad5693ca595af19dd2ead09939" + integrity sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg== -mini-css-extract-plugin@^2.7.5: - version "2.7.6" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz#282a3d38863fddcd2e0c220aaed5b90bc156564d" - integrity sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw== - dependencies: - schema-utils "^4.0.0" - -minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" - integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== - -minimalistic-crypto-utils@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" - integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== - -minimatch@3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" - integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== - dependencies: - brace-expansion "^1.1.7" - -minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: +minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" -minimatch@^5.0.1: +minimatch@^5.0.1, minimatch@^5.1.1: version "5.1.6" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.0: - version "9.0.3" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" - integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== - dependencies: - brace-expansion "^2.0.1" - -minimatch@~3.0.2: - version "3.0.8" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.8.tgz#5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1" - integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== - dependencies: - brace-expansion "^1.1.7" - -minimist-options@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" - integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== - dependencies: - arrify "^1.0.1" - is-plain-obj "^1.1.0" - kind-of "^6.0.3" - -minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6, minimist@^1.2.8: +minimist@^1.2.6: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== - dependencies: - minipass "^3.0.0" - -minipass-fetch@^1.3.2: - version "1.4.1" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz#d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6" - integrity sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw== - dependencies: - minipass "^3.1.0" - minipass-sized "^1.0.3" - minizlib "^2.0.0" - optionalDependencies: - encoding "^0.1.12" - -minipass-fetch@^2.0.3: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" - integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== - dependencies: - minipass "^3.1.6" - minipass-sized "^1.0.3" - minizlib "^2.1.2" - optionalDependencies: - encoding "^0.1.13" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" - integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== - dependencies: - minipass "^3.0.0" - -minipass-sized@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70" - integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== - dependencies: - minipass "^3.0.0" - -minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3, minipass@^3.1.6: +minipass@^3.0.0: version "3.3.6" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== dependencies: yallist "^4.0.0" -minipass@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.0.3.tgz#00bfbaf1e16e35e804f4aa31a7c1f6b8d9f0ee72" - integrity sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw== +minipass@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" + integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== -minizlib@^2.0.0, minizlib@^2.1.1, minizlib@^2.1.2: +minizlib@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== @@ -8653,442 +3276,137 @@ minizlib@^2.0.0, minizlib@^2.1.1, minizlib@^2.1.2: minipass "^3.0.0" yallist "^4.0.0" -mitt@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mitt/-/mitt-2.1.0.tgz#f740577c23176c6205b121b2973514eade1b2230" - integrity sha512-ILj2TpLiysu2wkBbWjAmww7TkZb65aiQO+DkVdUTBpBXq+MHYiETENkKFMtsJZX1Lf4pe4QOrTSjIfUwN5lRdg== - -mitt@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1" - integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw== - -mixin-deep@^1.2.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" - integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== - dependencies: - for-in "^1.0.2" - is-extendable "^1.0.1" - -mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@1.x, mkdirp@^1.0.3, mkdirp@^1.0.4: +mkdirp@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mkdirp@^0.5.1: - version "0.5.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" - integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== - dependencies: - minimist "^1.2.6" - -modify-filename@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/modify-filename/-/modify-filename-1.1.0.tgz#9a2dec83806fbb2d975f22beec859ca26b393aa1" - integrity sha512-EickqnKq3kVVaZisYuCxhtKbZjInCuwgwZWyAmRIp1NTMhri7r3380/uqwrUHfaDiPzLVTuoNy4whX66bxPVog== - -moment@^2.29.4: - version "2.29.4" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" - integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== - -mousetrap@^1.6.5: - version "1.6.5" - resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.5.tgz#8a766d8c272b08393d5f56074e0b5ec183485bf9" - integrity sha512-QNo4kEepaIBwiT8CDhP98umTetp+JNfQYBWvC1pc6/OAibuXtRcxZ58Qz8skvEHYvURne/7R8T5VoOI7rDsEUA== - -ms@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" - integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== - ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3, ms@^2.0.0: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -muggle-string@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.3.1.tgz#e524312eb1728c63dd0b2ac49e3282e6ed85963a" - integrity sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg== - -multicast-dns@^7.2.5: - version "7.2.5" - resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" - integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== dependencies: - dns-packet "^5.2.2" - thunky "^1.0.2" + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" -multiline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/multiline/-/multiline-2.0.0.tgz#4bb44ddc474c4fa6deaee4266c75c7be2535127a" - integrity sha512-+HpXaUcV8PIGNNmuhtlaVmw4NH0W30/A5WP+rq6pxZYBjDslX/sXkFgL3Mgk1cSGGIICjWu4gNStkJXL6ZM2DQ== - dependencies: - strip-indent "^2.0.0" - -mute-stream@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" - integrity sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ== - -nan@^2.17.0: - version "2.17.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.17.0.tgz#c0150a2368a182f033e9aa5195ec76ea41a199cb" - integrity sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ== - -nanoid@^3.3.6: +nanoid@^3.3.4, nanoid@^3.3.6: version "3.3.6" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c" integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== -nanomatch@^1.2.9: - version "1.2.13" - resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" - integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== - dependencies: - arr-diff "^4.0.0" - array-unique "^0.3.2" - define-property "^2.0.2" - extend-shallow "^3.0.2" - fragment-cache "^0.2.1" - is-windows "^1.0.2" - kind-of "^6.0.2" - object.pick "^1.3.0" - regex-not "^1.0.0" - snapdragon "^0.8.1" - to-regex "^3.0.1" - -napi-build-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" - integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -ncname@1.0.x: - version "1.0.0" - resolved "https://registry.yarnpkg.com/ncname/-/ncname-1.0.0.tgz#5b57ad18b1ca092864ef62b0b1ed8194f383b71c" - integrity sha512-VLkyYr2kmPzVzrmkER9i13RJIdGbjNr855gfh2VvuboO1eYnb9k+nFS+JygfSVgtbo/HMpLz5pEYLK4Xjy7XGg== - dependencies: - xml-char-classes "^1.0.0" - -negotiator@0.6.3, negotiator@^0.6.2, negotiator@^0.6.3: - version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" - integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== - neo-async@^2.6.2: version "2.6.2" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== -next-tick@1, next-tick@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" - integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== - -nice-try@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== - -no-case@^2.2.0, no-case@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" - integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== +next@^12.3.4: + version "12.3.4" + resolved "https://registry.yarnpkg.com/next/-/next-12.3.4.tgz#f2780a6ebbf367e071ce67e24bd8a6e05de2fcb1" + integrity sha512-VcyMJUtLZBGzLKo3oMxrEF0stxh8HwuW976pAzlHhI3t8qJ4SROjCrSh1T24bhrbjw55wfZXAbXPGwPt5FLRfQ== dependencies: - lower-case "^1.1.1" + "@next/env" "12.3.4" + "@swc/helpers" "0.4.11" + caniuse-lite "^1.0.30001406" + postcss "8.4.14" + styled-jsx "5.0.7" + use-sync-external-store "1.2.0" + optionalDependencies: + "@next/swc-android-arm-eabi" "12.3.4" + "@next/swc-android-arm64" "12.3.4" + "@next/swc-darwin-arm64" "12.3.4" + "@next/swc-darwin-x64" "12.3.4" + "@next/swc-freebsd-x64" "12.3.4" + "@next/swc-linux-arm-gnueabihf" "12.3.4" + "@next/swc-linux-arm64-gnu" "12.3.4" + "@next/swc-linux-arm64-musl" "12.3.4" + "@next/swc-linux-x64-gnu" "12.3.4" + "@next/swc-linux-x64-musl" "12.3.4" + "@next/swc-win32-arm64-msvc" "12.3.4" + "@next/swc-win32-ia32-msvc" "12.3.4" + "@next/swc-win32-x64-msvc" "12.3.4" -no-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" - integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== +nextron@^8.12.0: + version "8.12.0" + resolved "https://registry.yarnpkg.com/nextron/-/nextron-8.12.0.tgz#20264d5151581fc95969ca07de02f95201aa56a7" + integrity sha512-o9AqxOl6kzbBOrcSeZ9b98srPKDt0zBrjfb905xVHWUO3Z6/A4l3p4Ah/XajUhcs8I50UevHE43yYXsNadQ5wA== dependencies: - lower-case "^2.0.2" - tslib "^2.0.3" - -node-abi@^3.3.0: - version "3.33.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.33.0.tgz#8b23a0cec84e1c5f5411836de6a9b84bccf26e7f" - integrity sha512-7GGVawqyHF4pfd0YFybhv/eM9JwTtPqx0mAanQ146O3FlSh3pA24zf9IRQTOsfTSqXTNzPSP5iagAJ94jjuVog== - dependencies: - semver "^7.3.5" + "@babel/core" "7.23.2" + "@babel/plugin-transform-class-properties" "7.22.5" + "@babel/plugin-transform-object-rest-spread" "7.22.15" + "@babel/plugin-transform-optional-chaining" "7.23.0" + "@babel/plugin-transform-runtime" "7.23.2" + "@babel/preset-env" "7.23.2" + "@babel/preset-typescript" "7.23.2" + "@babel/runtime" "7.23.2" + "@babel/runtime-corejs3" "7.23.2" + arg "5.0.2" + babel-loader "9.1.3" + chalk "4.1.2" + execa "5.1.1" + fs-extra "11.1.1" + terser-webpack-plugin "5.3.9" + tsconfig-paths-webpack-plugin "4.1.0" + webpack "5.89.0" + webpack-merge "5.9.0" node-addon-api@^1.6.3: version "1.7.2" resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-1.7.2.tgz#3df30b95720b53c24e59948b49532b662444f54d" integrity sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg== -node-forge@^1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" - integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== - -node-gyp-build@^4.3.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.6.0.tgz#0c52e4cbf54bbd28b709820ef7b6a3c2d6209055" - integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== - -node-gyp@^8.4.1: - version "8.4.1" - resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.4.1.tgz#3d49308fc31f768180957d6b5746845fbd429937" - integrity sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w== - dependencies: - env-paths "^2.2.0" - glob "^7.1.4" - graceful-fs "^4.2.6" - make-fetch-happen "^9.1.0" - nopt "^5.0.0" - npmlog "^6.0.0" - rimraf "^3.0.2" - semver "^7.3.5" - tar "^6.1.2" - which "^2.0.2" - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== - -node-loader@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/node-loader/-/node-loader-2.0.0.tgz#9109a6d828703fd3e0aa03c1baec12a798071562" - integrity sha512-I5VN34NO4/5UYJaUBtkrODPWxbobrE4hgDqPrjB25yPkonFhCmZ146vTH+Zg417E9Iwoh1l/MbRs1apc5J295Q== - dependencies: - loader-utils "^2.0.0" - -node-notifier@^8.0.0: - version "8.0.2" - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5" - integrity sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg== - dependencies: - growly "^1.3.0" - is-wsl "^2.2.0" - semver "^7.3.2" - shellwords "^0.1.1" - uuid "^8.3.0" - which "^2.0.2" - -node-releases@^2.0.13, node-releases@^2.0.8: +node-releases@^2.0.13: version "2.0.13" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== -node-sass@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-9.0.0.tgz#c21cd17bd9379c2d09362b3baf2cbf089bce08ed" - integrity sha512-yltEuuLrfH6M7Pq2gAj5B6Zm7m+gdZoG66wTqG6mIZV/zijq3M2OO2HswtT6oBspPyFhHDcaxWpsBm0fRNDHPg== - dependencies: - async-foreach "^0.1.3" - chalk "^4.1.2" - cross-spawn "^7.0.3" - gaze "^1.0.0" - get-stdin "^4.0.1" - glob "^7.0.3" - lodash "^4.17.15" - make-fetch-happen "^10.0.4" - meow "^9.0.0" - nan "^2.17.0" - node-gyp "^8.4.1" - sass-graph "^4.0.1" - stdout-stream "^1.4.0" - "true-case-path" "^2.2.1" - -nopt@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" - integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== - dependencies: - abbrev "1" - -normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-package-data@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" - integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== - dependencies: - hosted-git-info "^4.0.1" - is-core-module "^2.5.0" - semver "^7.3.4" - validate-npm-package-license "^3.0.1" - -normalize-path@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" - integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== - dependencies: - remove-trailing-separator "^1.0.1" - normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + normalize-url@^6.0.1: version "6.1.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== -normalize-wheel-es@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz#0fa2593d619f7245a541652619105ab076acf09e" - integrity sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw== - -npm-run-path@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" - integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== - dependencies: - path-key "^2.0.0" - -npm-run-path@^4.0.0, npm-run-path@^4.0.1: +npm-run-path@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== dependencies: path-key "^3.0.0" -npm-run-path@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" - integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== - dependencies: - path-key "^4.0.0" - -npmlog@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830" - integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== - dependencies: - are-we-there-yet "^3.0.0" - console-control-strings "^1.1.0" - gauge "^4.0.3" - set-blocking "^2.0.0" - -nth-check@^2.0.1, nth-check@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" - integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== - dependencies: - boolbase "^1.0.0" - -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== - -nwsapi@^2.2.0, nwsapi@^2.2.4: - version "2.2.5" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.5.tgz#a52744c61b3889dd44b0a158687add39b8d935e2" - integrity sha512-6xpotnECFy/og7tKSBVmUNft7J3jyXAka4XvG6AUhFWRz+Q/Ljus7znJAA3bxColfQLdS+XsjoodtJfCgeTEFQ== - -oauth@^0.10.0: - version "0.10.0" - resolved "https://registry.yarnpkg.com/oauth/-/oauth-0.10.0.tgz#3551c4c9b95c53ea437e1e21e46b649482339c58" - integrity sha512-1orQ9MT1vHFGQxhuy7E/0gECD3fd2fCC+PIX+/jgmU/gI3EpRocXtmtvxCO5x3WZ443FLTLFWNDjl5MPJf9u+Q== - object-assign-deep@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/object-assign-deep/-/object-assign-deep-0.4.0.tgz#43505d3679abb9686ab359b97ac14cc837a9d143" integrity sha512-54Uvn3s+4A/cMWx9tlRez1qtc7pN7pbQ+Yi7mjLjcBpWLlP+XbSHiHbQW6CElDiV4OvuzqnMrBdkgxI1mT8V/Q== -object-assign@^4.1.0: +object-assign@^4.0.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-copy@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" - integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== - dependencies: - copy-descriptor "^0.1.0" - define-property "^0.2.5" - kind-of "^3.0.3" - -object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -object-is@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" - integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== object-keys@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object-visit@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" - integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== - dependencies: - isobject "^3.0.0" - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -object.pick@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" - integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== - dependencies: - isobject "^3.0.1" - -obuf@^1.0.0, obuf@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" - integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== - -on-finished@2.4.1: - version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" - integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== - dependencies: - ee-first "1.1.1" - -on-headers@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" - integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== - once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -9096,114 +3414,25 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" - integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== - dependencies: - mimic-fn "^1.0.0" - -onetime@^5.1.0, onetime@^5.1.2: +onetime@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" -onetime@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" - integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== - dependencies: - mimic-fn "^4.0.0" - -open@^8.0.9: - version "8.4.2" - resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" - integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== - dependencies: - define-lazy-prop "^2.0.0" - is-docker "^2.1.1" - is-wsl "^2.2.0" - -open@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/open/-/open-9.1.0.tgz#684934359c90ad25742f5a26151970ff8c6c80b6" - integrity sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg== - dependencies: - default-browser "^4.0.0" - define-lazy-prop "^3.0.0" - is-inside-container "^1.0.0" - is-wsl "^2.2.0" - -opencollective-postinstall@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz#7a0fff978f6dbfa4d006238fbac98ed4198c3259" - integrity sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q== - -optionator@^0.8.1: - version "0.8.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== - dependencies: - deep-is "~0.1.3" - fast-levenshtein "~2.0.6" - levn "~0.3.0" - prelude-ls "~1.1.2" - type-check "~0.3.2" - word-wrap "~1.2.3" - -optionator@^0.9.3: - version "0.9.3" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" - integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== - dependencies: - "@aashutoshrathi/word-wrap" "^1.2.3" - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - -os-browserify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" - integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== - -os-tmpdir@~1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" - integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== - p-cancelable@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-2.1.1.tgz#aab7fbd416582fa32a3db49859c122487c5ed2cf" integrity sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg== -p-each-series@^2.1.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" - integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== - -p-finally@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" - integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== - -p-limit@^2.0.0, p-limit@^2.2.0: +p-limit@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== dependencies: p-try "^2.0.0" -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - p-limit@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" @@ -9218,20 +3447,6 @@ p-locate@^3.0.0: dependencies: p-limit "^2.0.0" -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - p-locate@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" @@ -9239,151 +3454,16 @@ p-locate@^6.0.0: dependencies: p-limit "^4.0.0" -p-map@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" - integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== - -p-map@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" - integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== - dependencies: - aggregate-error "^3.0.0" - -p-retry@^4.5.0: - version "4.6.2" - resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" - integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== - dependencies: - "@types/retry" "0.12.0" - retry "^0.13.1" - -p-try@^2.0.0, p-try@^2.1.0: +p-try@^2.0.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== -pako@~1.0.2, pako@~1.0.5: - version "1.0.11" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" - integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== - -param-case@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" - integrity sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w== - dependencies: - no-case "^2.2.0" - -param-case@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" - integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== - dependencies: - dot-case "^3.0.4" - tslib "^2.0.3" - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-asn1@^5.0.0, parse-asn1@^5.1.5: - version "5.1.6" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" - integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== - dependencies: - asn1.js "^5.2.0" - browserify-aes "^1.0.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" - -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse-link-header@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/parse-link-header/-/parse-link-header-2.0.0.tgz#949353e284f8aa01f2ac857a98f692b57733f6b7" - integrity sha512-xjU87V0VyHZybn2RrCX5TIFGxTVZE6zqqZWMPlIKiSKuWh/X5WZdt+w1Ki1nXB+8L/KtL+nZ4iq+sfI6MrhhMw== - dependencies: - xtend "~4.0.1" - -parse-srcset@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1" - integrity sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q== - -parse5@6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" - integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== - -parse5@^7.0.0, parse5@^7.1.2: - version "7.1.2" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" - integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== - dependencies: - entities "^4.4.0" - -parseurl@~1.3.2, parseurl@~1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" - integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== - -pascal-case@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-2.0.1.tgz#2d578d3455f660da65eca18ef95b4e0de912761e" - integrity sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ== - dependencies: - camel-case "^3.0.0" - upper-case-first "^1.1.0" - -pascal-case@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" - integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== - dependencies: - no-case "^3.0.4" - tslib "^2.0.3" - -pascalcase@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" - integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== - -path-browserify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - -path-case@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/path-case/-/path-case-2.1.1.tgz#94b8037c372d3fe2906e465bb45e25d226e8eea5" - integrity sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q== - dependencies: - no-case "^2.2.0" - path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - path-exists@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" @@ -9394,47 +3474,16 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== -path-key@^2.0.0, path-key@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" - integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== - path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== -path-key@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" - integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== - path-parse@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-to-regexp@0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" - integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pbkdf2@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" - integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== - dependencies: - create-hash "^1.1.2" - create-hmac "^1.1.4" - ripemd160 "^2.0.1" - safe-buffer "^5.0.1" - sha.js "^2.4.8" - pend@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" @@ -9445,40 +3494,21 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== -pify@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" - integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== pirates@^4.0.1: - version "4.0.5" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" - integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== - -pirates@^4.0.4, pirates@^4.0.5: version "4.0.6" resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== -pkg-dir@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" - integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== - dependencies: - find-up "^3.0.0" - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - pkg-dir@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-7.0.0.tgz#8f0c08d6df4476756c5ff29b3282d0bab7517d11" @@ -9486,83 +3516,54 @@ pkg-dir@^7.0.0: dependencies: find-up "^6.3.0" -plist@^3.0.1, plist@^3.0.4: - version "3.0.6" - resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.6.tgz#7cfb68a856a7834bca6dbfe3218eb9c7740145d3" - integrity sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA== +pkg-up@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" + integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== dependencies: + find-up "^3.0.0" + +plist@^3.0.4, plist@^3.0.5: + version "3.1.0" + resolved "https://registry.yarnpkg.com/plist/-/plist-3.1.0.tgz#797a516a93e62f5bde55e0b9cc9c967f860893c9" + integrity sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ== + dependencies: + "@xmldom/xmldom" "^0.8.8" base64-js "^1.5.1" xmlbuilder "^15.1.1" -popper.js@^1.15.0: - version "1.16.1" - resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" - integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== - -posix-character-classes@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" - integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== - -postcss-html@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/postcss-html/-/postcss-html-1.5.0.tgz#57a43bc9e336f516ecc448a37d2e8c2290170a6f" - integrity sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA== +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== dependencies: - htmlparser2 "^8.0.0" - js-tokens "^8.0.0" - postcss "^8.4.0" - postcss-safe-parser "^6.0.0" + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" -postcss-media-query-parser@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz#27b39c6f4d94f81b1a73b8f76351c609e5cef244" - integrity sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig== - -postcss-modules-extract-imports@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" - integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== - -postcss-modules-local-by-default@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" - integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== dependencies: - icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" - postcss-value-parser "^4.1.0" + camelcase-css "^2.0.1" -postcss-modules-scope@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" - integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== +postcss-load-config@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.1.tgz#152383f481c2758274404e4962743191d73875bd" + integrity sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== dependencies: - postcss-selector-parser "^6.0.4" + lilconfig "^2.0.5" + yaml "^2.1.1" -postcss-modules-values@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" - integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== +postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== dependencies: - icss-utils "^5.0.0" + postcss-selector-parser "^6.0.11" -postcss-resolve-nested-selector@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz#29ccbc7c37dedfac304e9fff0bf1596b3f6a0e4e" - integrity sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw== - -postcss-safe-parser@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz#bb4c29894171a94bc5c996b9a30317ef402adaa1" - integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ== - -postcss-scss@^4.0.6: - version "4.0.9" - resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-4.0.9.tgz#a03c773cd4c9623cb04ce142a52afcec74806685" - integrity sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A== - -postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: +postcss-selector-parser@^6.0.11: version "6.0.13" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== @@ -9570,12 +3571,21 @@ postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.13, postcss-select cssesc "^3.0.0" util-deprecate "^1.0.2" -postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: +postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@^8.1.10, postcss@^8.3.11, postcss@^8.4.0, postcss@^8.4.19, postcss@^8.4.21, postcss@^8.4.23: +postcss@8.4.14: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + +postcss@^8.4.23, postcss@^8.4.31: version "8.4.31" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d" integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ== @@ -9584,98 +3594,11 @@ postcss@^8.1.10, postcss@^8.3.11, postcss@^8.4.0, postcss@^8.4.19, postcss@^8.4. picocolors "^1.0.0" source-map-js "^1.0.2" -prebuild-install@^7.1.0: - version "7.1.1" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" - integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== - dependencies: - detect-libc "^2.0.0" - expand-template "^2.0.3" - github-from-package "0.0.0" - minimist "^1.2.3" - mkdirp-classic "^0.5.3" - napi-build-utils "^1.0.1" - node-abi "^3.3.0" - pump "^3.0.0" - rc "^1.2.7" - simple-get "^4.0.0" - tar-fs "^2.0.0" - tunnel-agent "^0.6.0" - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prelude-ls@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" - integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== - -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - -prettier@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.0.3.tgz#432a51f7ba422d1469096c0fdc28e235db8f9643" - integrity sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg== - -pretty-error@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" - integrity sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw== - dependencies: - lodash "^4.17.20" - renderkid "^3.0.0" - -pretty-format@^26.6.2: - version "26.6.2" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" - integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== - dependencies: - "@jest/types" "^26.6.2" - ansi-regex "^5.0.0" - ansi-styles "^4.0.0" - react-is "^17.0.1" - -pretty-format@^27.0.0, pretty-format@^27.5.1: - version "27.5.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" - integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== - dependencies: - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^17.0.1" - -private@~0.1.5: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== - -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== - progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -promise-inflight@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" - integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== - promise-retry@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22" @@ -9684,44 +3607,11 @@ promise-retry@^2.0.1: err-code "^2.0.2" retry "^0.12.0" -prompts@^2.0.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -proxy-addr@~2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" - integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== - dependencies: - forwarded "0.2.0" - ipaddr.js "1.9.1" - proxy-from-env@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== -psl@^1.1.33: - version "1.9.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== - -public-encrypt@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" - integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== - dependencies: - bn.js "^4.1.0" - browserify-rsa "^4.0.0" - create-hash "^1.1.0" - parse-asn1 "^5.0.0" - randombytes "^2.0.1" - safe-buffer "^5.1.2" - pump@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" @@ -9730,191 +3620,76 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@1.3.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" - integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw== - -punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -pupa@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/pupa/-/pupa-2.1.1.tgz#f5e8fd4afc2c5d97828faa523549ed8744a20d62" - integrity sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A== - dependencies: - escape-goat "^2.0.0" - -qs@6.11.0: - version "6.11.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" - integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== - dependencies: - side-channel "^1.0.4" - -querystring@0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" - integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== - -querystringify@^2.1.1: - version "2.2.0" - resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" - integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== +punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== -quick-lru@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-4.0.1.tgz#5b8878f113a58217848c6482026c73e1ba57727f" - integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g== - quick-lru@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== -randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: +randombytes@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== dependencies: safe-buffer "^5.1.0" -randomfill@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" - integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== +react-dom@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" + integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== dependencies: - randombytes "^2.0.5" - safe-buffer "^5.1.0" + loose-envify "^1.1.0" + scheduler "^0.23.0" -range-parser@^1.2.1, range-parser@~1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" - integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== +react-icons@^4.10.1: + version "4.11.0" + resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.11.0.tgz#4b0e31c9bfc919608095cc429c4f1846f4d66c65" + integrity sha512-V+4khzYcE5EBk/BvcuYRq6V/osf11ODUM2J8hg2FDSswRrGvqiYUYPRy4OdrWaQOBj4NcpJfmHZLNaD+VH0TyA== -raw-body@2.5.1: - version "2.5.1" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" - integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== +react-indiana-drag-scroll@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/react-indiana-drag-scroll/-/react-indiana-drag-scroll-2.2.0.tgz#657e14bbdf4888cc738e9fa8dc4384d76c348c0b" + integrity sha512-+W/3B2OQV0FrbdnsoIo4dww/xpH0MUQJz6ziQb7H+oBko3OCbXuzDFYnho6v6yhGrYDNWYPuFUewb89IONEl/A== dependencies: - bytes "3.1.2" - http-errors "2.0.0" - iconv-lite "0.4.24" - unpipe "1.0.0" + classnames "^2.2.6" + debounce "^1.2.0" + easy-bem "^1.1.1" -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== +react@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" + loose-envify "^1.1.0" -react-is@^17.0.1: - version "17.0.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" - integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== - -read-chunk@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/read-chunk/-/read-chunk-3.2.0.tgz#2984afe78ca9bfbbdb74b19387bf9e86289c16ca" - integrity sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ== +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== dependencies: - pify "^4.0.1" - with-open-file "^0.1.6" + pify "^2.3.0" -read-config-file@6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/read-config-file/-/read-config-file-6.2.0.tgz#71536072330bcd62ba814f91458b12add9fc7ade" - integrity sha512-gx7Pgr5I56JtYz+WuqEbQHj/xWo+5Vwua2jhb1VwM4Wid5PqYmZ4i00ZB0YEGIfkVBsCv9UrjgyqCiQfS/Oosg== +read-config-file@6.3.2: + version "6.3.2" + resolved "https://registry.yarnpkg.com/read-config-file/-/read-config-file-6.3.2.tgz#556891aa6ffabced916ed57457cb192e61880411" + integrity sha512-M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q== dependencies: + config-file-ts "^0.2.4" dotenv "^9.0.2" dotenv-expand "^5.1.0" js-yaml "^4.1.0" json5 "^2.2.0" lazy-val "^1.0.4" -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -readable-stream@^2.0.1: - version "2.3.8" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" - integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - -readable-stream@^3.0.6, readable-stream@^3.1.1: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readable-stream@^3.4.0: - version "3.6.1" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.1.tgz#f9f9b5f536920253b3d26e7660e7da4ccff9bb62" - integrity sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readable-stream@^3.5.0, readable-stream@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.3" - isarray "~1.0.0" - process-nextick-args "~2.0.0" - safe-buffer "~5.1.1" - string_decoder "~1.1.1" - util-deprecate "~1.0.1" - readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -9922,31 +3697,6 @@ readdirp@~3.6.0: dependencies: picomatch "^2.2.1" -recast@~0.11.12: - version "0.11.23" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" - integrity sha512-+nixG+3NugceyR8O1bLU45qs84JgI3+8EauyRZafLgC9XbdAOIVgwV1Pe2da0YzGo62KzWoZwUpVEQf6qNAXWA== - dependencies: - ast-types "0.9.6" - esprima "~3.1.0" - private "~0.1.5" - source-map "~0.5.0" - -rechoir@^0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22" - integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ== - dependencies: - resolve "^1.20.0" - -redent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" - integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== - dependencies: - indent-string "^4.0.0" - strip-indent "^3.0.0" - regenerate-unicode-properties@^10.1.0: version "10.1.1" resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz#6b0e05489d9076b04c436f318d9b067bba459480" @@ -9959,16 +3709,6 @@ regenerate@^1.4.2: resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.10.5: - version "0.10.5" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" - integrity sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w== - -regenerator-runtime@^0.11.0: - version "0.11.1" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" - integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== - regenerator-runtime@^0.14.0: version "0.14.0" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz#5e19d68eb12d486f797e15a3c6a918f7cec5eb45" @@ -9981,14 +3721,6 @@ regenerator-transform@^0.15.2: dependencies: "@babel/runtime" "^7.8.4" -regex-not@^1.0.0, regex-not@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" - integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== - dependencies: - extend-shallow "^3.0.2" - safe-regex "^1.1.0" - regexpu-core@^5.3.1: version "5.3.2" resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" @@ -10008,37 +3740,6 @@ regjsparser@^0.9.1: dependencies: jsesc "~0.5.0" -relateurl@0.2.x, relateurl@^0.2.7: - version "0.2.7" - resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" - integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== - -remove-trailing-separator@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" - integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== - -renderkid@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" - integrity sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg== - dependencies: - css-select "^4.1.3" - dom-converter "^0.2.0" - htmlparser2 "^6.1.0" - lodash "^4.17.21" - strip-ansi "^6.0.1" - -repeat-element@^1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" - integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== - -repeat-string@^1.5.2, repeat-string@^1.6.1: - version "1.6.1" - resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" - integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== - require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -10049,56 +3750,15 @@ require-from-string@^2.0.2: resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -requires-port@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" - integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== - resolve-alpn@^1.0.0: version "1.2.1" resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve-url@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" - integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== - -resolve@^1.10.0, resolve@^1.18.1: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -resolve@^1.14.2, resolve@^1.20.0: - version "1.22.6" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362" - integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw== +resolve@^1.1.7, resolve@^1.14.2, resolve@^1.22.2: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: is-core-module "^2.13.0" path-parse "^1.0.7" @@ -10111,63 +3771,23 @@ responselike@^2.0.0: dependencies: lowercase-keys "^2.0.0" -restore-cursor@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" - integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== - dependencies: - onetime "^2.0.0" - signal-exit "^3.0.2" - -ret@~0.1.10: - version "0.1.15" - resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" - integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== - retry@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== -retry@^0.13.1: - version "0.13.1" - resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" - integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== - reusify@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== -right-align@^0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" - integrity sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg== - dependencies: - align-text "^0.1.1" - -rimraf@^2.5.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" - integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== - dependencies: - glob "^7.1.3" - -rimraf@^3.0.0, rimraf@^3.0.2: +rimraf@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== dependencies: glob "^7.1.3" -ripemd160@^2.0.0, ripemd160@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" - integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== - dependencies: - hash-base "^3.0.0" - inherits "^2.0.1" - roarr@^2.15.3: version "2.15.4" resolved "https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz#f5fe795b7b838ccfe35dc608e0282b9eba2e7afd" @@ -10180,28 +3800,6 @@ roarr@^2.15.3: semver-compare "^1.0.0" sprintf-js "^1.1.2" -rrweb-cssom@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz#ed298055b97cbddcdeb278f904857629dec5e0e1" - integrity sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw== - -rsvp@^4.8.4: - version "4.8.5" - resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" - integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== - -run-applescript@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-5.0.0.tgz#e11e1c932e055d5c6b40d98374e0268d9b11899c" - integrity sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg== - dependencies: - execa "^5.0.0" - -run-async@^2.2.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== - run-parallel@^1.1.9: version "1.2.0" resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" @@ -10209,50 +3807,16 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" -rxjs@^6.3.3, rxjs@^6.4.0: - version "6.6.7" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" - integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== - dependencies: - tslib "^1.9.0" - -safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: +safe-buffer@^5.1.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -safe-regex@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" - integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== - dependencies: - ret "~0.1.10" - -"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0: +"safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -sane@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" - integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== - dependencies: - "@cnakazawa/watch" "^1.0.3" - anymatch "^2.0.0" - capture-exit "^2.0.0" - exec-sh "^0.3.2" - execa "^1.0.0" - fb-watchman "^2.0.0" - micromatch "^3.1.4" - minimist "^1.1.1" - walker "~1.0.5" - sanitize-filename@^1.6.3: version "1.6.3" resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz#755ebd752045931977e30b2025d340d7c9090378" @@ -10260,62 +3824,17 @@ sanitize-filename@^1.6.3: dependencies: truncate-utf8-bytes "^1.0.0" -sanitize-html@^2.10.0: - version "2.11.0" - resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.11.0.tgz#9a6434ee8fcaeddc740d8ae7cd5dd71d3981f8f6" - integrity sha512-BG68EDHRaGKqlsNjJ2xUB7gpInPA8gVx/mvjO743hZaeMCZ2DwzW7xvsqZ+KNU4QKwj86HJ3uu2liISf2qBBUA== - dependencies: - deepmerge "^4.2.2" - escape-string-regexp "^4.0.0" - htmlparser2 "^8.0.0" - is-plain-object "^5.0.0" - parse-srcset "^1.0.2" - postcss "^8.3.11" - -sass-graph@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-4.0.1.tgz#2ff8ca477224d694055bf4093f414cf6cfad1d2e" - integrity sha512-5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA== - dependencies: - glob "^7.0.0" - lodash "^4.17.11" - scss-tokenizer "^0.4.3" - yargs "^17.2.1" - -sass-loader@^13.2.2: - version "13.3.2" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-13.3.2.tgz#460022de27aec772480f03de17f5ba88fa7e18c6" - integrity sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg== - dependencies: - neo-async "^2.6.2" - sax@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + version "1.3.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0" + integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== -saxes@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" - integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== +scheduler@^0.23.0: + version "0.23.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" + integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== dependencies: - xmlchars "^2.2.0" - -saxes@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/saxes/-/saxes-6.0.0.tgz#fe5b4a4768df4f14a201b1ba6a65c1f3d9988cc5" - integrity sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA== - dependencies: - xmlchars "^2.2.0" - -schema-utils@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.2.tgz#36c10abca6f7577aeae136c804b0c741edeadc99" - integrity sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg== - dependencies: - "@types/json-schema" "^7.0.8" - ajv "^6.12.5" - ajv-keywords "^3.5.2" + loose-envify "^1.1.0" schema-utils@^3.1.1, schema-utils@^3.2.0: version "3.3.0" @@ -10336,97 +3855,23 @@ schema-utils@^4.0.0: ajv-formats "^2.1.1" ajv-keywords "^5.1.0" -scss-tokenizer@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz#1058400ee7d814d71049c29923d2b25e61dc026c" - integrity sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw== - dependencies: - js-base64 "^2.4.9" - source-map "^0.7.3" - -select-hose@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" - integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== - -selfsigned@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" - integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== - dependencies: - node-forge "^1" - semver-compare@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== -"semver@2 || 3 || 4 || 5", semver@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@7.x, semver@^7.2.1, semver@^7.3.2, semver@^7.3.5: - version "7.3.8" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== - dependencies: - lru-cache "^6.0.0" - -semver@^5.6.0: - version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" - integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== - -semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^6.3.1: +semver@^6.2.0, semver@^6.3.1: version "6.3.1" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.4, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8, semver@^7.5.4: +semver@^7.3.2, semver@^7.3.5, semver@^7.3.8, semver@^7.5.3: version "7.5.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== dependencies: lru-cache "^6.0.0" -semver@~7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== - -send@0.18.0: - version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" - integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== - dependencies: - debug "2.6.9" - depd "2.0.0" - destroy "1.2.0" - encodeurl "~1.0.2" - escape-html "~1.0.3" - etag "~1.8.1" - fresh "0.5.2" - http-errors "2.0.0" - mime "1.6.0" - ms "2.1.3" - on-finished "2.4.1" - range-parser "~1.2.1" - statuses "2.0.1" - -sentence-case@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-2.1.1.tgz#1f6e2dda39c168bf92d13f86d4a918933f667ed4" - integrity sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ== - dependencies: - no-case "^2.2.0" - upper-case-first "^1.1.2" - serialize-error@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" @@ -10434,74 +3879,13 @@ serialize-error@^7.0.1: dependencies: type-fest "^0.13.1" -serialize-javascript@^6.0.0, serialize-javascript@^6.0.1: +serialize-javascript@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c" integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w== dependencies: randombytes "^2.1.0" -serve-index@^1.9.1: - version "1.9.1" - resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" - integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw== - dependencies: - accepts "~1.3.4" - batch "0.6.1" - debug "2.6.9" - escape-html "~1.0.3" - http-errors "~1.6.2" - mime-types "~2.1.17" - parseurl "~1.3.2" - -serve-static@1.15.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" - integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== - dependencies: - encodeurl "~1.0.2" - escape-html "~1.0.3" - parseurl "~1.3.3" - send "0.18.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -set-value@^2.0.0, set-value@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" - integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== - dependencies: - extend-shallow "^2.0.1" - is-extendable "^0.1.1" - is-plain-object "^2.0.3" - split-string "^3.0.1" - -setimmediate@^1.0.4, setimmediate@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" - integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== - -setprototypeof@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" - integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== - -setprototypeof@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" - integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== - -sha.js@^2.4.0, sha.js@^2.4.8: - version "2.4.11" - resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" - integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== - dependencies: - inherits "^2.0.1" - safe-buffer "^5.0.1" - shallow-clone@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" @@ -10509,13 +3893,6 @@ shallow-clone@^3.0.0: dependencies: kind-of "^6.0.2" -shebang-command@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" - integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== - dependencies: - shebang-regex "^1.0.0" - shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -10523,85 +3900,22 @@ shebang-command@^2.0.0: dependencies: shebang-regex "^3.0.0" -shebang-regex@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" - integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== - shebang-regex@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== -shell-quote@^1.7.3: - version "1.8.1" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680" - integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA== - -shellwords@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" - integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: +signal-exit@^3.0.3: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== -simplayer@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/simplayer/-/simplayer-0.0.8.tgz#f20ceb233166ac7f382745666d23f3c48792c3c8" - integrity sha512-QiJXJho7PZ0MQ4ZBr6GEclTDn91U0s07rb+jUcv8LQ5MGNXZ4Jt2V+hiPC6wVBIQNe7+jjjWMq6nqkzms7okHA== - -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - -simple-get@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" - integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== +simple-update-notifier@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz#d70b92bdab7d6d90dfd73931195a30b6e3d7cebb" + integrity sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w== dependencies: - decompress-response "^6.0.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-update-notifier@^1.0.7: - version "1.1.0" - resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz#67694c121de354af592b347cdba798463ed49c82" - integrity sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg== - dependencies: - semver "~7.0.0" - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slash@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" - integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== - -slice-ansi@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" - integrity sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw== + semver "^7.5.3" slice-ansi@^3.0.0: version "3.0.0" @@ -10612,132 +3926,17 @@ slice-ansi@^3.0.0: astral-regex "^2.0.0" is-fullwidth-code-point "^3.0.0" -slice-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" - integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== - dependencies: - ansi-styles "^4.0.0" - astral-regex "^2.0.0" - is-fullwidth-code-point "^3.0.0" - -smart-buffer@^4.0.2, smart-buffer@^4.2.0: +smart-buffer@^4.0.2: version "4.2.0" resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg== -snake-case@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-2.1.0.tgz#41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f" - integrity sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q== - dependencies: - no-case "^2.2.0" - -snapdragon-node@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" - integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== - dependencies: - define-property "^1.0.0" - isobject "^3.0.0" - snapdragon-util "^3.0.1" - -snapdragon-util@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" - integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== - dependencies: - kind-of "^3.2.0" - -snapdragon@^0.8.1: - version "0.8.2" - resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" - integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== - dependencies: - base "^0.11.1" - debug "^2.2.0" - define-property "^0.2.5" - extend-shallow "^2.0.1" - map-cache "^0.2.2" - source-map "^0.5.6" - source-map-resolve "^0.5.0" - use "^3.1.0" - -sockjs@^0.3.24: - version "0.3.24" - resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" - integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== - dependencies: - faye-websocket "^0.11.3" - uuid "^8.3.2" - websocket-driver "^0.7.4" - -socks-proxy-agent@^6.0.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz#2687a31f9d7185e38d530bef1944fe1f1496d6ce" - integrity sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ== - dependencies: - agent-base "^6.0.2" - debug "^4.3.3" - socks "^2.6.2" - -socks-proxy-agent@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz#dc069ecf34436621acb41e3efa66ca1b5fed15b6" - integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== - dependencies: - agent-base "^6.0.2" - debug "^4.3.3" - socks "^2.6.2" - -socks-proxy-agent@^8.0.2: - version "8.0.2" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz#5acbd7be7baf18c46a3f293a840109a430a640ad" - integrity sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g== - dependencies: - agent-base "^7.0.2" - debug "^4.3.4" - socks "^2.7.1" - -socks@^2.6.2, socks@^2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" - integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== - dependencies: - ip "^2.0.0" - smart-buffer "^4.2.0" - -sort-keys-length@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sort-keys-length/-/sort-keys-length-1.0.1.tgz#9cb6f4f4e9e48155a6aa0671edd336ff1479a188" - integrity sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw== - dependencies: - sort-keys "^1.0.0" - -sort-keys@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" - integrity sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg== - dependencies: - is-plain-obj "^1.0.0" - source-map-js@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== -source-map-resolve@^0.5.0: - version "0.5.3" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" - integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== - dependencies: - atob "^2.1.2" - decode-uri-component "^0.2.0" - resolve-url "^0.2.1" - source-map-url "^0.4.0" - urix "^0.1.0" - -source-map-support@^0.5.16, source-map-support@^0.5.19, source-map-support@^0.5.6, source-map-support@~0.5.20: +source-map-support@^0.5.19, source-map-support@~0.5.20: version "0.5.21" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== @@ -10745,186 +3944,22 @@ source-map-support@^0.5.16, source-map-support@^0.5.19, source-map-support@^0.5. buffer-from "^1.0.0" source-map "^0.6.0" -source-map-url@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" - integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== - -source-map@0.4.x: - version "0.4.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" - integrity sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A== - dependencies: - amdefine ">=0.0.4" - -source-map@^0.5.6, source-map@~0.5.0, source-map@~0.5.1: - version "0.5.7" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" - integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== - -source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: +source-map@^0.6.0: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.7.3: - version "0.7.4" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656" - integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== - -spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.12" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" - integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== - -spdy-transport@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" - integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== - dependencies: - debug "^4.1.0" - detect-node "^2.0.4" - hpack.js "^2.1.6" - obuf "^1.1.2" - readable-stream "^3.0.6" - wbuf "^1.7.3" - -spdy@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" - integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA== - dependencies: - debug "^4.1.0" - handle-thing "^2.0.0" - http-deceiver "^1.2.7" - select-hose "^2.0.0" - spdy-transport "^3.0.0" - -split-string@^3.0.1, split-string@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" - integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== - dependencies: - extend-shallow "^3.0.0" - sprintf-js@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" - integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -ssri@^8.0.0, ssri@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" - integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== - dependencies: - minipass "^3.1.1" - -ssri@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-9.0.1.tgz#544d4c357a8d7b71a19700074b6883fcb4eae057" - integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== - dependencies: - minipass "^3.1.1" - -stack-utils@^2.0.2: - version "2.0.6" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" - integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== - dependencies: - escape-string-regexp "^2.0.0" + version "1.1.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a" + integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA== stat-mode@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-1.0.0.tgz#68b55cb61ea639ff57136f36b216a291800d1465" integrity sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg== -static-extend@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" - integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== - dependencies: - define-property "^0.2.5" - object-copy "^0.1.0" - -statuses@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" - integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== - -"statuses@>= 1.4.0 < 2": - version "1.5.0" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" - integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== - -stdout-stream@^1.4.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" - integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== - dependencies: - readable-stream "^2.0.1" - -stream-browserify@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f" - integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA== - dependencies: - inherits "~2.0.4" - readable-stream "^3.5.0" - -stream-http@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.2.0.tgz#1872dfcf24cb15752677e40e5c3f9cc1926028b5" - integrity sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A== - dependencies: - builtin-status-codes "^3.0.0" - inherits "^2.0.4" - readable-stream "^3.6.0" - xtend "^4.0.2" - -string-length@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" - integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -10933,49 +3968,6 @@ string-width@^1.0.1: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^2.1.0, string-width@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -string_decoder@~1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" - integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== - dependencies: - safe-buffer "~5.1.0" - -strip-ansi@^3.0.0, strip-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" - integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== - dependencies: - ansi-regex "^2.0.0" - -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== - dependencies: - ansi-regex "^3.0.0" - -strip-ansi@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -10983,134 +3975,33 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1: dependencies: ansi-regex "^5.0.1" -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-eof@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" - integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== strip-final-newline@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== -strip-final-newline@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" - integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== +styled-jsx@5.0.7: + version "5.0.7" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.7.tgz#be44afc53771b983769ac654d355ca8d019dff48" + integrity sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA== -strip-indent@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" - integrity sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== +sucrase@^3.32.0: + version "3.34.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.34.0.tgz#1e0e2d8fcf07f8b9c3569067d92fbd8690fb576f" + integrity sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw== dependencies: - min-indent "^1.0.0" - -strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - -style-loader@^3.3.2: - version "3.3.3" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-3.3.3.tgz#bba8daac19930169c0c9c96706749a597ae3acff" - integrity sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw== - -style-search@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/style-search/-/style-search-0.1.0.tgz#7958c793e47e32e07d2b5cafe5c0bf8e12e77902" - integrity sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg== - -stylelint-config-html@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/stylelint-config-html/-/stylelint-config-html-1.1.0.tgz#999db19aea713b7ff6dde92ada76e4c1bd812b66" - integrity sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ== - -stylelint-config-prettier@^9.0.4: - version "9.0.5" - resolved "https://registry.yarnpkg.com/stylelint-config-prettier/-/stylelint-config-prettier-9.0.5.tgz#9f78bbf31c7307ca2df2dd60f42c7014ee9da56e" - integrity sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA== - -stylelint-config-recommended@^13.0.0: - version "13.0.0" - resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-13.0.0.tgz#c48a358cc46b629ea01f22db60b351f703e00597" - integrity sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ== - -stylelint-config-standard@^34.0.0: - version "34.0.0" - resolved "https://registry.yarnpkg.com/stylelint-config-standard/-/stylelint-config-standard-34.0.0.tgz#309f3c48118a02aae262230c174282e40e766cf4" - integrity sha512-u0VSZnVyW9VSryBG2LSO+OQTjN7zF9XJaAJRX/4EwkmU0R2jYwmBSN10acqZisDitS0CLiEiGjX7+Hrq8TAhfQ== - dependencies: - stylelint-config-recommended "^13.0.0" - -stylelint-scss@^5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-5.2.1.tgz#810299e4141fa38852bd14536a90e4942c8f387f" - integrity sha512-ZoTJUM85/qqpQHfEppjW/St//8s6p9Qsg8deWlYlr56F9iUgC9vXeIDQvH4odkRRJLTLFQzYMALSOFCQ3MDkgw== - dependencies: - known-css-properties "^0.28.0" - postcss-media-query-parser "^0.2.3" - postcss-resolve-nested-selector "^0.1.1" - postcss-selector-parser "^6.0.13" - postcss-value-parser "^4.2.0" - -stylelint@^14.16.1: - version "14.16.1" - resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-14.16.1.tgz#b911063530619a1bbe44c2b875fd8181ebdc742d" - integrity sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A== - dependencies: - "@csstools/selector-specificity" "^2.0.2" - balanced-match "^2.0.0" - colord "^2.9.3" - cosmiconfig "^7.1.0" - css-functions-list "^3.1.0" - debug "^4.3.4" - fast-glob "^3.2.12" - fastest-levenshtein "^1.0.16" - file-entry-cache "^6.0.1" - global-modules "^2.0.0" - globby "^11.1.0" - globjoin "^0.1.4" - html-tags "^3.2.0" - ignore "^5.2.1" - import-lazy "^4.0.0" - imurmurhash "^0.1.4" - is-plain-object "^5.0.0" - known-css-properties "^0.26.0" - mathml-tag-names "^2.1.3" - meow "^9.0.0" - micromatch "^4.0.5" - normalize-path "^3.0.0" - picocolors "^1.0.0" - postcss "^8.4.19" - postcss-media-query-parser "^0.2.3" - postcss-resolve-nested-selector "^0.1.1" - postcss-safe-parser "^6.0.0" - postcss-selector-parser "^6.0.11" - postcss-value-parser "^4.2.0" - resolve-from "^5.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - style-search "^0.1.0" - supports-hyperlinks "^2.3.0" - svg-tags "^1.0.0" - table "^6.8.1" - v8-compile-cache "^2.3.0" - write-file-atomic "^4.0.2" + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "7.1.6" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" sumchecker@^3.0.1: version "3.0.1" @@ -11119,11 +4010,6 @@ sumchecker@^3.0.1: dependencies: debug "^4.1.0" -supports-color@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" - integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== - supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -11131,119 +4017,76 @@ supports-color@^5.3.0: dependencies: has-flag "^3.0.0" -supports-color@^7.0.0, supports-color@^7.1.0: +supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" -supports-color@^8, supports-color@^8.0.0: +supports-color@^8.0.0: version "8.1.1" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== dependencies: has-flag "^4.0.0" -supports-hyperlinks@^2.0.0, supports-hyperlinks@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" - integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== -svg-tags@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" - integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA== +tabbable@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/tabbable/-/tabbable-6.2.0.tgz#732fb62bc0175cfcec257330be187dcfba1f3b97" + integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew== -swap-case@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/swap-case/-/swap-case-1.1.2.tgz#c39203a4587385fad3c850a0bd1bcafa081974e3" - integrity sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ== +tailwind-merge@^1.13.2: + version "1.14.0" + resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-1.14.0.tgz#e677f55d864edc6794562c63f5001f45093cdb8b" + integrity sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ== + +tailwindcss@^3.3.3: + version "3.3.5" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.3.5.tgz#22a59e2fbe0ecb6660809d9cc5f3976b077be3b8" + integrity sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA== dependencies: - lower-case "^1.1.1" - upper-case "^1.1.1" + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.3.0" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.19.1" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" -symbol-observable@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" - integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== - -symbol-tree@^3.2.4: - version "3.2.4" - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== - -synckit@^0.8.5: - version "0.8.5" - resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3" - integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== - dependencies: - "@pkgr/utils" "^2.3.1" - tslib "^2.5.0" - -system-font-families@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/system-font-families/-/system-font-families-0.6.0.tgz#62c47538aefc9917ae52279203f5ed1f5493e542" - integrity sha512-rdKImco0blun3k+KD7iKPwrQEwDWPna1eEof0Y+eaebVxp02g6RWYLENYZzG09lsQd0rjG+l+TAK7wSaNMXoYA== - dependencies: - babel-polyfill "^6.23.0" - file-type "^10.11.0" - read-chunk "^3.2.0" - ttfinfo "https://github.com/rBurgett/ttfinfo.git" - -table@^6.8.1: - version "6.8.1" - resolved "https://registry.yarnpkg.com/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf" - integrity sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA== - dependencies: - ajv "^8.0.1" - lodash.truncate "^4.4.2" - slice-ansi "^4.0.0" - string-width "^4.2.3" - strip-ansi "^6.0.1" - -tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: +tapable@^2.1.1, tapable@^2.2.0: version "2.2.1" resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== -tar-fs@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -tar@^6.0.2, tar@^6.1.11, tar@^6.1.2: - version "6.1.13" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.13.tgz#46e22529000f612180601a6fe0680e7da508847b" - integrity sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw== +tar@^6.1.12: + version "6.2.0" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.0.tgz#b14ce49a79cb1cd23bc9b016302dea5474493f73" + integrity sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ== dependencies: chownr "^2.0.0" fs-minipass "^2.0.0" - minipass "^4.0.0" + minipass "^5.0.0" minizlib "^2.1.1" mkdirp "^1.0.3" yallist "^4.0.0" @@ -11256,15 +4099,7 @@ temp-file@^3.4.0: async-exit-hook "^2.0.1" fs-extra "^10.0.0" -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - -terser-webpack-plugin@^5.3.7: +terser-webpack-plugin@5.3.9, terser-webpack-plugin@^5.3.7: version "5.3.9" resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== @@ -11275,72 +4110,29 @@ terser-webpack-plugin@^5.3.7: serialize-javascript "^6.0.1" terser "^5.16.8" -terser@^5.10.0, terser@^5.16.8: - version "5.20.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.20.0.tgz#ea42aea62578703e33def47d5c5b93c49772423e" - integrity sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ== +terser@^5.16.8: + version "5.24.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.24.0.tgz#4ae50302977bca4831ccc7b4fef63a3c04228364" + integrity sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" commander "^2.20.0" source-map-support "~0.5.20" -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" + thenify ">= 3.1.0 < 4" -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -throat@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" - integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== - -through@^2.3.6, through@~2.3.6: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -thunky@^1.0.2: - version "1.1.0" - resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" - integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== - -timers-browserify@^2.0.12: - version "2.0.12" - resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" - integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== dependencies: - setimmediate "^1.0.4" - -timers-ext@^0.1.7: - version "0.1.7" - resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz#6f57ad8578e07a3fb9f91d9387d65647555e25c6" - integrity sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ== - dependencies: - es5-ext "~0.10.46" - next-tick "1" - -title-case@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa" - integrity sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q== - dependencies: - no-case "^2.2.0" - upper-case "^1.0.3" - -titleize@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/titleize/-/titleize-3.0.0.tgz#71c12eb7fdd2558aa8a44b0be83b8a76694acd53" - integrity sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ== + any-promise "^1.0.0" tmp-promise@^3.0.2: version "3.0.3" @@ -11349,13 +4141,6 @@ tmp-promise@^3.0.2: dependencies: tmp "^0.2.0" -tmp@^0.0.33: - version "0.0.33" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== - dependencies: - os-tmpdir "~1.0.2" - tmp@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" @@ -11363,31 +4148,11 @@ tmp@^0.2.0: dependencies: rimraf "^3.0.0" -tmpl@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" - integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== - to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== -to-object-path@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" - integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== - dependencies: - kind-of "^3.0.2" - -to-regex-range@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" - integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== - dependencies: - is-number "^3.0.0" - repeat-string "^1.6.1" - to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -11395,55 +4160,6 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -to-regex@^3.0.1, to-regex@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" - integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== - dependencies: - define-property "^2.0.2" - extend-shallow "^3.0.2" - regex-not "^1.0.2" - safe-regex "^1.1.0" - -toidentifier@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" - integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== - -tough-cookie@^4.0.0, tough-cookie@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874" - integrity sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ== - dependencies: - psl "^1.1.33" - punycode "^2.1.1" - universalify "^0.2.0" - url-parse "^1.5.3" - -tr46@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" - integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== - dependencies: - punycode "^2.1.1" - -tr46@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-4.1.1.tgz#281a758dcc82aeb4fe38c7dfe4d11a395aac8469" - integrity sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw== - dependencies: - punycode "^2.3.0" - -trim-newlines@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" - integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw== - -"true-case-path@^2.2.1": - version "2.2.1" - resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-2.2.1.tgz#c5bf04a5bbec3fd118be4084461b3a27c4d796bf" - integrity sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q== - truncate-utf8-bytes@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" @@ -11451,177 +4167,64 @@ truncate-utf8-bytes@^1.0.0: dependencies: utf8-byte-length "^1.0.1" -try-catch@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/try-catch/-/try-catch-3.0.1.tgz#93abdca71ce148a08adb49e08dbd491cd485164d" - integrity sha512-91yfXw1rr/P6oLpHSyHDOHm0vloVvUoo9FVdw8YwY05QjJQG9OT0LUxe2VRAzmHG+0CUOmI3nhxDUMLxDN/NEQ== +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== -ts-api-utils@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.3.tgz#f12c1c781d04427313dbac808f453f050e54a331" - integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg== - -ts-jest@^26.5.6: - version "26.5.6" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-26.5.6.tgz#c32e0746425274e1dfe333f43cd3c800e014ec35" - integrity sha512-rua+rCP8DxpA8b4DQD/6X2HQS8Zy/xzViVYfEs2OQu68tkCuKLV0Md8pmX55+W24uRIyAsf/BajRfxOs+R2MKA== - dependencies: - bs-logger "0.x" - buffer-from "1.x" - fast-json-stable-stringify "2.x" - jest-util "^26.1.0" - json5 "2.x" - lodash "4.x" - make-error "1.x" - mkdirp "1.x" - semver "7.x" - yargs-parser "20.x" - -ts-loader@^9.4.2: - version "9.4.4" - resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-9.4.4.tgz#6ceaf4d58dcc6979f84125335904920884b7cee4" - integrity sha512-MLukxDHBl8OJ5Dk3y69IsKVFRA/6MwzEqBgh+OXMPB/OD01KQuWPFd1WAQP8a5PeSCAxfnkhiuWqfmFJzJQt9w== +tsconfig-paths-webpack-plugin@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths-webpack-plugin/-/tsconfig-paths-webpack-plugin-4.1.0.tgz#3c6892c5e7319c146eee1e7302ed9e6f2be4f763" + integrity sha512-xWFISjviPydmtmgeUAuXp4N1fky+VCtfhOkDUFIv5ea7p4wuTomI4QTrXvFBX2S4jZsmyTSrStQl+E+4w+RzxA== dependencies: chalk "^4.1.0" - enhanced-resolve "^5.0.0" - micromatch "^4.0.0" - semver "^7.3.4" + enhanced-resolve "^5.7.0" + tsconfig-paths "^4.1.2" -tslib@^1.9.0: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== +tsconfig-paths@^4.1.2: + version "4.2.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz#ef78e19039133446d244beac0fd6a1632e2d107c" + integrity sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg== + dependencies: + json5 "^2.2.2" + minimist "^1.2.6" + strip-bom "^3.0.0" -tslib@^2.0.3, tslib@^2.5.0, tslib@^2.6.0: +tslib@^2.0.0, tslib@^2.4.0: version "2.6.2" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== -tslib@^2.1.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" - integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== - -ttfinfo@^0.2.0, "ttfinfo@https://github.com/rBurgett/ttfinfo.git": - version "0.2.0" - resolved "https://github.com/rBurgett/ttfinfo.git#f00e43e2a6d4c8a12a677df20b7804492d50863c" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-check@~0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" - integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== - dependencies: - prelude-ls "~1.1.2" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - type-fest@^0.13.1: version "0.13.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== -type-fest@^0.18.0: - version "0.18.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.1.tgz#db4bc151a4a2cf4eebf9add5db75508db6cc841f" - integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw== +type-fest@^2.17.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -type-is@~1.6.18: - version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" - integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== - dependencies: - media-typer "0.3.0" - mime-types "~2.1.24" - -type@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== - -type@^2.7.2: - version "2.7.2" - resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0" - integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw== - -typedarray-to-buffer@^3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" - integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== - dependencies: - is-typedarray "^1.0.0" - -typescript@5.2.2: - version "5.2.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78" - integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== - -typescript@^4.9.5: +typescript@^4.0.2: version "4.9.5" resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== -uglify-js@2.6.x: - version "2.6.4" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.6.4.tgz#65ea2fb3059c9394692f15fed87c2b36c16b9adf" - integrity sha512-5uPOZS1EDeuBIFwTYTlJefbQXWn+auebcRQpj5EtWr9E/7XwWVZ6YTgulZVSTHAEU9y/mYMYh2Mjt7TJ1iRNxQ== - dependencies: - async "~0.2.6" - source-map "~0.5.1" - uglify-to-browserify "~1.0.0" - yargs "~3.10.0" +typescript@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78" + integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w== -uglify-to-browserify@~1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" - integrity sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q== +undici-types@~5.26.4: + version "5.26.5" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== unicode-canonical-property-names-ecmascript@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== -unicode-emoji-json@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/unicode-emoji-json/-/unicode-emoji-json-0.4.0.tgz#021dd9a917b8af90756cf1eba21fda7b8e0ee5af" - integrity sha512-lVNOwh2AnmbwqtSrEVjAWKQoVzWgyWmXVqPuPkPfKb0tnA0+uYN/4ILCTdy9IRj/+3drAVhmjwjNJQr2dhCwnA== - unicode-match-property-ecmascript@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" @@ -11640,100 +4243,17 @@ unicode-property-aliases-ecmascript@^2.0.0: resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== -union-value@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" - integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== - dependencies: - arr-union "^3.1.0" - get-value "^2.0.6" - is-extendable "^0.1.1" - set-value "^2.0.1" - -unique-filename@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" - integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== - dependencies: - unique-slug "^2.0.0" - -unique-filename@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" - integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== - dependencies: - unique-slug "^3.0.0" - -unique-slug@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" - integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== - dependencies: - imurmurhash "^0.1.4" - -unique-slug@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9" - integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== - dependencies: - imurmurhash "^0.1.4" - universalify@^0.1.0: version "0.1.2" resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== -universalify@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" - integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== - universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== -unpipe@1.0.0, unpipe@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" - integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== - -unset-value@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" - integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== - dependencies: - has-value "^0.3.1" - isobject "^3.0.0" - -untildify@^3.0.2: - version "3.0.3" - resolved "https://registry.yarnpkg.com/untildify/-/untildify-3.0.3.tgz#1e7b42b140bcfd922b22e70ca1265bfe3634c7c9" - integrity sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA== - -untildify@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" - integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== - -unused-filename@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/unused-filename/-/unused-filename-2.1.0.tgz#33719c4e8d9644f32d2dec1bc8525c6aaeb4ba51" - integrity sha512-BMiNwJbuWmqCpAM1FqxCTD7lXF97AvfQC8Kr/DIeA6VtvhJaMDupZ82+inbjl5yVP44PcxOuCSxye1QMS0wZyg== - dependencies: - modify-filename "^1.1.0" - path-exists "^4.0.0" - -unzip-crx-3@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/unzip-crx-3/-/unzip-crx-3-0.2.0.tgz#d5324147b104a8aed9ae8639c95521f6f7cda292" - integrity sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ== - dependencies: - jszip "^3.1.0" - mkdirp "^0.5.1" - yaku "^0.16.6" - -update-browserslist-db@^1.0.10, update-browserslist-db@^1.0.13: +update-browserslist-db@^1.0.13: version "1.0.13" resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== @@ -11741,18 +4261,6 @@ update-browserslist-db@^1.0.10, update-browserslist-db@^1.0.13: escalade "^3.1.1" picocolors "^1.0.0" -upper-case-first@^1.1.0, upper-case-first@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-1.1.2.tgz#5d79bedcff14419518fd2edb0a0507c9b6859115" - integrity sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ== - dependencies: - upper-case "^1.1.1" - -upper-case@^1.0.3, upper-case@^1.1.0, upper-case@^1.1.1, upper-case@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" - integrity sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA== - uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -11760,116 +4268,26 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" -urix@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" - integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== - -url-loader@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" - integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== - dependencies: - loader-utils "^2.0.0" - mime-types "^2.1.27" - schema-utils "^3.0.0" - -url-parse@^1.5.3: - version "1.5.10" - resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" - integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== - dependencies: - querystringify "^2.1.1" - requires-port "^1.0.0" - -url@^0.11.0: - version "0.11.0" - resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" - integrity sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ== - dependencies: - punycode "1.3.2" - querystring "0.2.0" - -use@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" - integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== - -utf-8-validate@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-6.0.3.tgz#7d8c936d854e86b24d1d655f138ee27d2636d777" - integrity sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA== - dependencies: - node-gyp-build "^4.3.0" +use-sync-external-store@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" + integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== utf8-byte-length@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" integrity sha512-4+wkEYLBbWxqTahEsWrhxepcoVOJ+1z5PGIjPZxRkytcdSUaNjIjBM7Xn8E+pdSuV7SzvWovBFA54FO0JSoqhA== -util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: +util-deprecate@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== -util@^0.12.5: - version "0.12.5" - resolved "https://registry.yarnpkg.com/util/-/util-0.12.5.tgz#5f17a6059b73db61a875668781a1c2b136bd6fbc" - integrity sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA== - dependencies: - inherits "^2.0.3" - is-arguments "^1.0.4" - is-generator-function "^1.0.7" - is-typed-array "^1.1.3" - which-typed-array "^1.1.2" - -utila@~0.4: - version "0.4.0" - resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" - integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== - -utils-merge@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" - integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== - -uuid@^8.3.0, uuid@^8.3.2: - version "8.3.2" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" - integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== - uuid@^9.0.1: version "9.0.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== -v8-compile-cache@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== - -v8-to-istanbul@^7.0.0: - version "7.1.2" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1" - integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - source-map "^0.7.3" - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -vary@~1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" - integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== - verror@^1.10.0: version "1.10.1" resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.1.tgz#4bf09eeccf4563b109ed4b3d458380c972b0cdeb" @@ -11879,159 +4297,6 @@ verror@^1.10.0: core-util-is "1.0.2" extsprintf "^1.2.0" -vue-demi@*: - version "0.14.0" - resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.0.tgz#dcfd9a9cf9bb62ada1582ec9042372cf67ca6190" - integrity sha512-gt58r2ogsNQeVoQ3EhoUAvUsH9xviydl0dWJj7dabBC/2L4uBId7ujtCwDRD0JhkGsV1i0CtfLAeyYKBht9oWg== - -vue-demi@>=0.14.5: - version "0.14.6" - resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.6.tgz#dc706582851dc1cdc17a0054f4fec2eb6df74c92" - integrity sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w== - -vue-eslint-parser@^9.3.1: - version "9.3.1" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.3.1.tgz#429955e041ae5371df5f9e37ebc29ba046496182" - integrity sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g== - dependencies: - debug "^4.3.4" - eslint-scope "^7.1.1" - eslint-visitor-keys "^3.3.0" - espree "^9.3.1" - esquery "^1.4.0" - lodash "^4.17.21" - semver "^7.3.6" - -vue-html-loader@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/vue-html-loader/-/vue-html-loader-1.2.4.tgz#54ce489be06065c91dc2a1173122f3e004e0a253" - integrity sha512-HwQitwnA2R65DhGaZnqOCrfCzz/zIgph1oChO6fuoMUtY+1T8JCPuadO4KdQxZwyskEOBSxOCUtZFyxPgewPDw== - dependencies: - es6-templates "^0.2.2" - fastparse "^1.0.0" - html-minifier "^2.1.5" - loader-utils "^1.0.2" - object-assign "^4.1.0" - -vue-loader@^17.2.2: - version "17.2.2" - resolved "https://registry.yarnpkg.com/vue-loader/-/vue-loader-17.2.2.tgz#96148eb70c1365cc8c5bab4274923596811c79df" - integrity sha512-aqNvKJvnz2A/6VWeJZodAo8XLoAlVwBv+2Z6dama+LHsAF+P/xijQ+OfWrxIs0wcGSJduvdzvTuATzXbNKkpiw== - dependencies: - chalk "^4.1.0" - hash-sum "^2.0.0" - watchpack "^2.4.0" - -vue-observe-visibility@^2.0.0-alpha.1: - version "2.0.0-alpha.1" - resolved "https://registry.yarnpkg.com/vue-observe-visibility/-/vue-observe-visibility-2.0.0-alpha.1.tgz#1e4eda7b12562161d58984b7e0dea676d83bdb13" - integrity sha512-flFbp/gs9pZniXR6fans8smv1kDScJ8RS7rEpMjhVabiKeq7Qz3D9+eGsypncjfIyyU84saU88XZ0zjbD6Gq/g== - -vue-popperjs@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/vue-popperjs/-/vue-popperjs-2.3.0.tgz#9cfa052878a3b47b670339ea81e05edcb863200f" - integrity sha512-925QEeNjlMtb3eDHl5ZlODJzqnQL0nQPEKpr9aQ3XBg21DyqAdfLgD/At4svsPwFeIkpdF1gvHarENon47L9Cg== - dependencies: - opencollective-postinstall "^2.0.2" - popper.js "^1.15.0" - -vue-resize@^2.0.0-alpha.1: - version "2.0.0-alpha.1" - resolved "https://registry.yarnpkg.com/vue-resize/-/vue-resize-2.0.0-alpha.1.tgz#43eeb79e74febe932b9b20c5c57e0ebc14e2df3a" - integrity sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg== - -vue-router@^4.2.2: - version "4.2.5" - resolved "https://registry.yarnpkg.com/vue-router/-/vue-router-4.2.5.tgz#b9e3e08f1bd9ea363fdd173032620bc50cf0e98a" - integrity sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw== - dependencies: - "@vue/devtools-api" "^6.5.0" - -vue-style-loader@^4.1.3: - version "4.1.3" - resolved "https://registry.yarnpkg.com/vue-style-loader/-/vue-style-loader-4.1.3.tgz#6d55863a51fa757ab24e89d9371465072aa7bc35" - integrity sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg== - dependencies: - hash-sum "^1.0.2" - loader-utils "^1.0.2" - -vue-template-compiler@^2.7.14: - version "2.7.14" - resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz#4545b7dfb88090744c1577ae5ac3f964e61634b1" - integrity sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ== - dependencies: - de-indent "^1.0.2" - he "^1.2.0" - -vue-tsc@^1.6.5: - version "1.8.15" - resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.8.15.tgz#e00faee4215b65e797efc29200ab9ad9432318df" - integrity sha512-4DoB3LUj7IToLmggoCxRiFG+QU5lem0nv03m1ocqugXA9rSVoTOEoYYaP8vu8b99Eh+/cCVdYOeIAQ+RsgUYUw== - dependencies: - "@vue/language-core" "1.8.15" - "@vue/typescript" "1.8.15" - semver "^7.3.8" - -vue-virtual-scroller@2.0.0-beta.8: - version "2.0.0-beta.8" - resolved "https://registry.yarnpkg.com/vue-virtual-scroller/-/vue-virtual-scroller-2.0.0-beta.8.tgz#eeceda57e4faa5ba1763994c873923e2a956898b" - integrity sha512-b8/f5NQ5nIEBRTNi6GcPItE4s7kxNHw2AIHLtDp+2QvqdTjVN0FgONwX9cr53jWRgnu+HRLPaWDOR2JPI5MTfQ== - dependencies: - mitt "^2.1.0" - vue-observe-visibility "^2.0.0-alpha.1" - vue-resize "^2.0.0-alpha.1" - -vue@^3.3.4: - version "3.3.4" - resolved "https://registry.yarnpkg.com/vue/-/vue-3.3.4.tgz#8ed945d3873667df1d0fcf3b2463ada028f88bd6" - integrity sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw== - dependencies: - "@vue/compiler-dom" "3.3.4" - "@vue/compiler-sfc" "3.3.4" - "@vue/runtime-dom" "3.3.4" - "@vue/server-renderer" "3.3.4" - "@vue/shared" "3.3.4" - -vuex-router-sync@^6.0.0-rc.1: - version "6.0.0-rc.1" - resolved "https://registry.yarnpkg.com/vuex-router-sync/-/vuex-router-sync-6.0.0-rc.1.tgz#d8d003bca3067194808e16fd145eefc46ac5ac10" - integrity sha512-pzVrX/rmQsDjJiKPAjgKxpkxWdiBBQmxATFA6eFyS2Tmo6jauq8iDk9BWxkw41/OA+pbq4wkONRC0aeErDw8GQ== - -vuex@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/vuex/-/vuex-4.1.0.tgz#aa1b3ea5c7385812b074c86faeeec2217872e36c" - integrity sha512-hmV6UerDrPcgbSy9ORAtNXDr9M4wlNP4pEFKye4ujJF8oqgFFuxDCdOLS3eNoRTtq5O3hoBDh9Doj1bQMYHRbQ== - dependencies: - "@vue/devtools-api" "^6.0.0-beta.11" - -w3c-hr-time@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" - integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== - dependencies: - browser-process-hrtime "^1.0.0" - -w3c-xmlserializer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" - integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== - dependencies: - xml-name-validator "^3.0.0" - -w3c-xmlserializer@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz#aebdc84920d806222936e3cdce408e32488a3073" - integrity sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw== - dependencies: - xml-name-validator "^4.0.0" - -walker@^1.0.7, walker@^1.0.8, walker@~1.0.5: - version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" - integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== - dependencies: - makeerror "1.0.12" - watchpack@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" @@ -12040,104 +4305,7 @@ watchpack@^2.4.0: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" -wbuf@^1.1.0, wbuf@^1.7.3: - version "1.7.3" - resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" - integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== - dependencies: - minimalistic-assert "^1.0.0" - -webidl-conversions@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" - integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== - -webidl-conversions@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" - integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== - -webidl-conversions@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" - integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== - -webpack-cli@^5.1.1: - version "5.1.4" - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.1.4.tgz#c8e046ba7eaae4911d7e71e2b25b776fcc35759b" - integrity sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg== - dependencies: - "@discoveryjs/json-ext" "^0.5.0" - "@webpack-cli/configtest" "^2.1.1" - "@webpack-cli/info" "^2.0.2" - "@webpack-cli/serve" "^2.0.5" - colorette "^2.0.14" - commander "^10.0.1" - cross-spawn "^7.0.3" - envinfo "^7.7.3" - fastest-levenshtein "^1.0.12" - import-local "^3.0.2" - interpret "^3.1.1" - rechoir "^0.8.0" - webpack-merge "^5.7.3" - -webpack-dev-middleware@^5.3.1: - version "5.3.3" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" - integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== - dependencies: - colorette "^2.0.10" - memfs "^3.4.3" - mime-types "^2.1.31" - range-parser "^1.2.1" - schema-utils "^4.0.0" - -webpack-dev-server@^4.15.0: - version "4.15.1" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz#8944b29c12760b3a45bdaa70799b17cb91b03df7" - integrity sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA== - dependencies: - "@types/bonjour" "^3.5.9" - "@types/connect-history-api-fallback" "^1.3.5" - "@types/express" "^4.17.13" - "@types/serve-index" "^1.9.1" - "@types/serve-static" "^1.13.10" - "@types/sockjs" "^0.3.33" - "@types/ws" "^8.5.5" - ansi-html-community "^0.0.8" - bonjour-service "^1.0.11" - chokidar "^3.5.3" - colorette "^2.0.10" - compression "^1.7.4" - connect-history-api-fallback "^2.0.0" - default-gateway "^6.0.3" - express "^4.17.3" - graceful-fs "^4.2.6" - html-entities "^2.3.2" - http-proxy-middleware "^2.0.3" - ipaddr.js "^2.0.1" - launch-editor "^2.6.0" - open "^8.0.9" - p-retry "^4.5.0" - rimraf "^3.0.2" - schema-utils "^4.0.0" - selfsigned "^2.1.1" - serve-index "^1.9.1" - sockjs "^0.3.24" - spdy "^4.0.2" - webpack-dev-middleware "^5.3.1" - ws "^8.13.0" - -webpack-hot-middleware@^2.25.3: - version "2.25.4" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.25.4.tgz#d8bc9e9cb664fc3105c8e83d2b9ed436bee4e193" - integrity sha512-IRmTspuHM06aZh98OhBJtqLpeWFM8FXJS5UYpKYxCJzyFoyWj1w6VGFfomZU7OPA55dMLrQK0pRT1eQ3PACr4w== - dependencies: - ansi-html-community "0.0.8" - html-entities "^2.1.0" - strip-ansi "^6.0.0" - -webpack-merge@^5.7.3: +webpack-merge@5.9.0: version "5.9.0" resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== @@ -12150,10 +4318,10 @@ webpack-sources@^3.2.3: resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== -webpack@^5.82.1: - version "5.88.2" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.88.2.tgz#f62b4b842f1c6ff580f3fcb2ed4f0b579f4c210e" - integrity sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ== +webpack@5.89.0: + version "5.89.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.89.0.tgz#56b8bf9a34356e93a6625770006490bf3a7f32dc" + integrity sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw== dependencies: "@types/eslint-scope" "^3.7.3" "@types/estree" "^1.0.0" @@ -12180,157 +4348,18 @@ webpack@^5.82.1: watchpack "^2.4.0" webpack-sources "^3.2.3" -websocket-driver@>=0.5.1, websocket-driver@^0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" - integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== - dependencies: - http-parser-js ">=0.5.1" - safe-buffer ">=5.1.0" - websocket-extensions ">=0.1.1" - -websocket-extensions@>=0.1.1: - version "0.1.4" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" - integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== - -whatwg-encoding@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== - dependencies: - iconv-lite "0.4.24" - -whatwg-encoding@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53" - integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg== - dependencies: - iconv-lite "0.6.3" - -whatwg-mimetype@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== - -whatwg-mimetype@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz#5fa1a7623867ff1af6ca3dc72ad6b8a4208beba7" - integrity sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q== - -whatwg-url@^12.0.0, whatwg-url@^12.0.1: - version "12.0.1" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-12.0.1.tgz#fd7bcc71192e7c3a2a97b9a8d6b094853ed8773c" - integrity sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ== - dependencies: - tr46 "^4.1.1" - webidl-conversions "^7.0.0" - -whatwg-url@^8.0.0, whatwg-url@^8.5.0: - version "8.7.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" - integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== - dependencies: - lodash "^4.7.0" - tr46 "^2.1.0" - webidl-conversions "^6.1.0" - -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== - -which-typed-array@^1.1.11, which-typed-array@^1.1.2: - version "1.1.11" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" - integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - -which@^1.2.9, which@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" - integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== - dependencies: - isexe "^2.0.0" - -which@^2.0.1, which@^2.0.2: +which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" -wide-align@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" - integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== - dependencies: - string-width "^1.0.2 || 2 || 3 || 4" - wildcard@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== -window-size@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" - integrity sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg== - -window-size@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/window-size/-/window-size-1.1.1.tgz#9858586580ada78ab26ecd6978a6e03115c1af20" - integrity sha512-5D/9vujkmVQ7pSmc0SCBmHXbkv6eaHwXEx65MywhmUMsI8sGqJ972APq1lotfcwMKPFLuCFfL8xGHLIp7jaBmA== - dependencies: - define-property "^1.0.0" - is-number "^3.0.0" - -winreg@1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/winreg/-/winreg-1.2.4.tgz#ba065629b7a925130e15779108cf540990e98d1b" - integrity sha512-IHpzORub7kYlb8A43Iig3reOvlcBJGX9gZ0WycHhghHtA65X0LYnMRuJs+aH1abVnMJztQkvQNlltnbPi5aGIA== - -with-open-file@^0.1.6: - version "0.1.7" - resolved "https://registry.yarnpkg.com/with-open-file/-/with-open-file-0.1.7.tgz#e2de8d974e8a8ae6e58886be4fe8e7465b58a729" - integrity sha512-ecJS2/oHtESJ1t3ZfMI3B7KIDKyfN0O16miWxdn30zdh66Yd3LsRFebXZXq6GU4xfxLf6nVxp9kIqElb5fqczA== - dependencies: - p-finally "^1.0.0" - p-try "^2.1.0" - pify "^4.0.1" - -word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wordwrap@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" - integrity sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q== - -wrap-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" - integrity sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ== - dependencies: - string-width "^2.1.1" - strip-ansi "^4.0.0" - -wrap-ansi@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" - integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" @@ -12345,88 +4374,21 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== -write-file-atomic@^2.4.2: - version "2.4.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" - integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== - dependencies: - graceful-fs "^4.1.11" - imurmurhash "^0.1.4" - signal-exit "^3.0.2" - -write-file-atomic@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" - integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== - dependencies: - imurmurhash "^0.1.4" - is-typedarray "^1.0.0" - signal-exit "^3.0.2" - typedarray-to-buffer "^3.1.5" - -write-file-atomic@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" - integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^3.0.7" - -ws@8.14.2, ws@^8.13.0: +ws@8.14.2: version "8.14.2" resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f" integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g== -ws@^7.4.6: - version "7.5.9" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591" - integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q== - -xml-char-classes@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/xml-char-classes/-/xml-char-classes-1.0.0.tgz#64657848a20ffc5df583a42ad8a277b4512bbc4d" - integrity sha512-dTaaRwm4ccF8UF15/PLT3pNNlZP04qko/FUcr0QBppYLk8+J7xA9gg2vI2X4Kr1PcJAVxwI9NdADex29FX2QVQ== - -xml-name-validator@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== - -xml-name-validator@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" - integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== - xmlbuilder@>=11.0.1, xmlbuilder@^15.1.1: version "15.1.1" resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5" integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== -xmlchars@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" - integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== - -xtend@^4.0.2, xtend@~4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== - y18n@^5.0.5: version "5.0.8" resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== -yaku@^0.16.6: - version "0.16.7" - resolved "https://registry.yarnpkg.com/yaku/-/yaku-0.16.7.tgz#1d195c78aa9b5bf8479c895b9504fd4f0847984e" - integrity sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw== - yallist@^3.0.2: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" @@ -12437,50 +4399,20 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yaml@^1.10.0: - version "1.10.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" - integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== - -yargs-parser@20.x, yargs-parser@^20.2.3: - version "20.2.9" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" - integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== - -yargs-parser@^18.1.2: - version "18.1.3" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" - integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" +yaml@^2.1.1: + version "2.3.3" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.3.tgz#01f6d18ef036446340007db8e016810e5d64aad9" + integrity sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ== yargs-parser@^21.1.1: version "21.1.1" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== -yargs@^15.4.1: - version "15.4.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" - integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== - dependencies: - cliui "^6.0.0" - decamelize "^1.2.0" - find-up "^4.1.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^4.2.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^18.1.2" - -yargs@^17.2.1: - version "17.6.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.6.2.tgz#2e23f2944e976339a1ee00f18c77fedee8332541" - integrity sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw== +yargs@^17.6.2: + version "17.7.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" + integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== dependencies: cliui "^8.0.1" escalade "^3.1.1" @@ -12490,29 +4422,6 @@ yargs@^17.2.1: y18n "^5.0.5" yargs-parser "^21.1.1" -yargs@^17.5.1: - version "17.7.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967" - integrity sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw== - dependencies: - cliui "^8.0.1" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.1.1" - -yargs@~3.10.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" - integrity sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A== - dependencies: - camelcase "^1.0.2" - cliui "^2.1.0" - decamelize "^1.0.0" - window-size "0.1.0" - yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" @@ -12521,11 +4430,6 @@ yauzl@^2.10.0: buffer-crc32 "~0.2.3" fd-slicer "~1.1.0" -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== - yocto-queue@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251"