Skip to content

Commit

Permalink
Add beta prefix to version string
Browse files Browse the repository at this point in the history
  • Loading branch information
jespertheend committed Feb 5, 2024
1 parent 475ec97 commit dbe8317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion studio/src/projectSelector/ProjectSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class ProjectSelector {

this.#versionEl = document.createElement("div");
this.#versionEl.classList.add("version");
this.#versionEl.textContent = BUILD_VERSION_STRING;
this.#versionEl.textContent = `v${BUILD_VERSION_STRING} (beta)`;
headerEl.append(this.#versionEl);

this.actionsListEl = this.createList("actions", "Start");
Expand Down
2 changes: 1 addition & 1 deletion studio/src/studioDefines.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const STUDIO_ENV = "dev";
*/
export const ENGINE_SOURCE_PATH = "/src/mod.js";

export const BUILD_VERSION_STRING = "v0.1.0";
export const BUILD_VERSION_STRING = "0.1.0";
export const BUILD_GIT_BRANCH = "dev";
/** @type {string} */
export const BUILD_GIT_COMMIT = "-";
Expand Down

0 comments on commit dbe8317

Please sign in to comment.