chore: release v1.1.0

This commit is contained in:
veeso
2026-06-08 18:17:39 +00:00
parent 535ed23540
commit 282f75c3f3
6 changed files with 552 additions and 725 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>termscp</id>
<version>1.0.0</version>
<version>1.1.0</version>
<title>termSCP</title>
<authors>Christian Visintin</authors>
<owners>Christian Visintin</owners>

View File

@@ -5,10 +5,10 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$is_arm64 = $env:PROCESSOR_ARCHITECTURE -eq 'ARM64' -or $env:PROCESSOR_ARCHITEW6432 -eq 'ARM64'
if ($is_arm64) {
$url = 'https://github.com/veeso/termscp/releases/download/v1.0.0/termscp-v1.0.0-msvc.zip'
$url = 'https://github.com/veeso/termscp/releases/download/v1.1.0/termscp-v1.1.0-msvc.zip'
$checksum = 'f6ad6c62f1578562f9af4bcee93bd4cc429cb52219c3636359b008db8789587e'
} else {
$url = 'https://github.com/veeso/termscp/releases/download/v1.0.0/termscp-v1.0.0-x86_64-pc-windows-msvc.zip'
$url = 'https://github.com/veeso/termscp/releases/download/v1.1.0/termscp-v1.1.0-x86_64-pc-windows-msvc.zip'
$checksum = 'd7796081b6f67b82acfa94557aa6852d12a33daab3cca6490660b20e42752005'
}

View File

@@ -26,7 +26,7 @@
#>
[CmdletBinding()]
param(
[string]$Version = "1.0.0",
[string]$Version = "1.1.0",
[string]$InstallDir = "$env:LOCALAPPDATA\Programs\termscp",
[Alias("Yes")]
[switch]$Force

View File

@@ -9,7 +9,7 @@
# -f, -y, --force, --yes
# Skip the confirmation prompt during installation
TERMSCP_VERSION="1.0.0"
TERMSCP_VERSION="1.1.0"
GITHUB_URL="https://github.com/veeso/termscp/releases/download/v${TERMSCP_VERSION}"
DEB_URL_AMD64="${GITHUB_URL}/termscp_${TERMSCP_VERSION}-1_amd64.deb"
DEB_URL_AARCH64="${GITHUB_URL}/termscp_${TERMSCP_VERSION}-1_arm64.deb"

View File

@@ -1,3 +1,3 @@
export const DOCS_URL = "https://docs.termscp.rs";
export const GITHUB_URL = "https://github.com/veeso/termscp";
export const VERSION = "1.0.0";
export const VERSION = "1.1.0";