Skip to content

Commit

Permalink
Upgraded to v1.0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
veler committed May 27, 2023
1 parent 22d943c commit 94bb821
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 18 deletions.
13 changes: 6 additions & 7 deletions chocolatey/DevToys/devtoys.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>devtoys</id>
<version>1.0.11.0</version>
<version>1.0.12.0</version>
<packageSourceUrl>https://github.com/veler/DevToys/tree/main/chocolatey/DevToys</packageSourceUrl>
<owners>Rafael Lopez</owners>
<title>DevToys</title>
Expand All @@ -20,14 +20,13 @@
<summary>A Swiss Army knife for developers.</summary>
<description>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.</description>
<releaseNotes>
🎉 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
</releaseNotes>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion 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;
Expand Down
2 changes: 1 addition & 1 deletion chocolatey/DevToys/update.ps1
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/dev/DevToys.Startup/Package.appxmanifest
Expand Up @@ -15,7 +15,7 @@
<Identity
Name="DevToysPreview"
Publisher="CN=etiennebaudoux"
Version="1.0.11.0" />
Version="1.0.12.0" />

<Properties>
<DisplayName>DevToys - Preview</DisplayName>
Expand Down
13 changes: 6 additions & 7 deletions 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
• SQL Formatter issue with operators
2 changes: 1 addition & 1 deletion tools/app-version-number.txt
@@ -1 +1 @@
1.0.11.0
1.0.12.0

0 comments on commit 94bb821

Please sign in to comment.