Skip to content

Commit

Permalink
Direct Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gus33000 committed Jun 25, 2024
1 parent 814f7d9 commit 9b8d789
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions WOADeviceManager.Package/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
<mp:PhoneIdentity PhoneProductId="f539eeeb-894b-48fd-8682-629aa34cc3c5" PhonePublisherId="00000000-0000-0000-0000-000000000000" />

<Identity
Name="48791GustaveMonce.WOADeviceManager"
Publisher="CN=E642D271-5A63-42B0-AEFA-6FF52F1D7343"
Name="DuoWOA.DeviceManager"
Publisher="CN=DuoWOA"
Version="1.0.6.0" />

<Properties>
<DisplayName>WOA Device Manager</DisplayName>
<PublisherDisplayName>Gustave Monce</PublisherDisplayName>
<PublisherDisplayName>DuoWOA</PublisherDisplayName>
<Logo>Assets\AppTiles\StoreLogo.png</Logo>
</Properties>

Expand Down
3 changes: 3 additions & 0 deletions WOADeviceManager.Package/WOADeviceManager.Package.wapproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,16 @@
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
<EntryPointProjectUniqueName>..\WOADeviceManager\WOADeviceManager.csproj</EntryPointProjectUniqueName>
<PackageCertificateKeyFile>WOADeviceManager.Package_TemporaryKey.pfx</PackageCertificateKeyFile>
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
</PropertyGroup>
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.props" />
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<Content Include="Assets\AppTiles\**" />
<None Include="WOADeviceManager.Package_TemporaryKey.pfx" />
<None Include="Package.StoreAssociation.xml" />
</ItemGroup>
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.targets" />
Expand Down
4 changes: 2 additions & 2 deletions WOADeviceManager/MainPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@
Title="You need to enable USB Debugging!"
Message="Your phone currently has USB Debugging turned off in Developer Options. The tools needs USB Debugging in order to communicate with your device. Go to Settings, About, Tap the Build number field 7 times, go back into Settings, go to System, Developer options, Scroll all the way down til you see USB debugging, Turn USB debugging on." />

<!--<InfoBar x:Name="ANewUpdateIsAvailableInfoBar"
<InfoBar x:Name="ANewUpdateIsAvailableInfoBar"
IsOpen="False"
Severity="Informational"
Title="A new version of WOA Device Manager is available!"
Message="Update to the new version of WOA Device Manager in order to get the latest features, enhancements and important bug fixes.">
<InfoBar.ActionButton>
<Button x:Name="UpdateButton" Click="UpdateButton_Click" Content="Learn More" />
</InfoBar.ActionButton>
</InfoBar>-->
</InfoBar>
</StackPanel>

<Grid Grid.Row="1">
Expand Down
8 changes: 4 additions & 4 deletions WOADeviceManager/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private void Page_Loaded(object sender, RoutedEventArgs e)
DeviceManager.DeviceConnectedEvent += DeviceManager_DeviceConnectedEvent;
DeviceManager.DeviceDisconnectedEvent += Instance_DeviceDisconnectedEvent;

/*new Task(async () =>
new Task(async () =>
{
string LatestApplicationVersion = await HttpsUtils.GetLatestWOADeviceManagerVersion();
string CurrentApplicationVersion = $"{Package.Current.Id.Version.Major}.{Package.Current.Id.Version.Minor}.{Package.Current.Id.Version.Build}.{Package.Current.Id.Version.Revision}";
Expand All @@ -222,7 +222,7 @@ private void Page_Loaded(object sender, RoutedEventArgs e)
ANewUpdateIsAvailableInfoBar.IsOpen = true;
});
}
}).Start();*/
}).Start();
}

private void Page_Unloaded(object sender, RoutedEventArgs e)
Expand All @@ -239,9 +239,9 @@ private void RetryButton_Click(object sender, RoutedEventArgs e)
}
}

/*private async void UpdateButton_Click(object sender, RoutedEventArgs e)
private async void UpdateButton_Click(object sender, RoutedEventArgs e)
{
await Launcher.LaunchUriAsync(new Uri("https://github.com/WOA-Project/WOA-Device-Manager/releases/latest"));
}*/
}
}
}

0 comments on commit 9b8d789

Please sign in to comment.