aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
Commit message (Collapse)AuthorAge
* Handle invalid accent color, fix loader stylingLibravatar kytwb2022-01-02
|
* Iterate on settings appearanceLibravatar kytwb2022-01-02
|
* Iterate on About Ferdi screenLibravatar kytwb2021-12-19
|
* Fetch workspaces on WorkspaceDrawer componentDidMountLibravatar kytwb2021-12-18
|
* Refactor autoUpdater usageLibravatar kytwb2021-12-18
|
* Fix create workspace button style when no accent color setLibravatar kytwb2021-12-17
|
* Fix create workspace button when no accent color setLibravatar kytwb2021-12-15
|
* Restore sidebarWidth in generateVerticalStyleLibravatar kytwb2021-12-15
|
* Various appearance fixesLibravatar kytwb2021-12-15
|
* Various appearance fixesLibravatar kytwb2021-12-15
|
* Fix Quick Switch showing service from different workspaceLibravatar kytwb2021-12-14
|
* Remove accent color on nightly builds modal textLibravatar kytwb2021-12-14
|
* Fix Dark Mode in auth screensLibravatar kytwb2021-12-14
|
* Reset updateWorkspaceRequest before re-save attemptLibravatar kytwb2021-12-14
| | | | Enable the UI error message to flash as a reaction to the re-save attempt.
* Add visual feedback on updateWorkspaceRequest errorLibravatar kytwb2021-12-14
|
* Use accent color from settings in modals when appropriateLibravatar kytwb2021-12-13
|
* Fine-tune QuickSwitch styling in light modeLibravatar kytwb2021-12-13
|
* Style modals as per QuickSwitch modalLibravatar kytwb2021-12-13
|
* Fix PublishDebugLogModal close button color in Dark ModeLibravatar kytwb2021-12-12
|
* Reset state when closing PublishDebugLogModalLibravatar kytwb2021-12-12
|
* chore: upgrade react-jss to latest (#2302)Libravatar Markus Hatvan2021-12-04
|
* 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
* Adjust number of columns for Split Mode (#2208)Libravatar niu tech2021-11-13
| | | Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* 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
* fix: Force the minimum icon size to 2 if the calculated icon size becomes ↵Libravatar Vijay Aravamudhan2021-11-10
| | | | negative. Fixes #2199 (#2204)
* fix: icon alignment for horizontal bar (#2179)Libravatar Balaji Vijayakumar2021-11-09
|
* Added improvements for displaying service name under service icon (#2169)Libravatar Anjith Paul2021-10-31
| | | | | | | | * move notification badge to top of service icon * Change horizontal sidebar height programmatically * Fix tab item style in vertical and horizontal style sidebar * Reformat code and remove magic numbers Co-authored-by: Johan K Mathew <johankmathew@gmail.com>
* chore: remove @mdi/font in favor of using icons with @mdi/js directly (#2158)Libravatar Markus Hatvan2021-10-28
| | | Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
* 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>
* chore: use 'window['ferdi']' (split out from pr #2092) (#2104)Libravatar Vijay Aravamudhan2021-10-20
| | | Co-authored-by: Markus Hatvan <markus_hatvan@aon.at>
* chore: move 'packages/themes' into 'src' (no longer an injected package) (#2080)Libravatar Vijay Aravamudhan2021-10-15
|
* chore: move 'packages/forms' into 'src' (no longer an injected package) (#2079)Libravatar Vijay Aravamudhan2021-10-15
|
* chore: move 'packages/ui' into 'src' (no longer an injected package) (#2077)Libravatar Vijay Aravamudhan2021-10-15
|
* chore: update eslint setup (#2074)Libravatar Markus Hatvan2021-10-15
|
* chore: convert components to tsx (#2071)Libravatar Markus Hatvan2021-10-15
|
* chore: convert files to TS (#2066)Libravatar Markus Hatvan2021-10-14
|
* chore: upgrade react to latest (#2030)Libravatar Markus Hatvan2021-10-07
|
* chore: upgrade material design dependencies to latestLibravatar mhatvan2021-10-06
| | | | | - upgrade @mdi dependencies to latest - replace mdiSettings import with mdiCog
* chore: convert various files from JS to TS (#2010)Libravatar Markus Hatvan2021-10-02
|
* 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)
* fix: horizontal bar is a lot wider than what it should be (#2006)Libravatar Markus Hatvan2021-10-01
|
* refactor: remove optional parameters from 'popup' invocation which was tying ↵Libravatar Vijay A2021-09-27
| | | | us into 'electron/remote'
* fix: accent color customization regression hotfix (#1965)Libravatar Kristóf Marussy2021-09-19
| | | | Sorry, something got mucked up when converting the old themeInfo.json to static CSS last time. This time, it should be correct.
* fix: accent color customization regression (#1963)Libravatar Kristóf Marussy2021-09-18
| | | | | | | | | | | | | | | | PR #1959 removed the build-theme-info script, which was broken, along with the themeInfo.json that we used to dynamically build CSS rules for accent color customization. This resulted in the accent color not getting applied to most of the UI. Instead of trying to restore the build-theme-info functionality, this commit takes a much simpler approach by statically adding the required CSS rules to src/features/appearance/index.ts. Since these rules are no longer automatically generated, we need to update them once some CSS styling is added with the accent color. A longer term fix would be to use CSS variables instead, but that approach would not be supported by @meetfranz/theme.
* chore: convert various files from JS to TS (#1959)Libravatar Markus Hatvan2021-09-18
|
* Enable Split View Mode (#1926)Libravatar niu tech2021-09-15
|
* feat: add eslint-plugin-unicorn (#1936)Libravatar Markus Hatvan2021-09-14
|
* refactor: revert the text for some more fields.Libravatar Vijay A2021-09-14
|
* chore: codebase improvements (#1930)Libravatar Markus Hatvan2021-09-14
|