Skip to content

Commit

Permalink
Category fix (#155)
Browse files Browse the repository at this point in the history
* Updated samples

* #154 Fixed Category bug
  • Loading branch information
AlexHedley authored Oct 14, 2020
1 parent 0bad500 commit 14dbc52
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<!--Deployment files that must go with the build executable -->
<ItemGroup>
<Content Include="manifest.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand All @@ -65,6 +65,12 @@
<Content Include="images/[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images/category/categoryIcon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images/category/[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images/Fritz.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"Category": "Your Plugin Category",
"CategoryIcon": "images/category/categoryIcon.png",
"CategoryIcon": "images/category/categoryIcon",
"Disabled": false,
"Author": "Your Name",
"CodePathWin": "_StreamDeckPlugin_.exe",
Expand Down
8 changes: 8 additions & 0 deletions src/SampleDIPlugin/SampleDIPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
<None Remove="images\[email protected]" />
<None Remove="images\actionIcon.png" />
<None Remove="images\[email protected]" />
<None Remove="images\category\categoryIcon%402x.png" />
<None Remove="images\category\categoryIcon.png" />
<None Remove="images\Fritz.png" />
<None Remove="images\pluginIcon.png" />
<None Remove="images\[email protected]" />
Expand Down Expand Up @@ -41,6 +43,12 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="images\category\categoryIcon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images\category\[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images\Fritz.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
Expand Down
2 changes: 1 addition & 1 deletion src/SampleDIPlugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
],
"Category": "Fritz & Friends",
"CategoryIcon": "images/category/categoryIcon.png",
"CategoryIcon": "images/category/categoryIcon",
"Disabled": false,
"Author": "Jeffrey T. Fritz",
"CodePathWin": "SamplePlugin.cmd",
Expand Down
8 changes: 8 additions & 0 deletions src/SamplePlugin/SamplePlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
</PropertyGroup>
<ItemGroup>
<None Remove="Fritz.png" />
<None Remove="images\category\categoryIcon%402x.png" />
<None Remove="images\category\categoryIcon.png" />
<None Remove="property_inspector\css\property-inspector.css" />
<None Remove="property_inspector\css\sdpi.css" />
<None Remove="property_inspector\js\property-inspector.js" />
Expand Down Expand Up @@ -52,6 +54,12 @@
<Content Include="images/Fritz.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images\category\categoryIcon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images\category\[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="manifest.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
Expand Down
2 changes: 1 addition & 1 deletion src/SamplePlugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
],
"Category": "Fritz & Friends",
"CategoryIcon": "images/category/categoryIcon.png",
"CategoryIcon": "images/category/categoryIcon",
"Disabled": false,
"Author": "Jeffrey T. Fritz",
"CodePathWin": "SamplePlugin.cmd",
Expand Down
8 changes: 8 additions & 0 deletions src/SampleWebPlugin/SampleWebPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
<None Remove="images\[email protected]" />
<None Remove="images\actionIcon.png" />
<None Remove="images\[email protected]" />
<None Remove="images\category\categoryIcon%402x.png" />
<None Remove="images\category\categoryIcon.png" />
<None Remove="images\Fritz.png" />
<None Remove="images\pluginIcon.png" />
<None Remove="images\[email protected]" />
Expand All @@ -35,6 +37,12 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="images\category\categoryIcon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images\category\[email protected]">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="images\Fritz.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
Expand Down
2 changes: 1 addition & 1 deletion src/SampleWebPlugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
],
"Category": "Fritz & Friends",
"CategoryIcon": "images/category/categoryIcon.png",
"CategoryIcon": "images/category/categoryIcon",
"Disabled": false,
"Author": "Jeffrey T. Fritz",
"CodePathWin": "SamplePlugin.cmd",
Expand Down

0 comments on commit 14dbc52

Please sign in to comment.