Skip to content

Commit

Permalink
updated to 1.0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
veler committed Jun 4, 2024
1 parent c37ad07 commit 3ad0ff2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 26 deletions.
2 changes: 1 addition & 1 deletion src/dev/DevToys.Startup/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Identity
Name="DevToysPreview"
Publisher="CN=etiennebaudoux"
Version="1.0.13.0" />
Version="1.0.14.0" />

<Properties>
<DisplayName>DevToys - Preview</DisplayName>
Expand Down
16 changes: 5 additions & 11 deletions src/dev/impl/DevToys/Assets/ReleaseNote.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
🎉 New Features
• Password Generator tool!
👏 Improvements
• General improvements to JWT Encoder / Decoder
• Show X.509 extensions in Certificate Encoder / Decoder
• CRON Parser shows description of the CRON expression
• Text Inspector can now sort lines
• Many tool's output can now be expanded
• Many translations improved
🐛 Bug Fixes
• Many bug fixes in JWT Encoder / Decoder
 • It is cross-platform
• It supports extensions
• There are new tools
• There are new features
• It is still free and open source
26 changes: 13 additions & 13 deletions src/dev/impl/DevToys/ViewModels/MainPageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -735,25 +735,25 @@ private async Task ShowReleaseNoteAsync()

if (!_settingsProvider.GetSetting(PredefinedSettings.FirstTimeStart) && currentVersion != lastVersion)
{
_notificationService.ShowInAppNotification(
Strings.GetFormattedNotificationReleaseNoteTitle(currentVersion),
Strings.NotificationReleaseNoteActionableActionText,
() =>
{
ThreadHelper.ThrowIfNotOnUIThread();
Launcher.LaunchUriAsync(new Uri("https://github.com/veler/DevToys/releases")).AsTask().Forget();
},
await AssetsHelper.GetReleaseNoteAsync());
//_notificationService.ShowInAppNotification(
// Strings.GetFormattedNotificationReleaseNoteTitle(currentVersion),
// Strings.NotificationReleaseNoteActionableActionText,
// () =>
// {
// ThreadHelper.ThrowIfNotOnUIThread();
// Launcher.LaunchUriAsync(new Uri("https://github.com/veler/DevToys/releases")).AsTask().Forget();
// },
// await AssetsHelper.GetReleaseNoteAsync());

_notificationService.ShowInAppNotification(
Strings.SurveyTitle,
Strings.SurveyYesButton,
"DevToys 2.0 Preview is available",
"Download DevToys Preview now...",
() =>
{
ThreadHelper.ThrowIfNotOnUIThread();
Launcher.LaunchUriAsync(new Uri("https://forms.office.com/r/eh27t4Z4nB")).AsTask().Forget();
Launcher.LaunchUriAsync(new Uri("https://devtoys.app/download")).AsTask().Forget();
},
Strings.SurveyDescription);
await AssetsHelper.GetReleaseNoteAsync());

_marketingService.NotifyAppJustUpdated();
}
Expand Down
2 changes: 1 addition & 1 deletion tools/app-version-number.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.13.0
1.0.14.0

0 comments on commit 3ad0ff2

Please sign in to comment.