Skip to content

Commit f001e86

Browse files
committed
checking for alternating paths on DS_Remastered, fixes #4
1 parent dbcf135 commit f001e86

File tree

4 files changed

+32
-19
lines changed

4 files changed

+32
-19
lines changed

AutoUpdater.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<item>
3-
<version>2.0.0.0</version>
4-
<url>https://github.com/lucidlemon/PraiseTheSave/releases/download/1.2.0/PraiseTheSave.exe</url>
3+
<version>2.0.1.0</version>
4+
<url>https://github.com/lucidlemon/PraiseTheSave/releases/download/2.0.1/PraiseTheSave.exe</url>
55
<changelog>https://github.com/lucidlemon/PraiseTheSave/releases</changelog>
66
<mandatory>false</mandatory>
77
</item>

PraiseTheSave/MainScreen.cs

+15-11
Original file line numberDiff line numberDiff line change
@@ -118,27 +118,31 @@ public MainScreen()
118118

119119
InitializeComponent();
120120

121+
string DS1_Path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\NBGI\DarkSouls";
122+
string DSR_Path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\NBGI\DARK SOULS REMASTERED";
123+
124+
if(!Directory.Exists(DSR_Path))
125+
{
126+
DSR_Path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\FromSoftware\DARK SOULS REMASTERED";
127+
}
128+
121129
games = new Dictionary<string, Game>
122130
{
123131
{
124132
"DS1",
125-
new Game(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\NBGI\DarkSouls",
126-
DefSettings.dirDS1, Resource1.initialsDs1, ds1_found_folder, ds1_last_change_label)
133+
new Game(DS1_Path, DefSettings.dirDS1, Resource1.initialsDs1, ds1_found_folder, ds1_last_change_label)
127134
},
128135
{
129136
"DS2",
130-
new Game(@"%AppData%\DarkSoulsII", DefSettings.dirDS2, Resource1.initialsDs2,
131-
ds2_found_folder, ds2_last_change_label)
137+
new Game(@"%AppData%\DarkSoulsII", DefSettings.dirDS2, Resource1.initialsDs2, ds2_found_folder, ds2_last_change_label)
132138
},
133139
{
134140
"DS3",
135-
new Game(@"%AppData%\DarkSoulsIII", DefSettings.dirDS3, Resource1.initialsDs3,
136-
ds3_found_folder, ds3_last_change_label)
141+
new Game(@"%AppData%\DarkSoulsIII", DefSettings.dirDS3, Resource1.initialsDs3, ds3_found_folder, ds3_last_change_label)
137142
},
138143
{
139144
"DSR",
140-
new Game(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\NBGI\DARK SOULS REMASTERED",
141-
DefSettings.dirDSR, Resource1.initialsDsr, ds1R_found_folder, ds1R_last_change_label)
145+
new Game(DSR_Path, DefSettings.dirDSR, Resource1.initialsDsr, ds1R_found_folder, ds1R_last_change_label)
142146
}
143147
};
144148

@@ -220,7 +224,7 @@ public void RefreshInfo()
220224
{
221225
backupFolderSizeLabel.Text = Resource1.msgBackupFolderDNE;
222226
}
223-
227+
224228

225229
saveAmountInput.Value = DefSettings.SaveAmount;
226230
saveIntervalInput.Value = DefSettings.SaveInterval;
@@ -270,13 +274,13 @@ private void ChooseDirectory(object sender, EventArgs e)
270274

271275
private void SaveAmountInput_ValueChanged(object sender, EventArgs e)
272276
{
273-
DefSettings.SaveAmount = (int) saveAmountInput.Value;
277+
DefSettings.SaveAmount = (int)saveAmountInput.Value;
274278
DefSettings.Save();
275279
}
276280

277281
private void NumericUpDown1_ValueChanged(object sender, EventArgs e)
278282
{
279-
DefSettings.SaveInterval = (int) saveIntervalInput.Value;
283+
DefSettings.SaveInterval = (int)saveIntervalInput.Value;
280284
DefSettings.Save();
281285

282286
backupTimer.Interval = (DefSettings.SaveInterval * 60 * 1000);

PraiseTheSave/PraiseTheSave.csproj

+12-3
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@
2525
<UpdatePeriodically>false</UpdatePeriodically>
2626
<UpdateRequired>false</UpdateRequired>
2727
<MapFileExtensions>true</MapFileExtensions>
28-
<InstallUrl>https://github.com/lucidlemon/PraiseTheSave/</InstallUrl>
28+
<InstallUrl>https://github.com/lucidlemon/PraiseTheSave/Releases/</InstallUrl>
29+
<ProductName>Praise The Save</ProductName>
30+
<PublisherName>Daniel Winter</PublisherName>
2931
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
3032
<WebPage>publish.htm</WebPage>
31-
<ApplicationRevision>1</ApplicationRevision>
32-
<ApplicationVersion>1.2.0.%2a</ApplicationVersion>
33+
<ApplicationRevision>5</ApplicationRevision>
34+
<ApplicationVersion>2.1.0.%2a</ApplicationVersion>
3335
<UseApplicationTrust>false</UseApplicationTrust>
3436
<PublishWizardCompleted>true</PublishWizardCompleted>
3537
<BootstrapperEnabled>true</BootstrapperEnabled>
@@ -75,6 +77,12 @@
7577
<PropertyGroup>
7678
<ManifestTimestampUrl>http://timestamp.digicert.com</ManifestTimestampUrl>
7779
</PropertyGroup>
80+
<PropertyGroup>
81+
<SignAssembly>false</SignAssembly>
82+
</PropertyGroup>
83+
<PropertyGroup>
84+
<AssemblyOriginatorKeyFile>PraiseTheKey.pfx</AssemblyOriginatorKeyFile>
85+
</PropertyGroup>
7886
<ItemGroup>
7987
<Reference Include="AutoUpdater.NET, Version=1.4.10.0, Culture=neutral, PublicKeyToken=501435c91b35f4bc, processorArchitecture=MSIL">
8088
<HintPath>..\packages\Autoupdater.NET.Official.1.4.10\lib\net452\AutoUpdater.NET.dll</HintPath>
@@ -128,6 +136,7 @@
128136
<LastGenOutput>Resource1.Designer.cs</LastGenOutput>
129137
</EmbeddedResource>
130138
<None Include="packages.config" />
139+
<None Include="PraiseTheKey.pfx" />
131140
<None Include="PraiseTheSave_1_TemporaryKey.pfx" />
132141
<None Include="PraiseTheSave_TemporaryKey.pfx" />
133142
<None Include="Properties\Settings.settings">

PraiseTheSave/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// set of attributes. Change these attribute values to modify the information
88
// associated with an assembly.
99
[assembly: AssemblyTitle("PraiseTheSave")]
10-
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyDescription("Backup Tool for Dark Souls Games")]
1111
[assembly: AssemblyConfiguration("")]
1212
[assembly: AssemblyCompany("")]
1313
[assembly: AssemblyProduct("PraiseTheSave")]
@@ -33,7 +33,7 @@
3333
// You can specify all the values or you can default the Build and Revision Numbers
3434
// by using the '*' as shown below:
3535
// [assembly: AssemblyVersion("1.0.*")]
36-
[assembly: AssemblyVersion("1.2.0.0")]
37-
[assembly: AssemblyFileVersion("1.2.0.0")]
36+
[assembly: AssemblyVersion("2.0.1.*")]
37+
[assembly: AssemblyFileVersion("2.0.1.*")]
3838
[assembly: NeutralResourcesLanguage("en-US")]
3939

0 commit comments

Comments
 (0)