diff --git a/chocolatey/DevToys/devtoys.nuspec b/chocolatey/DevToys/devtoys.nuspec index ff9af842f6..0ba9ec379c 100644 --- a/chocolatey/DevToys/devtoys.nuspec +++ b/chocolatey/DevToys/devtoys.nuspec @@ -2,7 +2,7 @@ devtoys - 1.0.11.0 + 1.0.12.0 https://github.com/veler/DevToys/tree/main/chocolatey/DevToys Rafael Lopez DevToys @@ -20,14 +20,13 @@ A Swiss Army knife for developers. DevToys helps in daily tasks like formatting JSON, comparing text, testing RegExp. No need to use many untruthful websites to do simple tasks with your data. With Smart Detection, DevToys is able to detect the best tool that can treat the data you copied in the clipboard of your Windows. Compact overlay lets you keep the app in small and on top of other windows. Multiple instances of the app can be used at once. +πŸŽ‰ New Features + β€’ SSL Certificate Decoder tool! πŸ‘ Improvements - β€’ XML Validator can now detect inconsistent XML namespace references - β€’ UI tweaks in JWT Encoder / Decoder - β€’ Translations + β€’ Selected options are displayed in RegEx Tester + β€’ Clear Payload when empty JWT provided πŸ› Bug Fixes - β€’ SQL Formatter issue with VALUES - β€’ URL Encoder / Decoder was encoding new lines incorrectly - β€’ DevToys won't appear as a file picker anymore + β€’ SQL Formatter issue with operators diff --git a/chocolatey/DevToys/tools/chocolateyinstall.ps1 b/chocolatey/DevToys/tools/chocolateyinstall.ps1 index 68c9558986..255a91429e 100644 --- a/chocolatey/DevToys/tools/chocolateyinstall.ps1 +++ b/chocolatey/DevToys/tools/chocolateyinstall.ps1 @@ -1,6 +1,6 @@ ο»Ώ$ErrorActionPreference = 'Stop'; $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" -$url64 = 'https://github.com/veler/DevToys/releases/download/v1.0.11.0/64360VelerSoftware.DevToys_1.0.11.0_neutral_._j80j2txgjg9dj.Msixbundle' +$url64 = 'https://github.com/veler/DevToys/releases/download/v1.0.12.0/64360VelerSoftware.DevToys_1.0.12.0_neutral_._j80j2txgjg9dj.Msixbundle' $checksum64 = 'f119e2348dd384d94e62e4c22df7cc6e9fa8ddd7b289a1d1c44b391e7a4e5dcb' $WindowsVersion = [Environment]::OSVersion.Version; $InstallDir = Split-Path $MyInvocation.MyCommand.Definition; diff --git a/chocolatey/DevToys/update.ps1 b/chocolatey/DevToys/update.ps1 index dac26ab58b..90de1c65e7 100644 --- a/chocolatey/DevToys/update.ps1 +++ b/chocolatey/DevToys/update.ps1 @@ -9,7 +9,7 @@ function global:au_GetLatest { $url = 'https://github.com' + $url $version = $url -split '/' | select -Last 1 -Skip 1 $version = $version -replace '[v]','' - return @{ Version = '1.0.11.0'; URL64 = $url } + return @{ Version = '1.0.12.0'; URL64 = $url } } function global:au_SearchReplace { diff --git a/src/dev/DevToys.Startup/Package.appxmanifest b/src/dev/DevToys.Startup/Package.appxmanifest index 878e2ce090..0141f3a2b1 100644 --- a/src/dev/DevToys.Startup/Package.appxmanifest +++ b/src/dev/DevToys.Startup/Package.appxmanifest @@ -15,7 +15,7 @@ + Version="1.0.12.0" /> DevToys - Preview diff --git a/src/dev/impl/DevToys/Assets/ReleaseNote.txt b/src/dev/impl/DevToys/Assets/ReleaseNote.txt index a245aee625..31540206e8 100644 --- a/src/dev/impl/DevToys/Assets/ReleaseNote.txt +++ b/src/dev/impl/DevToys/Assets/ReleaseNote.txt @@ -1,8 +1,7 @@ -ο»ΏπŸ‘ Improvements - β€’ XML Validator can now detect inconsistent XML namespace references - β€’ UI tweaks in JWT Encoder / Decoder - β€’ Translations +ο»ΏπŸŽ‰ New Features + β€’ SSL Certificate Decoder tool! +πŸ‘ Improvements + β€’ Selected options are displayed in RegEx Tester + β€’ Clear Payload when empty JWT provided πŸ› Bug Fixes - β€’ SQL Formatter issue with VALUES - β€’ URL Encoder / Decoder was encoding new lines incorrectly - β€’ DevToys won't appear as a file picker anymore \ No newline at end of file + β€’ SQL Formatter issue with operators \ No newline at end of file diff --git a/tools/app-version-number.txt b/tools/app-version-number.txt index ae3b50ef51..b2438cf5ea 100644 --- a/tools/app-version-number.txt +++ b/tools/app-version-number.txt @@ -1 +1 @@ -1.0.11.0 \ No newline at end of file +1.0.12.0 \ No newline at end of file