aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend
Commit message (Collapse)AuthorAge
* fix(frontend): content assist error recoveryLibravatar Kristóf Marussy2022-12-09
|
* feat(frontend): scroll beyond last line in editorLibravatar Kristóf Marussy2022-12-09
| | | | Mimics the polular behavior from Codium.
* refactor(frontend): simplify diagnostic trackingLibravatar Kristóf Marussy2022-12-09
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-12-08
|
* fix(frontend): mobx 6.7.0 typingLibravatar Kristóf Marussy2022-11-22
| | | | | | | Also bumps some dependencies and updates tsconfig.json The added workarounds should be remove once https://github.com/mobxjs/mobx/issues/3582 is resolved.
* refactor(language): simplify syntaxLibravatar Kristóf Marussy2022-11-22
|
* refactor: separate primitive types from nodesLibravatar Kristóf Marussy2022-11-22
|
* feat(language): numeric expressionsLibravatar Kristóf Marussy2022-11-22
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-11-22
|
* feat(web): backend URL configurationLibravatar Kristóf Marussy2022-11-10
| | | | | | | | To point the frontend to a backend server, update the config.json file in the website root. The config.json is generated automatically in debug mode and when running from a standalone jar.
* feat(frontend): scrollbar annotationsLibravatar Kristóf Marussy2022-11-05
|
* feat(frontend): overlay scrollbars for editorLibravatar Kristóf Marussy2022-11-05
|
* refactor(frontend): editor theme improvementsLibravatar Kristóf Marussy2022-11-05
|
* refactor: DNF atomsLibravatar Kristóf Marussy2022-11-05
| | | | | | Restore count != capability. Still needs semantics and tests for count atoms over partial models.
* refactor(frontend): minor theme improvementsLibravatar Kristóf Marussy2022-11-05
|
* refactor(frontend): improve HMR experienceLibravatar Kristóf Marussy2022-11-05
| | | | | | | | Use a HMR acceptor as in https://github.com/vitejs/vite/issues/10227#issuecomment-1256969751 Also updates frontend tooling to the latest version (yarn now support typescript 4.8.4)
* fix: test and lint failuresLibravatar Kristóf Marussy2022-10-04
|
* refactor(language): disable rule parsingLibravatar Kristóf Marussy2022-10-04
| | | | Rules have too complex semantics to implement in the first prototype.
* feat(frontend): enable cross-origin isolationLibravatar Kristóf Marussy2022-10-03
|
* feat(frontend): animate GenerateButtonLibravatar Kristóf Marussy2022-10-03
|
* fix(frontend): editor selection visibilityLibravatar Kristóf Marussy2022-10-03
|
* chore: fix some warningsLibravatar Kristóf Marussy2022-10-03
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-10-03
|
* refactor(language): clarify containment hierarchyLibravatar Kristóf Marussy2022-09-14
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-09-11
|
* build(ci): fix sonar.sources in frontendLibravatar Kristóf Marussy2022-09-08
|
* feat(frontend): editor area scroll shadow stylingLibravatar Kristóf Marussy2022-09-08
|
* feat(frontend): check for updates periodicallyLibravatar Kristóf Marussy2022-09-08
|
* feat(frontend): handle page hide eventsLibravatar Kristóf Marussy2022-09-06
| | | | | | | | Integrate better with the page lifecycle state machine, see https://developer.chrome.com/blog/page-lifecycle-api/ Also makes disconnected notifications less noisy, since they may occur more frequently now (due to a frozen page being resumed).
* refactor(frontend): toolbar sm breakpointLibravatar Kristóf Marussy2022-09-06
| | | | Improve toolbar appearance on small screens
* fix(frontend): Lezer bracket matchingLibravatar Kristóf Marussy2022-09-06
|
* chore(deps): bump frontend dependenciesLibravatar Kristóf Marussy2022-09-06
|
* feat(frontend): show connection statusLibravatar Kristóf Marussy2022-09-06
|
* refactor(frontend): more readable indentationLibravatar Kristóf Marussy2022-09-06
|
* refactor(frontend): Inter fontLibravatar Kristóf Marussy2022-09-06
| | | | Use a variable font to reduce the number of files to be deployed
* feat(frontend): XState statechartsLibravatar Kristóf Marussy2022-09-06
| | | | | | | Expressing logic in statecharts for complex stateful behaviours should improve maintainability We use @xstate/cli to statically analyze statcharts before typechecking
* refactor(frontend): add eslint-plugin-mobxLibravatar Kristóf Marussy2022-08-27
|
* refactor(frontend): custom mutex implementationLibravatar Kristóf Marussy2022-08-26
| | | | Lets us track priorities of tasks without cancellation.
* refactor(frontend): simplify UpdateService furtherLibravatar Kristóf Marussy2022-08-26
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-08-26
|
* refactor(frontend): extract xtextStateId trackingLibravatar Kristóf Marussy2022-08-25
|
* fix(frontend): UpdateService synchronizationLibravatar Kristóf Marussy2022-08-25
| | | | Also bumps frontend dependencies
* refactor(frontend): xtext update improvementsLibravatar Kristóf Marussy2022-08-25
|
* fix(frontend): editor font thicknessLibravatar Kristóf Marussy2022-08-22
| | | | | Imporve font rendering on Windows by making the JetBrains Mono font slightly bolder.
* refactor(frontend): theme improvementsLibravatar Kristóf Marussy2022-08-21
|
* refactor(frontend): improve code splittingLibravatar Kristóf Marussy2022-08-21
|
* feat(frontend): overlay window controlsLibravatar Kristóf Marussy2022-08-21
| | | | | Might need manual intervention in browsers, e.g. https://docs.microsoft.com/en-us/microsoft-edge/progressive-web-apps-chromium/how-to/window-controls-overlay#enable-the-window-controls-overlay-api-in-microsoft-edge
* feat(frontend): try to match OS themeLibravatar Kristóf Marussy2022-08-21
|
* refactor(frontend): inline CSS and minify HTMLLibravatar Kristóf Marussy2022-08-20
| | | | | | Optimize first page loading time. We only include variable and woff2 fonts, as they are widely supported.
* fix(frontend): CodeMirror gutter accessibilityLibravatar Kristóf Marussy2022-08-20
| | | | | Gutters are aria-hidden, so no accessibility attributes should point at them.