Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions omnyserver_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.2.3

- Rebuilt against **OmnyServer 0.15.1** — the login footer now reads
`Dashboard v0.2.3 · OmnyServer v0.15.1`. The dependency floor moves to
`^0.15.0` (the deploy path-overrides it to the server in this repo, so the
dashboard ships beside the API it was built with).

## 0.2.2

- **The login screen now shows its versions** — the dashboard build and the
Expand Down
2 changes: 1 addition & 1 deletion omnyserver_web/lib/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:omnyserver/omnyserver_client_web.dart' show omnyServerVersion;
///
/// The Pages deploy builds against the server in this repo, so this and
/// [omnyServerVersion] always move together.
const String omnyServerWebVersion = '0.2.2';
const String omnyServerWebVersion = '0.2.3';

/// The one version line shown in the UI: this dashboard build, and the
/// OmnyServer version it was built against.
Expand Down
10 changes: 5 additions & 5 deletions omnyserver_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ description: >-
Browser dashboard for an OmnyServer Hub — see the fleet, watch live node
status, run formulas and presets, and open a shell on any node. Installable
PWA, no custom backend.
version: 0.2.2
version: 0.2.3
repository: https://github.com/OmnyGrid/omnyserver
publish_to: none

environment:
sdk: ^3.12.2

dependencies:
# The Hub's REST client and the entities it decodes, browser-safe. 0.14.0 is
# the version that exposes `omnyserver_client_web.dart` and the transport seam
# this app is built on. CI and the Pages deploy override this with a path
# The Hub's REST client and the entities it decodes, browser-safe. 0.15.0 is
# the baseline the dashboard targets (the version footer reads its
# `omnyServerVersion`). CI and the Pages deploy override this with a path
# dependency on `..`, so the dashboard always ships against the API it is
# released beside.
omnyserver: ^0.14.0
omnyserver: ^0.15.0
# The shared web foundation: state primitives, storage, router, UI kit — and
# the terminal, so a node's shell opens here instead of being rebuilt.
omnyshell_web: ^1.15.0
Expand Down
Loading