From afdf9d93277915fab596adfa05d8a01585c781f9 Mon Sep 17 00:00:00 2001 From: John Michael Burke Date: Wed, 25 May 2022 11:31:05 -0700 Subject: [PATCH] Remove Mac [Beta] tag. --- Makefile.toml | 2 +- resources/view.qml | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index 7bd0a2fe5..cf7e0d1b5 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -670,7 +670,7 @@ background_path = get_env BACKGROUND_PATH version_path = get_env VERSION_PATH version = readfile ${version_path} version = trim_end ${version} -dmg_path = set ./${final_dir}/${app_original_name}_${version}-beta_macos.dmg +dmg_path = set ./${final_dir}/${app_original_name}_${version}_macos.dmg old_dmgs = glob_array "./${final_dir}/*.dmg" for path in ${old_dmgs} diff --git a/resources/view.qml b/resources/view.qml index 943dc3143..91f945e88 100644 --- a/resources/view.qml +++ b/resources/view.qml @@ -9,10 +9,6 @@ import SwiftConsole 1.0 ApplicationWindow { id: main - function titleBetaTag() { - return Qt.platform.os === "osx" ? " [Beta]" : ""; // Add beta tag for mac. - } - Material.accent: Constants.swiftOrange width: Globals.width minimumWidth: Globals.minimumWidth @@ -20,7 +16,7 @@ ApplicationWindow { minimumHeight: Globals.minimumHeight font.pixelSize: Constants.mediumPixelSize visible: true - title: (loggingBar.sbpRecording ? "[L] " : " ") + statusBar.title + titleBetaTag() + title: (loggingBar.sbpRecording ? "[L] " : " ") + statusBar.title color: Constants.swiftWhite Component.onCompleted: { this.x = Screen.width / 2 - width / 2;