Skip to content

Commit

Permalink
Fix version range
Browse files Browse the repository at this point in the history
  • Loading branch information
Guerra24 committed Dec 19, 2023
1 parent 082076b commit 065f141
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LRReader.Shared/Services/Updates.cs
Expand Up @@ -14,7 +14,7 @@ public abstract class UpdatesService
protected readonly SettingsService Settings;

public Version MIN_VERSION = new Version(0, 8, 4);
public Version MAX_VERSION = new Version(0, 9, 0);
public Version MAX_VERSION = new Version(0, 9, 10);

protected readonly RestClient client;

Expand Down
2 changes: 1 addition & 1 deletion LRReader.UWP/Views/Tabs/ArchiveTab.xaml
Expand Up @@ -115,7 +115,7 @@
</Grid.ColumnDefinitions>
<TextBlock x:Uid="/Tabs/Archive/Settings/Autoplay" VerticalAlignment="Center" />
<ToggleButton
x:Name="AutoplayButton" Grid.Column="1" Unchecked="AutoplayButton_Unchecked"
x:Name="AutoplayButton" Grid.Column="1" Checked="AutoplayButton_Checked" Unchecked="AutoplayButton_Unchecked"
Command="{x:Bind TabContent.PlayStopCommand}" IsChecked="{x:Bind TabContent.Data.UseAutoplay, Mode=TwoWay}"
CommandParameter="{x:Bind AutoplayButton.IsChecked, Mode=OneWay}" />
</Grid>
Expand Down

0 comments on commit 065f141

Please sign in to comment.