diff --git a/autoclickillumine/autoclickillumine.gradle.kts b/autoclickillumine/autoclickillumine.gradle.kts index dc356858..f9f0cfe4 100644 --- a/autoclickillumine/autoclickillumine.gradle.kts +++ b/autoclickillumine/autoclickillumine.gradle.kts @@ -24,7 +24,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "5.18.0" +version = "5.2.1" project.extra["PluginName"] = "AutoClickIllumine" project.extra["PluginDescription"] = "What more is there to say?" diff --git a/autoworldhop/autoworldhop.gradle.kts b/autoworldhop/autoworldhop.gradle.kts index f10504db..473294db 100644 --- a/autoworldhop/autoworldhop.gradle.kts +++ b/autoworldhop/autoworldhop.gradle.kts @@ -23,7 +23,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.6" +version = "1.0.9" project.extra["PluginName"] = "Auto World Hop" project.extra["PluginDescription"] = "Auto world hop plugin Illumine edits" diff --git a/blackjackillumine/blackjackillumine.gradle.kts b/blackjackillumine/blackjackillumine.gradle.kts index 7a5de092..aa5513ff 100644 --- a/blackjackillumine/blackjackillumine.gradle.kts +++ b/blackjackillumine/blackjackillumine.gradle.kts @@ -25,7 +25,7 @@ import ProjectVersions.openosrsVersion; * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "0.0.9.1" +version = "0.1.0" project.extra["PluginName"] = "BlackjackIllumine" project.extra["PluginDescription"] = "Allows for one-click blackjacking, both knocking out and pickpocketing" diff --git a/blastfurnacebot/blastfurnacebot.gradle.kts b/blastfurnacebot/blastfurnacebot.gradle.kts index 3f80db08..43ce70f3 100644 --- a/blastfurnacebot/blastfurnacebot.gradle.kts +++ b/blastfurnacebot/blastfurnacebot.gradle.kts @@ -23,7 +23,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.4" +version = "1.0.7" project.extra["PluginName"] = "Blast Furnace - Illumine" project.extra["PluginDescription"] = "Illumine bot for Blast Furnace minigame" diff --git a/botutils/botutils.gradle.kts b/botutils/botutils.gradle.kts index c00adde1..e30aed05 100644 --- a/botutils/botutils.gradle.kts +++ b/botutils/botutils.gradle.kts @@ -25,7 +25,7 @@ import ProjectVersions.openosrsVersion * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.9.1" +version = "1.1.1" project.extra["PluginName"] = "BotUtils" // This is the name that is used in the external plugin manager panel project.extra["PluginDescription"] = "Illumine - Utils required for plugins to function with added automation" // This is the description that is used in the external plugin manager panel diff --git a/build.gradle.kts b/build.gradle.kts index b798edfe..314f6d44 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -83,7 +83,7 @@ subprojects { doLast { copy { from("./build/libs/") - into("C:/Users/joshm/.runelite/externalmanager") + into("C:\\Users\\joshm\\Documents\\JavaProjects\\My Plugins Jars") } } } diff --git a/essencehighlighter/essencehighlighter.gradle.kts b/essencehighlighter/essencehighlighter.gradle.kts index c7c5bd82..2d3c964c 100644 --- a/essencehighlighter/essencehighlighter.gradle.kts +++ b/essencehighlighter/essencehighlighter.gradle.kts @@ -25,7 +25,7 @@ import ProjectVersions.openosrsVersion * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.4" +version = "1.0.7" project.extra["PluginName"] = "Dense Essence Highlighter" // This is the name that is used in the external plugin manager panel project.extra["PluginDescription"] = "Dense Essence highlighter" // This is the description that is used in the external plugin manager panel diff --git a/javaexample/javaexample.gradle.kts b/javaexample/javaexample.gradle.kts deleted file mode 100644 index 368505b6..00000000 --- a/javaexample/javaexample.gradle.kts +++ /dev/null @@ -1,45 +0,0 @@ -import ProjectVersions.openosrsVersion - -/* - * Copyright (c) 2019 Owain van Brakel - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR - * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -version = "1.0.5" - -project.extra["PluginName"] = "Java example plugin" // This is the name that is used in the external plugin manager panel -project.extra["PluginDescription"] = "Java example plugin" // This is the description that is used in the external plugin manager panel - -tasks { - jar { - manifest { - attributes(mapOf( - "Plugin-Version" to project.version, - "Plugin-Id" to nameToId(project.extra["PluginName"] as String), - "Plugin-Provider" to project.extra["PluginProvider"], - "Plugin-Description" to project.extra["PluginDescription"], - "Plugin-License" to project.extra["PluginLicense"] - )) - } - } -} \ No newline at end of file diff --git a/javaexample/src/main/java/net/runelite/client/plugins/javaexample/JavaExampleConfig.java b/javaexample/src/main/java/net/runelite/client/plugins/javaexample/JavaExampleConfig.java deleted file mode 100644 index 7287ec4a..00000000 --- a/javaexample/src/main/java/net/runelite/client/plugins/javaexample/JavaExampleConfig.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) 2018, Andrew EP | ElPinche256 - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are met: - * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR - * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -package net.runelite.client.plugins.javaexample; - -import net.runelite.client.config.Config; -import net.runelite.client.config.ConfigGroup; -import net.runelite.client.config.ConfigItem; - -@ConfigGroup("JavaExampleConfig") - -public interface JavaExampleConfig extends Config -{ - @ConfigItem( - keyName = "example", - name = "Example config item", - description = "Example", - position = 0 - ) - default boolean example() - { - return true; - } -} \ No newline at end of file diff --git a/javaexample/src/main/java/net/runelite/client/plugins/javaexample/JavaExamplePlugin.java b/javaexample/src/main/java/net/runelite/client/plugins/javaexample/JavaExamplePlugin.java deleted file mode 100644 index 40621acd..00000000 --- a/javaexample/src/main/java/net/runelite/client/plugins/javaexample/JavaExamplePlugin.java +++ /dev/null @@ -1,65 +0,0 @@ -package net.runelite.client.plugins.javaexample; - -import com.google.inject.Provides; -import javax.inject.Inject; -import lombok.extern.slf4j.Slf4j; -import net.runelite.api.coords.WorldArea; -import net.runelite.api.coords.WorldPoint; -import net.runelite.api.events.GameTick; -import net.runelite.client.config.ConfigManager; -import net.runelite.client.eventbus.Subscribe; -import net.runelite.client.plugins.Plugin; -import net.runelite.client.plugins.PluginDescriptor; -import net.runelite.client.plugins.PluginType; -import org.pf4j.Extension; - -@Extension -@PluginDescriptor( - name = "Java example", - description = "Java example", - type = PluginType.MISCELLANEOUS -) -@Slf4j -public class JavaExamplePlugin extends Plugin -{ - - // Injects our config - @Inject - private JavaExampleConfig config; - - // Provides our config - @Provides - JavaExampleConfig provideConfig(ConfigManager configManager) - { - return configManager.getConfig(JavaExampleConfig.class); - } - - @Override - protected void startUp() - { - // runs on plugin startup - log.info("Plugin started"); - - // example how to use config items - if (config.example()) - { - // do stuff - log.info("The value of 'config.example()' is ${config.example()}"); - } - } - - @Override - protected void shutDown() - { - // runs on plugin shutdown - log.info("Plugin stopped"); - } - - @Subscribe - private void onGameTick(GameTick gameTick) - { - // runs every gametick - log.info("Gametick"); - } - -} \ No newline at end of file diff --git a/motherlodebot/motherlodebot.gradle.kts b/motherlodebot/motherlodebot.gradle.kts index 8d6b5830..d033e69c 100644 --- a/motherlodebot/motherlodebot.gradle.kts +++ b/motherlodebot/motherlodebot.gradle.kts @@ -23,7 +23,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.9" +version = "1.0.9.2" project.extra["PluginName"] = "Motherlode Mine Bot" project.extra["PluginDescription"] = "Illumine Motherlode Mine bot plugin" diff --git a/plugins.json b/plugins.json index 95180b0c..e04696bb 100644 --- a/plugins.json +++ b/plugins.json @@ -1 +1 @@ -[{"projectUrl":"","provider":"illumine","name":"AutoClickIllumine","description":"What more is there to say?","id":"autoclickillumine-plugin","releases":[{"date":"2020-06-26","sha512sum":"0EDE3CF061FF2009D50324584603071CD4A9A9389123FE2C339AC2458031C0EBB3B4715B11C3612F6BCE8D0F2BB72E21EAB942BC9CFB9D558D7B742E782D4EC3","version":"5.18.0","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/autoclickillumine-5.18.0.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Auto World Hop","description":"Auto world hop plugin Illumine edits","id":"autoworldhop-plugin","releases":[{"date":"2020-06-26","sha512sum":"1FD3FDEFABB3F8CAC8B744010D2FCA8E18F74466E0B4A17BB1F128157031AE6D2AACECE2462EA5E7E911F2B5B2F9DE366E9CBC849C8A632CCD4365F6B00458DC","version":"1.0.6","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/autoworldhop-1.0.6.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"BlackjackIllumine","description":"Allows for one-click blackjacking, both knocking out and pickpocketing","id":"blackjackillumine-plugin","releases":[{"date":"2020-06-26","sha512sum":"D4E696B8104D92E206C771E42529C29E940713EF935F0CD212FFB570098BD6F29E2AB4E43466A21483BBF1457072B08BBC6F7159DA357AF6B89890B7E937BC2C","version":"0.0.9.1","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/blackjackillumine-0.0.9.1.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Blast Furnace - Illumine","description":"Illumine bot for Blast Furnace minigame","id":"blastfurnaceillumine-plugin","releases":[{"date":"2020-06-26","sha512sum":"040A8BBB0C3147705013EB55D29530339998D84316E5A8C117443B2CA1811429D82F4F254F096377B432F6E4EAAC2360A98C7588AD3A6B1A963327462BC3DD89","version":"1.0.4","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/blastfurnacebot-1.0.4.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"BotUtils","description":"Illumine - Utils required for plugins to function with added automation","id":"botutils-plugin","releases":[{"date":"2020-06-26","sha512sum":"B05E2A8D6CA1C5EE66A824EABDF6F68ABAD63D15A284D8382DE582FFD405B21029C9B0AED4B5A6BB22E2C7D1F049F3AE83CE770889BA953AAA9BA9B1369808D4","version":"1.0.9.1","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/botutils-1.0.9.1.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Dense Essence Highlighter","description":"Dense Essence highlighter","id":"denseessencehighlighter-plugin","releases":[{"date":"2020-06-26","sha512sum":"9C06E7EB4213404E143A7ED900D2DBDAD94927CC8DDE4FFAC53D1B6570BC2ECE4390CBF1F58B544D196BCBECA28864BFBBC80ECF9E1CBA1D41B638FCFE7CA963","version":"1.0.4","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/essencehighlighter-1.0.4.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Java example plugin","description":"Java example plugin","id":"javaexampleplugin-plugin","releases":[{"date":"2020-06-26","sha512sum":"BCC8D677E69CA0078A7122E19FD6564824182CF25216E6133A78878DEBE6B41B2F4D36B7D6D479572E41F206803131719D792F220B8B0E63CE5DE4BA7FAA9CA2","version":"1.0.5","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/javaexample-1.0.5.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Motherlode Mine Bot","description":"Illumine Motherlode Mine bot plugin","id":"motherlodeminebot-plugin","releases":[{"date":"2020-06-26","sha512sum":"CCFA911EC328226ED53DE99BE5A08CDFB589003EBD63314E2356187D35628A86EB5A8E7ECD7034019E12AC63FC8A4D4DFC8F287EABD96EBF478E4F0BFE89DB0E","version":"1.0.9","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/motherlodebot-1.0.9.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Power Skiller","description":"Illumine auto power skiller plugin","id":"powerskiller-plugin","releases":[{"date":"2020-06-26","sha512sum":"736A0C2F5A4B8B55EA07498EC1099F93A93D75192E2C917CD8787CAA2DA1980267C1DC3EAFFB2CEDB7F43605CAC999DB950B1FE403A1218BEF32FD2298A27236","version":"1.0.8","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/powerskiller-1.0.8.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Random Handler","description":"Auto dismiss random events (illumine edit), notify when random events appear, remove talk/dismiss options on events that aren't yours","id":"randomhandler-plugin","releases":[{"date":"2020-06-26","sha512sum":"E0DC98B5A2FFD9A0986547069029E94BEB87555A8B614C0CFB3034A7E27B4F815615EE41D3BA743F2E38A2420DECAB0E1616285B8D8C741B028E8948026F64D9","version":"1.0.3","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/randomhandler-1.0.3.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Rooftop Agility","description":"Illumine automated rooftop agility plugin","id":"rooftopagility-plugin","releases":[{"date":"2020-06-26","sha512sum":"8FEF29CF83BFA5021D984C03DFB8A6C3E40D9F6923FC55B4A6F3A1DBBECEF1063EE349EC18F05610BE2332C8FEDAA33ED5C1DC3C069782518CDAF90F24A61EC1","version":"1.0.6","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/rooftopagility-1.0.6.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Test","description":"Illumine test plugin","id":"test-plugin","releases":[{"date":"2020-06-26","sha512sum":"3CAE36D7D6EC797084831FF9CBC61EA4CCD9279A926E912210D7942BCCDAAEA634B2500FEF920171F3FB7B96E90AE63949D50A939BB8ABF5FA42E4C12FC8C232","version":"1.0.6","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/test-1.0.6.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Tick Eat","description":"Illumine auto eat food below given HP on tick","id":"tickeat-plugin","releases":[{"date":"2020-06-26","sha512sum":"E95F4CEFAB45E119376494D7266EBE35FF6A354F397D4C561D35B6787147891A7AD25F6CD35020FD67C0D6DDC7676C7381B65D4532AF2FB2765CA3ACA79A6CED","version":"1.0.9","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/tickeat-1.0.9.jar?raw=true","requires":"0.0.1"}]}] +[{"projectUrl":"","provider":"illumine","name":"AutoClickIllumine","description":"What more is there to say?","id":"autoclickillumine-plugin","releases":[{"date":"2020-06-28","sha512sum":"661651F87C0A35629190611F84B7017AFB7FADA351DDA4765C22BD23AE651134510315828A4B222DFEC1B8B3A8ECC13D9AECC30691FF6D6793B8B19A16CA159B","version":"5.2.1","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/autoclickillumine-5.2.1.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Auto World Hop","description":"Auto world hop plugin Illumine edits","id":"autoworldhop-plugin","releases":[{"date":"2020-06-28","sha512sum":"42CDB650419A6518C13F5C7A62ABD0834F15D2A7DB1633C1CC029FEC71B012DA952A2008178C1020FACB0DBD797E8D17D3428B1183FBEC509A479137B1D2CD54","version":"1.0.9","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/autoworldhop-1.0.9.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"BlackjackIllumine","description":"Allows for one-click blackjacking, both knocking out and pickpocketing","id":"blackjackillumine-plugin","releases":[{"date":"2020-06-28","sha512sum":"13E9D79E2D698DB7048FD988F65A2185FA4FF6196BDD79D6B0C6D1B327FE4AE038A3489D455F342097D4DD9EE5CF6D4F524F7A7071D57D5290C0C536A1B274A5","version":"0.1.0","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/blackjackillumine-0.1.0.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Blast Furnace - Illumine","description":"Illumine bot for Blast Furnace minigame","id":"blastfurnaceillumine-plugin","releases":[{"date":"2020-06-28","sha512sum":"74019DC25314F95454D7DB23A0F59709100F0E3DB3968C805CEA03BAE4A614001B9C58D597F4FB21C2D74F8A457949FF5A1D24F0B728C85C9647DE310F7C1F50","version":"1.0.7","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/blastfurnacebot-1.0.7.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"BotUtils","description":"Illumine - Utils required for plugins to function with added automation","id":"botutils-plugin","releases":[{"date":"2020-06-28","sha512sum":"750E663EF1B1FFC22917833A0ACAFE370A35712635868D6605D1FA04E1BB1EC7E9714522A7594B5F88C74400BF58AE0EE67CD5246AA87519593E610400D12A7B","version":"1.1.1","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/botutils-1.1.1.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Dense Essence Highlighter","description":"Dense Essence highlighter","id":"denseessencehighlighter-plugin","releases":[{"date":"2020-06-28","sha512sum":"C9A8A5A9B3480C0E2EE8DBBEE34C35F61413D8D2BB604A2E211D18A97C5B4C7D621B78CAE825151B3CA3D6C3CF25DB87FCCD63AD7933D97FB6411268702F1F17","version":"1.0.7","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/essencehighlighter-1.0.7.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Motherlode Mine Bot","description":"Illumine Motherlode Mine bot plugin","id":"motherlodeminebot-plugin","releases":[{"date":"2020-06-28","sha512sum":"A0EA2E63553C90639511D9A693FE63496F883D842DAEBC12139F1FA0A8E5A67EE2E9F781CD53B5AB0E7B7D0B0D1339777EE77EF6046D948CEB200833873A94A3","version":"1.0.9.2","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/motherlodebot-1.0.9.2.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Power Skiller","description":"Illumine auto power skiller plugin","id":"powerskiller-plugin","releases":[{"date":"2020-06-28","sha512sum":"A32D0C04828985CCE9212A3B2BBC45909324FC00ACB54E1F201AD6456EBF08A9F0C45E963B73D6FCA211DD9909F76720A0B7BA0B7F7F17600311F291D4EB31D4","version":"1.1.1","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/powerskiller-1.1.1.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Random Handler","description":"Auto dismiss random events (illumine edit), notify when random events appear, remove talk/dismiss options on events that aren't yours","id":"randomhandler-plugin","releases":[{"date":"2020-06-28","sha512sum":"C351DC101F1C5A28475B7F5695B2DAD3C91BF7498CF4B245E785F56F5831EE496BFE295B7E54BE65CA971B9E05D40C75D037A21C9C1462FDD2A10EECC21367F8","version":"1.0.5","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/randomhandler-1.0.5.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Rooftop Agility","description":"Illumine automated rooftop agility plugin","id":"rooftopagility-plugin","releases":[{"date":"2020-06-28","sha512sum":"5A666F09F8C7D9D1BDC94A073B291B7E4F639F3BC165407E2CE4987344682CD5DF05B4E1CEC9DEC3EF4A5B23FD29D8FDFF606CF0882D017BF223A22C0A0852F3","version":"1.0.9","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/rooftopagility-1.0.9.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Test","description":"Illumine test plugin","id":"test-plugin","releases":[{"date":"2020-06-28","sha512sum":"A286B9DD97C06B2C48FFB86D8B1FC4D8882FC57A7351DC9EE47937FDABEC26869782DF1006C198AF5B597B36C3CCE4CA532723B97F9B9C5CAFD058A91649D414","version":"1.0.9","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/test-1.0.9.jar?raw=true","requires":"0.0.1"}]}, {"projectUrl":"","provider":"illumine","name":"Tick Eat","description":"Illumine auto eat food below given HP on tick","id":"tickeat-plugin","releases":[{"date":"2020-06-28","sha512sum":"E18B44DBB8D0ABFFD0CD81C5B6A96E0FCCD858FF92DC82903F8661D5011E67BC2599A10623E5E3C99DABAA83E3E02A74C3E71956492695A906F8A52F28D07558","version":"1.1.0","url":"https://github.com/illumineawake/illu-plugins/blob/master/release/tickeat-1.1.0.jar?raw=true","requires":"0.0.1"}]}] diff --git a/powerskiller/powerskiller.gradle.kts b/powerskiller/powerskiller.gradle.kts index 2d3756bb..5ec46a1a 100644 --- a/powerskiller/powerskiller.gradle.kts +++ b/powerskiller/powerskiller.gradle.kts @@ -23,7 +23,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.8" +version = "1.1.1" project.extra["PluginName"] = "Power Skiller" project.extra["PluginDescription"] = "Illumine auto power skiller plugin" diff --git a/randomhandler/randomhandler.gradle.kts b/randomhandler/randomhandler.gradle.kts index b064ff57..abcec4db 100644 --- a/randomhandler/randomhandler.gradle.kts +++ b/randomhandler/randomhandler.gradle.kts @@ -23,7 +23,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.3" +version = "1.0.5" project.extra["PluginName"] = "Random Handler" project.extra["PluginDescription"] = "Auto dismiss random events (illumine edit), notify when random events appear, remove talk/dismiss options on events that aren't yours" diff --git a/rooftopagility/rooftopagility.gradle.kts b/rooftopagility/rooftopagility.gradle.kts index ca91fc3f..56c0014d 100644 --- a/rooftopagility/rooftopagility.gradle.kts +++ b/rooftopagility/rooftopagility.gradle.kts @@ -23,7 +23,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.6" +version = "1.0.9" project.extra["PluginName"] = "Rooftop Agility" project.extra["PluginDescription"] = "Illumine automated rooftop agility plugin" diff --git a/settings.gradle.kts b/settings.gradle.kts index f7e47fc8..1282a39b 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -31,7 +31,6 @@ include(":blackjackillumine") include(":blastfurnacebot") include(":botutils") include(":essencehighlighter") -include(":javaexample") include(":motherlodebot") include(":powerskiller") include(":randomhandler") diff --git a/test/test.gradle.kts b/test/test.gradle.kts index d27999b3..1b5c6ed9 100644 --- a/test/test.gradle.kts +++ b/test/test.gradle.kts @@ -23,7 +23,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.6" +version = "1.0.9" project.extra["PluginName"] = "Test" project.extra["PluginDescription"] = "Illumine test plugin" diff --git a/tickeat/tickeat.gradle.kts b/tickeat/tickeat.gradle.kts index d4fa549b..b23d1a9b 100644 --- a/tickeat/tickeat.gradle.kts +++ b/tickeat/tickeat.gradle.kts @@ -23,7 +23,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -version = "1.0.9" +version = "1.1.0" project.extra["PluginName"] = "Tick Eat" project.extra["PluginDescription"] = "Illumine auto eat food below given HP on tick"