Skip to content

Commit 2cb62bf

Browse files
authored
Merging for v2.2.2
2 parents bab53e2 + df35093 commit 2cb62bf

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.2.2] - 2025-11-12
11+
12+
### Changed
13+
14+
- Forced light theme (#241).
15+
1016
## [2.2.1] - 2025-10-30
1117

1218
### Added
@@ -306,4 +312,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
306312
[2.1.1]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/releases/tag/v2.1.1
307313
[2.2.0]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/releases/tag/v2.2.0
308314
[2.2.1]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/releases/tag/v2.2.1
309-
[Unreleased]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/compare/v2.2.1...HEAD
315+
[2.2.2]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/releases/tag/v2.2.2
316+
[Unreleased]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/compare/v2.2.2...HEAD

main/src/App.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ function InnerApp() {
7272
loginPage={SolidLoginForm}
7373
requireAuth={false}
7474
dashboard={Dashboard}
75+
// see https://marmelab.com/react-admin/AppTheme.html: always use light theme; never use dark theme
76+
defaultTheme="light"
7577
>
7678
{config.queries.map((query) => {
7779
return (

main/src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Maintain the version string on the development branch:
22
// - during development: set to (unreleased);
33
// - right before merging to the main branch for making a new release: set to the new release tag (see https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/tags).
4-
const version = "v2.2.1";
4+
const version = "v2.2.2";
55
export default version;

0 commit comments

Comments
 (0)