From 1dd2e165c81278de99921748c1e847ac6e398687 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Sat, 22 Jul 2023 13:43:19 +0200 Subject: [PATCH] Webapp: show Manager name in the window title Show the configured Manager name in the webapp browser window title. This helps me to distinguish the production farm from my development install. --- CHANGELOG.md | 1 + web/app/src/App.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a413d1f..b4417dc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ bugs in actually-released versions. - Job settings: make it possible for a setting to be "linked" to its automatic value. For job settings that have this new feature enabled, they will not be editable by default, and the setting will just use its `eval` expression to determine the value. This can be toggled by the user in Blender's submission interface, to still allow manual edits of the value when needed. - Database integrity tests. These are always run at startup of Flamenco Manager, and by default run periodically every hour. This can be configured by adding/changing the `database_check_period: 1h` setting in `flamenco-manager.yaml`. Setting it to `0` will disable the periodic check. When a database consistency error is found, Flamenco Manager will immediately shut down. - The webapp automatically reloads after a disconnect, when it reconnects to Flamenco Manager and sees the Manager version changed [#104235](https://projects.blender.org/studio/flamenco/pulls/104235). +- Show the configured Flamenco Manager name in the webapp's browser window title. ## 3.2 - released 2023-02-21 diff --git a/web/app/src/App.vue b/web/app/src/App.vue index 263a8335..51da6358 100644 --- a/web/app/src/App.vue +++ b/web/app/src/App.vue @@ -63,6 +63,7 @@ export default { metaAPI.getVersion().then((version) => { this.flamencoName = version.name; this.flamencoVersion = version.version; + document.title = version.name; }) },