aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.ts
Commit message (Collapse)AuthorAge
* refactor: bring down eslint warnings to zero (#1714)Libravatar MCMXC2024-04-18
| | | | | | | | | | - install `@eslint-react/eslint-plugin` dependency - configure `@eslint-react/eslint-plugin` in eslint config - modernize `lint` command in `package.json` - disable or fix various reported lint issues - fix `div` being nested in `p` for settings - replace deprecated `event.keyCode` with `event.key` - update isEscKeyPress method and unit tests which used deprecated `event.keyCode` - allow `eslint` v8 as peer dependency for `@eslint-react/eslint-plugin`
* Upgrade node modulesLibravatar Vijay A2024-03-21
|
* rename features to better convey typeLibravatar Vijay A2024-02-11
| | | | (without migration)
* refactor: remove unused code with knip (#1492)Libravatar MCMXC2023-12-22
| | | - remove unused code snippets flagged by `npx knip`
* chore: project maintenance (#1466)Libravatar MCMXC2023-12-03
| | | | | | | | | | - temporarily disable newly introduced `jsx-a11y/control-has-associated-label` rule - add `--quiet` flag to lint command to see issues with error level only - reuse `lint` command for `lint:fix` command - use `--cache` flag for `prettier` and `eslint` commands - upgrade all non-major dependencies to latest except for `esbuild` - run `pnpm dedupe` to simplify lockfile - autofix various `.ts` and `.tsx` files with `pnpm prepare-code` command - disable newly discovered lint issue in `SearchInput`
* chore: upgrade used node and pnpm version (#1433)Libravatar MCMXC2023-11-01
| | | | | | | | | | - upgrade node and pnpm version in `engines`, `volta` and `packageManager` config - upgrade `@types/node` to v20 - remove `react-loader` overrides from `peerDependencyRules.allowedVersions` - remove `@npmcli/move-file` 2.0.1 from `allowedDeprecatedVersions` - update node image to 20.9.0 in `Dockerfile` - update required system dependencies in `CONTRIBUTING.md` - update node version to 20.9.0 in `.nvmrc` - correct type definitions for `setInterval` usage in `WebviewCrashHandler` and `AppStore` necessary due to `@types/node` upgrade
* feat: add deeplink to service (#1344)Libravatar André Oliveira2023-09-04
| | | add deeplink to service
* feat: Add Download Manager (pause, stop, delete) (#1339)Libravatar André Oliveira2023-09-02
|
* Upgrade npm modules (#1312)Libravatar Vijay Aravamudhan2023-08-16
|
* refactor: more lint improvementsLibravatar MCMXC2023-07-30
| | | | | | | | | - set parserOptions.ecmaVersion to latest and env to es2024 in eslint config - install missing types libraries - install eslint-plugin-sonar - enable eslint-plugin-sonar recommended rules and declare jsx-runtime for react in eslint config - clean up disabled lint rules which don't inflict problems anymore - disable various lint issues and fix others
* chore: improve lint setupLibravatar MCMXC2023-07-25
| | | | | | | | | | | | | | | - update eslint config - merged eslint rules for JS and TS to avoid duplicates - extended stricter lint ruleset from typescript-eslint - corrected wrong setup for certain eslint rulesets - opt in to reportUnusedDisableDirectives config option - fix or disable a lot of lint issues throughout codebase - remove trailingComma: all from prettier config which is default in prettier v3 - add volta configuration to package.json to autoload correct node and pnpm versions - upgrade all eslint and prettier related dependencies to latest - remove config options from settings.json which are default anyways - remove config options from settings.json which are outdated/unknown - set up prettier as default formatter in settings.json
* Fix issues reported by sonarqube linterLibravatar Vijay A2023-05-28
|
* Upgrade npm modulesLibravatar Vijay A2023-05-24
|
* Fix issues with executable when using portable on windows (#850)Libravatar Alphrag2022-12-17
| | | | * Fix startup executable for windows portable * Set folder name of unpacking for windows portable exe
* Transfrom workspace components to ts (#775)Libravatar muhamedsalih-tw2022-11-17
|
* fix: change locale not working (#561)Libravatar André Oliveira2022-08-19
| | | fix: locale not changing
* chore: change values inside mobx actions to fix console warnings (#532)Libravatar André Oliveira2022-08-03
|
* Feature: Add Release Notes (#491)Libravatar André Oliveira2022-07-19
| | | | Co-authored-by: Vijay A <vraravam@users.noreply.github.com> Co-authored-by: Ricardo Cino <ricardo@cino.io>
* Use defaults defined in one place instead of hardcoding in multiple placesLibravatar Vijay A2022-07-14
|
* Fix blank screen after in-app update on Windows (#464)Libravatar André Oliveira2022-07-11
| | | Fix blank screen after in-app update on Windows #460
* chore: Mobx & React-Router upgrade (#406)Libravatar Ricardo Cino2022-07-07
| | | Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* chore: Use relative paths while importing from custom codeLibravatar Vijay A2022-07-04
|
* Use default exports instead of named exportsLibravatar Vijay A2022-07-02
|
* Fix toggle for pre-release updates on Ubuntu (#393)Libravatar André Oliveira2022-06-29
| | | Fixes #391
* chore: transform containers/settings from js to tsx (#384)Libravatar Ricardo Cino2022-06-27
|
* feat: remember collapsed state of hamburger menu on refresh/reboot (#373)Libravatar Ricardo Cino2022-06-26
|
* chore: turned all auth containers into typescript (#375)Libravatar Ricardo Cino2022-06-26
|
* chore: Transform AppStore.js into Typescript (#329)Libravatar Ricardo Cino2022-06-21
* turn actions into typescript * correct tsconfig * added TypedStore