Skip to content

Commit 471fd10

Browse files
v1.5 - changed to API
1 parent 2e6fc0a commit 471fd10

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5-
<AssemblyName>CardLoaderPlugin</AssemblyName>
6-
<Description>A custom card loader library for inscryption</Description>
7-
<Version>1.4.0.0</Version>
5+
<AssemblyName>API</AssemblyName>
6+
<Description>An API for inscryption</Description>
7+
<Version>1.5.0.0</Version>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
99
<LangVersion>9.0</LangVersion>
1010
</PropertyGroup>

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## v1.5
3+
### Not compatible with v1.4
4+
- Changed all references to API including guid
5+
26
## v1.4
37
- Set up support for customising and adding regions.
48

Plugin.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
using DiskCardGame;
88
using HarmonyLib;
99

10-
namespace CardLoaderPlugin
10+
namespace APIPlugin
1111
{
1212
[BepInPlugin(PluginGuid, PluginName, PluginVersion)]
1313
public class Plugin : BaseUnityPlugin
1414
{
15-
private const string PluginGuid = "cyantist.inscryption.cardloader";
16-
private const string PluginName = "CardLoader";
15+
private const string PluginGuid = "cyantist.inscryption.api";
16+
private const string PluginName = "API";
1717
private const string PluginVersion = "1.4.0.0";
1818

1919
internal static ManualLogSource Log;

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

2-
# CardLoaderPlugin
2+
# API
33
## Inscryption Card Loader Plugin made by Cyantist
44

55
This plugin is a BepInEx plugin made for Inscryption to create custom cards and inject them into the card pool, or modify existing cards in the card pool.
66

77
## Installation
88
To install this plugin first you need to install BepInEx as a mod loader for Inscryption. A guide to do this can be found [here](https://docs.bepinex.dev/articles/user_guide/installation/index.html#where-to-download-bepinex). Inscryption needs the 86x (32 bit) mono version.
99

10-
To install CardLoaderPlugin you simply need to copy **CardLoaderPlugin.dll** from [releases](https://github.com/ScottWilson0903/CardLoaderPlugin/releases) to **Inscryption/BepInEx/plugins**.
10+
To install Inscryption API you simply need to copy **API.dll** from [releases](https://github.com/ScottWilson0903/InscryptionAPI/releases) to **Inscryption/BepInEx/plugins**.
1111

12-
An example Mod utilising this plugin can be found [here](https://github.com/ScottWilson0903/CardLoaderExampleMod).
12+
An example Mod utilising this plugin can be found [here](https://github.com/ScottWilson0903/Inscryption ExampleMod).
1313

1414
## Debugging
1515
The easiest way to check if the plugin is working properly or to debug an error is to enable the console. This can be done by changing

0 commit comments

Comments
 (0)