Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version number for Beta #145

Merged
merged 1 commit into from
Jun 25, 2024
Merged
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
6 changes: 2 additions & 4 deletions vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,12 @@ const manifest_transformer = (manifest) => {
manifest.icons["128"] = "assets/icons/128/icon-beta.png";

let currentDate = new Date();
let year = currentDate.getFullYear();
let year = String(currentDate.getFullYear()).slice(-2);
let month = String(currentDate.getMonth() + 1).padStart(2, "0");
let day = String(currentDate.getDate()).padStart(2, "0");
let hours = String(currentDate.getHours()).padStart(2, "0");
let minutes = String(currentDate.getMinutes()).padStart(2, "0");
let seconds = String(currentDate.getSeconds()).padStart(2, "0");

let formattedDate = `${year}${month}${day}.${hours}${minutes}${seconds}`;
let formattedDate = `${year}${month}${day}${hours}`;
manifest.version = `${manifest.version}.${formattedDate}`;
}

Expand Down
Loading