Skip to content

Commit 2b57a92

Browse files
committed
Upgraded to 1.0.11.0
1 parent 231f9a3 commit 2b57a92

File tree

7 files changed

+77
-23
lines changed

7 files changed

+77
-23
lines changed

chocolatey/DevToys/devtoys.nuspec

Lines changed: 7 additions & 10 deletions
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.9.0</version>
5+
<version>1.0.11.0</version>
66
<packageSourceUrl>https://github.com/veler/DevToys/tree/main/chocolatey/DevToys</packageSourceUrl>
77
<owners>Rafael Lopez</owners>
88
<title>DevToys</title>
@@ -20,17 +20,14 @@
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-
• CRON Parser!
25-
• XML Validator!
26-
• Color Picker and Contrast!
2723
👏 Improvements
28-
• Added and updated many translations
29-
• New option in JSON Formatter, Hash Generator and Settings
30-
• Consistent font everywhere
31-
• Start-up performance
24+
• XML Validator can now detect inconsistent XML namespace references
25+
• UI tweaks in JWT Encoder / Decoder
26+
• Translations
3227
🐛 Bug Fixes
33-
• Inconsistencies in YAML to JSON Converter and JSON Formatter
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
3431
</releaseNotes>
3532
</metadata>
3633
<files>

src/dev/DevToys.Startup/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
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.9.0" />
18+
Version="1.0.11.0" />
1919

2020
<Properties>
2121
<DisplayName>DevToys - Preview</DisplayName>
Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
🎉 New Features
2-
• JWT Decoder can now also Encode!
3-
👏 Improvements
4-
• Regex Tester shows matching groups
5-
• Better handling of brackets in SQL Formatter
6-
• Smart Detection now prioritize favorite tools
1+
👏 Improvements
2+
• XML Validator can now detect inconsistent XML namespace references
3+
• UI tweaks in JWT Encoder / Decoder
4+
• Translations
75
🐛 Bug Fixes
8-
JSON Formatter wasn't sorting arrays
9-
JSON Formatter was failing to parse an empty array
10-
Wrong highlighting in Regex Tester
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

src/dev/impl/DevToys/LanguageManager.cs

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1979,6 +1979,21 @@ public string GetFormattedNotificationReleaseNoteTitle(string? param0)
19791979
/// </summary>
19801980
public string SearchNoResultsFound => _resources.GetString("SearchNoResultsFound");
19811981

1982+
/// <summary>
1983+
/// Gets the resource SurveyDescription.
1984+
/// </summary>
1985+
public string SurveyDescription => _resources.GetString("SurveyDescription");
1986+
1987+
/// <summary>
1988+
/// Gets the resource SurveyTitle.
1989+
/// </summary>
1990+
public string SurveyTitle => _resources.GetString("SurveyTitle");
1991+
1992+
/// <summary>
1993+
/// Gets the resource SurveyYesButton.
1994+
/// </summary>
1995+
public string SurveyYesButton => _resources.GetString("SurveyYesButton");
1996+
19821997
/// <summary>
19831998
/// Gets the resource WindowTitle.
19841999
/// </summary>
@@ -3479,14 +3494,38 @@ public class XmlValidatorStrings : ObservableObject
34793494
/// </summary>
34803495
public string XmlNamespacesInconsistentMsg => _resources.GetString("XmlNamespacesInconsistentMsg");
34813496

3497+
/// <summary>
3498+
/// Gets the resource XmlNamespacesInconsistentMsg with format.
3499+
/// </summary>
3500+
public string GetFormattedXmlNamespacesInconsistentMsg(string? param0)
3501+
{
3502+
return string.Format(XmlNamespacesInconsistentMsg, param0);
3503+
}
3504+
34823505
/// <summary>
34833506
/// Gets the resource XsdNamespacesInconsistentMsg.
34843507
/// </summary>
34853508
public string XsdNamespacesInconsistentMsg => _resources.GetString("XsdNamespacesInconsistentMsg");
3486-
3509+
3510+
/// <summary>
3511+
/// Gets the resource XsdNamespacesInconsistentMsg with format.
3512+
/// </summary>
3513+
public string GetFormattedXsdNamespacesInconsistentMsg(string? param0)
3514+
{
3515+
return string.Format(XsdNamespacesInconsistentMsg, param0);
3516+
}
3517+
34873518
/// <summary>
34883519
/// Gets the resource TargetNamespaceNotDefinedInXml.
34893520
/// </summary>
34903521
public string TargetNamespaceNotDefinedInXml => _resources.GetString("TargetNamespaceNotDefinedInXml");
3522+
3523+
/// <summary>
3524+
/// Gets the resource TargetNamespaceNotDefinedInXml with format.
3525+
/// </summary>
3526+
public string GetFormattedTargetNamespaceNotDefinedInXml(string? param0)
3527+
{
3528+
return string.Format(TargetNamespaceNotDefinedInXml, param0);
3529+
}
34913530
}
34923531
}

src/dev/impl/DevToys/Strings/en-US/MainPage.resw

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,15 @@
166166
<data name="SearchNoResultsFound" xml:space="preserve">
167167
<value>No results found</value>
168168
</data>
169+
<data name="SurveyDescription" xml:space="preserve">
170+
<value>We would love to hear about your experience with DevToys so we can improve it.</value>
171+
</data>
172+
<data name="SurveyTitle" xml:space="preserve">
173+
<value>The development of DevToys 2.0 started! 🥳</value>
174+
</data>
175+
<data name="SurveyYesButton" xml:space="preserve">
176+
<value>open the survey...</value>
177+
</data>
169178
<data name="WindowTitle" xml:space="preserve">
170179
<value>DevToys</value>
171180
</data>

src/dev/impl/DevToys/ViewModels/MainPageViewModel.cs

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
using Microsoft.UI.Xaml.Controls;
2929
using Windows.ApplicationModel;
3030
using Windows.Foundation;
31+
using Windows.System;
3132
using Windows.UI.StartScreen;
3233
using Windows.UI.ViewManagement;
3334
using Windows.UI.Xaml;
@@ -740,10 +741,20 @@ private async Task ShowReleaseNoteAsync()
740741
() =>
741742
{
742743
ThreadHelper.ThrowIfNotOnUIThread();
743-
Windows.System.Launcher.LaunchUriAsync(new Uri("https://github.com/veler/DevToys/releases")).AsTask().Forget();
744+
Launcher.LaunchUriAsync(new Uri("https://github.com/veler/DevToys/releases")).AsTask().Forget();
744745
},
745746
await AssetsHelper.GetReleaseNoteAsync());
746747

748+
_notificationService.ShowInAppNotification(
749+
Strings.SurveyTitle,
750+
Strings.SurveyYesButton,
751+
() =>
752+
{
753+
ThreadHelper.ThrowIfNotOnUIThread();
754+
Launcher.LaunchUriAsync(new Uri("https://forms.office.com/r/eh27t4Z4nB")).AsTask().Forget();
755+
},
756+
Strings.SurveyDescription);
757+
747758
_marketingService.NotifyAppJustUpdated();
748759
}
749760

tools/app-version-number.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.10.0
1+
1.0.11.0

0 commit comments

Comments
 (0)