aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAge
* 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
* feat(i18n): new Crowdin updates (#1209)Libravatar Nathanaël Houn2023-07-29
|
* chore: upgrade mobx-react-form to latestLibravatar MCMXC2023-07-27
| | | | | | | | - upgrade mobx-react-form from v3 to v6 - remove stub mobx-react-form.d.ts since the dependency is written in TS now - remove as any cast for new Form invocation in invite.tsx - reuse Error component in Radio.tsx to get validation error message in red - use FieldInterface type for field property instead of typeof Field in Radio.tsx
* style: reformat all files properlyLibravatar MCMXC2023-07-26
| | | | | | | | | | | - remove .json from .eslintignore - add type intellisense to .prettierrc.js - install missing @jest/types which is used in jest.config.js - split up typecheck and lint into two separate commands - remove --require-pragma flag from reformat-files which leads to unformatted files - install suggested @types/prop-types and @types/react-loader dependencies - add @ts-expect-error to Loader usages - reformat all scss files automatically with reformat-files command
* feat: picture in picture availability for video playersLibravatar MCMXC2023-07-26
| | | | | - add buildMenuForVideo method in contextMenuBuilder.ts - add picture in picture context menu entry which toggles picture in picture mode
* 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: InfoBar crash app on updateLibravatar Muhamed2023-07-23
|
* update react-router-dom,react-tooltip& react-transition-groupLibravatar Muhamed2023-07-23
|
* Revert "update react-router-dom to version 6.14.1"Libravatar Vijay A2023-07-21
| | | | | | and "update react-router-dom,react-tooltip& react-transition-group" This reverts commit 0a4a0497bb630dc85cfa0145d57f954feb9c052a and 345fd98dc52a3b7f0d69022b6a19818e559e4557.
* update react-router-dom,react-tooltip& react-transition-groupLibravatar Muhamed2023-07-20
|
* fix: changelog links opening in-app instead of browser (#1241)Libravatar André Oliveira2023-06-17
|
* Fix to remove the 'undefined' suffix on tooltips beyond the 10th ↵Libravatar Vijay A2023-05-31
| | | | service/workspace
* Revert "Update react-router-dom, react-tooltip & react-transition-group ↵Libravatar Alphrag2023-05-30
| | | | | | latest version (#1199)" This reverts commit 05ddc542cc6a5a309d90350636cc1d2aee999c19.
* Update react-router-dom, react-tooltip & react-transition-group latest ↵Libravatar muhamedsalih-tw2023-05-29
| | | | version (#1199)
* Allow the 10th service to also be accessible via keyboard shortcut comboLibravatar Vijay A2023-05-28
|
* Fix issues reported by sonarqube linterLibravatar Vijay A2023-05-28
|
* Disable in-app auto-updates for portable windows installation (fixes #1088) ↵Libravatar Vijay Aravamudhan2023-05-28
| | | | (#1200)
* feat(i18n): new Crowdin updates (#1197)Libravatar Nathanaël Houn2023-05-27
|
* Add new context menu item to download images (#935)Libravatar Vijay Aravamudhan2023-05-27
|
* Expose "Clear service cache" in the service settings screen and the sidebar ↵Libravatar Vijay Aravamudhan2023-05-27
| | | | context menu for individual services (#1053)
* update react version to 18.2.0 and it related changesLibravatar Muhamed2023-05-27
|
* Fix to allow resizing of the todos panel (#1120)Libravatar Victor B2023-05-27
| | | | | | | * Change all functions in the 'TodosPanel.tsx' to consistently use arrow-style --------- Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* Minor refactoring to remove code duplicationLibravatar Vijay A2023-05-25
|
* Upgrade npm modulesLibravatar Vijay A2023-05-24
|
* Update electronLibravatar Alphrag2023-04-28
|
* 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>
* feat(i18n): new Crowdin updates (#1039) [skip ci]Libravatar Nathanaël Houn2023-03-12
|
* feat(i18n): new Crowdin updates (#1033) [skip ci]Libravatar Nathanaël Houn2023-03-03
| | | feat(i18n): New Crowdin translations (Hindi) [skip ci]
* Add note on where to find the ISO 639-2 language names [skip ci]Libravatar Vijay A2023-03-03
|
* feat(i18n): new Crowdin updates (#1018) [skip ci]Libravatar Nathanaël Houn2023-03-03
|
* feat(i18n): New Crowdin translations (Slovak) [skip ci]Libravatar Nathanaël Houn2023-02-23
|
* docs: update link for recipes issues in the appLibravatar Nathanaël Houn2023-02-16
|
* feat(i18n): new Crowdin updates (#930)Libravatar Nathanaël Houn2023-02-15
| | | | | | | | | | | * feat(i18n): New Crowdin translations (Turkish) [skip ci] * feat(i18n): New Crowdin translations (Turkish) [skip ci] * feat(i18n): New Crowdin translations (Latvian) [skip ci] * feat(i18n): New Crowdin translations (Latvian) [skip ci] * feat(i18n): New Crowdin translations (Dutch) [skip ci]
* feat(i18n): new Crowdin updates (#927) [skip ci]Libravatar Nathanaël Houn2023-02-03
|
* feat(i18n): new Crowdin updates (#922) [skip ci]Libravatar Nathanaël Houn2023-02-01
|
* Fix duplicated i18n key with differing valueLibravatar Vijay A2023-02-02
|
* Added debug stmts when loading 'user.css' and 'darkmode.css'Libravatar Vijay A2023-02-01
|
* Bump react-dropzone from 11.7.1 to 14.2.3 (#887)v6.2.5-nightly.0Libravatar dependabot[bot]2023-01-29
| | | | | | | | | | | | | | | | | | | * Bump react-dropzone from 11.7.1 to 14.2.3 Bumps [react-dropzone](https://github.com/react-dropzone/react-dropzone) from 11.7.1 to 14.2.3. - [Release notes](https://github.com/react-dropzone/react-dropzone/releases) - [Commits](https://github.com/react-dropzone/react-dropzone/compare/v11.7.1...v14.2.3) --- updated-dependencies: - dependency-name: react-dropzone dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: André Oliveira <oliveira.andrerodrigues95@gmail.com> Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* Bump uuid from 8.3.2 to 9.0.0 (#884)Libravatar dependabot[bot]2023-01-29
| | | | | Use new version of 'uuid' module and also refer to v4 of the uuid spec for generating unique notificationId Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* feat(i18n): New Crowdin translations (Chinese Simplified) [skip ci] (#895)Libravatar Nathanaël Houn2023-01-29
|
* Add custom CSS support (#868)Libravatar Victor B2023-01-19
| | | | Co-authored-by: André Oliveira <oliveira.andrerodrigues95@gmail.com> Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* feat(i18n): new Crowdin updates (#888) [skip ci]Libravatar Nathanaël Houn2023-01-18
|
* fix: fullscreen horizontal sidebar styleLibravatar André Oliveira2023-01-18
|
* Use service icon in notification; Decouple notification sound from ↵Libravatar Vijay Aravamudhan2023-01-16
| | | | notification badge (#860)
* feat(i18n): new Crowdin updates (#843) [skip ci]Libravatar Nathanaël Houn2023-01-11
|
* Minor refactoringLibravatar Vijay A2022-12-26
|
* 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
* Fix #844: Correct language name to code mapping for dropdownLibravatar Vijay A2022-12-16
|
* Deleted the 'sentry' line in index.html - which mysteriously fixes #840Libravatar Vijay A2022-12-15
|