Version 2026.07.08 release. First public tagged version.
This commit is contained in:
+2
-2
@@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Skald</title>
|
||||
<title>Skald Version 2026.07.08</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/common.css">
|
||||
@@ -13,7 +13,7 @@
|
||||
<body>
|
||||
|
||||
<div class="home">
|
||||
<h1 id="title" class="navbar-brand">Skald</h1>
|
||||
<h1 id="title" class="navbar-brand">Skald Version 2026.07.08</h1>
|
||||
|
||||
<form id="hallform">
|
||||
<label for="hall">Hall:</label>
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Skald</title>
|
||||
<title>Skald Version 2026.07.08</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="ScreenOrientation" content="autoRotate:disabled">
|
||||
@@ -19,7 +19,7 @@
|
||||
<div class="row full-height">
|
||||
<nav id="left-sidebar" class="connected-only invisible" aria-hidden="true">
|
||||
<div class="users-header">
|
||||
<div class="skald-header">Skald</div>
|
||||
<div class="skald-header">Skald Version 2026.07.08</div>
|
||||
</div>
|
||||
<div class="header-sep"></div>
|
||||
<div id="users"></div>
|
||||
@@ -31,7 +31,7 @@
|
||||
<button class="collapse" aria-label="Toggle left panel" aria-expanded="true" aria-controls="left-sidebar" id="sidebarCollapse">
|
||||
<i class="fas fa-align-left" aria-hidden="true"></i>
|
||||
</button>
|
||||
<h1 id="title" class="header-title" tabindex="-1">Skald</h1>
|
||||
<h1 id="title" class="header-title" tabindex="-1">Skald Version 2026.07.08</h1>
|
||||
</div>
|
||||
|
||||
<ul class="nav-menu">
|
||||
|
||||
+3
-2
@@ -2033,6 +2033,7 @@ function displayUsername() {
|
||||
}
|
||||
|
||||
let presentRequested = null;
|
||||
const skaldVersionLabel = 'Skald Version 2026.07.08';
|
||||
|
||||
/**
|
||||
* @param {string} s
|
||||
@@ -2047,12 +2048,12 @@ function capitalise(s) {
|
||||
* @param {string} title
|
||||
*/
|
||||
function setTitle(title) {
|
||||
let displayTitle = 'Skald';
|
||||
let displayTitle = skaldVersionLabel;
|
||||
if(title) {
|
||||
let status = hallStatus.locked ? 'locked' : 'unlocked';
|
||||
if(hallRecording)
|
||||
status += ', recording';
|
||||
displayTitle = `Hall: ${title} (${status})`;
|
||||
displayTitle = `Hall: ${title} (${status}) - ${skaldVersionLabel}`;
|
||||
}
|
||||
document.title = displayTitle;
|
||||
document.getElementById('title').textContent = displayTitle;
|
||||
|
||||
Reference in New Issue
Block a user