Skip to content

Commit 5dc0039

Browse files
committed
finished work for today. should work just fine.
1 parent a7331a3 commit 5dc0039

File tree

3 files changed

+42
-6
lines changed

3 files changed

+42
-6
lines changed

PraiseTheSave/Form1.cs

+13-1
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,14 @@ public void refreshInfo()
101101
{
102102
string backupDir = PraiseTheSave.Properties.Settings.Default.SaveLocation;
103103
backupFolderLabel.Text = backupDir;
104-
backupFolderSizeLabel.Text =
104+
if (Directory.Exists(backupDir))
105+
{
106+
backupFolderSizeLabel.Text =
105107
"Size of the backup folder is " +
106108
(DirSize(new DirectoryInfo(backupDir)) / 1024.0 / 1024.0).ToString("0.00")
107109
+ "Mb";
110+
}
111+
108112

109113
saveAmountInput.Value = PraiseTheSave.Properties.Settings.Default.SaveAmount;
110114
saveIntervalInput.Value = PraiseTheSave.Properties.Settings.Default.SaveInterval;
@@ -177,6 +181,14 @@ public void doBackup(object sender, EventArgs e)
177181
string ds3destination = PraiseTheSave.Properties.Settings.Default.SaveLocation + @"\ds3\";
178182

179183

184+
if (!Directory.Exists(PraiseTheSave.Properties.Settings.Default.SaveLocation))
185+
{
186+
Directory.CreateDirectory(PraiseTheSave.Properties.Settings.Default.SaveLocation);
187+
}
188+
189+
190+
191+
180192
string ds1save = PraiseTheSave.Properties.Settings.Default.ds1location;
181193
if (Directory.Exists(ds1save))
182194
{

PraiseTheSave/PraiseTheSave.csproj

+29-5
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,24 @@
1212
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15-
<PublishUrl>publish\</PublishUrl>
15+
<IsWebBootstrapper>true</IsWebBootstrapper>
16+
<PublishUrl>C:\Users\dkrei\Desktop\PraiseTheSave\</PublishUrl>
1617
<Install>true</Install>
17-
<InstallFrom>Disk</InstallFrom>
18-
<UpdateEnabled>false</UpdateEnabled>
18+
<InstallFrom>Web</InstallFrom>
19+
<UpdateEnabled>true</UpdateEnabled>
1920
<UpdateMode>Foreground</UpdateMode>
2021
<UpdateInterval>7</UpdateInterval>
2122
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
2223
<UpdatePeriodically>false</UpdatePeriodically>
2324
<UpdateRequired>false</UpdateRequired>
2425
<MapFileExtensions>true</MapFileExtensions>
25-
<ApplicationRevision>0</ApplicationRevision>
26+
<InstallUrl>https://github.com/lucidlemon/PraiseTheSave/</InstallUrl>
27+
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
28+
<WebPage>publish.htm</WebPage>
29+
<ApplicationRevision>1</ApplicationRevision>
2630
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27-
<IsWebBootstrapper>false</IsWebBootstrapper>
2831
<UseApplicationTrust>false</UseApplicationTrust>
32+
<PublishWizardCompleted>true</PublishWizardCompleted>
2933
<BootstrapperEnabled>true</BootstrapperEnabled>
3034
</PropertyGroup>
3135
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -47,6 +51,22 @@
4751
<ErrorReport>prompt</ErrorReport>
4852
<WarningLevel>4</WarningLevel>
4953
</PropertyGroup>
54+
<PropertyGroup>
55+
<ManifestCertificateThumbprint>5C3C8CB2FB7D07BE15A83574C2DB49C482F18B09</ManifestCertificateThumbprint>
56+
</PropertyGroup>
57+
<PropertyGroup>
58+
<ManifestKeyFile>PraiseTheSave_TemporaryKey.pfx</ManifestKeyFile>
59+
</PropertyGroup>
60+
<PropertyGroup>
61+
<GenerateManifests>true</GenerateManifests>
62+
</PropertyGroup>
63+
<PropertyGroup>
64+
<SignManifests>true</SignManifests>
65+
</PropertyGroup>
66+
<PropertyGroup>
67+
<ApplicationIcon>sunbro_logo.ico</ApplicationIcon>
68+
</PropertyGroup>
69+
<PropertyGroup />
5070
<ItemGroup>
5171
<Reference Include="Ionic.Zip, Version=1.9.8.0, Culture=neutral, PublicKeyToken=6583c7c814667745, processorArchitecture=MSIL">
5272
<HintPath>..\packages\DotNetZip.1.9.8\lib\net20\Ionic.Zip.dll</HintPath>
@@ -86,6 +106,7 @@
86106
<DependentUpon>Resources.resx</DependentUpon>
87107
</Compile>
88108
<None Include="packages.config" />
109+
<None Include="PraiseTheSave_TemporaryKey.pfx" />
89110
<None Include="Properties\Settings.settings">
90111
<Generator>SettingsSingleFileGenerator</Generator>
91112
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
@@ -111,6 +132,9 @@
111132
<Install>false</Install>
112133
</BootstrapperPackage>
113134
</ItemGroup>
135+
<ItemGroup>
136+
<Content Include="sunbro_logo.ico" />
137+
</ItemGroup>
114138
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
115139
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
116140
Other similar extension points exist, see Microsoft.Common.targets.

PraiseTheSave/sunbro_logo.ico

361 KB
Binary file not shown.

0 commit comments

Comments
 (0)