Skip to content

Commit dbf0670

Browse files
committed
update version
updated version to 1.8.2
1 parent 52fce3d commit dbf0670

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.0-blue.svg)](https://github.com/BryantWelch/Spreadsheet-Wrangler/releases/tag/v1.8.0)
3+
[![Version](https://img.shields.io/badge/version-1.8.2-blue.svg)](https://github.com/BryantWelch/Spreadsheet-Wrangler/releases/tag/v1.8.2)
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
@@ -1937,7 +1937,7 @@ $aboutMenuItem.Add_Click({
19371937

19381938
# Main about text
19391939
$aboutLabel = New-Object System.Windows.Forms.Label
1940-
$aboutLabel.Text = "Spreadsheet Wrangler v1.8.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"
1940+
$aboutLabel.Text = "Spreadsheet Wrangler v1.8.2`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"
19411941
$aboutLabel.AutoSize = $false
19421942
$aboutLabel.Dock = "Fill"
19431943
$aboutLabel.TextAlign = "MiddleCenter"
@@ -2706,7 +2706,7 @@ function Check-ForUpdates {
27062706
Write-Log "Checking for updates..." "Cyan"
27072707

27082708
# Current version (from the app)
2709-
$currentVersion = "1.8.0" # This should match the version in the about dialog
2709+
$currentVersion = "1.8.2" # This should match the version in the about dialog
27102710

27112711
# Get the latest release info from GitHub API
27122712
$apiUrl = "https://api.github.com/repos/BryantWelch/Spreadsheet-Wrangler/releases/latest"
@@ -2717,7 +2717,7 @@ function Check-ForUpdates {
27172717
"User-Agent" = "PowerShell Script"
27182718
}
27192719

2720-
# Extract version number from tag (assuming format like "v1.8.0")
2720+
# Extract version number from tag (assuming format like "v1.8.2")
27212721
$latestVersion = $response.tag_name -replace 'v', ''
27222722

27232723
Write-Log "Current version: $currentVersion" "White"
@@ -3100,7 +3100,7 @@ Load-AppSettings
31003100
Update-RecentFilesMenu
31013101

31023102
# Display welcome and helpful information
3103-
Write-Log "=== Spreadsheet Wrangler v1.8.0 ===" "Cyan"
3103+
Write-Log "=== Spreadsheet Wrangler v1.8.2 ===" "Cyan"
31043104
Write-Log "Application initialized and ready to use." "Green"
31053105

31063106
# Getting started section

0 commit comments

Comments
 (0)