From cd379c18525d1d8abf1ebe98d9819e47e8edda0f Mon Sep 17 00:00:00 2001 From: Brady Date: Tue, 25 Sep 2018 07:32:32 -0500 Subject: [PATCH] Fix version to 0.0.2 and update references --- .travis.yml | 2 +- IMPACT.md | 10 +++++----- build.gradle | 2 +- proguard.pro | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0f6dee68..baf952c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ script: - mv tempLibraries.zip?dl=1 tempLibraries.zip - unzip tempLibraries.zip - java -jar ../../proguard6.0.3/lib/proguard.jar @proguard.pro -- mv Obfuscated/baritone-1.0.0.jar ../../baritone.jar +- mv Obfuscated/baritone-0.0.2.jar ../../baritone.jar - cd ../.. - shasum baritone.jar diff --git a/IMPACT.md b/IMPACT.md index 95dab925..3ae9a790 100644 --- a/IMPACT.md +++ b/IMPACT.md @@ -23,7 +23,7 @@ There are a few steps to this command line - Windows: ``gradlew build`` - Mac/Linux: ``./gradlew build`` -- The build should be exported into ``/build/libs/baritone-1.0.0.jar`` +- The build should be exported into ``/build/libs/baritone-X.Y.Z.jar`` ### Cutting Edge Release If you want to trust @Plutie#9079, you can download an automatically generated build of the latest commit @@ -37,9 +37,9 @@ putting baritone. - Create 3 new subdirectories starting from ``libraries`` - ``cabaletta`` - ``baritone`` - - ``1.0.0`` - - Copy the build of Baritone that was acquired earlier, and place it into the ``1.0.0`` folder - - The full path should look like ``/libraries/cabaletta/baritone/1.0.0/baritone-1.0.0.jar`` + - ``X.Y.Z`` + - Copy the build of Baritone that was acquired earlier, and place it into the ``X.Y.Z`` folder + - The full path should look like ``/libraries/cabaletta/baritone/X.Y.Z/baritone-X.Y.Z.jar`` ## Modifying the Impact Profile JSON to run baritone The final step is "registering" the Baritone library with Impact, so that it loads on launch. @@ -72,7 +72,7 @@ The final step is "registering" the Baritone library with Impact, so that it loa - Create a new object in the array, between the ``Impact`` and ``ClientAPI`` dependencies preferably. ``` { - "name": "cabaletta:baritone:1.0.0" + "name": "cabaletta:baritone:X.Y.Z" }, ``` - Now find the ``"minecraftArguments": "..."`` text near the top. diff --git a/build.gradle b/build.gradle index 3e5ecf59..e5d27891 100755 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ */ group 'baritone' -version '0.0.1' +version '0.0.2' buildscript { repositories { diff --git a/proguard.pro b/proguard.pro index aba04fec..12ea2337 100644 --- a/proguard.pro +++ b/proguard.pro @@ -1,4 +1,4 @@ --injars baritone-1.0.0.jar +-injars baritone-0.0.2.jar # idk if a wildcard would work here -outjars Obfuscated