Skip to content

Commit

Permalink
Bump version, update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Difegue committed Sep 8, 2024
1 parent 82f6b4b commit 4461dc9
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,23 @@ There is a workaround you can use with checknetisolation which should work:
checknetisolation loopbackexempt -a -n="13459Difegue.Stylophone_zd7bwy3j4yjfy"
```

## Protocol usage (Windows only)

Stylophone can be launched through the `stylophone://` protocol on Windows devices; This feature also makes it so you can control some features of the app through protocol invocations.

The following URLs are supported:

- `stylophone://?verb=stylophone_play` or `stylophone://?verb=stylophone_pause` : Toggle playback status
- `stylophone://?verb=stylophone_stop` : Stop playback
- `stylophone://?verb=stylophone_next` : Go to next track
- `stylophone://?verb=stylophone_prev` : Go to previous track
- `stylophone://?verb=stylophone_shuffle` : Toggle shuffle
- `stylophone://?verb=stylophone_volume_up` : Raise volume
- `stylophone://?verb=stylophone_volume_down` : Lower volume
- `stylophone://?verb=stylophone_volume_set&volume=50` : Set volume to desired value
- `stylophone://?verb=stylophone_seek&seek=50` : Seek to desired position in current track
- `stylophone://?verb=stylophone_load_playlistt&playlist=YourPlaylistName` : Load the desired playlist in queue

## Translation

You can easily contribute translations to Stylophone! To help translate, follow these instructions.
Expand Down
2 changes: 1 addition & 1 deletion Sources/Stylophone/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Identity
Name="13459Difegue.Stylophone"
Publisher="CN=B2F6FFCA-07C7-479C-AC33-2C75463C7DCE"
Version="2.7.0.0" />
Version="2.7.1.0" />

<mp:PhoneIdentity PhoneProductId="b9cbe0bc-1e9d-42c8-abf1-85c63af45f83" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down
2 changes: 1 addition & 1 deletion Sources/Stylophone/Package.tt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<#@ output extension=".appxmanifest" #>
<#@ parameter type="System.String" name="BuildConfiguration" #>
<#
string version = "2.7.0.0";
string version = "2.7.1.0";

// Get configuration name at Build time
string configName = Host.ResolveParameterValue("-", "-", "BuildConfiguration");
Expand Down
3 changes: 2 additions & 1 deletion Sources/Stylophone/Styles/StyloResources.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="using:Stylophone.Common.ViewModels"
xmlns:media="using:CommunityToolkit.WinUI.Media"
xmlns:labs="using:CommunityToolkit.Labs.WinUI.MarqueeTextRns" xmlns:strings="using:Stylophone.Localization.Strings"
xmlns:labs="using:CommunityToolkit.Labs.WinUI.MarqueeTextRns"
xmlns:strings="using:Stylophone.Localization.Strings"
mc:Ignorable="d">

<ResourceDictionary.ThemeDictionaries>
Expand Down
14 changes: 8 additions & 6 deletions Sources/Stylophone/Stylophone.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,6 @@
<Content Include="Assets\Wide310x150Logo.scale-125.png" />
<Content Include="Assets\Wide310x150Logo.scale-150.png" />
<Content Include="Assets\Wide310x150Logo.scale-400.png" />
<AppxManifest Include="Package.appxmanifest">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Package.tt</DependentUpon>
<SubType>Designer</SubType>
</AppxManifest>
<None Include="Stylophone_TemporaryKey.pfx" />
<Content Include="Package.tt">
<SubType>Designer</SubType>
Expand Down Expand Up @@ -417,6 +411,14 @@
<Name>Microsoft Engagement Framework</Name>
</SDKReference>
</ItemGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Package.tt</DependentUpon>
</AppxManifest>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TextTemplating\Microsoft.TextTemplating.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down

0 comments on commit 4461dc9

Please sign in to comment.