Skip to content

Commit

Permalink
added icon and version up
Browse files Browse the repository at this point in the history
  • Loading branch information
megurte committed Aug 3, 2024
1 parent ab30b8b commit b864bfd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
Binary file added Icon/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion WhichMount/WhichMount.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework> <!-- или другая версия, соответствующая вашим требованиям -->
<Version>0.1.0.0</Version>
<Version>1.0.0.0</Version>
<Description>Searching for other player's mount</Description>
<PackageProjectUrl>https://github.com/megurte/whichmount</PackageProjectUrl>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
Expand All @@ -20,6 +20,10 @@
</ItemGroup>

<ItemGroup>
<Content Include="..\Icon\icon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>false</Visible>
</Content>
<Reference Include="DalamudInjector">
<HintPath>..\..\..\DalamudInjector\DalamudInjector\bin\Release\DalamudInjector.dll</HintPath>
</Reference>
Expand Down
8 changes: 4 additions & 4 deletions WhichMount/WhichMount.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"ApplicableVersion": "any",
"InternalName": "WhichMount",
"RepoUrl": "https://github.com/megurte/WhichMount",
"DownloadLinkInstall": "https://github.com/megurte/WhichMount/releases/download/0.1.0.0_beta/latest.zip",
"DownloadLinkUpdate": "https://github.com/megurte/WhichMount/releases/download/0.1.0.0_beta/latest.zip",
"DownloadLinkTesting": "https://github.com/megurte/WhichMount/releases/download/0.1.0.0_beta/latest.zip",
"DownloadLinkInstall": "https://github.com/megurte/WhichMount/releases/download/1.0.0.0/latest.zip",
"DownloadLinkUpdate": "https://github.com/megurte/WhichMount/releases/download/1.0.0.0/latest.zip",
"DownloadLinkTesting": "https://github.com/megurte/WhichMount/releases/download/1.0.0.0/latest.zip",
"DalamudApiLevel": 10,
"AssemblyVersion": "0.1.0.0",
"AssemblyVersion": "1.0.0.0",
"IsTestingExclusive": "False",
"Tags": [
"Character",
Expand Down
5 changes: 2 additions & 3 deletions WhichMount/WhichMountPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ public class WhichMountPlugin : IDalamudPlugin
{
public string Name => "Which Mount";

private Configuration _configuration;
private ContextMenuHandler _contextMenuHandler;

private readonly Configuration _configuration;
private readonly ContextMenuHandler _contextMenuHandler;
private readonly ServiceInstaller _serviceInstaller;
private readonly ServiceManager _service;
private readonly ConfigWindow _configWindow;
Expand Down

0 comments on commit b864bfd

Please sign in to comment.