aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/app/Controllers/Http/ServiceController.js
Commit message (Collapse)AuthorAge
* refactor: implement biome (#1467)Libravatar MCMXC2023-12-04
| | | | | | | | - add `biome.json` - add `biome:check` and `biome:check:fix` commands to `package.json` - add `biome:check:fix` command to run as part of `prepare-code` command - install `@biomejs/biome` dependency - add `@npmcli/move-file` v2.0.1 to `pnpm.allowedDeprecatedVersions` - fix or comment out various reported lint issues
* Minor fix for data type consistencyLibravatar Vijay A2022-12-01
|
* eslint needs to be executed at the top-level to actually workv6.0.1-nightly.3Libravatar Vijay A2022-07-25
|
* fix: dont replace custom icon when service updates (#338)Libravatar Ricardo Cino2022-06-23
|
* Add ability to enable the progressbar for each service (#301)Libravatar Vijay Aravamudhan2022-06-19
|
* Add new service-level option 'trapLinkUrls' (#154)Libravatar Vijay Aravamudhan2022-05-23
| | | | | | This option can be used to allow the user to choose how to handle links (whether to open in the default browser or within the Ferdium service itself) Co-authored-by: André Oliveira <oliveira.andrerodrigues95@gmail.com>
* Minor refactoring to extract common function to deduce icon urlLibravatar Vijay A2022-05-16
|
* Use DEFAULT_SERVICE_SETTINGS for default values (remove duplication)Libravatar Vijay A2022-05-15
| | | | Added TODO comments, notes, debug logs.
* Extract utility functions for JSON parsingLibravatar Vijay A2022-05-15
|
* Extracted ImageHelper and ImageController from ServiceController for reuseLibravatar Vijay A2022-05-15
|
* Review recipes routesLibravatar kytwb2022-01-06
|
* Fixes #1475Libravatar kytwb2021-12-19
|
* chore: upgrade commitlint and eslint-plugin-unicorn to latest (#2295)Libravatar Markus Hatvan2021-12-03
| | | | | | - upgrade commitlint and eslint-plugin-unicorn dependencies - update prepare-code script to run lint:fix instead of lint - fix unicorn/no-await-expression-member lint issues - various whitespace formatting fixes due to lint:fix
* fix: correct the import of API_VERSION (#2112)Libravatar Vijay Aravamudhan2021-10-23
|
* chore: update eslint setup (#2074)Libravatar Markus Hatvan2021-10-15
|
* chore: update various outdated node_modules (#1969)Libravatar Markus Hatvan2021-09-29
|
* feat: add eslint-plugin-unicorn (#1936)Libravatar Markus Hatvan2021-09-14
|
* refactor: Reuse constants and utility functions to remove hardcoding/duplicationLibravatar Vijay A2021-08-23
|
* Incorrect position while adding a new service when there were pre-existing ↵Libravatar Vijay Raghavan Aravamudhan2021-08-21
| | | | services (#1820)
* Revert "chore: update outdated node_modules (#1807)"Libravatar Vijay A2021-08-16
| | | | This reverts commit 26a9dba22236bc22a7612107630282cfe02d20e0.
* chore: update outdated node_modules (#1807)Libravatar Markus Hatvan2021-08-16
| | | | - upgrade 'uuid', '@types/uuid', 'macos-version', 'normalize-url' and 'os-name' dependencies to latest - updated 'macos-version' imports to named imports
* fix: Fixed the sidebar context menu for toggling dark mode.Libravatar Vijay A2021-08-12
|
* feat: allow the user to enable/disable dark modeLibravatar Vijay A2021-08-11
| | | | (from the sidebar context menu)
* fix: change all occurrences of hard-coded ip address '127.0.0.1' to 'localhost'Libravatar Vijay A2021-08-05
| | | | | | | Also refactored to make this a constant defined in a single file where it is imported for all other uses. fixes #1253
* refactor: general code improvementsLibravatar mhatvan2021-08-05
| | | | | | | | | | - replace deprecated fs.exists with fs.existsSync - replace console.log with debug - replace hardcoded FERDI_VERSION in start.js with dynamic one from package.json - correct JSDoc annotations in Handler.js - simplify macOSPermissions.js - updates to various eslint rules - add FileReader to known globals
* Moved 'internal-server' into a sub-folder as opposed to a git submodule. (#1715)Libravatar Vijay Raghavan Aravamudhan2021-08-01
* Ignored tests in 'internal-server' folder since there are none. * Linter fixes