Skip to content

Commit d52582c

Browse files
committed
DEV: Update App Version to 'v' and Adjust DAO Proposal Title Formatting
- Updated app version from 'u' to 'v'. - Modified DAO proposal title formatting to remove the '#' prefix for proposal numbers. - Updated version.html to reflect the new version number 2026.08.11.17.39.
1 parent cfaf6e4 commit d52582c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

dev/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Check if there is a newer version and load that using a new random url to avoid cache hits
22
// Versions should be YYYY.MM.DD.HH.mm like 2025.01.25.10.05
3-
const version = 'u'
3+
const version = 'v'
44
const BOOT_SPLASH_HANDOFF_MS = 1000;
55
let myVersion = '0';
66
async function checkVersion() {
@@ -2525,7 +2525,7 @@ function formatDaoReadyAtLabel(ts, now) {
25252525

25262526
function formatDaoProposalTitle(proposal) {
25272527
const title = String(proposal.title || '').trim() || 'Proposal';
2528-
return proposal.number ? `#${proposal.number}: ${title}` : title;
2528+
return proposal.number ? `${proposal.number}: ${title}` : title;
25292529
}
25302530

25312531
class DaoModal {

dev/version.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2026.08.11.16.58
1+
2026.08.11.17.39

0 commit comments

Comments
 (0)