Skip to content

Commit 4d8f832

Browse files
committed
version update to 1.9.0
version update to 1.9.0
1 parent e109073 commit 4d8f832

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Spreadsheet Wrangler
22

3-
[![Version](https://img.shields.io/badge/version-1.8.5-blue.svg)](https://github.com/BryantWelch/Spreadsheet-Wrangler/releases/tag/v1.8.5)
3+
[![Version](https://img.shields.io/badge/version-1.9.0-blue.svg)](https://github.com/BryantWelch/Spreadsheet-Wrangler/releases/tag/v1.9.0)
44
[![PowerShell](https://img.shields.io/badge/PowerShell-5.1+-5391FE.svg)](https://github.com/PowerShell/PowerShell)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
66
[![Platform](https://img.shields.io/badge/platform-Windows-lightgrey.svg)](https://www.microsoft.com/en-us/windows)

SpreadsheetWrangler.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2155,7 +2155,7 @@ $aboutMenuItem.Add_Click({
21552155

21562156
# Main about text
21572157
$aboutLabel = New-Object System.Windows.Forms.Label
2158-
$aboutLabel.Text = "Spreadsheet Wrangler v1.8.5`n`nA powerful tool for backing up folders and combining spreadsheets.`n`nCreated by Bryant Welch`nCreated: $(Get-Date -Format 'yyyy-MM-dd')`n`n(c) 2025 Bryant Welch. All Rights Reserved"
2158+
$aboutLabel.Text = "Spreadsheet Wrangler v1.9.0`n`nA powerful tool for backing up folders and combining spreadsheets.`n`nCreated by Bryant Welch`nCreated: $(Get-Date -Format 'yyyy-MM-dd')`n`n(c) 2025 Bryant Welch. All Rights Reserved"
21592159
$aboutLabel.AutoSize = $false
21602160
$aboutLabel.Dock = "Fill"
21612161
$aboutLabel.TextAlign = "MiddleCenter"
@@ -3061,7 +3061,7 @@ function Check-ForUpdates {
30613061
Write-Log "Checking for updates..." "Cyan"
30623062

30633063
# Current version (from the app)
3064-
$currentVersion = "1.8.5" # This should match the version in the about dialog
3064+
$currentVersion = "1.9.0" # This should match the version in the about dialog
30653065

30663066
# Get the latest release info from GitHub API
30673067
$apiUrl = "https://api.github.com/repos/BryantWelch/Spreadsheet-Wrangler/releases/latest"
@@ -3072,7 +3072,7 @@ function Check-ForUpdates {
30723072
"User-Agent" = "PowerShell Script"
30733073
}
30743074

3075-
# Extract version number from tag (assuming format like "v1.8.5")
3075+
# Extract version number from tag (assuming format like "v1.9.0")
30763076
$latestVersion = $response.tag_name -replace 'v', ''
30773077

30783078
Write-Log "Current version: $currentVersion" "White"
@@ -3473,7 +3473,7 @@ Load-AppSettings
34733473
Update-RecentFilesMenu
34743474

34753475
# Display welcome and helpful information
3476-
Write-Log "=== Spreadsheet Wrangler v1.8.5 ===" "Cyan"
3476+
Write-Log "=== Spreadsheet Wrangler v1.9.0 ===" "Cyan"
34773477
Write-Log "Application initialized and ready to use." "Green"
34783478

34793479
# Getting started section

0 commit comments

Comments
 (0)