Browse Source

Increase version to 3.2.0-Preview1

Adjust build script to say Self-Contained in .zip name
pull/249/head v3.2.0-preview1
Joseph Finney 3 years ago
parent
commit
0ea4c04f7a
  1. 2
      Text-Grab/Views/SettingsWindow.xaml
  2. 2
      build-x64.ps1

2
Text-Grab/Views/SettingsWindow.xaml

@ -54,7 +54,7 @@
VerticalAlignment="Center"
Foreground="White"
Style="{StaticResource TextBodyNormal}"
Text="Version 3.1.1" />
Text="Version 3.2.0-preview1" />
<controls:CollapsibleButton
x:Name="AboutBTN"

2
build-x64.ps1

@ -4,7 +4,7 @@ $Version = Get-Date -Format "yyyy-MM-dd" # 2020-11-1
$VersionDot = $Version -replace '-','.'
$Project = "Text-Grab"
$Archive = "$BuildPath\$Project-$Version.zip"
$ArchiveSC = "$BuildPath\$Project-SC-$Version.zip"
$ArchiveSC = "$BuildPath\$Project-Self-Contained-$Version.zip"
# Clean up
if(Test-Path -Path $BuildPath)

Loading…
Cancel
Save