aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server
Commit message (Collapse)AuthorAge
* Upgrade node modulesLibravatar Vijay A2024-03-21
|
* 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
* refactor: uninstall node-fetch which is built-in since node 18 (#1431)Libravatar MCMXC2023-10-31
| | | | | | | | | | | | | | | | | * Update submodules [skip ci] * Update submodules [skip ci] * refactor: uninstall node-fetch which is built-in since node 18 - uninstall node-fetch from package.json - remove fetch import from translation-helpers.ts - remove fetch import from RecipeController and UserController * remove leftover console.log --------- Co-authored-by: github-actions <github-actions@github.com>
* Upgrade npm modules (#1312)Libravatar Vijay Aravamudhan2023-08-16
|
* remove unused parameter in UserController.js which fails lintingLibravatar MCMXC2023-07-30
|
* 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
* Upgrade npm modulesLibravatar Vijay A2023-05-24
|
* Removed unused options that were used to enable features since they are ↵Libravatar Vijay A2022-12-10
| | | | permanently on now
* migrate from gulp to esbuild for faster builds (#815)Libravatar Balaji Vijayakumar2022-12-08
|
* Minor fix for data type consistencyLibravatar Vijay A2022-12-01
|
* Switch npm to pnpm (#714)Libravatar Balaji Vijayakumar2022-11-25
|
* Revert "Switch from 'npm' to 'pnpm' (#704)"Libravatar Vijay A2022-10-28
|
* Switch from 'npm' to 'pnpm' (#704)Libravatar Vijay Aravamudhan2022-10-26
| | | | | | | Co-authored-by: Markus Hatvan <markus_hatvan@aon.at> Co-authored-by: Nathanaël Houn <contact@nathanaelhoun.fr> Co-authored-by: Balaji Vijayakumar <kuttibalaji.v6@gmail.com> Co-authored-by: André Oliveira <oliveira.andrerodrigues95@gmail.com>
* eslint needs to be executed at the top-level to actually workv6.0.1-nightly.3Libravatar Vijay A2022-07-25
|
* refactor: local server import/exportLibravatar Kristóf Marussy2022-07-11
| | | | Signed-off-by: Kristóf Marussy <kristof@marussy.com>
* 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>
* Use different ports as compared to FerdiLibravatar Vijay A2022-05-16
|
* 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
|
* Revert "Eventually get remote recipes updates in internal server" (#134)Libravatar Vijay Aravamudhan2022-05-11
| | | This reverts commit 1101eb3801fb265221baee91428ba1c9a19f6150.
* Rebranding of Ferdium ServerLibravatar André Oliveira2022-04-25
|
* Accept both 'ferdi-data' and 'ferdium-data' extnsLibravatar Vijay A2022-04-24
| | | | (useful when moving from Ferdi to Ferdium)
* Preload safe debug shim (#29)Libravatar Kristóf Marussy2022-04-22
| | | | | | | | | | | | | | | | In https://github.com/ferdium/ferdium-app/pull/23 we removed usages of the debug package due to an electron bug. This patch aims to restore some debug functionality by introducing a shim. The shim detect whether if it is being introduced in a preload script where the electron but would be triggered, and falls back to a simple replacement for debug. However, in the main and renderer processes, where a preload script is not being used, we still get full debug functionality. In this way, a module can be used both in a preload script and outside of it, while still preserving debug functionality whenever possible. Signed-off-by: Kristóf Marussy <kristof@marussy.com>
* Matched casing for almost all replacementsLibravatar Aditya Mangalampalli2022-04-16
|
* Eventually get remote recipes updates in internal serverLibravatar kytwb2022-01-07
|
* Review recipes routesLibravatar kytwb2022-01-06
|
* Replace hard-coded popular services in internal serverLibravatar kytwb2022-01-05
|
* Revert "Removed straggling code related to popular services."Libravatar kytwb2022-01-02
| | | | This reverts commit a9c1abc6f11cb193388fad505c0304f1efe60a30.
* Fixes #1475Libravatar kytwb2021-12-19
|
* Fix officialRecipes fetchLibravatar kytwb2021-12-18
|
* Enable saving empty workspacesLibravatar kytwb2021-12-14
|
* 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
* chore: convert various files to TS (#2246)Libravatar Markus Hatvan2021-11-18
| | | | | | * convert various files to TS * removed outdated docs/example-feature folder * turn off unicorn/no-empty-file * update eslint config
* chore: update eslint deps to latest (#2213)Libravatar Markus Hatvan2021-11-12
| | | | | - update eslint deps to latest - disable new react/function-component-definition rule - fix/disable newly reported issues
* Cleanup/remove feature toggle for todo, workspace, service proxy (#2134)Libravatar Abin Mn2021-10-26
| | | | | | * Remove DEFAULT_FEATURES_CONFIG from config * Remove static controller Co-authored-by: Madhuri B <MadhuriBandanadam@users.noreply.github.com>
* fix: correct the import of API_VERSION (#2112)Libravatar Vijay Aravamudhan2021-10-23
|
* chore: update eslint setup (#2074)Libravatar Markus Hatvan2021-10-15
|
* chore: remove all code related to news (#2069)Libravatar Markus Hatvan2021-10-14
|
* chore: convert files to TS (#2066)Libravatar Markus Hatvan2021-10-14
|
* refactor: move 'DEFAULT_APP_SETTINGS' from 'environment' to 'config' since ↵Libravatar Vijay A2021-10-01
| | | | it doesn't depend on the running process any more.
* refactor: split 'environment' into 'environment-remote' with only the remote ↵Libravatar Vijay A2021-10-01
| | | | | | module dependency (might be a pre-requisite for the electron v14 upgrade)
* chore: update various outdated node_modules (#1969)Libravatar Markus Hatvan2021-09-29
|
* chore: convert various files from JS to TS (#1959)Libravatar Markus Hatvan2021-09-18
|
* feat: add eslint-plugin-unicorn (#1936)Libravatar Markus Hatvan2021-09-14
|