Skip to content

Commit 94bb821

Browse files
committed
Upgraded to v1.0.12.0
1 parent 22d943c commit 94bb821

File tree

6 files changed

+16
-18
lines changed

6 files changed

+16
-18
lines changed

chocolatey/DevToys/devtoys.nuspec

+6-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>devtoys</id>
5-
<version>1.0.11.0</version>
5+
<version>1.0.12.0</version>
66
<packageSourceUrl>https://github.com/veler/DevToys/tree/main/chocolatey/DevToys</packageSourceUrl>
77
<owners>Rafael Lopez</owners>
88
<title>DevToys</title>
@@ -20,14 +20,13 @@
2020
<summary>A Swiss Army knife for developers.</summary>
2121
<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>
2222
<releaseNotes>
23+
🎉 New Features
24+
• SSL Certificate Decoder tool!
2325
👏 Improvements
24-
• XML Validator can now detect inconsistent XML namespace references
25-
• UI tweaks in JWT Encoder / Decoder
26-
• Translations
26+
• Selected options are displayed in RegEx Tester
27+
• Clear Payload when empty JWT provided
2728
🐛 Bug Fixes
28-
• SQL Formatter issue with VALUES
29-
• URL Encoder / Decoder was encoding new lines incorrectly
30-
• DevToys won't appear as a file picker anymore
29+
• SQL Formatter issue with operators
3130
</releaseNotes>
3231
</metadata>
3332
<files>

chocolatey/DevToys/tools/chocolateyinstall.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$ErrorActionPreference = 'Stop';
22
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
3-
$url64 = 'https://github.com/veler/DevToys/releases/download/v1.0.11.0/64360VelerSoftware.DevToys_1.0.11.0_neutral_._j80j2txgjg9dj.Msixbundle'
3+
$url64 = 'https://github.com/veler/DevToys/releases/download/v1.0.12.0/64360VelerSoftware.DevToys_1.0.12.0_neutral_._j80j2txgjg9dj.Msixbundle'
44
$checksum64 = 'f119e2348dd384d94e62e4c22df7cc6e9fa8ddd7b289a1d1c44b391e7a4e5dcb'
55
$WindowsVersion = [Environment]::OSVersion.Version;
66
$InstallDir = Split-Path $MyInvocation.MyCommand.Definition;

chocolatey/DevToys/update.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function global:au_GetLatest {
99
$url = 'https://github.com' + $url
1010
$version = $url -split '/' | select -Last 1 -Skip 1
1111
$version = $version -replace '[v]',''
12-
return @{ Version = '1.0.11.0'; URL64 = $url }
12+
return @{ Version = '1.0.12.0'; URL64 = $url }
1313
}
1414

1515
function global:au_SearchReplace {

src/dev/DevToys.Startup/Package.appxmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<Identity
1616
Name="DevToysPreview"
1717
Publisher="CN=etiennebaudoux"
18-
Version="1.0.11.0" />
18+
Version="1.0.12.0" />
1919

2020
<Properties>
2121
<DisplayName>DevToys - Preview</DisplayName>
+6-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
👏 Improvements
2-
• XML Validator can now detect inconsistent XML namespace references
3-
• UI tweaks in JWT Encoder / Decoder
4-
• Translations
1+
🎉 New Features
2+
• SSL Certificate Decoder tool!
3+
👏 Improvements
4+
• Selected options are displayed in RegEx Tester
5+
• Clear Payload when empty JWT provided
56
🐛 Bug Fixes
6-
• SQL Formatter issue with VALUES
7-
• URL Encoder / Decoder was encoding new lines incorrectly
8-
• DevToys won't appear as a file picker anymore
7+
• SQL Formatter issue with operators

tools/app-version-number.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.11.0
1+
1.0.12.0

0 commit comments

Comments
 (0)