aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/app
Commit message (Collapse)AuthorAge
* 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
|
* 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
|
* feat: add eslint-plugin-unicorn (#1936)Libravatar Markus Hatvan2021-09-14
|
* cleanup: Remove redundant 'data.name' in workspaces.Libravatar Vijay A2021-09-06
|
* fix: Import previously exported `ferdi.data` file (with workspaces) threw ↵Libravatar Vijay Raghavan Aravamudhan2021-09-06
| | | | error (#1874)
* chore: remove what's new functionality (#1864)Libravatar Markus Hatvan2021-09-04
|
* Fix issue with workspace feature - fixes #1682 (#1854)Libravatar Vijay Raghavan Aravamudhan2021-09-01
| | | | | | | | * fix issue with workspace feature not being turned on, and then randomly turning on somehow. * when deleting the active workspace, auto-select the default workspace. * consolidated the toggling of features into a single place in the config file. Co-authored-by: Sadetdin EYILI <sadetdin.eyili@ekino.com> Signed-off-by: Vijay A <avijayr@protonmail.com>
* 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)
* refactor: add debug statements [skip ci]Libravatar Vijay A2021-08-21
|
* refactor(cleanup): remove code that refers to paid subscriptionLibravatar Vijay A2021-08-21
| | | | (since we are always premium/free)
* 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 error while importing without workspaces (#1776)Libravatar Vijay Raghavan Aravamudhan2021-08-12
| | | fixes #1773
* 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)
* chore: set default fallback locale for spell-checker to be 'en-US'.Libravatar Vijay A2021-08-09
|
* 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
* Removed straggling code related to 'popular services'.Libravatar Vijay A2021-08-03
|
* 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