Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions ImageCoverExpander/ImageCoverExpander.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ImageCoverExpander</RootNamespace>
<AssemblyName>ImageCoverExpander</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
Expand All @@ -20,6 +20,7 @@
<!--<PathMap>$(AppOutputBase)=X:\$(AssemblyName)\</PathMap>-->
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<Optimize>false</Optimize>
Expand All @@ -46,7 +47,14 @@
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="GameplayCore">
<HintPath>..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Beat Saber\Beat Saber_Data\Managed\GameplayCore.dll</HintPath>
<HintPath>$(BeatSaberDir)\Beat Saber_Data\Managed\GameplayCore.dll</HintPath>
<Private>False</Private>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="HMLib">
<HintPath>$(BeatSaberDir)\Beat Saber_Data\Managed\HMLib.dll</HintPath>
<Private>False</Private>
<SpecificVersion>False</SpecificVersion>
</Reference>
<Reference Include="SiraUtil">
<HintPath>$(BeatSaberDir)\Plugins\SiraUtil.dll</HintPath>
Expand All @@ -63,10 +71,6 @@
<HintPath>$(BeatSaberDir)\Beat Saber_Data\Managed\Main.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="HMLib">
<HintPath>$(BeatSaberDir)\Beat Saber_Data\Managed\HMLib.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="HMUI">
<HintPath>$(BeatSaberDir)\Beat Saber_Data\Managed\HMUI.dll</HintPath>
<Private>False</Private>
Expand Down
2 changes: 1 addition & 1 deletion ImageCoverExpander/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public Plugin(Zenjector zenjector, IPALogger logger)
Instance = this;
Log = logger;
Log.Info("ImageCoverExpander initialized.");
zenjector.OnMenu<MenuInstaller>();
zenjector.Install<MenuInstaller>(Location.Menu);
}

#region BSIPA Config
Expand Down
4 changes: 2 additions & 2 deletions ImageCoverExpander/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.3")]
[assembly: AssemblyFileVersion("2.3.3")]
[assembly: AssemblyVersion("2.3.5")]
[assembly: AssemblyFileVersion("2.3.5")]
10 changes: 5 additions & 5 deletions ImageCoverExpander/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
"id": "ImageCoverExpander",
"name": "ImageCoverExpander",
"author": "Spooky",
"version": "2.3.3",
"version": "2.3.5",
"description": "",
"gameVersion": "1.17.0",
"gameVersion": "1.34.2",
"dependsOn": {
"BSIPA": "^4.2.0",
"SiraUtil": "^2.5.8",
"BeatSaberMarkupLanguage": "^1.5.5"
"BSIPA": "^4.3.2",
"SiraUtil": "^3.1.6",
"BeatSaberMarkupLanguage": "^1.8.1"
}
}