Skip to content

Commit c3288f6

Browse files
committed
Version 1.1.1
Make sure that the specific mount folder is the proper one. Look for the Movies folder to ensure it's the proper one.
1 parent 5b64efc commit c3288f6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

PCS_WindowsMeta/PCS_WindowsMeta.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<MapFileExtensions>true</MapFileExtensions>
2727
<AutorunEnabled>true</AutorunEnabled>
2828
<ApplicationRevision>0</ApplicationRevision>
29-
<ApplicationVersion>1.1.0.%2a</ApplicationVersion>
29+
<ApplicationVersion>1.1.1.%2a</ApplicationVersion>
3030
<UseApplicationTrust>false</UseApplicationTrust>
3131
<PublishWizardCompleted>true</PublishWizardCompleted>
3232
<BootstrapperEnabled>true</BootstrapperEnabled>

PCS_WindowsMeta/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ static void Main(string[] args)
116116

117117
// Check if that mount path exists
118118
string usrMount = Environment.ExpandEnvironmentVariables(usrMountPath);
119-
if (Directory.Exists(usrMount))
119+
var pcsMount = Path.Combine(usrMount, "Movies");
120+
if (Directory.Exists(pcsMount))
120121
{
121122
break;
122123
}

PCS_WindowsMeta/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.0.0")]
35-
[assembly: AssemblyFileVersion("1.1.0.0")]
34+
[assembly: AssemblyVersion("1.1.1.0")]
35+
[assembly: AssemblyFileVersion("1.1.1.0")]

0 commit comments

Comments
 (0)