diff --git a/Makefile.toml b/Makefile.toml index 4be9d4e82..b3db51e55 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -739,7 +739,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;