Skip to content

Commit

Permalink
Update and first release
Browse files Browse the repository at this point in the history
  • Loading branch information
TremblingMoeNew committed May 1, 2023
1 parent dc2345d commit ffae54a
Show file tree
Hide file tree
Showing 88 changed files with 5 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ProjectGuid>{4C70370C-2661-4088-9821-5FA391564627}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>DodocoTales.SR</RootNamespace>
<AssemblyName>SRWrapObserve</AssemblyName>
<AssemblyName>SRWarpObserve</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public class DDCLMetadataVersionLibrary
public readonly string libPath = @"Library/Version.json";
public readonly string libUpdateInfoPath = @"Library/Version.Update.json";
DDCLMetadataVersion model;
public string ClientVersion { get { return model?.ClientVersion; } set { model.ClientVersion = value; SaveLibrary(); } }
public string BannerLibraryVersion { get { return model?.BannerLibraryVersion; } set { model.BannerLibraryVersion = value; SaveLibrary(); } }
public string ClientVersion { get { return model?.ClientVersion; } set { if (model == null) model = new DDCLMetadataVersion(); model.ClientVersion = value; SaveLibrary(); } }
public string BannerLibraryVersion { get { return model?.BannerLibraryVersion; } set { if (model == null) model = new DDCLMetadataVersion(); model.BannerLibraryVersion = value; SaveLibrary(); } }

public bool FirstRunAfterUpdate { get; set; }

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion StarRailWrapObserve.sln → StarRailWarpObserve.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32616.157
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DodocoTales.StarRail", "DodocoTales-HSR\DodocoTales.StarRail.csproj", "{4C70370C-2661-4088-9821-5FA391564627}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DodocoTales.StarRail", "DodocoTales.StarRail\DodocoTales.StarRail.csproj", "{4C70370C-2661-4088-9821-5FA391564627}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Updater", "Updater\Updater.csproj", "{2B10FF4B-41B8-41C4-A5D1-FDEA5F52A16D}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion Updater/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void Main(string[] args)
return;
}
Thread.Sleep(5000);
var prols = Process.GetProcessesByName("SRWrapObserve");
var prols = Process.GetProcessesByName("SRWarpObserve");
if (prols.Any())
{
foreach (var pro in prols)
Expand Down

0 comments on commit ffae54a

Please sign in to comment.