Skip to content

Commit

Permalink
Update ScreenShorts
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed May 4, 2021
1 parent dcea1c6 commit 49e5e56
Show file tree
Hide file tree
Showing 14 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
[![Gitee Star](https://gitee.com/rmbgame/SteamTools/badge/star.svg)](https://gitee.com/rmbgame/SteamTools)
</div>

<div align="center"><img src="./resources/screenshots.en.jpg" /></div>

English | [简体中文](./README.md)

## ✨ Functions
Expand Down
Binary file added resources/screenshot-ubuntu.en.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/screenshot-ubuntu.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/screenshot-win10.en.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/screenshot-win10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/screenshot-win7.en.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/screenshot-win7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/screenshots.en.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resources/screenshots.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/Common.CoreLib/Properties/ThisAssembly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ namespace System.Properties
{
public static class ThisAssembly
{
public const string Version = "2.0.0.8";
public const string Version = "2.0.1";

public const string InfoVersion = Version + "-beta";
public const string InfoVersion = Version /*+ "-beta"*/;

#if NETSTANDARD2_1 || NETCOREAPP2_1_OR_GREATER
static readonly Lazy<string> mVersionDisplay = new(() =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<Setter Property="OffContent" Value="{x:Null}" />
</Style>
</StackPanel.Styles>
<StackPanel Orientation="Vertical" Spacing="10">
<StackPanel Orientation="Vertical" Spacing="10" Margin="0,8,0,0">
<TextBlock Text="{ReflectionBinding Path=Res.Settings_Language,Mode=OneWay,Source={x:Static resx:R.Current}}"/>
<ComboBox HorizontalAlignment="Stretch" SelectedItem="{Binding SelectLanguage, Mode=TwoWay}" Items="{Binding Mode=OneWay,Source={x:Static resx:R.Languages}}" >
<ComboBox.ItemTemplate>
Expand Down Expand Up @@ -67,4 +67,4 @@
<Separator Classes="Separator"/>
</StackPanel>
</ScrollViewer>
</UserControl>
</UserControl>
1 change: 1 addition & 0 deletions src/ST.Client.Desktop/UI/Resx/R.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ static R()

static IReadOnlyCollection<KeyValuePair<string, string>> GetFonts()
{
// https://docs.microsoft.com/zh-cn/typography/font-list
var culture = Culture;
InstalledFontCollection ifc = new();
var list = ifc.Families.Where(x => x.IsStyleAvailable(FontStyle.Regular)).Select(x => KeyValuePair.Create(x.GetName(culture.LCID), x.GetName(1033))).ToList();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public AboutPageViewModel()

public string VersionDisplay => ThisAssembly.VersionDisplay;

public string LabelVersionDisplay => (ThisAssembly.IsBetaRelease ? "Beta " : "Current") + "Version: ";
public string LabelVersionDisplay => ThisAssembly.IsBetaRelease ? "Beta Version: " : "Current Version: ";

public string Copyright
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public async void CheckUpdate(bool force, bool showIsExistUpdateFalse = true)
/// <summary>
/// 升级包存放文件夹名称
/// </summary>
const string PackDirName = "UpgradePackage";
const string PackDirName = "UpgradePackages";

public const string FileExDownloadCache = ".download_cache";

Expand Down

0 comments on commit 49e5e56

Please sign in to comment.