aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
* feat(frontend): add PWA manifestLibravatar Kristóf Marussy2022-08-20
|
* refactor(frontend): update themeLibravatar Kristóf Marussy2022-08-19
|
* feat(frontend): responsive editor stylingLibravatar Kristóf Marussy2022-08-18
|
* fix(frontend): search panel fixesLibravatar Kristóf Marussy2022-08-17
|
* feat(frontend): custom search panelLibravatar Kristóf Marussy2022-08-17
| | | | Also improves editor styling (to enable panel styling).
* refactor(frondend): improve editor store and themeLibravatar Kristóf Marussy2022-08-16
| | | | Also bumps frontend dependencies.
* chore(deps): bump frontend dependenciesLibravatar Kristóf Marussy2022-08-15
|
* refactor(frondend): dark theme tweaksLibravatar Kristóf Marussy2022-08-15
|
* feat(frontend): light/dark mode switchLibravatar Kristóf Marussy2022-08-12
|
* refactor(frontend): EditorParent line numbersLibravatar Kristóf Marussy2022-08-12
|
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-08-12
|
* refactor(frontend): move from Webpack to ViteLibravatar Kristóf Marussy2022-08-12
| | | | Also overhaulds the building and linting for frontend assets.
* fix(language): rule parsing testLibravatar Kristóf Marussy2022-08-12
| | | | This was left unchanged after refactoring the operators in the language.
* feat(language): modal parameter typesLibravatar Kristóf Marussy2022-08-11
|
* chore(deps): bump frontend dependenciesLibravatar Kristóf Marussy2022-08-11
|
* refactor(language): simplify count notationLibravatar Kristóf Marussy2022-08-10
| | | | Also change refinement operator based on feedback from colleagues
* feat(language): add support for count operatorLibravatar Kristóf Marussy2022-08-10
|
* refactor: direct predicatesLibravatar Kristóf Marussy2022-08-01
| | | | | | * Remove the direct keyword because it can be inferred * Use may/must/current instead of value literals * Transformation rule changes
* chore(deps): bump dependenciesLibravatar Kristóf Marussy2022-07-31
|
* refactor: simplify language projectLibravatar Kristóf Marussy2022-07-29
| | | | | | * Move all utilities for language-model to language, since they do not make sense on their own * Convert xtend code into java
* build: clean up buildSrc scriptsLibravatar Kristóf Marussy2022-07-29
|
* build: file encoding import into EclipseLibravatar Kristóf Marussy2022-07-28
| | | | See https://github.com/gradle/gradle/issues/898
* build: fix testFixtures classpath in eclipseLibravatar Kristóf Marussy2022-07-28
|
* chore: bump dependenciesLibravatar Kristóf Marussy2022-07-27
|
* docs: Add note about proxy settingsLibravatar Kristóf Marussy2022-02-10
|
* Merge pull request #18 from kris7t/releng-docsLibravatar Kristóf Marussy2022-02-04
|\ | | | | Restructure project
| * chore(frontend): bump frontend dependenciesLibravatar Kristóf Marussy2021-12-14
| |
| * build: make sure slf4j is used instead of log4jLibravatar Kristóf Marussy2021-12-14
| |
| * docs: use eclipse 2021-12Libravatar Kristóf Marussy2021-12-14
| |
| * build: separate module for frontendLibravatar Kristóf Marussy2021-12-14
| | | | | | | | | | This allows us to simplify the webpack configuration and the gradle build scripts.
| * build: move modules into subproject directoryLibravatar Kristóf Marussy2021-12-12
| |
| * build: refactor java-application conventionsLibravatar Kristóf Marussy2021-12-12
| |
| * chore: bump gradle dependency versionsLibravatar Kristóf Marussy2021-12-12
| |
| * build: add versions plugin to monitor updatesLibravatar Kristóf Marussy2021-12-12
| |
| * chore(web): bump frontend dependenciesLibravatar Kristóf Marussy2021-12-12
| |
| * chore: bump typescript to 4.5Libravatar Kristóf Marussy2021-11-21
| | | | | | | | | | Also requires yarn 3.2.0-rc.5 due to https://github.com/yarnpkg/berry/issues/3722
| * chore: yarn tsserver sdk supportLibravatar Kristóf Marussy2021-11-21
| | | | | | | | See https://yarnpkg.com/getting-started/editor-sdks/#emacs for more info
| * ci: do not modify yarn lockfile in ciLibravatar Kristóf Marussy2021-11-21
| |
| * ci: make sonar analysis conditionalLibravatar Kristóf Marussy2021-11-21
| | | | | | | | | | | | | | | | | | | | | | | | Check for the presence of the secret directly (instead of whether we're in a pull request) for a more robust CI. We check the secret according to https://github.community/t/how-can-i-test-if-secrets-are-available-in-an-action/17911 To determine the clone depth (deep for sonar analysis, shallow otherwise) we use the "fake ternary" method from https://github.community/t/do-expressions-support-ternary-operators-to-change-their-returned-value/18114
| * chore: remove MANIFEST.MFLibravatar Kristóf Marussy2021-11-21
| | | | | | | | | | File was accidentally extrated from language.jar and added to the repository.
| * build: move to yarn workspacesLibravatar Kristóf Marussy2021-11-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The root project (worktree) must have a valid package.json, .yarnrc.yaml, and have the gradle precompiled script plugin refinery-frontend-worktree applied to it. All frontend modules (workspaces) must have a valid package.json, be referenced in the worktree project.json, and be a valid gradle subproject with the gradle precompiled script plugin refinery-frontend-workspace applied to it. To reduce unnecessary downloads, we do the following workarounds: * The node version is pinned in gradle.properties and the installed node version is stored in .node/frontend.properties. A new node version is only downloaded if it differs from the installed one (or none is installed). This improves on the default gradle behavior, which would download a new node version if the classpath of the installNode task was changed. * The yarn classic version is pinned in gradle.properties and the installed yarn classic version is stored in .node/frontend.properties. This improves on the default gradle behavior, which would reinstall the yarn npm package at every build. * We disable the enableYarnBerry task, since a yarn berry version is already committed into the repository at .yarn/versions as it is recommended in http://yarnpkg.com/getting-started/qa/ * We use yarn set version --only-if-needed in the installYarn task. * The installFrontend task takes package.json and yarn.lock as inputs and produces .pnp.cjs and .pnp.loader.mjs as outputs. Whether this task is up-to-date can be checked by gradle quickly, since it doesn't have to traverse the node_module folder due to pnp resoltion: https://yarnpkg.com/features/pnp/ All workspaces have the installNode, installYarnGlobally, installYarn and installFrontend tasks disabled. However, these tasks depend on the task with the same name in the worktree project, so installation is still triggered globally. Moreover, the installFrontend task in the worktree has the package.json of the workspaces as inputs, so reinstallation is triggered when the workspace package.json changes.
| * chore(web): remove eslint-plugin-sonarjsLibravatar Kristóf Marussy2021-11-20
| | | | | | | | | | It is not compatible with eslint 8 yet: https://github.com/SonarSource/eslint-plugin-sonarjs/issues/286
| * build: upgrade to yarn 3Libravatar Kristóf Marussy2021-11-20
| | | | | | | | | | | | | | Also upgrades various frontend dependencies. We can't upgrade to typescript 4.5 yet, because https://github.com/yarnpkg/berry/pull/3760 is not released yet.
| * build: fix cross-project group and version configLibravatar Kristóf Marussy2021-11-19
| |
| * build: fix cross-project sonar configurationLibravatar Kristóf Marussy2021-11-19
| |
| * build: bump gradle version to 7.3Libravatar Kristóf Marussy2021-11-18
| |
| * build: library and application convetion pluginsLibravatar Kristóf Marussy2021-11-17
| |
| * build: merge java and junit conventionsLibravatar Kristóf Marussy2021-11-17
| | | | | | | | All Java code should have tests, anyways.
| * build: move scripts into script pluginsLibravatar Kristóf Marussy2021-11-17
| | | | | | | | | | Script plugins allow applying other plugins from plugins { } blocks, which simplifies the build script.
| * build: use version catalogsLibravatar Kristóf Marussy2021-11-16
|/ | | | | | | | | | | Gradle version catalogs allow centralized management of dependency artifact coordinates using a toml file. Previously, we use the gradle.properties file, which cannot manage group and name coordinates, only versions. Node and yarn versions still have to be in gradle.properties, because they do not correspond to any coordiates of a maven artifact.