-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes and improvements have been done, also done with Settings page f…
…or now.
- Loading branch information
Showing
19 changed files
with
352 additions
and
91 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.3.0.0|Complete overhaul as wpf | ||
1.3.1.0|Fixes and improvements have been done, also done with Settings page for now. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using Steam_Library_Manager.Framework; | ||
using System.ComponentModel; | ||
|
||
namespace Steam_Library_Manager.Definitions.Enums | ||
{ | ||
[TypeConverter(typeof(EnumDescriptionTypeConverter))] | ||
public enum GameSortingMethod | ||
{ | ||
[Description("Sort by appName")] | ||
appName = 0, | ||
[Description("Sort by appID")] | ||
appID = 1, | ||
[Description("Sort by app size on disk")] | ||
sizeOnDisk = 2, | ||
[Description("Sort by backup type")] | ||
backupType = 3 | ||
} | ||
|
||
public enum gameSizeCalculationMethod | ||
{ | ||
ACF = 0, | ||
Enumeration = 1 | ||
} | ||
|
||
public enum archiveSizeCalculationMethod | ||
{ | ||
compressed = 0, | ||
unUncompressed = 1 | ||
} | ||
|
||
public enum menuVisibility | ||
{ | ||
NotVisible, | ||
Visible | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.