diff --git a/MiiversePlugin.mod b/Inkay-pretendo.mod similarity index 71% rename from MiiversePlugin.mod rename to Inkay-pretendo.mod index 80802e3..0c1a1f5 100755 Binary files a/MiiversePlugin.mod and b/Inkay-pretendo.mod differ diff --git a/README.md b/README.md index 8c8d81f..47ea58a 100644 --- a/README.md +++ b/README.md @@ -1,12 +1 @@ -# Example plugin - -This is just a simple example plugin which can be used as a template. - -## Building - -For building you need: -- [wups](https://github.com/Maschell/WiiUPluginSystem) -- [wut](https://github.com/decaf-emu/wut) -- [libutils](https://github.com/Maschell/libutils/tree/wut) for common functions (WUT version). - -Install them (in this order) according to their README's. Don't forget the dependencies of the libs itself. \ No newline at end of file +# Inkay - In-game patches for Juxtaposition diff --git a/makefile.mk b/makefile.mk index e711172..094429b 100644 --- a/makefile.mk +++ b/makefile.mk @@ -16,7 +16,7 @@ WUT_ENABLE_CPP := 0 WUT_DEFAULT_MALLOC := 1 # Target filename -TARGET := $(notdir $(CURDIR)).mod +TARGET := Inkay-pretendo.mod # Source directories SOURCES := src diff --git a/src/main.cpp b/src/main.cpp index 3a6d0a6..315eefc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,5 @@ -/* Copyright 2019 Ash Logan "quarktheawesome" +/* Copyright 2021 Pretendo Network contributors + Copyright 2019 Ash Logan "quarktheawesome" Copyright 2019 Maschell Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. @@ -18,10 +19,10 @@ Mandatory plugin information. If not set correctly, the loader will refuse to use the plugin. **/ -WUPS_PLUGIN_NAME("MiiversePlugin"); -WUPS_PLUGIN_DESCRIPTION("AAAAAA"); -WUPS_PLUGIN_VERSION("v1.0"); -WUPS_PLUGIN_AUTHOR("quarktheawesome"); +WUPS_PLUGIN_NAME("Inkay"); +WUPS_PLUGIN_DESCRIPTION("In-game patches for Juxtaposition"); +WUPS_PLUGIN_VERSION("v0.1"); +WUPS_PLUGIN_AUTHOR("Pretendo contributors"); WUPS_PLUGIN_LICENSE("ISC"); WUPS_ALLOW_KERNEL(); @@ -39,7 +40,7 @@ ON_APPLICATION_START(args){ log_init(); if (!args.kernel_access) { - DEBUG_FUNCTION_LINE("MiiversePlugin: No kernel access!\n"); + DEBUG_FUNCTION_LINE("Inkay: No kernel access!\n"); return; } @@ -63,7 +64,7 @@ ON_APPLICATION_START(args){ } ON_APPLICATION_ENDING(){ - DEBUG_FUNCTION_LINE("MiiversePlugin: shutting down...\n"); + DEBUG_FUNCTION_LINE("Inkay: shutting down...\n"); OSDynLoad_Release(olv_handle); }