aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
Commit message (Collapse)AuthorAge
* Upgrade electron to 30.0.8 (#1786)Libravatar Vijay Aravamudhan2024-05-26
| | | * Fix issue highlighted by codespell
* Fix notifications on all services (#1593)Libravatar André Oliveira2024-05-13
| | | | | | | | | | | | | * refactor class * Revert "refactor class" This reverts commit 7e266d7aa4905f236457c44f9ffc37fa8f742b4c. * refactor: change logic * Working logic (but double notifications) * fix: final adjustments
* feat: use favicons instead of iconsLibravatar André Oliveira2024-05-03
|
* fix: screenshare feature not working on Teams (#1733)Libravatar André Oliveira2024-05-02
|
* 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`
* refactor: project maintenance (#1682)Libravatar MCMXC2024-04-15
| | | | | | - remove redundant `@adonisjs/auth`, `@adonisjs/session` and `@emotion/react` dependencies - remove `.vscode` folder - clean up some TS and ESLint issues - migrate from deprecated "husky install" to "husky"
* Upgrade node modulesLibravatar Vijay A2024-03-21
|
* feat: Parse 2FA SMS token and copy to clipboard (#1561)Libravatar Willy Woitas2024-02-18
|
* rename features to better convey typeLibravatar Vijay A2024-02-11
| | | | (without migration)
* Rudimentary DBus toggle-to-talk support (#1507)Libravatar Kristóf Marussy2024-01-03
| | | | | | Adds a ToggleToTalk method to the DBus interface to unmute/mute the microphone in the active service if the recipe supports it. We will need to add support for this feature in recipes.
* refactor: remove unused code with knip (#1492)Libravatar MCMXC2023-12-22
| | | - remove unused code snippets flagged by `npx knip`
* refactor: code cleanup (#1476)Libravatar MCMXC2023-12-07
| | | | | - auto update `settings.json` due to new vscode version - replace deprecated `e.keyCode` with `e.key` - fix various code snippets with sonarlint and other lint plugins
* 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
* Add new token request (#1384)Libravatar André Oliveira2023-10-13
| | | | | | | | | | | | | | | | | * Add new token request This exists so that the user generates a new JWT token with the new adonisjs update on the server (that is now stored - hashed and using the adonis5-jwt package - which previously wasn't). This logic enhances security as we can delete the tokens on the jwt_tokens database in order to log-off users in case the APP_KEY is compromised (if we are hacked, for instance). After some time (maybe months after the migration) we can delete the old code on the server side that handles the deprecated JWT tokens (and possibly change the APP_KEY used to sign the old certificates - we can now probably use certs to sign the JWT - to enhance security as well). * Update src/api/server/ServerApi.ts Co-authored-by: MCMXC <16797721+mcmxcdev@users.noreply.github.com> * Update src/stores/UserStore.ts Co-authored-by: MCMXC <16797721+mcmxcdev@users.noreply.github.com> --------- Co-authored-by: MCMXC <16797721+mcmxcdev@users.noreply.github.com>
* 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
* refactor: various improvements (#1296)Libravatar MCMXC2023-07-30
| | | | | | | | | | | | | | | | | | | | | | | | | * refactor: various improvements - enable no-use-before-define eslint rule - shuffle code to conform to no-use-before-define eslint rule - remove btoa dependency which is deprecated and replace with Buffer.from(string).toString('base64') - convert some any types into useful ones - add type annotations where possible - remove unused @types/expect.js - install @types/semver and ts-node which were missing - repair and rewrite add-crowdin-contributors script - remove export keyword from variables which are never consumed in another file - remove unity indicator hack where linked issue was closed - remove module declaration for kebab-case which is unused - add missing state interface for certain components - remove default exports for files which already have a named export - export IRecipePreview so it can be used throughout codebase - remove unused removeCacheForCallWith method from CachedRequest.ts - cleanup unused colors and styles inside legacy theme * - improve ColorPickerInput - fix invalid DOM nesting with div inside p in EditSettingsForm - fix progressbarAccentColor color picker not updating input when using slider - install missing @types/react-color dependency
* 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
|
* Basic D-Bus API (#866)Libravatar Kristóf Marussy2023-03-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * feat: basic D-Bus API Expose muted state and the number of unread message over D-Bus when running on Linux. This is useful for, e.g., displaying notifications on a window manager status bar. Signed-off-by: Kristóf Marussy <kristof@marussy.com> * docs: create docs directory Move the documentation to a separate directory so that new documentation can be added into one place. We keep the following files still in the repository root by convention: * CHANGELOG.md * CODE_OF_CONDUCT.md * CONTRIBUTING.md * LICENSE.md * README.md * SECURITY.md Signed-off-by: Kristóf Marussy <kristof@marussy.com> * docs: D-Bus usage example Signed-off-by: Kristóf Marussy <kristof@marussy.com> * fix: remove unneeded D-Bus signals Only notify clients that the message counts or the mute status has changed if there actually was a change. Signed-off-by: Kristóf Marussy <kristof@marussy.com> * docs: rewrite sample bar client * docs: better unread --services help * docs: update dbus docs * docs: use ferdium-dbus in dbus bar example * docs: make command argument required in bar example --------- Signed-off-by: Kristóf Marussy <kristof@marussy.com> Co-authored-by: Victor Bonnelle <victor.bonnelle@protonmail.com>
* Use service icon in notification; Decouple notification sound from ↵Libravatar Vijay Aravamudhan2023-01-16
| | | | notification badge (#860)
* 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
* Transform Todo feature, ServiceBarTargetUrl, ServiceIcon, TeamDashboard, ↵Libravatar muhamedsalih-tw2022-11-20
| | | | Slider, Loader & WorkspaceSwitchningIndicator into ts (#782)
* Transfrom workspace components to ts (#775)Libravatar muhamedsalih-tw2022-11-17
|
* refactor: convert Sidebar to typescript (#703)Libravatar Balaji Vijayakumar2022-10-25
|
* Add service-level option 'isMediaBadgeEnabled' defaulted to false (#688)Libravatar Santhosh C2022-10-22
|
* fix: change locale not working (#561)Libravatar André Oliveira2022-08-19
| | | fix: locale not changing
* Feature: Add Ferdium Translator (#548)Libravatar André Oliveira2022-08-17
| | | Add feature to translate text natively using https://github.com/shikar/NODE_GOOGLE_TRANSLATE package and a LibreTranslate self-hosted option (already running on our server on https://translator.ferdium.org).
* chore: change values inside mobx actions to fix console warnings (#532)Libravatar André Oliveira2022-08-03
|
* eslint needs to be executed at the top-level to actually workv6.0.1-nightly.3Libravatar Vijay A2022-07-25
|
* 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
* refactor: local server import/exportLibravatar Kristóf Marussy2022-07-11
| | | | Signed-off-by: Kristóf Marussy <kristof@marussy.com>
* 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
* Disable API Server recipes updates (#382)Libravatar André Oliveira2022-06-27
| | | Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* 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: convert the last few stores to typescriptLibravatar Ricardo Cino2022-06-25
|
* chore: servicesStore + models into typescript (#344)Libravatar Ricardo Cino2022-06-23
|
* chore: featureStore and GlobalErrorStore JS => TSLibravatar Ricardo Cino2022-06-23
|
* chore: recipes/request stores js => tsLibravatar Ricardo Cino2022-06-23
|