in this commit:
- enhanced css (hover border, less annoying donate highlight, checkbox width fix for mobile, more consistent color scheme)
- addition of an urgent notice (in this case it mentions all issues related to old infra being fixed)
- updated twitter picker test
- changelog for 6.0
- removed partial translations
This commit is contained in:
wukko
2023-06-07 21:41:06 +06:00
parent 8d39096977
commit 527ca29215
21 changed files with 107 additions and 904 deletions

View File

@@ -155,7 +155,7 @@ export function runAPI(express, app, gitCommit, gitBranch, __dirname) {
branch: gitBranch,
name: process.env.apiName ? process.env.apiName : "unknown",
url: process.env.apiURL,
cors: process.env.cors,
cors: process.env.cors && process.env.cors === "0" ? 0 : 1,
startTime: `${startTimestamp}`
});
break;