|
@ -50,12 +50,12 @@ fn main() {
|
|||
println!("cargo:rustc-link-arg=/stack:{}", 8 * 1024 * 1024);
|
||||
}
|
||||
|
||||
let release_channel = option_env!("RELEASE_CHANNEL").unwrap_or("nightly");
|
||||
|
||||
let release_channel = option_env!("RELEASE_CHANNEL").unwrap_or("dev");
|
||||
let icon = match release_channel {
|
||||
"stable" => "resources/windows/app-icon.ico",
|
||||
"preview" => "resources/windows/app-icon-preview.ico",
|
||||
"nightly" => "resources/windows/app-icon-nightly.ico",
|
||||
"dev" => "resources/windows/app-icon-dev.ico",
|
||||
_ => "resources/windows/app-icon-dev.ico",
|
||||
};
|
||||
let icon = std::path::Path::new(icon);
|
||||
|
|
Before Width: | Height: | Size: 153 KiB After Width: | Height: | Size: 154 KiB |
Before Width: | Height: | Size: 156 KiB After Width: | Height: | Size: 182 KiB |
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 159 KiB |
Before Width: | Height: | Size: 577 KiB After Width: | Height: | Size: 162 KiB |
|
@ -167,7 +167,7 @@ function BuildInstaller {
|
|||
}
|
||||
"dev" {
|
||||
$appId = "{{8357632E-24A4-4F32-BA97-E575B4D1FE5D}"
|
||||
$appIconName = "app-icon-nightly"
|
||||
$appIconName = "app-icon-dev"
|
||||
$appName = "Zed Dev"
|
||||
$appDisplayName = "Zed Dev"
|
||||
$appSetupName = "ZedEditorUserSetup-x64-$env:RELEASE_VERSION-dev"
|
||||
|
|