Skip to content

Commit

Permalink
Release version 1.7.1
Browse files Browse the repository at this point in the history
--> references #169
--> references #182
  • Loading branch information
Mikescher committed Jan 18, 2021
1 parent 2cad314 commit 2fc6f77
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Source/AlephNote.App/AlephNote.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<AssemblyProduct>AlephNote.App</AssemblyProduct>
<AssemblyCopyright>Copyright © 2021</AssemblyCopyright>

<AssemblyVersion>1.7.0.0</AssemblyVersion>
<AssemblyFileVersion>1.7.0.0</AssemblyFileVersion>
<AssemblyInformationalVersion>1.7.0.0-master</AssemblyInformationalVersion>
<AssemblyVersion>1.7.1.0</AssemblyVersion>
<AssemblyFileVersion>1.7.1.0</AssemblyFileVersion>
<AssemblyInformationalVersion>1.7.1.0-master</AssemblyInformationalVersion>

<OutDir>..\..\Bin\$(Configuration)\</OutDir>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Source/AlephNote.App/Resources/themes/default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Repository: https://github.com/Mikescher/AlephNote
<theme>
<meta>
<name>Default</name>
<version>1.7.0</version>
<compatibility>1.7.0</compatibility>
<version>1.7.1</version>
<compatibility>1.7.1</compatibility>
<author>Mike Schwörer</author>
<type>default</type>
</meta>
Expand Down
4 changes: 2 additions & 2 deletions Source/AlephNote.App/WPF/Windows/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ public void SetFocus(FocusTarget dst)

public void OnAfterMigrate(Version versionFrom, Version versionTo)
{
if (versionFrom != default && versionFrom < new Version(1, 7, 1))
if (versionFrom != default && versionFrom < new Version(1, 7, 0))
{
App.Logger.Debug("MainWindow", $"Trigger Migration [[StandardNote.FullResync after 004]] by migration from {versionFrom} to {versionTo}");

Expand All @@ -890,7 +890,7 @@ public void OnAfterMigrate(Version versionFrom, Version versionTo)
{
var r = System.Windows.MessageBox.Show(
this,
"Due to an update in the StandardNotes API and an accompanying update of the StandardNotes plugin (v1.7.0) it is necessary to do a full resync of your data to prevent synchronization problems.\nThis will clear all your local data and download notes and tags from the StandardNotes server.\nIf all your data is synchronized (which it should always be) this won't change any notes or tags.\n\nIf you con't do that now you can always do the same action later via the menu item [Edit] -> [Delete local data and sync new].",
"Due to an update in the StandardNotes API and an accompanying update of the StandardNotes plugin (v1.7.0) it is necessary to do a full resync of your data to prevent synchronization problems.\nThis will clear all your local data and download notes and tags from the StandardNotes server anew.\nIf all your data is synchronized (which it should always be) this won't change any notes or tags.\n\nIf you don't do that now you can always do the same action later via the menu item:\n[Edit] -> [Delete local data and sync new].",
"Important Notification about the StandardNotes plugin",
MessageBoxButton.OKCancel,
MessageBoxImage.Exclamation,
Expand Down
6 changes: 3 additions & 3 deletions Source/AlephNote.Common/AlephNote.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>

<AssemblyVersion>1.7.0.0</AssemblyVersion>
<FileVersion>1.7.0.0</FileVersion>
<Version>1.7.0.0</Version>
<AssemblyVersion>1.7.1.0</AssemblyVersion>
<FileVersion>1.7.1.0</FileVersion>
<Version>1.7.1.0</Version>

<AssemblyName>AlephNote.Common</AssemblyName>
<PackageId>AlephNote.Common</PackageId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>

<AssemblyVersion>1.7.0.0</AssemblyVersion>
<FileVersion>1.7.0.0</FileVersion>
<Version>1.7.0.0</Version>
<AssemblyVersion>1.7.1.0</AssemblyVersion>
<FileVersion>1.7.1.0</FileVersion>
<Version>1.7.1.0</Version>

<AssemblyName>AlephNote.PluginInterface</AssemblyName>
<PackageId>AlephNote.PluginInterface</PackageId>
Expand Down

0 comments on commit 2fc6f77

Please sign in to comment.