Skip to content

Commit

Permalink
Upgraded to 1.0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
veler committed Apr 7, 2023
1 parent 231f9a3 commit 2b57a92
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 23 deletions.
17 changes: 7 additions & 10 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.9.0</version>
<version>1.0.11.0</version>
<packageSourceUrl>https://github.com/veler/DevToys/tree/main/chocolatey/DevToys</packageSourceUrl>
<owners>Rafael Lopez</owners>
<title>DevToys</title>
Expand All @@ -20,17 +20,14 @@
<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
• CRON Parser!
• XML Validator!
• Color Picker and Contrast!
👏 Improvements
• Added and updated many translations
• New option in JSON Formatter, Hash Generator and Settings
• Consistent font everywhere
• Start-up performance
• XML Validator can now detect inconsistent XML namespace references
• UI tweaks in JWT Encoder / Decoder
• Translations
🐛 Bug Fixes
• Inconsistencies in YAML to JSON Converter and JSON Formatter
• SQL Formatter issue with VALUES
• URL Encoder / Decoder was encoding new lines incorrectly
• DevToys won't appear as a file picker anymore
</releaseNotes>
</metadata>
<files>
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.9.0" />
Version="1.0.11.0" />

<Properties>
<DisplayName>DevToys - Preview</DisplayName>
Expand Down
16 changes: 7 additions & 9 deletions src/dev/impl/DevToys/Assets/ReleaseNote.txt
@@ -1,10 +1,8 @@
🎉 New Features
• JWT Decoder can now also Encode!
👏 Improvements
• Regex Tester shows matching groups
• Better handling of brackets in SQL Formatter
• Smart Detection now prioritize favorite tools
👏 Improvements
• XML Validator can now detect inconsistent XML namespace references
• UI tweaks in JWT Encoder / Decoder
• Translations
🐛 Bug Fixes
JSON Formatter wasn't sorting arrays
JSON Formatter was failing to parse an empty array
Wrong highlighting in Regex Tester
SQL Formatter issue with VALUES
URL Encoder / Decoder was encoding new lines incorrectly
DevToys won't appear as a file picker anymore
41 changes: 40 additions & 1 deletion src/dev/impl/DevToys/LanguageManager.cs
Expand Up @@ -1979,6 +1979,21 @@ public string GetFormattedNotificationReleaseNoteTitle(string? param0)
/// </summary>
public string SearchNoResultsFound => _resources.GetString("SearchNoResultsFound");

/// <summary>
/// Gets the resource SurveyDescription.
/// </summary>
public string SurveyDescription => _resources.GetString("SurveyDescription");

/// <summary>
/// Gets the resource SurveyTitle.
/// </summary>
public string SurveyTitle => _resources.GetString("SurveyTitle");

/// <summary>
/// Gets the resource SurveyYesButton.
/// </summary>
public string SurveyYesButton => _resources.GetString("SurveyYesButton");

/// <summary>
/// Gets the resource WindowTitle.
/// </summary>
Expand Down Expand Up @@ -3479,14 +3494,38 @@ public class XmlValidatorStrings : ObservableObject
/// </summary>
public string XmlNamespacesInconsistentMsg => _resources.GetString("XmlNamespacesInconsistentMsg");

/// <summary>
/// Gets the resource XmlNamespacesInconsistentMsg with format.
/// </summary>
public string GetFormattedXmlNamespacesInconsistentMsg(string? param0)
{
return string.Format(XmlNamespacesInconsistentMsg, param0);
}

/// <summary>
/// Gets the resource XsdNamespacesInconsistentMsg.
/// </summary>
public string XsdNamespacesInconsistentMsg => _resources.GetString("XsdNamespacesInconsistentMsg");


/// <summary>
/// Gets the resource XsdNamespacesInconsistentMsg with format.
/// </summary>
public string GetFormattedXsdNamespacesInconsistentMsg(string? param0)
{
return string.Format(XsdNamespacesInconsistentMsg, param0);
}

/// <summary>
/// Gets the resource TargetNamespaceNotDefinedInXml.
/// </summary>
public string TargetNamespaceNotDefinedInXml => _resources.GetString("TargetNamespaceNotDefinedInXml");

/// <summary>
/// Gets the resource TargetNamespaceNotDefinedInXml with format.
/// </summary>
public string GetFormattedTargetNamespaceNotDefinedInXml(string? param0)
{
return string.Format(TargetNamespaceNotDefinedInXml, param0);
}
}
}
9 changes: 9 additions & 0 deletions src/dev/impl/DevToys/Strings/en-US/MainPage.resw
Expand Up @@ -166,6 +166,15 @@
<data name="SearchNoResultsFound" xml:space="preserve">
<value>No results found</value>
</data>
<data name="SurveyDescription" xml:space="preserve">
<value>We would love to hear about your experience with DevToys so we can improve it.</value>
</data>
<data name="SurveyTitle" xml:space="preserve">
<value>The development of DevToys 2.0 started! 🥳</value>
</data>
<data name="SurveyYesButton" xml:space="preserve">
<value>open the survey...</value>
</data>
<data name="WindowTitle" xml:space="preserve">
<value>DevToys</value>
</data>
Expand Down
13 changes: 12 additions & 1 deletion src/dev/impl/DevToys/ViewModels/MainPageViewModel.cs
Expand Up @@ -28,6 +28,7 @@
using Microsoft.UI.Xaml.Controls;
using Windows.ApplicationModel;
using Windows.Foundation;
using Windows.System;
using Windows.UI.StartScreen;
using Windows.UI.ViewManagement;
using Windows.UI.Xaml;
Expand Down Expand Up @@ -740,10 +741,20 @@ private async Task ShowReleaseNoteAsync()
() =>
{
ThreadHelper.ThrowIfNotOnUIThread();
Windows.System.Launcher.LaunchUriAsync(new Uri("https://github.com/veler/DevToys/releases")).AsTask().Forget();
Launcher.LaunchUriAsync(new Uri("https://github.com/veler/DevToys/releases")).AsTask().Forget();
},
await AssetsHelper.GetReleaseNoteAsync());

_notificationService.ShowInAppNotification(
Strings.SurveyTitle,
Strings.SurveyYesButton,
() =>
{
ThreadHelper.ThrowIfNotOnUIThread();
Launcher.LaunchUriAsync(new Uri("https://forms.office.com/r/eh27t4Z4nB")).AsTask().Forget();
},
Strings.SurveyDescription);

_marketingService.NotifyAppJustUpdated();
}

Expand Down
2 changes: 1 addition & 1 deletion tools/app-version-number.txt
@@ -1 +1 @@
1.0.10.0
1.0.11.0

0 comments on commit 2b57a92

Please sign in to comment.