Skip to content

Commit

Permalink
v1.7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Guerra24 committed Sep 14, 2021
1 parent 6c5df71 commit e5dc1bb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LRReader.Shared/ViewModels/ArchivePageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public int ReaderProgress
get
{
var progress = ReaderIndex;
if (Service.Settings.TwoPages)
if (TwoPages)
if (progress != 0)
progress *= 2;
progress = progress.Clamp(0, Pages - 1);
Expand Down
2 changes: 1 addition & 1 deletion LRReader.UWP/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Identity
Name="63705Guerra24.LRReader"
Publisher="CN=690E488B-1B49-4006-8D8D-14F81EFE17C5"
Version="1.7.0.0" />
Version="1.7.1.0" />

<mp:PhoneIdentity PhoneProductId="eccfefd4-5961-4ad1-894e-3000dc4fe01a" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down
4 changes: 3 additions & 1 deletion LRReader.UWP/Views/Dialogs/MarkdownDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,9 @@

<ScrollViewer VerticalScrollBarVisibility="Auto">
<controls:MarkdownTextBlock
Margin="0,0,0,10" Background="Transparent" LinkClicked="MarkdownText_LinkClicked"
Margin="0,0,0,10" Background="Transparent"
InlineCodeForeground="{ThemeResource TextFillColorPrimaryBrush}"
LinkClicked="MarkdownText_LinkClicked"
Text="{x:Bind text}"
TextWrapping="WrapWholeWords" />
</ScrollViewer>
Expand Down
3 changes: 2 additions & 1 deletion LRReader.UWP/Views/Main/HostTabPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ private void FullScreen_Invoked(KeyboardAccelerator sender, KeyboardAcceleratorI

private async Task ShowWhatsNew()
{
if (!SettingsStorage.GetObjectLocal("WasUpdated", false))
var ver = Version.Parse(SettingsStorage.GetObjectLocal("_version", new Version(0, 0, 0, 0).ToString()));
if (!SettingsStorage.GetObjectLocal("WasUpdated", false) && ver == new Version(0, 0, 0, 0))
return;
SettingsStorage.DeleteObjectLocal("WasUpdated");
SettingsStorage.DeleteObjectLocal("_version");
Expand Down
2 changes: 1 addition & 1 deletion Util/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Identity
Name="Guerra24.LRReader"
Publisher="CN=Guerra24, O=Guerra24, C=GT"
Version="1.7.0.0" />
Version="1.7.1.0" />

<mp:PhoneIdentity PhoneProductId="97639259-a9d5-4784-8ec1-a88609560ca7" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down

0 comments on commit e5dc1bb

Please sign in to comment.