Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
6 changes: 1 addition & 5 deletions resources/view.qml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,14 @@ 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
height: Globals.height
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;
Expand Down