diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000000..546c371f51e --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,4 @@ +* @runelite/developers +/package/verification-template/ @runelite/plugin-mergers +/plugins/ +/README.md diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff0a6e6d574..ed8860e092a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,23 +13,23 @@ on: push: pull_request: env: - CACHE_VERSION: 2.3.1 + CACHE_VERSION: 2.4.0 jobs: build: # any forks that predate this repo having an action will have actions # enabled by default, which will fail in a lot of cases because the branch # is new, which makes the differential build fail if: github.event_name != 'push' || github.repository_owner == 'runelite' - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: adopt java-version: 11 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.gradle/caches/ @@ -68,12 +68,12 @@ jobs: export PACKAGE_COMMIT_RANGE="${COMMIT_RANGE:-${COMMIT_BEFORE:+$COMMIT_BEFORE...$COMMIT_AFTER}}" fi exec java -XX:+UseParallelGC -cp package/package/build/libs/package.jar net.runelite.pluginhub.packager.Packager - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: manifest_diff path: /tmp/manifest_diff retention-days: 1 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ github.event_name == 'pull_request' }} with: name: jars @@ -83,22 +83,22 @@ jobs: if: (github.event_name != 'push' || github.repository_owner == 'runelite') && github.event_name != 'pull_request' needs: build concurrency: upload - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 1 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: adopt java-version: 11 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | ~/.gradle/caches/ ~/.gradle/wrapper/ key: upload-${{ env.CACHE_VERSION }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: manifest_diff path: /tmp diff --git a/LICENSE.templateplugin b/LICENSE.templateplugin index fa0eb24591c..ce491f124d9 100644 --- a/LICENSE.templateplugin +++ b/LICENSE.templateplugin @@ -1,2 +1,2 @@ -The contents of the template plugin and the output of the `create_net_plugin.py` -script are, released into the public domain unless otherwise noted. \ No newline at end of file +The contents of the template plugin and the output of the `create_new_plugin.py` +script are, released into the public domain unless otherwise noted. diff --git a/README.md b/README.md index 280605aac02..95acbc8c966 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ We recommend contributing to existing plugins if the author(s) are accepting con You may contribute to existing plugins by selecting the plugin from https://runelite.net/plugin-hub, navigating to the plugin's GitHub repository by following the "Report an issue" link, and then following the "Create new plugins" section below from step 3. ## Creating new plugins - 1. Generate your own repository from the [plugin template](https://github.com/runelite/example-plugin/generate) link. + 1. Generate your own repository from the [plugin template](https://github.com/runelite/example-plugin/generate) link (you must be signed into GitHub first). Alternatively, you may use the `create_new_plugin.py` script provided in this repository to generate a new plugin project. 2. Name your repository something appropriate, in my case I will name it `helmet-check` with the description `You should always wear a helmet.` **Make sure that your repository is set to public**. @@ -81,13 +81,20 @@ commit=9db374fc205c5aae1f99bd5fd127266076f40ec8 7. Write a short description of what your plugin does and then create your pull request. - 8. Check the result of your PR's CI workflow. With a ✔️ all is good, however if it has a ❌ next to your commit click it to check the build log for details of the failure. Once you've read over the build error, make the required changes, and push another commit to update the PR with the new `commit=` hash. + 8. Check the result of your PR's CI workflow, next to `.github/workflows/build.yml / build (pull_request)` will be either a ✔️ or an ❌. With a ✔️ all is good, however if it has an ❌, click `Details` to check the build log for details of the failure. Along with the build workflow there also may be an ❌ next to `RuneLite Plugin Hub Checks`, you will only need to worry about this if it says `View details for requested changes.`, in that case you should also read over those requested changes. Once you've read over the build error and requested changes, make the required changes, and push another commit to update the PR with the new `commit=` hash. Don't worry about how many times it takes you to resolve build errors; we prefer all changes be kept in a single pull request to avoid spamming notifications with further newly-opened PRs. 9. Be patient and wait for your plugin to be reviewed and merged. ## Updating a plugin -To update a plugin, simply update the manifest with the most recent commit hash. +To update a plugin, simply update the manifest with the most recent commit hash. + +It is recommended to open a pull request from a separate branch. You can run the following commands from your `plugin-hub` repository directory to set up a branch: +```bash +$ git remote add upstream https://github.com/runelite/plugin-hub.git # Only necessary if you have not set it before +$ git fetch upstream && git checkout -B upstream/master +``` +Once your changes have been merged, you can delete the branch. The next time you would like to update your plugin, you can create the branch again. ## Reviewing We will review your plugin to ensure it isn't malicious, doesn't [break Jagex's rules](https://secure.runescape.com/m=news/third-party-client-guidelines?oldschool=1), diff --git a/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/API.java b/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/API.java index c9e7f61feab..c4e31a921bf 100644 --- a/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/API.java +++ b/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/API.java @@ -237,6 +237,11 @@ public void recordClass(int modifiers, String descriptor) } } + public void recordClassHierarchy(String from, String superDescriptor) + { + apis.add(from + ">" + superDescriptor); + } + public void recordMethod(int modifiers, String classDescriptor, CharSequence name, String descriptor) { if (classDescriptor != null & descriptor != null) diff --git a/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/ClassRecorder.java b/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/ClassRecorder.java index 31d0f163e59..e835f648a29 100644 --- a/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/ClassRecorder.java +++ b/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/ClassRecorder.java @@ -61,6 +61,11 @@ public void visit(int version, int access, String name, String signature, String { this.className = "L" + name + ";"; api.recordClass(access, className); + api.recordClassHierarchy(this.className, "L" + superName + ";"); + for (String iface : interfaces) + { + api.recordClassHierarchy(this.className, "L" + iface + ";"); + } super.visit(version, access, name, signature, superName, interfaces); } @@ -102,7 +107,7 @@ public void recordClass(File jarFile) throws IOException } } - public static void main(String ...classes) throws IOException + public static void main(String... classes) throws IOException { var cr = new ClassRecorder(); Iterator args = List.of(classes).iterator(); diff --git a/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/RecordingTreeScanner.java b/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/RecordingTreeScanner.java index 7216fcf0853..14a96b762a9 100644 --- a/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/RecordingTreeScanner.java +++ b/package/apirecorder/src/main/java/net/runelite/pluginhub/apirecorder/RecordingTreeScanner.java @@ -25,12 +25,15 @@ package net.runelite.pluginhub.apirecorder; import com.sun.source.tree.AnnotationTree; +import com.sun.source.tree.ClassTree; import com.sun.source.tree.IdentifierTree; import com.sun.source.tree.ImportTree; +import com.sun.source.tree.MemberReferenceTree; import com.sun.source.tree.MemberSelectTree; import com.sun.source.tree.MethodInvocationTree; import com.sun.source.tree.NewClassTree; import com.sun.source.tree.PackageTree; +import com.sun.source.tree.Tree; import com.sun.source.util.JavacTask; import com.sun.source.util.TreePath; import com.sun.source.util.TreePathScanner; @@ -48,6 +51,9 @@ import javax.lang.model.element.VariableElement; import javax.lang.model.type.ArrayType; import javax.lang.model.type.DeclaredType; +import javax.lang.model.type.NoType; +import javax.lang.model.type.NullType; +import javax.lang.model.type.PrimitiveType; import javax.lang.model.type.TypeMirror; import javax.lang.model.type.TypeVariable; import javax.lang.model.util.Elements; @@ -104,28 +110,53 @@ public Void visitPackage(PackageTree node, Void unused) @Override public Void visitIdentifier(IdentifierTree node, Void unused) { - recordElement(trees.getElement(getCurrentPath())); + recordElement(trees.getElement(getCurrentPath()), null); return null; } @Override public Void visitMemberSelect(MemberSelectTree node, Void unused) { - recordElement(trees.getElement(getCurrentPath())); + TypeMirror receiver = trees.getTypeMirror(new TreePath(getCurrentPath(), node.getExpression())); + recordElement(trees.getElement(getCurrentPath()), receiver); return super.visitMemberSelect(node, unused); } @Override public Void visitMethodInvocation(MethodInvocationTree node, Void unused) { - recordElement(trees.getElement(getCurrentPath())); + recordElement(trees.getElement(getCurrentPath()), null); return super.visitMethodInvocation(node, unused); } + @Override + public Void visitMemberReference(MemberReferenceTree node, Void unused) + { + TypeMirror receiver = trees.getTypeMirror(new TreePath(getCurrentPath(), node.getQualifierExpression())); + recordElement(trees.getElement(getCurrentPath()), receiver); + return super.visitMemberReference(node, unused); + } + + @Override + public Void visitClass(ClassTree node, Void unused) + { + // it is hard to resolve the implicit receiver from this-calls to superclasses + // so record the whole hierarchy for all extends/implements clauses + if (node.getExtendsClause() != null) + { + recordFullHierarchy(trees.getElement(new TreePath(getCurrentPath(), node.getExtendsClause())).asType()); + } + for (Tree iface : node.getImplementsClause()) + { + recordFullHierarchy(trees.getElement(new TreePath(getCurrentPath(), iface)).asType()); + } + return super.visitClass(node, unused); + } + @Override public Void visitNewClass(NewClassTree node, Void unused) { - recordElement(trees.getElement(getCurrentPath())); + recordElement(trees.getElement(getCurrentPath()), null); return super.visitNewClass(node, unused); } @@ -152,30 +183,45 @@ public Void visitAnnotation(AnnotationTree node, Void unused) } @SneakyThrows - private boolean shouldRecord(Element element) + private boolean shouldRecord(TypeMirror tm) { - if (element instanceof TypeElement) + if (tm instanceof DeclaredType) { + Element e = ((DeclaredType) tm).asElement(); + // there isn't a particularly nice way to find where a symbol is resolved from in the public api - JavaFileObject classfile = ((Symbol.ClassSymbol) element).classfile; + JavaFileObject classfile = ((Symbol.ClassSymbol) e).classfile; if (classfile == null || classfile.getKind() == JavaFileObject.Kind.SOURCE) { return false; } - TypeMirror tm = element.asType(); - if (tm instanceof DeclaredType) - { - Element e = ((DeclaredType) tm).asElement(); - String fqn = elements.getBinaryName((TypeElement) e).toString(); - return jvmClassCache.computeIfAbsent(fqn, name -> - ClassLoader.getPlatformClassLoader() - .getResource(fqn.replace('.', '/') + ".class") == null); - } - else - { - unexpected(tm); - } + String fqn = elements.getBinaryName((TypeElement) e).toString(); + return jvmClassCache.computeIfAbsent(fqn, name -> + ClassLoader.getPlatformClassLoader() + .getResource(fqn.replace('.', '/') + ".class") == null); + } + else if (tm instanceof TypeVariable) + { + return shouldRecord(((TypeVariable) tm).getLowerBound()); + } + else if (tm instanceof ArrayType || tm instanceof NullType || tm instanceof NoType || tm instanceof PrimitiveType) + { + // ignored + } + else + { + unexpected(tm); + } + return false; + } + + @SneakyThrows + private boolean shouldRecord(Element element) + { + if (element instanceof TypeElement) + { + return shouldRecord(element.asType()); } else if (element instanceof PackageElement) { @@ -195,13 +241,71 @@ else if (element instanceof PackageElement) return false; } - private void recordElement(Element element) + private boolean isJLObject(TypeMirror tm) + { + tm = types.erasure(tm); + return tm instanceof DeclaredType && elements.getBinaryName((TypeElement) ((DeclaredType) tm).asElement()).contentEquals("java.lang.Object"); + } + + private void recordElement(Element element, TypeMirror receiverType) { if (element == null) { unexpected(element); } + if (receiverType != null && shouldRecord(receiverType)) + { + if (element instanceof ExecutableElement) + { + TypeMirror realRecv = element.getEnclosingElement().asType(); + + if (!isJLObject(realRecv) && !recordClassHierarchy(receiverType, realRecv)) + { + log.warn("could not find {} in {}", receiverType, realRecv); + unexpected(realRecv); + } + } + else if (element instanceof VariableElement) + { + switch (element.getKind()) + { + case FIELD: + case ENUM_CONSTANT: + TypeMirror realRecv = element.getEnclosingElement().asType(); + + if (!isJLObject(realRecv) && !recordClassHierarchy(receiverType, realRecv)) + { + log.warn("could not find {} in {}", receiverType, realRecv); + unexpected(realRecv); + } + break; + case RESOURCE_VARIABLE: + case LOCAL_VARIABLE: + case PARAMETER: + return; + default: + unexpected(element); + return; + } + } + else if (element instanceof TypeElement) + { + // Inner class ref + TypeMirror realRecv = element.getEnclosingElement().asType(); + + if (!isJLObject(realRecv) && !recordClassHierarchy(receiverType, realRecv)) + { + log.warn("could not find {} in {}", receiverType, realRecv); + unexpected(realRecv); + } + } + else + { + unexpected(element); + } + } + if (!shouldRecord(element)) { return; @@ -273,6 +377,45 @@ else if (element instanceof TypeElement) } } + private boolean recordClassHierarchy(TypeMirror from, TypeMirror target) + { + // no public api for superclass, without getting a TypeElement + if (types.isSameType(types.erasure(from), types.erasure(target))) + { + return true; + } + + boolean hit = false; + for (TypeMirror m : types.directSupertypes(from)) + { + if (recordClassHierarchy(m, target)) + { + hit = true; + if (shouldRecord(from)) + { + api.recordClassHierarchy(typeDescriptor(from), typeDescriptor(m)); + } + } + } + + return hit; + } + + private void recordFullHierarchy(TypeMirror from) + { + if (shouldRecord(from)) + { + for (TypeMirror m : types.directSupertypes(from)) + { + if (!isJLObject(m)) + { + recordFullHierarchy(m); + api.recordClassHierarchy(typeDescriptor(from), typeDescriptor(m)); + } + } + } + } + private int modifiers(Element e) { // element.getModifiers is not complete, so we use the internal api @@ -381,6 +524,6 @@ private void unexpected() partial = true; TreePath p = getCurrentPath(); for (int i = 0; p.getParentPath() != null && i < 1; p = p.getParentPath(), i++) ; - log.info("{}", PrintingScanner.print(p.getLeaf())); + log.info("{} {}", getCurrentPath().getCompilationUnit().getSourceFile().getName(), PrintingScanner.print(p.getLeaf())); } } diff --git a/package/build.gradle b/package/build.gradle index 88574e35c3a..bac869e38a2 100644 --- a/package/build.gradle +++ b/package/build.gradle @@ -35,7 +35,9 @@ allprojects { subprojects { apply plugin: "java" - sourceCompatibility = 11 + java { + sourceCompatibility = 11 + } task shadowJar(type: Jar) { archiveFileName.set archiveBaseName.get() + "." + archiveExtension.get() diff --git a/package/gradle/verification-metadata.xml b/package/gradle/verification-metadata.xml index 38417745342..6783d3ae3f1 100644 --- a/package/gradle/verification-metadata.xml +++ b/package/gradle/verification-metadata.xml @@ -1,5 +1,5 @@ - + true false @@ -129,12 +129,12 @@ - - - + + + - - + + @@ -179,12 +179,12 @@ - - - + + + - - + + @@ -192,9 +192,9 @@ - - - + + + diff --git a/package/gradle/wrapper/gradle-wrapper.jar b/package/gradle/wrapper/gradle-wrapper.jar index 41d9927a4d4..a4b76b9530d 100644 Binary files a/package/gradle/wrapper/gradle-wrapper.jar and b/package/gradle/wrapper/gradle-wrapper.jar differ diff --git a/package/gradle/wrapper/gradle-wrapper.properties b/package/gradle/wrapper/gradle-wrapper.properties index dcf5e2cb7b3..9036682bf0f 100644 --- a/package/gradle/wrapper/gradle-wrapper.properties +++ b/package/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,8 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=cd5c2958a107ee7f0722004a12d0f8559b4564c34daad7df06cffd4d12a426d0 -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip +distributionSha256Sum=682b4df7fe5accdca84a4d1ef6a3a6ab096b3efd5edf7de2bd8c758d95a93703 +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-all.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/package/gradlew b/package/gradlew index 1b6c787337f..f5feea6d6b1 100755 --- a/package/gradlew +++ b/package/gradlew @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -55,7 +57,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -80,13 +82,12 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +134,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +201,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ @@ -205,6 +217,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/package/gradlew.bat b/package/gradlew.bat index ac1b06f9382..9b42019c791 100644 --- a/package/gradlew.bat +++ b/package/gradlew.bat @@ -13,8 +13,10 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,7 +27,8 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -40,13 +43,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -56,11 +59,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -75,13 +78,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal diff --git a/package/package/build.gradle b/package/package/build.gradle index ff7d87d80c6..9355f671154 100644 --- a/package/package/build.gradle +++ b/package/package/build.gradle @@ -30,7 +30,7 @@ repositories { } dependencies { - implementation "org.gradle:gradle-tooling-api:7.4" + implementation "org.gradle:gradle-tooling-api:8.10" implementation "org.slf4j:slf4j-simple:1.7.10" implementation "com.google.code.findbugs:jsr305:3.0.2" implementation "com.google.guava:guava:23.2-jre" diff --git a/package/package/src/main/resources/net/runelite/pluginhub/packager/disallowed-apis.txt b/package/package/src/main/resources/net/runelite/pluginhub/packager/disallowed-apis.txt index 852fd916986..c1ddbdd38a8 100644 --- a/package/package/src/main/resources/net/runelite/pluginhub/packager/disallowed-apis.txt +++ b/package/package/src/main/resources/net/runelite/pluginhub/packager/disallowed-apis.txt @@ -17,6 +17,9 @@ Lcom/google/gson/GsonBuilder;.()V:b /^Lnet/runelite/api/widgets/WidgetInfo;/ /^Lnet/runelite/api/widgets/WidgetID/ +# Use the overloaded getItemStats(int itemId) method instead +Lnet/runelite/client/game/ItemManager;.getItemStats(IZ)Lnet/runelite/http/api/item/ItemStats;:b + # Lnet/runelite/client/account/AccountClient;.()V:gs Lnet/runelite/client/account/AccountClient;.login(I)Lnet/runelite/http/api/account/OAuthResponse;:b diff --git a/package/verification-template/build.gradle b/package/verification-template/build.gradle index 66c042a2a1e..eec0fd2e8a7 100644 --- a/package/verification-template/build.gradle +++ b/package/verification-template/build.gradle @@ -20,6 +20,9 @@ dependencies { core "org.projectlombok:lombok:1.18.30" core "org.jetbrains:annotations:23.0.0" + thirdParty("org.xerial:sqlite-jdbc:3.46.0.0") { + because "quest-voiceover" + } thirdParty("org.zeromq:jnacl:0.1.0") { because "keepass-xc" } @@ -69,6 +72,7 @@ dependencies { thirdParty("org.json:json:20090211") { because "gimptracker" } + thirdParty("com.google.apis:google-api-services-sheets:v4-rev581-1.25.0") { because "elysiumevents-plugin" exclude group: 'com.google.guava' diff --git a/package/verification-template/gradle/verification-metadata.xml b/package/verification-template/gradle/verification-metadata.xml index e0c811324ed..29b67eea578 100644 --- a/package/verification-template/gradle/verification-metadata.xml +++ b/package/verification-template/gradle/verification-metadata.xml @@ -1227,5 +1227,13 @@ + + + + + + + + diff --git a/plugins/117hd b/plugins/117hd index 8b45b17a113..c69352b9a6b 100644 --- a/plugins/117hd +++ b/plugins/117hd @@ -1,3 +1,3 @@ repository=https://github.com/117HD/RLHD.git -commit=60276679eaeb7c8be9e8d83a368cdc015576a538 +commit=be10c909f8004c721f508f32481ec0b6da2c6538 authors=RS117,sosodev,ahooder diff --git a/plugins/acoldone-clogging b/plugins/acoldone-clogging index 04d45957aab..ef80383e07a 100644 --- a/plugins/acoldone-clogging +++ b/plugins/acoldone-clogging @@ -1,2 +1,2 @@ repository=https://github.com/OmbudRov/AColdOne-Clogging.git -commit=67aeab2247aaf3bf726623ba526a6c3292217364 +commit=dcbc982d62147cb5206911fb8d262e99f47b6286 diff --git a/plugins/action-logger b/plugins/action-logger new file mode 100644 index 00000000000..56e42bb9c30 --- /dev/null +++ b/plugins/action-logger @@ -0,0 +1,3 @@ +repository=https://github.com/pajlads/ActionLogger.git +commit=2d7b8c7120537d66a1c6a1071544202936fb1a86 +authors=pajlada diff --git a/plugins/action-progress b/plugins/action-progress index 5b3d7921d68..2fc85794fcf 100644 --- a/plugins/action-progress +++ b/plugins/action-progress @@ -1,2 +1,2 @@ repository=https://github.com/guillaume009/runelite-plugin-action-progress.git -commit=3f74173179583a648ddfd5db02c20e9572db5357 +commit=41a468d3014e35fb12a7abf910ca1949b641bce5 diff --git a/plugins/advanced-mining b/plugins/advanced-mining index 69845fe48f4..cba138b6ad4 100644 --- a/plugins/advanced-mining +++ b/plugins/advanced-mining @@ -1,2 +1,2 @@ repository=https://github.com/a-h-designs/Advanced-Mining.git -commit=2bb421668497a32500ca439521a1241e2c8a2656 +commit=ae38f37d7f3cfbb1b665c973d6ac368228e02fbf diff --git a/plugins/aerial-fishing-pearl-luck b/plugins/aerial-fishing-pearl-luck new file mode 100644 index 00000000000..f4b5a842780 --- /dev/null +++ b/plugins/aerial-fishing-pearl-luck @@ -0,0 +1,2 @@ +repository=https://github.com/H4waiianPunch/Pearl-Luck-Tracker.git +commit=b29b7b10cb813fae361feb03a12c64bb5e42f851 diff --git a/plugins/affirmations b/plugins/affirmations new file mode 100644 index 00000000000..ddc4f3b5ce9 --- /dev/null +++ b/plugins/affirmations @@ -0,0 +1,2 @@ +repository=https://github.com/ChrissyKins/runelite_affirmations.git +commit=5d976fee5ff158b063370b01a109ef51d90cf2ce diff --git a/plugins/afk-marks-canafis b/plugins/afk-marks-canafis index 04efefdb221..671d5261632 100644 --- a/plugins/afk-marks-canafis +++ b/plugins/afk-marks-canafis @@ -1,2 +1,2 @@ repository=https://github.com/powerus117/RLAfkMarksCanafis.git -commit=020a9488957f913e3452e3b6e88529961e96c123 +commit=bc2aaa1c9e4cf3f432fcf90cef1e82061e2efbf5 diff --git a/plugins/afk-threshold b/plugins/afk-threshold index 3d98508aad5..61286b559d7 100644 --- a/plugins/afk-threshold +++ b/plugins/afk-threshold @@ -1,2 +1,2 @@ repository=https://github.com/Velite12/AFK_threshold.git -commit=22efc1386309e19847d9db411cae29c636b1814d +commit=e46660df2a2b714abbacd468a695535ff5ac7e72 diff --git a/plugins/agility-pyramid-slider-block-timer b/plugins/agility-pyramid-slider-block-timer index de67f1c771a..a6c8beeda93 100644 --- a/plugins/agility-pyramid-slider-block-timer +++ b/plugins/agility-pyramid-slider-block-timer @@ -1,2 +1,2 @@ repository=https://github.com/WesleyM77/agility-pyramid-slider-block-timer.git -commit=cdd2b7c64b479a8b4e20e4464aaba4933fd6ea34 +commit=08e99c4bb39a2e4b5fc6f4436e463502df1ea8cd diff --git a/plugins/altar-of-net b/plugins/altar-of-net index d510cfff17e..31d5c6a5c4a 100644 --- a/plugins/altar-of-net +++ b/plugins/altar-of-net @@ -1,2 +1,3 @@ repository=https://github.com/GabrielReyes136/altar-of-net.git commit=724eb2d7079fb2d493770e12852742a48cd3c0ef +disabled=deleted by author \ No newline at end of file diff --git a/plugins/altered-stats b/plugins/altered-stats index 13a9d2fed85..e597a04fe9c 100644 --- a/plugins/altered-stats +++ b/plugins/altered-stats @@ -1,2 +1,3 @@ repository=https://github.com/JasonDahn/altered-stats.git commit=56ec58e86bc7a47da48e440e09552ab58e47989f +disabled=true \ No newline at end of file diff --git a/plugins/amulet-of-chemistry-alerter b/plugins/amulet-of-chemistry-alerter index d2128f22658..136b68890db 100644 --- a/plugins/amulet-of-chemistry-alerter +++ b/plugins/amulet-of-chemistry-alerter @@ -1,2 +1,2 @@ repository=https://github.com/josmoo/AmuletOfChemistryAlerter.git -commit=ab62b82d33ba3eef2a759b4fa5e1d3591c58374a +commit=48400b9c9ed59f283aa2d4238f4d192cf6a5e3c6 diff --git a/plugins/animation-transmog b/plugins/animation-transmog index c8744cc4abd..7b2e277e653 100644 --- a/plugins/animation-transmog +++ b/plugins/animation-transmog @@ -1,2 +1,2 @@ repository=https://github.com/BarelyFunctionalCode/animation-transmog.git -commit=e80087d357c252dfb844d3e84c4ca1af21d207e9 \ No newline at end of file +commit=e9fff2a1a0bf077398575e1321b4f69c10aaab6e \ No newline at end of file diff --git a/plugins/annoyance-mute b/plugins/annoyance-mute index 5f9f0086670..08eb9546ee1 100644 --- a/plugins/annoyance-mute +++ b/plugins/annoyance-mute @@ -1,3 +1,3 @@ repository=https://github.com/Broooklyn/runelite-external-plugins.git -commit=df20bd7c39a4616ce4311bfb7fab8c8d210ffdee +commit=684ed48366abca52658dce3a8f27afaa78cb2cde authors=jzomdev \ No newline at end of file diff --git a/plugins/another-bronzeman-mode b/plugins/another-bronzeman-mode index c912280d47d..dd532c5d0e2 100644 --- a/plugins/another-bronzeman-mode +++ b/plugins/another-bronzeman-mode @@ -1,2 +1,2 @@ repository=https://github.com/CodePanter/another-bronzeman-mode.git -commit=2b326dfd7778143dbc66899b7707fee6cfc841bf +commit=a4d349693ea49bd95250f5e4801740fe097d638b diff --git a/plugins/antifire-checker b/plugins/antifire-checker new file mode 100644 index 00000000000..6fc7ff14df3 --- /dev/null +++ b/plugins/antifire-checker @@ -0,0 +1,2 @@ +repository=https://github.com/sariyamelody/antifire-checker.git +commit=a4d1c91d0e5f78ae57a1111ec5aa005329ac7d70 diff --git a/plugins/attack-ranges b/plugins/attack-ranges new file mode 100644 index 00000000000..41cb2fd64e9 --- /dev/null +++ b/plugins/attack-ranges @@ -0,0 +1,2 @@ +repository=https://github.com/tylerwgrass/attack-ranges.git +commit=d3f5b2647534ae27db11e5c8a903895398ed50a1 diff --git a/plugins/attacktimer b/plugins/attacktimer index 5fda374ee7d..81ec3c3f701 100644 --- a/plugins/attacktimer +++ b/plugins/attacktimer @@ -1,2 +1,2 @@ repository=https://github.com/ngraves95/attacktimer.git -commit=d97172936b4e8f82ecdbb1666e9cd2634aa50e30 +commit=5049ea52853ed4e29fac5d0ec5f47e55be439bb4 diff --git a/plugins/audiblelootnotification b/plugins/audiblelootnotification index 44d0edacb11..b628d2b2b24 100644 --- a/plugins/audiblelootnotification +++ b/plugins/audiblelootnotification @@ -1,2 +1,2 @@ repository=https://github.com/Pfannaa/AudibleLootNotification.git -commit=a2b19f089a3d06523b5889d259aa8d674efb8c89 +commit=c5350590d5d0cd14128d6b717c9567bb0357a18e \ No newline at end of file diff --git a/plugins/autotags b/plugins/autotags new file mode 100644 index 00000000000..c08ad1f073a --- /dev/null +++ b/plugins/autotags @@ -0,0 +1,3 @@ +repository=https://github.com/i/rl-plugins.git +commit=dc55666acf00ae76b3efb7252455932dd3fb3637 +disabled=unmaintained \ No newline at end of file diff --git a/plugins/average-total-level b/plugins/average-total-level new file mode 100644 index 00000000000..11054bcb2bb --- /dev/null +++ b/plugins/average-total-level @@ -0,0 +1,2 @@ +repository=https://github.com/SamuelDev/average-total-level.git +commit=12ace123b7df7743f296a5a773edd9101bd8f4aa diff --git a/plugins/ba-minigame b/plugins/ba-minigame index 8710fe738b6..57b9bbcbfca 100644 --- a/plugins/ba-minigame +++ b/plugins/ba-minigame @@ -1,3 +1,3 @@ repository=https://github.com/SkylerPIlot/Ba-Minigame.git -commit=2c798f3e1d5d903781280282306baa69a4e58650 +commit=e26da27b008e5de7684a8a85a0c65ca57854d516 authors=SkylerPIlot,ransty,equirs diff --git a/plugins/ba-tiles b/plugins/ba-tiles index 8961e9cacb3..a9ce43808fa 100644 --- a/plugins/ba-tiles +++ b/plugins/ba-tiles @@ -1,2 +1,2 @@ repository=https://github.com/96jonesa/ba-tiles.git -commit=16727036f297622988b35835a70ee04dd9360d3d +commit=62e3f073537a35c07122caf06a0b8ad7e9af8840 diff --git a/plugins/ban-list-export b/plugins/ban-list-export new file mode 100644 index 00000000000..8a433ded7a5 --- /dev/null +++ b/plugins/ban-list-export @@ -0,0 +1,2 @@ +repository=https://github.com/P2GR/ban-list-export.git +commit=2f86ec7abe1f41a17c0c6c9136deac6374c44e8a diff --git a/plugins/bank-black-list b/plugins/bank-black-list index b092ab7c92d..89e4e99c5f7 100644 --- a/plugins/bank-black-list +++ b/plugins/bank-black-list @@ -1,2 +1,3 @@ repository=https://github.com/spektrum1/bank-black-list.git -commit=bf305054f9d2689c7b8883803b8f0c0ca7523d25 +commit=434cacda96d2d46b757f6f083e9f8f4c73a0ee25 + diff --git a/plugins/bank-heatmap b/plugins/bank-heatmap index 8b2cdcc8c88..0f42ce6407b 100644 --- a/plugins/bank-heatmap +++ b/plugins/bank-heatmap @@ -1,2 +1,2 @@ repository=https://github.com/raiyni/example-plugin.git -commit=716df968d0f6b72060c2424d248b1b52d3669988 +commit=f161d0b747da6af738ec00469bc6348244b75ef3 diff --git a/plugins/bank-highlighter b/plugins/bank-highlighter new file mode 100644 index 00000000000..e901456400e --- /dev/null +++ b/plugins/bank-highlighter @@ -0,0 +1,2 @@ +repository=https://github.com/Evamist/Bank-Highlighter.git +commit=5adca8bb16a52913b4585865d0e8216db6bb5e4f diff --git a/plugins/bank-locks b/plugins/bank-locks new file mode 100644 index 00000000000..93ac573405e --- /dev/null +++ b/plugins/bank-locks @@ -0,0 +1,3 @@ +repository=https://github.com/vartan/bank-locks.git +commit=3077e4b0647ec90ef572ccd2332f1caa72dea48c +authors=Vartan diff --git a/plugins/bank-multisearch b/plugins/bank-multisearch index e3490fdbaec..39fd2385a85 100644 --- a/plugins/bank-multisearch +++ b/plugins/bank-multisearch @@ -1,2 +1,2 @@ repository=https://github.com/geheur/bank-multisearch.git -commit=551d3b150a55e3e4aa8069bab7e4e5d3e0b03813 +commit=49947144537f38ccfcd29d67b56a60d13659cffe diff --git a/plugins/bank-tag-generation b/plugins/bank-tag-generation index ce51422b624..bd599b36e7e 100644 --- a/plugins/bank-tag-generation +++ b/plugins/bank-tag-generation @@ -1,2 +1,2 @@ repository=https://github.com/MitchBarnett/wiki-bank-tag-integration.git -commit=233f143f9994558bb44696411eccc6fd74d92d88 +commit=89e7e3151d8b462764e7cc06007f32442665112b diff --git a/plugins/bank-tag-layouts b/plugins/bank-tag-layouts index 6da62888aaa..099bc4aa816 100644 --- a/plugins/bank-tag-layouts +++ b/plugins/bank-tag-layouts @@ -1,2 +1,2 @@ repository=https://github.com/geheur/bank-tag-custom-layouts.git -commit=2f9300c71a9098195a83a9aa76e57a88c659252c +commit=a9c5d47dc6b18cca745097cfabb17c1469202eb8 diff --git a/plugins/banked-experience b/plugins/banked-experience index b64e557928b..63da30a7468 100644 --- a/plugins/banked-experience +++ b/plugins/banked-experience @@ -1,2 +1,2 @@ repository=https://github.com/TheStonedTurtle/banked-experience.git -commit=6142dc9b6aff8b4894e391fb827869a538c43438 +commit=1cf7c9096a696b835f3f60cb260a569f2f40bcb4 diff --git a/plugins/barrows-potential b/plugins/barrows-potential index d1b221345d2..b913e11bc57 100644 --- a/plugins/barrows-potential +++ b/plugins/barrows-potential @@ -1,2 +1,2 @@ repository=https://github.com/Godofdrakes/barrows-potential.git -commit=4afcfc988c92cb300e094c5a5da3dcc7c6c5006b +commit=45d2eddeedb37ebe1875988c73bd0cc3e441339a diff --git a/plugins/better-godwars-overlay b/plugins/better-godwars-overlay index 39bc5f33e79..044b77475ec 100644 --- a/plugins/better-godwars-overlay +++ b/plugins/better-godwars-overlay @@ -1,2 +1,2 @@ -repository=https://github.com/Adam-/runelite-plugins.git -commit=bdc119f6e42a30d36b6c9598a26858c463376e1d +repository=https://github.com/abd-khrubi/better-godwars-overlay.git +commit=a7da67b9bddf5b14aeb54d789b1dfe02965d473f diff --git a/plugins/better-npc-highlight b/plugins/better-npc-highlight index 2985b1819ee..4d0f731b085 100644 --- a/plugins/better-npc-highlight +++ b/plugins/better-npc-highlight @@ -1,2 +1,2 @@ repository=https://github.com/MoreBuchus/buchus-plugins.git -commit=6234efee14c30ace2e338953b791941a04dffe54 +commit=13e834f81aa6d37cd22d6bd385bd6c7feefdd290 diff --git a/plugins/better-teleport-menu b/plugins/better-teleport-menu index 5a8e899075d..fdd7da9fb36 100644 --- a/plugins/better-teleport-menu +++ b/plugins/better-teleport-menu @@ -1,2 +1,2 @@ repository=https://github.com/abextm/better-teleport-menu.git -commit=1d1943950bb86373ddda4c76978174b1f544d9fb +commit=3ae74d7656249be122a8423d681720cf40434976 diff --git a/plugins/bingo-helper b/plugins/bingo-helper new file mode 100644 index 00000000000..b1721f4810e --- /dev/null +++ b/plugins/bingo-helper @@ -0,0 +1,2 @@ +repository=https://github.com/IronEvil478/Bingo-Helper.git +commit=4313d1259b35857df4712b65bfee7838bb00441f \ No newline at end of file diff --git a/plugins/block-tracker b/plugins/block-tracker new file mode 100644 index 00000000000..b7278813804 --- /dev/null +++ b/plugins/block-tracker @@ -0,0 +1,2 @@ +repository=https://github.com/1Defence/block-tracker.git +commit=473784a89f2a6a65066b1df7bbb01ed7fff50a18 diff --git a/plugins/boaty-hype-man b/plugins/boaty-hype-man index f528e8c69b2..2bbad8618da 100644 --- a/plugins/boaty-hype-man +++ b/plugins/boaty-hype-man @@ -1,2 +1,2 @@ repository=https://github.com/Devdeve/boatyHypeMan-plugin.git -commit=8ed3c0a2483be998a56a90cb74a1d09e15f47b62 +commit=4bd18735110742d818169e9314e1747174776336 diff --git a/plugins/boss-voicer b/plugins/boss-voicer new file mode 100644 index 00000000000..248e1533415 --- /dev/null +++ b/plugins/boss-voicer @@ -0,0 +1,3 @@ +repository=https://github.com/GaelL42/boss_voicer.git +commit=46efb22d948a3a969011e16fb74c572f466b3c73 +authors=GaelL42 diff --git a/plugins/bot-detector b/plugins/bot-detector index b37d9ea8f8e..1a7f041735c 100644 --- a/plugins/bot-detector +++ b/plugins/bot-detector @@ -1,4 +1,4 @@ repository=https://github.com/Bot-detector/bot-detector.git -commit=68671209154a2e000917031a041c45070cc1092b +commit=d935825f817d1a96345742ca219fd1ddaaf23879 warning=This plugin submits the names, locations, and gear of encountered Players, and your IP address to a 3rd party website not controlled or verified by the RuneLite Developers. authors=Ferrariic,Cyborger1 diff --git a/plugins/bracelet-reminder b/plugins/bracelet-reminder new file mode 100644 index 00000000000..11274bfcf76 --- /dev/null +++ b/plugins/bracelet-reminder @@ -0,0 +1,2 @@ +repository=https://github.com/chocobo-s/Slaughter-bracelet-reminder.git +commit=6dfcc4a2e7342ea9d9b9254926580b120166f786 diff --git a/plugins/brewing b/plugins/brewing index 5006978c795..56e4fd905c7 100644 --- a/plugins/brewing +++ b/plugins/brewing @@ -1,2 +1,2 @@ repository=https://github.com/InfernoStats/Brewing.git -commit=f5316834d8ba04d86cdf8d826d83254c5d4a083d +commit=9bbe2bfa047b8e29fe349850ce266d48cbc14da5 diff --git a/plugins/c-engineer-completed b/plugins/c-engineer-completed index 756666f00fb..62b642e31e5 100644 --- a/plugins/c-engineer-completed +++ b/plugins/c-engineer-completed @@ -1,2 +1,2 @@ repository=https://github.com/m0bilebtw/c-engineer-completed.git -commit=6a5df390ee30e34feb8b450fbe17eb13b62ea624 +commit=4393ce760bd17c0407bc2ff2e727a0acd0d7ea2d diff --git a/plugins/casket-saver b/plugins/casket-saver new file mode 100644 index 00000000000..297c6a910b5 --- /dev/null +++ b/plugins/casket-saver @@ -0,0 +1,3 @@ +repository=https://github.com/Notespeon/casket-saver.git +commit=2d402fa397ed8b3c1f8e0f556d024f1a92c5181e +authors=Notespeon,TheLope diff --git a/plugins/castle-war-afk b/plugins/castle-war-afk new file mode 100644 index 00000000000..a71673d1536 --- /dev/null +++ b/plugins/castle-war-afk @@ -0,0 +1,2 @@ +repository=https://github.com/Togtja/castle_war_afk.git +commit=0e28878877152a5c209ebd80130c575f806948d1 \ No newline at end of file diff --git a/plugins/cc-watcher b/plugins/cc-watcher index c290a91d5c1..8287d5789a3 100644 --- a/plugins/cc-watcher +++ b/plugins/cc-watcher @@ -1,2 +1,3 @@ repository=https://github.com/ryanjpwatts/chat-channel-watcher.git -commit=5fdb19eac02d08a4379c298b148d3d513864a19f \ No newline at end of file +commit=5fdb19eac02d08a4379c298b148d3d513864a19f +disabled=deleted by author \ No newline at end of file diff --git a/plugins/cg-recolor b/plugins/cg-recolor index 826a4f33f8c..47ac384bf20 100644 --- a/plugins/cg-recolor +++ b/plugins/cg-recolor @@ -1,2 +1,3 @@ repository=https://github.com/denaelc/gauntlet-recolor.git commit=bebcd9ca906e44932fb560754825b3be454a90e8 +disabled=Requires bugfix diff --git a/plugins/chat-logger b/plugins/chat-logger index 81b13f6c60a..dfe21531694 100644 --- a/plugins/chat-logger +++ b/plugins/chat-logger @@ -1,4 +1,4 @@ repository=https://github.com/hex-agon/chat-logger.git -commit=1dd894299a9c32ee7ee49335f5828b14119f47cb +commit=26b6db57bdfd27c0c68e28a728aa8064da79bd8e authors=Hexagon,Sololegends warning=This plugin may submit all your channel or clan chat messages and your IP address to a 3rd party website not controlled or verified by the RuneLite Developers. diff --git a/plugins/chat-success-rates b/plugins/chat-success-rates index e4f6d363e3e..059fcfe06d0 100644 --- a/plugins/chat-success-rates +++ b/plugins/chat-success-rates @@ -1,2 +1,2 @@ repository=https://github.com/Skretzo/runelite-plugins.git -commit=f5da9678031bd154fbde93b57c43d00c0a1d5194 +commit=917c971ef4b6651cceaed377d0c4549ae90ae80f diff --git a/plugins/chat-translator b/plugins/chat-translator index 4c50586daa0..a72f0023b6f 100644 --- a/plugins/chat-translator +++ b/plugins/chat-translator @@ -1,3 +1,2 @@ -repository=https://github.com/simbleau/chat-translator.git -commit=d3c5b0cd32c77f0eaafdf8087d6cd8eb537b2c05 -disabled=unmaintained \ No newline at end of file +repository=https://github.com/archiru/chat-translator.git +commit=113a8e581e4d0a72425f6f1b49cae2effba01999 diff --git a/plugins/chatpanel b/plugins/chatpanel index 0c984b0c000..d62392f9b84 100644 --- a/plugins/chatpanel +++ b/plugins/chatpanel @@ -1,3 +1,3 @@ repository=https://github.com/Yenof/Chat-Panel.git -commit=d718a36dd93f9647dca0a9b523acea05e466c6bf +commit=8e18f46f53107ebc0de4d4b74386ff27e210f3d2 authors=Yenof diff --git a/plugins/chinbompa b/plugins/chinbompa index 09878063638..7a9e2c430fe 100644 --- a/plugins/chinbompa +++ b/plugins/chinbompa @@ -1,2 +1,2 @@ repository=https://github.com/Adam-/runelite-plugins.git -commit=222c244bec46794da9539202c34b5268ea83da62 +commit=e8eb028d90bb459264e9892eba4c1e19a8481d71 diff --git a/plugins/chompy-hunter b/plugins/chompy-hunter index d0313a9620b..49b9cea8317 100644 --- a/plugins/chompy-hunter +++ b/plugins/chompy-hunter @@ -1,2 +1,2 @@ repository=https://github.com/PJGJ210/chompy-hunter.git -commit=60e207650c0980b730c14da856ec090834b19560 +commit=94dfd6bd5f4ee64fa5bd6703e873f4d742a81b3a diff --git a/plugins/chugging-barrel b/plugins/chugging-barrel new file mode 100644 index 00000000000..d8d4dfa97c7 --- /dev/null +++ b/plugins/chugging-barrel @@ -0,0 +1,2 @@ +repository=https://github.com/Syhlex/chugging-barrel.git +commit=bf72fd652423842b892a0e0f36a5a2bb71fc60f6 diff --git a/plugins/chunk-tasks b/plugins/chunk-tasks new file mode 100644 index 00000000000..df85bc04678 --- /dev/null +++ b/plugins/chunk-tasks @@ -0,0 +1,2 @@ +repository=https://github.com/nathanreidok/chunk-tasks.git +commit=8b9212fd14367c64afb8394a54bf50bafbe46419 diff --git a/plugins/citizens b/plugins/citizens index ad7507c8fa4..8e6d0ac3fdf 100644 --- a/plugins/citizens +++ b/plugins/citizens @@ -1,3 +1,4 @@ repository=https://github.com/gc/citizens.git commit=83020312e566b8135606524694de08d1f1292291 authors=Magnaboy,Diabolickal +unavailable=This plugin is incompatible with the latest RuneLite version, and requires its author to update it. diff --git a/plugins/clan-activity-tracker b/plugins/clan-activity-tracker index 52139a300da..7e9a1068861 100644 --- a/plugins/clan-activity-tracker +++ b/plugins/clan-activity-tracker @@ -1,2 +1,2 @@ repository=https://github.com/Phobos97/clan-activity-tracker.git -commit=faee2e1660a3c2c110d240fa159d8369e37de997 +commit=bf34192168d4a25341a20007cd223f26a162c651 diff --git a/plugins/clan-halls-plugin b/plugins/clan-halls-plugin new file mode 100644 index 00000000000..0d5ca5556d9 --- /dev/null +++ b/plugins/clan-halls-plugin @@ -0,0 +1,3 @@ +repository=https://github.com/raphpion/clan-halls-plugin.git +commit=c0cf1b8071bed0cbea733875c2c08ce8b24e7ce8 +warning=This plugin sends your IP address, members' names and ranks, as well as the name and titles of your clan chat, to clanhalls.net, a third-party website not controlled or verified by the RuneLite developers. diff --git a/plugins/clan-member-list-sort b/plugins/clan-member-list-sort index bdea8e01e9f..79a938247d1 100644 --- a/plugins/clan-member-list-sort +++ b/plugins/clan-member-list-sort @@ -1,2 +1,2 @@ repository=https://github.com/erwinvc/runelite-plugins.git -commit=6be3790bf370c6d5c372bb8a1a1bfd03e235e585 \ No newline at end of file +commit=0a9a127ba594f03bb74d05be87bb00ce1b0ea9d8 \ No newline at end of file diff --git a/plugins/clear-unsent-messages b/plugins/clear-unsent-messages index 7e0d0dd3800..5761d2a0c9c 100644 --- a/plugins/clear-unsent-messages +++ b/plugins/clear-unsent-messages @@ -1,2 +1,2 @@ repository=https://github.com/lightningboltemoji/clear-unsent-messages.git -commit=fe2dc6fdc3d2caa547f2ca13584c98e6ef165109 +commit=bff43b839a1b0095cb291af2723262baaec2e91e diff --git a/plugins/click-minimap-orbs b/plugins/click-minimap-orbs index b4a15c9d138..4c42e1637e6 100644 --- a/plugins/click-minimap-orbs +++ b/plugins/click-minimap-orbs @@ -1,2 +1,2 @@ repository=https://github.com/Macweese/runelite-external-plugins.git -commit=1c6475b9c5ece741364319adf6d589a3c019b951 +commit=aa0623b3920d8c2cebd23964ab89c0aa97a85014 diff --git a/plugins/click-to-minimize b/plugins/click-to-minimize index b3d7b1c375b..9b8349ba6af 100644 --- a/plugins/click-to-minimize +++ b/plugins/click-to-minimize @@ -1,2 +1,2 @@ repository=https://github.com/WaylonJ/OSRS_ClickToMinimize.git -commit=60aecc3d610ea0a1ae63352627299dea3dd1df06 +commit=2accc6cffee372e10e9fc91c98d1f0dba4925877 diff --git a/plugins/clue-details b/plugins/clue-details index 2391d5d6700..61c4243fb7f 100644 --- a/plugins/clue-details +++ b/plugins/clue-details @@ -1,2 +1,2 @@ repository=https://github.com/Zoinkwiz/clue-details.git -commit=47191b41264ba76f0d2e12bf6acabc671e054fb6 \ No newline at end of file +commit=2eb001da71be7d039527fbfae066bd124c29f04b \ No newline at end of file diff --git a/plugins/clue-scroll-notifier b/plugins/clue-scroll-notifier new file mode 100644 index 00000000000..fdabcfd8357 --- /dev/null +++ b/plugins/clue-scroll-notifier @@ -0,0 +1,2 @@ +repository=https://github.com/SoaresPT/clue-scroll-notifier.git +commit=956c35eaefdfdf116dec5a58998e106112a7e5b5 diff --git a/plugins/clue-steps b/plugins/clue-steps index 91e3b2b633c..c92b5e51b28 100644 --- a/plugins/clue-steps +++ b/plugins/clue-steps @@ -1,2 +1,2 @@ repository=https://github.com/SkyBouncer/clue_step_tracker.git -commit=e724a07b7bc1804551435658c27a0864483ced67 +commit=6af670aa2330ff846a3182a2c75950b758b738a5 diff --git a/plugins/collection-log-luck b/plugins/collection-log-luck index ee65e39470e..e46f29d001b 100644 --- a/plugins/collection-log-luck +++ b/plugins/collection-log-luck @@ -1,3 +1,3 @@ repository=https://github.com/peanubnutter/collection-log-luck.git -commit=6ff547a41a49478db2cd39552e66e5f73176a9b7 +commit=ce64446183cc286b8b686f39115d9c41a6e489d8 warning=This plugin submits your username and IP address to a server not controlled or verified by the RuneLite developers. diff --git a/plugins/combat-logger b/plugins/combat-logger index 9158d839fed..859a16c2b20 100644 --- a/plugins/combat-logger +++ b/plugins/combat-logger @@ -1,2 +1,2 @@ repository=https://github.com/SuperNerdEric/combat-logger.git -commit=78c77e70c7ab647b883de9335f9b00583c239bfb +commit=3396b7e6da0e3418255f57844e5690401dbf3833 diff --git a/plugins/combatstyleicons b/plugins/combatstyleicons index 658ce069fd9..f22684f2c96 100644 --- a/plugins/combatstyleicons +++ b/plugins/combatstyleicons @@ -1,3 +1,4 @@ repository=https://github.com/EnzinGit/CombatStyleIcons.git commit=135026fa9775250fe3b8ba3e765e4fdf502c6cce authors=Enzin +disabled=unmaintained \ No newline at end of file diff --git a/plugins/compass-camera-control b/plugins/compass-camera-control new file mode 100644 index 00000000000..547ef5b5fc3 --- /dev/null +++ b/plugins/compass-camera-control @@ -0,0 +1,2 @@ +repository=https://github.com/RaazKH/CompassCameraControl.git +commit=63af9b3e322f148dee2a8ca6102d95a6130f5034 diff --git a/plugins/cooking-buddy b/plugins/cooking-buddy new file mode 100644 index 00000000000..21ffe95bdc7 --- /dev/null +++ b/plugins/cooking-buddy @@ -0,0 +1,3 @@ +repository=https://github.com/MapleBytes/CookingBuddy.git +commit=db4a8f2f58c55acd92a43f5f46935d969eb8f6fa + diff --git a/plugins/corp-ffa07 b/plugins/corp-ffa07 index 09bc373f185..d3bbcacdc4f 100644 --- a/plugins/corp-ffa07 +++ b/plugins/corp-ffa07 @@ -1,2 +1,2 @@ repository=https://github.com/Box-Of-Hats/runelite-plugin-corp-ffa.git -commit=8bd9d09a535df4d19e751cd17d73ebddde53da92 +commit=519a4ab4a5f28442eec0dd3ace986d433220223b diff --git a/plugins/costume-room-highlighter b/plugins/costume-room-highlighter index bd2c87cd60e..d89d649f9e5 100644 --- a/plugins/costume-room-highlighter +++ b/plugins/costume-room-highlighter @@ -1,2 +1,2 @@ repository=https://github.com/michaelperino/CostumeRoomChecker.git -commit=96129c6b51f3faee3deedfc85624301bfe8b5112 +commit=595ad182c1918023162b6c99321665f3b9e0aad2 diff --git a/plugins/cox-additions b/plugins/cox-additions index 98de91087c8..4150c2366e6 100644 --- a/plugins/cox-additions +++ b/plugins/cox-additions @@ -1,3 +1,3 @@ repository=https://github.com/dey0/pluginhub-plugins.git -commit=7be3da46c9eb5ab50650c71f8d648cd2c6b956b3 +commit=3a50e2a7c9d3427106e0f6dfed86d6ed967ea711 authors=dey0,umer-rs diff --git a/plugins/cox-scouting-qol b/plugins/cox-scouting-qol index 1860bcd1ba0..fc723bbd4e3 100644 --- a/plugins/cox-scouting-qol +++ b/plugins/cox-scouting-qol @@ -1,2 +1,2 @@ repository=https://github.com/Filofteia/FilosPlugins.git -commit=82a5f59806e2b0692aa41a410997921a6d4be0c6 +commit=51af1097bba1254544c60701ee362e34adef7d62 diff --git a/plugins/crabman-group-bronzeman-plugin b/plugins/crabman-group-bronzeman-plugin new file mode 100644 index 00000000000..f6c1177d2ba --- /dev/null +++ b/plugins/crabman-group-bronzeman-plugin @@ -0,0 +1,2 @@ +repository=https://github.com/mvdicarlo/osrs-crabman-mode.git +commit=f6e23c2a6e6cfd2dcd52bfa61d77383ae4f732d3 diff --git a/plugins/creators-kit b/plugins/creators-kit index 3a853a16132..cf41006ad88 100644 --- a/plugins/creators-kit +++ b/plugins/creators-kit @@ -1,2 +1,2 @@ repository=https://github.com/ScreteMonge/creators-kit.git -commit=ee4580b5793df6d1bd209b37c3dd0c1a627c6155 +commit=c952fcbca9d42fd49b8c716878e66024740bd9dd diff --git a/plugins/crop-circle-tracker b/plugins/crop-circle-tracker index ddfd6d08dcd..c28f655cbac 100644 --- a/plugins/crop-circle-tracker +++ b/plugins/crop-circle-tracker @@ -1,3 +1,3 @@ repository=https://github.com/mattjrumble/crop-circle-tracker-plugin.git -commit=195b75d98cfe1ba4806ccbc1a583d2095a5d0840 +commit=f8f40b62f69f02b076f9b186b3101703de54338a warning=This plugin submits your IP address to a server not controlled or verified by the RuneLite developers. diff --git a/plugins/csvexport b/plugins/csvexport index d8bfda83caf..564609471fa 100644 --- a/plugins/csvexport +++ b/plugins/csvexport @@ -1,2 +1,2 @@ repository=https://github.com/fl4xman/csvexport.git -commit=7cbb1949eea20f16f911a3162601f0c9a1d94be5 +commit=8ea326d9d392344d8e2255d8fd0930439102d8fc diff --git a/plugins/custom-emoji b/plugins/custom-emoji new file mode 100644 index 00000000000..d8e2e08864e --- /dev/null +++ b/plugins/custom-emoji @@ -0,0 +1,3 @@ +repository=https://github.com/TheLouisHong/runelite-custom-emoji.git +commit=8be2460a77bf4480db16c2c4dc1f7f8fc0b7c50f +authors=LouisHong diff --git a/plugins/custom-item-hovers b/plugins/custom-item-hovers index 903d48dc0bc..3be809d8df3 100644 --- a/plugins/custom-item-hovers +++ b/plugins/custom-item-hovers @@ -1,2 +1,2 @@ repository=https://github.com/geel9/runelite-custom-item-hovers.git -commit=7dd5b9f2fa34463cf459cbbfe1d1daa21d6ccba3 \ No newline at end of file +commit=82fe4f0f8b1f44f26cbdc3a1964724ec3cb9ecf6 \ No newline at end of file diff --git a/plugins/custom-vital-bars b/plugins/custom-vital-bars new file mode 100644 index 00000000000..d5f33b9ffd7 --- /dev/null +++ b/plugins/custom-vital-bars @@ -0,0 +1,2 @@ +repository=https://github.com/qt31415926535-femboy/custom-vital-bars.git +commit=76387b522758c3cf56e59ece55a471ebd0a8a50e diff --git a/plugins/customizable-xp-drops b/plugins/customizable-xp-drops index ea345184055..e0ea7af3b67 100644 --- a/plugins/customizable-xp-drops +++ b/plugins/customizable-xp-drops @@ -1,2 +1,2 @@ repository=https://github.com/l2-/template-plugin.git -commit=44059bf2948337f919bf557ed2cfedc6bdda4285 +commit=beaeb3cb02f449fc3fb1d4c8f3c3b7781dcfd7db diff --git a/plugins/damage-sounds b/plugins/damage-sounds new file mode 100644 index 00000000000..76d518d36c6 --- /dev/null +++ b/plugins/damage-sounds @@ -0,0 +1,2 @@ +repository=https://github.com/Worley03/rlplugin-damage.git +commit=535702fcb1e1233c3c44cd16d7ca6d1f1f7f8f4f diff --git a/plugins/decimal-prices b/plugins/decimal-prices index 026fcda376f..759754ad7a3 100644 --- a/plugins/decimal-prices +++ b/plugins/decimal-prices @@ -1,2 +1,2 @@ repository=https://github.com/rmaes4/decimal-prices.git -commit=1db835ba25debba83d310868e3ea49ba8cb24733 \ No newline at end of file +commit=d5cf0945dad76954299f8b31e6bd4ceda2787df0 diff --git a/plugins/delayed-healing b/plugins/delayed-healing index d25683b8d16..930d4d398fb 100644 --- a/plugins/delayed-healing +++ b/plugins/delayed-healing @@ -1,2 +1,2 @@ repository=https://github.com/DapperMickie/delayed-healing.git -commit=15922240fcf794905806783a2bac4d440d8052fb +commit=f8863f5343869375d58f73dcc0b6f6c593d7567e diff --git a/plugins/did-i-compost b/plugins/did-i-compost index 3cf3fae9fb3..c2a89fa9535 100644 --- a/plugins/did-i-compost +++ b/plugins/did-i-compost @@ -1,2 +1,2 @@ repository=https://github.com/AbusiveTuna/DidICompost.git -commit=03ce363c55c75ee33e885ac7ce5c0ffc429d93d0 +commit=fff1e7e461be60518514026fa8e1efe4abdababc diff --git a/plugins/dimmer b/plugins/dimmer new file mode 100644 index 00000000000..8b895861e49 --- /dev/null +++ b/plugins/dimmer @@ -0,0 +1,2 @@ +repository=https://github.com/kingLordsy/lordsys-plugins.git +commit=2f84519ccf9d61000b47b50a86577c5f0e33b49a diff --git a/plugins/dink b/plugins/dink index 97005b1a8c7..d700d02c1a4 100644 --- a/plugins/dink +++ b/plugins/dink @@ -1,3 +1,3 @@ repository=https://github.com/pajlads/DinkPlugin.git -commit=de0b0dbf4279fa3a2bb80d49a377f5dd906aae10 +commit=765e3a8f20f4d022de586fb3af5798d1446a4269 authors=Mm2PL,pajlada,Felanbird,iProdigy diff --git a/plugins/discord-chat-logger b/plugins/discord-chat-logger index f9f8e2d5dfb..9ecc1d0ee7a 100644 --- a/plugins/discord-chat-logger +++ b/plugins/discord-chat-logger @@ -1,2 +1,2 @@ repository=https://github.com/PJGJ210/Discord-Chat-Logger.git -commit=444363e8babeaaf5319fd80612b48e85ce9f04f3 +commit=120dfd4c63078c6d2ccc99bc89a6bef660b5e7a3 diff --git a/plugins/discord-collection-logger b/plugins/discord-collection-logger index d962bf2a52f..398e132e395 100644 --- a/plugins/discord-collection-logger +++ b/plugins/discord-collection-logger @@ -1,2 +1,2 @@ repository=https://github.com/PJGJ210/Discord-Collection-Logger.git -commit=ad1605d971d410452ad2cbb22d368d00016a7325 +commit=0b65acb298ba75ef42749034642227aaf7afc32e diff --git a/plugins/discord-death-notifications b/plugins/discord-death-notifications index 9057e73da98..2d20f551299 100644 --- a/plugins/discord-death-notifications +++ b/plugins/discord-death-notifications @@ -1,2 +1,2 @@ repository=https://github.com/jamesdrudolph/Discord-Death-Notifications.git -commit=1307c7d6dcf55bfc7caa6b59a9db0ab8098f711f +commit=e4fb6440249b7ea206045881ecf8167838c4e17a diff --git a/plugins/discord-rare-drop-notificater b/plugins/discord-rare-drop-notificater index e584b8f62e6..47d62bac331 100644 --- a/plugins/discord-rare-drop-notificater +++ b/plugins/discord-rare-drop-notificater @@ -1,3 +1,3 @@ repository=https://github.com/BossHuso/discord-rare-drop-notificater.git -commit=10edddc9c35ab9f924cada9d1b64d98ff0a0037e +commit=c1b12df415f44fa612fd3b4dd682bf73580b1120 authors=BossHuso,MathieuDR diff --git a/plugins/distraction-reducer b/plugins/distraction-reducer new file mode 100644 index 00000000000..4352e3a2d01 --- /dev/null +++ b/plugins/distraction-reducer @@ -0,0 +1,2 @@ +repository=https://github.com/Car-Role/Distraction-Reducer.git +commit=6cc3465d4684a6894c70d39996b258ccf28c4f2a diff --git a/plugins/dmm-fake-protection b/plugins/dmm-fake-protection index 1c71c795815..189947b6323 100644 --- a/plugins/dmm-fake-protection +++ b/plugins/dmm-fake-protection @@ -1,2 +1,3 @@ repository=https://github.com/zlight97/runelite-plugins.git -commit=fa694c09d72b13d345abe5a64128318f6f6185a8 \ No newline at end of file +commit=fa694c09d72b13d345abe5a64128318f6f6185a8 +disabled=unmaintained \ No newline at end of file diff --git a/plugins/dodgy-deals b/plugins/dodgy-deals new file mode 100644 index 00000000000..aa0131c0094 --- /dev/null +++ b/plugins/dodgy-deals @@ -0,0 +1,2 @@ +repository=https://github.com/MouldySamuel/DodgyDeals.git +commit=59e41c90f9117ea1db7c7e69530a3937bbfea6e8 \ No newline at end of file diff --git a/plugins/dps-calculator b/plugins/dps-calculator index 892279bdb66..5b86a97dfb6 100644 --- a/plugins/dps-calculator +++ b/plugins/dps-calculator @@ -1,2 +1,2 @@ repository=https://github.com/LlemonDuck/dps-calculator.git -commit=2547e353563f4820b2105951b37860af793df446 +commit=5b9e18cb952c574430ca33d3d72c6249db0bdb4e diff --git a/plugins/dropdespawnnotifier b/plugins/dropdespawnnotifier new file mode 100644 index 00000000000..08fdc6252fe --- /dev/null +++ b/plugins/dropdespawnnotifier @@ -0,0 +1,2 @@ +repository=https://github.com/maximonster/ItemDespawnNotifier.git +commit=1268bc322c1a106d6174756409f07a5af331dbb5 diff --git a/plugins/droptracker b/plugins/droptracker index 9293c246b95..8be15eb473b 100644 --- a/plugins/droptracker +++ b/plugins/droptracker @@ -1,2 +1,2 @@ repository=https://github.com/joelhalen/droptracker-plugin.git -commit=dffaecd07eef3b2101188b715c3d80b7dc208698 +commit=13aa8c19f6949aff7ec00d6c368c748c071adfec diff --git a/plugins/dt2-mistake-tracker b/plugins/dt2-mistake-tracker index 5dbd55167f9..05540970772 100644 --- a/plugins/dt2-mistake-tracker +++ b/plugins/dt2-mistake-tracker @@ -1,3 +1,3 @@ repository=https://github.com/DominickCobb-rs/DT2-Boss-Failure.git -commit=01b4e1ed58c6aa56562a0cacef4b79d2ec46b051 +commit=e6792347a8f36bc3e70943f8ba10b478232c5172 authors=DominickCobb diff --git a/plugins/dude-wheres-my-stuff b/plugins/dude-wheres-my-stuff index f4b98955fed..ec0bca44b9e 100644 --- a/plugins/dude-wheres-my-stuff +++ b/plugins/dude-wheres-my-stuff @@ -1,2 +1,2 @@ repository=https://github.com/Thource/dude-wheres-my-stuff.git -commit=37644bf348929e2540567fb1f955d812a4b5ca54 +commit=749e63ef6871ae27d45b5ac401e1b716e1c95fae diff --git a/plugins/dynamic-inventory-tags b/plugins/dynamic-inventory-tags index 22b4f6f6d5c..7b8d1d13a43 100644 --- a/plugins/dynamic-inventory-tags +++ b/plugins/dynamic-inventory-tags @@ -1,2 +1,2 @@ repository=https://github.com/BraveH/gear-switch-alert.git -commit=23f29622f36c40bafefa3cf0385aab2d80826117 +commit=f01059063cad821d64efb68b2de037040f9d2ce9 diff --git a/plugins/easy-giantsfoundry b/plugins/easy-giantsfoundry index 4e11d7b0469..35a7558f272 100644 --- a/plugins/easy-giantsfoundry +++ b/plugins/easy-giantsfoundry @@ -1,3 +1,3 @@ repository=https://github.com/Toofifty/easy-giantsfoundry.git -commit=42a7260b811991fe13aebbe549b260b242796e35 +commit=f12d7f32c4dac9f8c060e56036e5c830cab2f7c4 authors=Toofifty,pwatts6060 diff --git a/plugins/ectoplasmator-reminder b/plugins/ectoplasmator-reminder new file mode 100644 index 00000000000..e1929c0ea94 --- /dev/null +++ b/plugins/ectoplasmator-reminder @@ -0,0 +1,2 @@ +repository=https://github.com/staytheknight/ectoplasmator-reminder.git +commit=7b8c95980a813861de9ed61853ebe6d4dbcd58ba \ No newline at end of file diff --git a/plugins/embargo-clan-plugin b/plugins/embargo-clan-plugin index f341883c682..3100a648e24 100644 --- a/plugins/embargo-clan-plugin +++ b/plugins/embargo-clan-plugin @@ -1,3 +1,3 @@ repository=https://github.com/Sharpienero/Embargo-Plugin.git -commit=0a3a48c09e9cc63916f2c6202b6582bf99510a24 +commit=a5b1f1e8405c33fb00754b9eba822542ce880b94 warning=This plugin sends player data (including IP address) to a 3rd party server not controlled by RuneLite or Jagex. To see the full list of data this plugin collects, check out project's README on Github \ No newline at end of file diff --git a/plugins/emblem-trader-skull-timer b/plugins/emblem-trader-skull-timer index 5e968e5d95d..2435300ca6e 100644 --- a/plugins/emblem-trader-skull-timer +++ b/plugins/emblem-trader-skull-timer @@ -1,2 +1,2 @@ repository=https://github.com/Teekiz/skull-timer.git -commit=ea661abd89743f2d5a626992211f09409f570d5e +commit=e1a098ce68957049d8db89238b58820f903ed996 diff --git a/plugins/emote-clue-items b/plugins/emote-clue-items index ccb28ec8675..da3e5dd6954 100644 --- a/plugins/emote-clue-items +++ b/plugins/emote-clue-items @@ -1,2 +1,2 @@ repository=https://github.com/larsvansoest/emote-clue-items.git -commit=31e4e52d44fdddbade81792f029ea2b342f9458e +commit=978e59df9b3d3301337cd7e7ee7cf53fb5c52ced diff --git a/plugins/empty-forestry-basket b/plugins/empty-forestry-basket index b982b85b0f3..1c56db6380b 100644 --- a/plugins/empty-forestry-basket +++ b/plugins/empty-forestry-basket @@ -1,3 +1,3 @@ repository=https://github.com/DominickCobb-rs/Empty-Forestry-Basket.git -commit=f46017024314dfce04eb33d3225009177d64e1d2 +commit=8269a2cab715096ee4ffdccfc326fb2541363e06 authors=DominickCobb diff --git a/plugins/ent-trimmer b/plugins/ent-trimmer new file mode 100644 index 00000000000..64c801ae526 --- /dev/null +++ b/plugins/ent-trimmer @@ -0,0 +1,2 @@ +repository=https://github.com/pwatts6060/runelite-plugins.git +commit=84d0102835e69bfb00aac89eb5ed20eea9fb3f0d diff --git a/plugins/entity-masker b/plugins/entity-masker index a97d19dccdb..267ff53f25a 100644 --- a/plugins/entity-masker +++ b/plugins/entity-masker @@ -1,3 +1,3 @@ repository=https://github.com/Droei/Droei-RuneLite-Plugins.git -commit=b03b09f4dac09e7faf000c4b59efa011b553543d +commit=1396d7db9515407518ca6a183d0a7d42498fb013 warning=This plugin can not yet guarantee a perfect coverage of all entities, for any problems/feedback please refer back to the entity hider github repository \ No newline at end of file diff --git a/plugins/entrana b/plugins/entrana index 5838125a325..295a897704c 100644 --- a/plugins/entrana +++ b/plugins/entrana @@ -1,2 +1,2 @@ repository=https://github.com/pwatts6060/runelite-plugins.git -commit=e47f1433babb39bb3b2b1f08563412c2cb31121f +commit=9d40c22c90241e37d6a20a740b5b91f7dfae9863 diff --git a/plugins/equipment-lock b/plugins/equipment-lock new file mode 100644 index 00000000000..0de7369f319 --- /dev/null +++ b/plugins/equipment-lock @@ -0,0 +1,3 @@ +repository=https://github.com/Matimatician/Equipment-Lock.git +commit=25b26f6420f5b875dcd98369adf059c85c6d0b57 +warning=This plugin submits your account hash, IP address, group ID, and items equipped to a 3rd party server not controlled or verified by the RuneLite Developers. Also, the plugin may momentarily freeze the client when you equip a new item. diff --git a/plugins/escape-crystal b/plugins/escape-crystal index db22f853feb..c8dc4859509 100644 --- a/plugins/escape-crystal +++ b/plugins/escape-crystal @@ -1,2 +1,2 @@ repository=https://github.com/johnvictorfs/escape-crystal-runelite-plugin.git -commit=8e55581a353aca50195f156525d477ce4319f6c8 +commit=c78b789f66718470afa6590063881fc17f9c1815 diff --git a/plugins/escape-crystal-notify b/plugins/escape-crystal-notify index 80478972803..bde940e7309 100644 --- a/plugins/escape-crystal-notify +++ b/plugins/escape-crystal-notify @@ -1,2 +1,2 @@ repository=https://github.com/Xylot/escape-crystal-notify.git -commit=1c9ea75cf6a2d3893e6eee8f30c5801f55a577a4 +commit=f977b237177a27674632a296e36b25d2a8b982ba diff --git a/plugins/essence-pouch-tracking b/plugins/essence-pouch-tracking new file mode 100644 index 00000000000..4d31d176823 --- /dev/null +++ b/plugins/essence-pouch-tracking @@ -0,0 +1,2 @@ +repository=https://github.com/Infinitay/essence-pouch-tracking.git +commit=f66f241eb12359e39f4b840b96220c145bcc0442 diff --git a/plugins/eventsapi b/plugins/eventsapi index 49f606c073c..98015c7b5c1 100644 --- a/plugins/eventsapi +++ b/plugins/eventsapi @@ -1,3 +1,4 @@ repository=https://github.com/morgan-vanv/RuneLite_EventsAPI.git commit=50928ab65a854517aea31988b459574a7346bd47 authors=morgan-vanv +disabled=abuse diff --git a/plugins/examine-log b/plugins/examine-log new file mode 100644 index 00000000000..591e60ba7df --- /dev/null +++ b/plugins/examine-log @@ -0,0 +1,2 @@ +repository=https://github.com/CarlOmega/examine-log.git +commit=a19da73417e1950326a6b2f73bd56bb6d0629a42 diff --git a/plugins/fairy-ring-butterflies b/plugins/fairy-ring-butterflies index a14d09997e9..092c00288b1 100644 --- a/plugins/fairy-ring-butterflies +++ b/plugins/fairy-ring-butterflies @@ -1,2 +1,3 @@ repository=https://github.com/Jmmuir/Fairy-Ring-Butterflies.git -commit=b5c4f0f74299b6fc97b9795d5b80db403c62c7e0 \ No newline at end of file +commit=16d012a5118d9700ccf6be010dfc52b3cdbb049d + diff --git a/plugins/farming-guild-overview b/plugins/farming-guild-overview new file mode 100644 index 00000000000..a43b255cdd6 --- /dev/null +++ b/plugins/farming-guild-overview @@ -0,0 +1,2 @@ +repository=https://github.com/wouterrutgers/farming-guild-overview.git +commit=fc4df6205132b73bba563841625504ab0bbbc2dd diff --git a/plugins/fashionscape b/plugins/fashionscape index 8de6b8d92ca..b97c7d9cb2b 100644 --- a/plugins/fashionscape +++ b/plugins/fashionscape @@ -1,2 +1,2 @@ repository=https://github.com/equirs/fashionscape-plugin.git -commit=bd2adf78d572e12a5bf5a3a451ce0e602aa64f0e +commit=521b4f9c16ac9f0b54d2a1750ccb8426e47ef9f1 diff --git a/plugins/first-person b/plugins/first-person index d36b86a30c6..48a234c0820 100644 --- a/plugins/first-person +++ b/plugins/first-person @@ -1,2 +1,2 @@ repository=https://github.com/Zoinkwiz/FirstPerson.git -commit=b7f25373188cb89666c69b73839318659fe09c76 +commit=750e0d32a53ed090f105f1e6d700d90be4cc3ce7 diff --git a/plugins/fixed-resizable-hybrid b/plugins/fixed-resizable-hybrid new file mode 100644 index 00000000000..04bfcf723cb --- /dev/null +++ b/plugins/fixed-resizable-hybrid @@ -0,0 +1,2 @@ +repository=https://github.com/Lapask/fixed-resizable-hybrid.git +commit=467e84fd3b30ec33b516a21700f49d052d3f6fc6 diff --git a/plugins/flipper b/plugins/flipper index 4af44764611..850a86749f6 100644 --- a/plugins/flipper +++ b/plugins/flipper @@ -1,3 +1,5 @@ repository=https://github.com/Sir-Kyle-Richardson/OSRS-Flipper.git commit=967dc5c721647d9e0dbd63cf3dea30fb805f5122 warning=This plugin submits Grand Exchange transactions and your IP address to a 3rd party website not controlled or verified by the RuneLite Developers +authors=OkayestDev +disabled=unmaintained diff --git a/plugins/flipping-copilot b/plugins/flipping-copilot index fb9927dd345..6ea64681498 100644 --- a/plugins/flipping-copilot +++ b/plugins/flipping-copilot @@ -1,3 +1,3 @@ repository=https://github.com/cbrewitt/flipping-copilot.git -commit=4d9f4869870b9b6880b3bdc83a05ebf4d3ad0ba6 +commit=f772132aac1ee3e83c7cc1731734250c78ef44ca warning=This plugin submits your grand exchange offers, grand exchange transactions, and IP address to a 3rd party server not controlled or verified by the RuneLite Developers. diff --git a/plugins/friend-list-viewer b/plugins/friend-list-viewer index aff179db70b..5298a96aa34 100644 --- a/plugins/friend-list-viewer +++ b/plugins/friend-list-viewer @@ -1,2 +1,2 @@ repository=https://github.com/molo-pl/runelite-plugins.git -commit=c066e3f1e52e9664ec1dd78d1e90907d89ea00a1 +commit=f8c9c3ab6ecb2c7d6ba33024e30480f4317ab6d4 diff --git a/plugins/friend-live-locations b/plugins/friend-live-locations index 85bf552fcdc..3ce6e2984bd 100644 --- a/plugins/friend-live-locations +++ b/plugins/friend-live-locations @@ -1,2 +1,2 @@ repository=https://github.com/TiboDeMunck/runelite-live-friend-locations-plugin.git -commit=ba06564dbbdcc9b5c93d5a3a43c13479f1c18688 +commit=1d42f3898a0019610bcf381cdf5e584f1778256b \ No newline at end of file diff --git a/plugins/friends-house b/plugins/friends-house new file mode 100644 index 00000000000..f117859b3a2 --- /dev/null +++ b/plugins/friends-house @@ -0,0 +1,2 @@ +repository=https://github.com/EwyBoy/Friends-House.git +commit=40a3b90387679dfd6563f126793674216a3a209d diff --git a/plugins/frost-hp-run b/plugins/frost-hp-run index d579248549c..e99a1c58703 100644 --- a/plugins/frost-hp-run +++ b/plugins/frost-hp-run @@ -1,2 +1,2 @@ -repository=https://github.com/erversteeg/Frost-Hp-Run.git -commit=3025615f50110f61f710d29df9b05ad14e74f065 \ No newline at end of file +repository=https://github.com/hybridbrizz/Frost-Hp-Run.git +commit=56f2097c725a3f96b74a613f352891fe6fa54109 \ No newline at end of file diff --git a/plugins/funnybossnames b/plugins/funnybossnames index 81378500d49..e8115dd5848 100644 --- a/plugins/funnybossnames +++ b/plugins/funnybossnames @@ -1,2 +1,2 @@ repository=https://github.com/Pfannaa/FunnyBossNames.git -commit=35538dc3bcb22d4c3e84dcdb6fd338a6eeb4572d +commit=1cd18df3c1eda0ee265d045d2593bf440bdacf35 diff --git a/plugins/gauntlet-minimap b/plugins/gauntlet-minimap index 7fcb02c1cfd..b3f4063691a 100644 --- a/plugins/gauntlet-minimap +++ b/plugins/gauntlet-minimap @@ -1,2 +1,2 @@ repository=https://github.com/VicSegers/gauntlet-minimap.git -commit=381a7d38b3bd1869d97080af43dd2e9c2edba31b +commit=4745ea9960dd85ca094e372299ba8025720e7717 diff --git a/plugins/gauntlet-performance-tracker b/plugins/gauntlet-performance-tracker new file mode 100644 index 00000000000..d8f9df84f88 --- /dev/null +++ b/plugins/gauntlet-performance-tracker @@ -0,0 +1,2 @@ +repository=https://github.com/powerus117/RLCGPerformanceTracker.git +commit=05e8c957ccd785acc5df08961a62892c2eb2eca3 \ No newline at end of file diff --git a/plugins/ge-filters b/plugins/ge-filters index bfb9baa1a67..85f7cde2f7c 100644 --- a/plugins/ge-filters +++ b/plugins/ge-filters @@ -1,2 +1,2 @@ repository=https://github.com/salverrs/GE-Filters.git -commit=ad4a7dbbee4058f5ebfef05fed13410f2cd24cbc +commit=0128abaef76aaa9d12ef7b2e18b67e75fa911a1c diff --git a/plugins/gecalc b/plugins/gecalc index d98784bfe33..be925260f4b 100644 --- a/plugins/gecalc +++ b/plugins/gecalc @@ -1,2 +1,2 @@ repository=https://github.com/cman8396/GECalc.git -commit=963b9068de424daa4a8d3cb894241cc7607a6afc +commit=cc5fc3a6e144c75c3d79bf3d162baddba2421e09 \ No newline at end of file diff --git a/plugins/gg-hammer-reminder b/plugins/gg-hammer-reminder new file mode 100644 index 00000000000..79500b33285 --- /dev/null +++ b/plugins/gg-hammer-reminder @@ -0,0 +1,2 @@ +repository=https://github.com/SoaresPT/gg-hammer-reminder.git +commit=463d0da3271f0a6b93ecbbe468e7d857be31285d diff --git a/plugins/gim-plugin b/plugins/gim-plugin index a1c9a4f5e4f..946ddcbf8a3 100644 --- a/plugins/gim-plugin +++ b/plugins/gim-plugin @@ -1,2 +1,2 @@ repository=https://github.com/davidvorona/gim-plugin.git -commit=8fcee7e37571537de67cdea2d3261ab5e4db013e +commit=8818df9ca99dffe0e6cdaf855c4e50cf13fd8863 diff --git a/plugins/global-chat b/plugins/global-chat index 9b7112e6371..9b93c066234 100644 --- a/plugins/global-chat +++ b/plugins/global-chat @@ -1,4 +1,3 @@ repository=https://github.com/RusseII/region-chat.git -commit=403f4d0d17dd537838f3929a37bb095e1e5e3372 +commit=f2afe9813b9cd887809a5011e30a4ccda1178d36 warning=This plugin submits all sent chat messages and your IP address to a server not controlled or verified by the RuneLite developers. -disabled=true diff --git a/plugins/goading-helper b/plugins/goading-helper new file mode 100644 index 00000000000..b89bcf7b660 --- /dev/null +++ b/plugins/goading-helper @@ -0,0 +1,2 @@ +repository=https://github.com/NCG-RS/Goading-Potion-Helper.git +commit=ce60641361343d79dbe9fecdc09c85001f274770 diff --git a/plugins/goblin-scape-clan-plugin b/plugins/goblin-scape-clan-plugin new file mode 100644 index 00000000000..daacbdb0c76 --- /dev/null +++ b/plugins/goblin-scape-clan-plugin @@ -0,0 +1,2 @@ +repository=https://github.com/s0lved/goblin-scape-clan-plugin.git +commit=3a902fea5ec517237feb5d24680641c8e7b2fcf4 diff --git a/plugins/google-form-submitter b/plugins/google-form-submitter index a3541a95f4f..75c8ce4c2ac 100644 --- a/plugins/google-form-submitter +++ b/plugins/google-form-submitter @@ -1,4 +1,4 @@ repository=https://github.com/umer-rs/google-form-submitter.git -commit=1ead65214316630b2c220ac999aced6567362b57 +commit=35d634fea64b6983516929152a8aec71c023b4af warning=This plugin submits your IP address and screenshots to a 3rd party website not controlled or verified by the RuneLite Developers. authors=umer-rs diff --git a/plugins/gp-per-hour b/plugins/gp-per-hour index d520258c934..528eff78687 100644 --- a/plugins/gp-per-hour +++ b/plugins/gp-per-hour @@ -1,3 +1,3 @@ repository=https://github.com/MosheBenZacharia/GP-Per-Hour.git -commit=946affc6ab4e675ddb9ed2257a5b013de2cfd215 +commit=ca75f6a9d8348df5d7b1b74b481863c5c401806c authors=MosheBenZacharia diff --git a/plugins/gpu-experimental b/plugins/gpu-experimental index 048a1b89d5a..5a8d8aacf23 100644 --- a/plugins/gpu-experimental +++ b/plugins/gpu-experimental @@ -1,3 +1,3 @@ -repository=https://github.com/abextm/runelite-plugins.git -commit=65b1367bc1e23ef926765e2b82d2fdf2487bd175 -disabled=true +repository=https://github.com/Adam-/runelite-plugins.git +commit=c9c1d86029dec56279fc8fcb95ebd9a547569467 +warning=This plugin is for testing experimental GPU changes, and may cause crashes and render things incorrectly. diff --git a/plugins/guardians-of-the-rift-helper b/plugins/guardians-of-the-rift-helper index e11f291f0c6..2d0ab7da4d5 100644 --- a/plugins/guardians-of-the-rift-helper +++ b/plugins/guardians-of-the-rift-helper @@ -1,2 +1,2 @@ repository=https://github.com/DatBear/Guardians-of-the-Rift-Helper.git -commit=29b4d0ba4c025d60846e51fc1726f03fde245fc3 +commit=507e24bb9534d1a4fee520005266bbc4222cea2d diff --git a/plugins/guild-spam-filter b/plugins/guild-spam-filter index 680a389b570..2f72781002b 100644 --- a/plugins/guild-spam-filter +++ b/plugins/guild-spam-filter @@ -1,3 +1,3 @@ repository=https://github.com/andreasx23/GuildSpamFilter.git -commit=174f382301406472c6535f65839e92017c71a1cf +commit=79a39b2401126efdcd982b69dfc52004a01b9e50 authors=andreasx23 diff --git a/plugins/happy-jewelry b/plugins/happy-jewelry new file mode 100644 index 00000000000..4aba14673ab --- /dev/null +++ b/plugins/happy-jewelry @@ -0,0 +1,2 @@ +repository=https://github.com/astroferrous/happy_jewelry.git +commit=dd4960b210198c892e79e7d9ea1d44286eed8768 diff --git a/plugins/health-notifications b/plugins/health-notifications index 88ecd5ce07c..ae32ac0a413 100644 --- a/plugins/health-notifications +++ b/plugins/health-notifications @@ -1,2 +1,2 @@ repository=https://github.com/TommyAndy/health-notifications.git -commit=4d80d84fb0b652611aa4b96920c9e3b54b2e44a7 +commit=990a1970cf155d57289edefdd14e4ba41f1a1a6b diff --git a/plugins/herb-farm-calculator b/plugins/herb-farm-calculator index cd443de8ed4..c6a0e67242c 100644 --- a/plugins/herb-farm-calculator +++ b/plugins/herb-farm-calculator @@ -1,2 +1,2 @@ repository=https://github.com/LucasPickering/runelite-herb-farm-calculator.git -commit=dd2b666bef76d5f45d9306ea1f9c96240038cb76 +commit=a05d8c974eaca976366477910369b959dfb604c1 diff --git a/plugins/herbi-afk b/plugins/herbi-afk index be55a9810e5..90770648d62 100644 --- a/plugins/herbi-afk +++ b/plugins/herbi-afk @@ -1,2 +1,2 @@ repository=https://github.com/Maurits825/herbi-afk.git -commit=522c58dfdaced0b358b7f011bca19b6c18be027f +commit=bff37ab95e868ebc37ef0e037b4feb442040dd36 diff --git a/plugins/herblorerecipes b/plugins/herblorerecipes index a1500909af7..8850058a302 100644 --- a/plugins/herblorerecipes +++ b/plugins/herblorerecipes @@ -1,2 +1,2 @@ repository=https://github.com/climbridecode/herblore-recipes.git -commit=6d20d160f15a86633091f96a6f882e7e21d38066 +commit=7f89e74b4ef7a6fbf61315a58e65d312601071c3 diff --git a/plugins/hide-and-seek-tracker b/plugins/hide-and-seek-tracker new file mode 100644 index 00000000000..88f280b23b2 --- /dev/null +++ b/plugins/hide-and-seek-tracker @@ -0,0 +1,2 @@ +repository=https://github.com/jeromkiller/HideAndSeekTracker.git +commit=7bd3fe46f26e1155e06bb677acff098aea3d968e diff --git a/plugins/hide-chat-buttons b/plugins/hide-chat-buttons new file mode 100644 index 00000000000..ffb886546cb --- /dev/null +++ b/plugins/hide-chat-buttons @@ -0,0 +1,2 @@ +repository=https://github.com/salemwatkins/HideChatButtons.git +commit=cccaabc76ba03acbcb53fdd8627ef3624a0b9b2e diff --git a/plugins/hide-widgets b/plugins/hide-widgets index 4670c7c1046..eb538b84ff0 100644 --- a/plugins/hide-widgets +++ b/plugins/hide-widgets @@ -1,2 +1,3 @@ repository=https://github.com/PresNL/hide-widgets.git -commit=ee08beb20ff57f717cbd42c1e4ce68a169da6dc6 +commit=739df119e2de9285864eaf5b22f10f1c9c5b515c +authors=JZomDev,PresNL diff --git a/plugins/hotkeyable-menu-swaps b/plugins/hotkeyable-menu-swaps index a7c49f15405..7dce314cb32 100644 --- a/plugins/hotkeyable-menu-swaps +++ b/plugins/hotkeyable-menu-swaps @@ -1,2 +1,2 @@ repository=https://github.com/geheur/More-menu-entry-swaps.git -commit=849ecd7109e2fffdaf0d8f6327981f81accfce70 +commit=a94b150052306e70881c006cb1dd0739e99082bf diff --git a/plugins/httpeventserver b/plugins/httpeventserver index e5735f0d206..1fa552b5cfb 100644 --- a/plugins/httpeventserver +++ b/plugins/httpeventserver @@ -1,2 +1,3 @@ repository=https://github.com/MW90-NL/httpeventserver.git commit=6699bce31836474c7e89396935a21eb9e85d26d1 +disabled=unmaintained \ No newline at end of file diff --git a/plugins/improved-context-menu b/plugins/improved-context-menu index f56292e415d..cba2550e987 100644 --- a/plugins/improved-context-menu +++ b/plugins/improved-context-menu @@ -1,2 +1,3 @@ repository=https://github.com/Thource/improved-context-menu.git commit=817b2155bad9edf5b5c9af6eb4ea06a1f33d2ce7 +disabled=unmaintained \ No newline at end of file diff --git a/plugins/influxdb-stats b/plugins/influxdb-stats index e663cf001db..8bb3f719dbe 100644 --- a/plugins/influxdb-stats +++ b/plugins/influxdb-stats @@ -1,2 +1,2 @@ repository=https://github.com/Equinox-/runelite-influxdb.git -commit=6b1113bdd01497d6bf08e88bfe3aabb9ebfbe132 +commit=d479b539318bd7945f058e16ae3ec68c831cd6ba diff --git a/plugins/input-recolor b/plugins/input-recolor index fb47a5c07b3..6a74840d4e4 100644 --- a/plugins/input-recolor +++ b/plugins/input-recolor @@ -1,3 +1,3 @@ repository=https://github.com/MarbleTurtle/Color-Coordinator.git -commit=1de5ab055335c634d24637c22d9f76e55eb40345 +commit=0022b2b309462771cf8f401971dd5c9121f56343 authors=Ririshi,MarbleTurtle diff --git a/plugins/invalid-movement b/plugins/invalid-movement index fe9a592f086..07499b2cc19 100644 --- a/plugins/invalid-movement +++ b/plugins/invalid-movement @@ -1,2 +1,2 @@ repository=https://github.com/Skretzo/runelite-plugins.git -commit=1f2a68a963f0811a3ca69e71558673da4f44c11f +commit=d420c5bd4bd5504ef12efe2e94b569fcc46c67a4 diff --git a/plugins/inventory-count b/plugins/inventory-count index 9b371d22016..ed0ee57523e 100644 --- a/plugins/inventory-count +++ b/plugins/inventory-count @@ -1,2 +1,3 @@ repository=https://github.com/robrichardson13/inventory-count.git -commit=a9eb8fb64b866751de35ac4614f74b513df038b7 \ No newline at end of file +commit=5c274cc3a15d0a038e88e1644d6c2d568f75b55c +authors=robrichardson13,Zenrion diff --git a/plugins/inventory-setups b/plugins/inventory-setups index 472b2ff5327..65f0b7e07e5 100644 --- a/plugins/inventory-setups +++ b/plugins/inventory-setups @@ -1,2 +1,2 @@ repository=https://github.com/dillydill123/inventory-setups.git -commit=8f35bb919ff7f07abd8c21d117c3f1e7fe5a4db3 +commit=c1abcf5d9f0b86ff7cc1e810b70496595ae0a287 diff --git a/plugins/inventory-total b/plugins/inventory-total index 9c81109804d..1412e0eeeba 100644 --- a/plugins/inventory-total +++ b/plugins/inventory-total @@ -1,2 +1,2 @@ -repository=https://github.com/erversteeg/inventorytotal.git -commit=4c01aadb1ac3e47c99566af5291ac1868f33d855 \ No newline at end of file +repository=https://github.com/hybridbrizz/inventorytotal.git +commit=f831aa59a66cd54cd17a9fa5596991ac0aa8c46c \ No newline at end of file diff --git a/plugins/jebscape b/plugins/jebscape index 4e155fa5768..27c2bcce0e6 100644 --- a/plugins/jebscape +++ b/plugins/jebscape @@ -1,3 +1,3 @@ repository=https://github.com/JebScape/JebScape-Client.git -commit=6d221e1f8f3a81de7ad607cdf1dde45c91030580 +commit=a5f052e7af604840e6193b76b5f984b87e433fa2 warning=This plugin sends game data and your IP address to a third party server to facilitate communication between clients across separate worlds. diff --git a/plugins/key-remapping-plus b/plugins/key-remapping-plus index 0eb0534df66..715faaa178a 100644 --- a/plugins/key-remapping-plus +++ b/plugins/key-remapping-plus @@ -1,2 +1,2 @@ repository=https://github.com/macica2/key-remapping-plus.git -commit=f505159cccfec4d8c6602873946c0a8da1a96127 +commit=c8194f894a6aba284b07ea2463bcba5ee8143328 diff --git a/plugins/konar-milestone-reminder b/plugins/konar-milestone-reminder index ed852033a36..d2e9fca3700 100644 --- a/plugins/konar-milestone-reminder +++ b/plugins/konar-milestone-reminder @@ -1,2 +1,3 @@ repository=https://github.com/michael-gutman/konar-milestone-reminder.git -commit=75e8cddf7ed62ab4d39fc7545268a73de0a00972 +commit=682d3107f6f683e443cb193d64329dd48b17bfc5 + diff --git a/plugins/kph-tracker b/plugins/kph-tracker index da927f60fa3..30ef12e2a60 100644 --- a/plugins/kph-tracker +++ b/plugins/kph-tracker @@ -1,2 +1,2 @@ repository=https://github.com/Mrnice98/BossingInfo.git -commit=bf6104f5c0330229f61fb0a13a7df75f386f9ac2 \ No newline at end of file +commit=a61dce0af326649ee08aed353485b0b65bd2f5cb \ No newline at end of file diff --git a/plugins/league-chat-broadcasts b/plugins/league-chat-broadcasts index 1d8e2d43e66..32d91fa891b 100644 --- a/plugins/league-chat-broadcasts +++ b/plugins/league-chat-broadcasts @@ -1,2 +1,3 @@ repository=https://github.com/Memebeams/league-chat-broadcasts.git commit=2b574b0758a7ad3be2709c48275b707448c7ee7a +disabled=deleted by author \ No newline at end of file diff --git a/plugins/legacy-escape b/plugins/legacy-escape new file mode 100644 index 00000000000..565e900da5c --- /dev/null +++ b/plugins/legacy-escape @@ -0,0 +1,2 @@ +repository=https://github.com/rsfost/legacy-escape.git +commit=c65cb9bf948958ac54df0d60ecc16076c48b1f7e diff --git a/plugins/limpwurt-login b/plugins/limpwurt-login new file mode 100644 index 00000000000..e311ddb7159 --- /dev/null +++ b/plugins/limpwurt-login @@ -0,0 +1,2 @@ +repository=https://github.com/Gavin-TC/limpwurt-login.git +commit=31750cb9e866be8e81eb393a03d1e43f1d123fc9 diff --git a/plugins/line-markers b/plugins/line-markers index d52ad09a62f..b52ccdfaca3 100644 --- a/plugins/line-markers +++ b/plugins/line-markers @@ -1,2 +1,2 @@ repository=https://github.com/Skretzo/runelite-plugins.git -commit=b7dcbc31c67620b9b3f8d988ac3e866cdad40a8f +commit=0accca3b5c5bec8a9d4cb19c0c2a86d365db5932 diff --git a/plugins/linux-custom-cursor b/plugins/linux-custom-cursor new file mode 100644 index 00000000000..e849661dd11 --- /dev/null +++ b/plugins/linux-custom-cursor @@ -0,0 +1,2 @@ +repository=https://github.com/nwerblun/runelite_linux_custom_cursor.git +commit=3ede1559da3164a87a0407c125e8ef769cc42888 diff --git a/plugins/lite-regen-meter b/plugins/lite-regen-meter new file mode 100644 index 00000000000..20b2c0404f7 --- /dev/null +++ b/plugins/lite-regen-meter @@ -0,0 +1,2 @@ +repository=https://github.com/Varietyz/literegenmeter.git +commit=3d4daa323209d806465447990c23c7d5c08df33c diff --git a/plugins/lite-utilities b/plugins/lite-utilities new file mode 100644 index 00000000000..833e2d30b77 --- /dev/null +++ b/plugins/lite-utilities @@ -0,0 +1,2 @@ +repository=https://github.com/Varietyz/Lite-Utilities.git +commit=4ebbc4e0bf669b4aacfdef8609a3aeeeface5d5f diff --git a/plugins/load-time b/plugins/load-time new file mode 100644 index 00000000000..891f9b5d62c --- /dev/null +++ b/plugins/load-time @@ -0,0 +1,2 @@ +repository=https://github.com/rsfost/load-time.git +commit=3a16b60fc39b816646a77ff4935e442884758214 diff --git a/plugins/local-consciousness b/plugins/local-consciousness new file mode 100644 index 00000000000..6ab1029f76a --- /dev/null +++ b/plugins/local-consciousness @@ -0,0 +1,2 @@ +repository=https://github.com/YeahImRose/local-consciousness.git +commit=a9c596481112da7ffb131d702e1e49329e376b07 diff --git a/plugins/loot-logger b/plugins/loot-logger index 07dd407a578..82679399c37 100644 --- a/plugins/loot-logger +++ b/plugins/loot-logger @@ -1,2 +1,2 @@ repository=https://github.com/TheStonedTurtle/Loot-Logger.git -commit=4ef03128e0217cb1125b8bd163fd2543b6621c26 +commit=1db62f5a0f3917b128085a4b3dd9f50c162f2279 diff --git a/plugins/looting-bag-value b/plugins/looting-bag-value index 9a9c689e7a8..09539713bc1 100644 --- a/plugins/looting-bag-value +++ b/plugins/looting-bag-value @@ -1,3 +1,3 @@ repository=https://github.com/pwatts6060/runelite-plugins.git -commit=dcac8a9b5dd246c849e5df930e630c3ab972a00a -authors=nicole-mcg,pwatts6060 \ No newline at end of file +commit=dc6352bdf1f16d0d0869233e685906f05c4927ec +authors=pwatts6060,nicole-mcg,Lucidare diff --git a/plugins/lunar-chest-value b/plugins/lunar-chest-value new file mode 100644 index 00000000000..d19c95e841f --- /dev/null +++ b/plugins/lunar-chest-value @@ -0,0 +1,2 @@ +repository=https://github.com/bradur/lunar-chest-value.git +commit=980470510dffa7c1833c20e94e478491be1f2610 \ No newline at end of file diff --git a/plugins/mahogany-homes b/plugins/mahogany-homes index 855c10a5842..9114201f211 100644 --- a/plugins/mahogany-homes +++ b/plugins/mahogany-homes @@ -1,2 +1,2 @@ repository=https://github.com/TheStonedTurtle/Mahogany-Homes.git -commit=122a0a4fe3153a59e91e30ed2a26aa69122669cd +commit=7414153a1fb00acbf38119426c2814b18b8ef995 diff --git a/plugins/maple-xp-bar b/plugins/maple-xp-bar index 1b74c81eeb1..104097d837a 100644 --- a/plugins/maple-xp-bar +++ b/plugins/maple-xp-bar @@ -1,2 +1,2 @@ repository=https://github.com/SirHitech/MapleXPBar.git -commit=7e407452138507e049587cd41e5c4609a6b5d287 +commit=879da69dcf4f4032f5f349c8a79ef7b7ef6997b4 diff --git a/plugins/marks-of-grace-counter b/plugins/marks-of-grace-counter index af0914f5015..6af23dfd6aa 100644 --- a/plugins/marks-of-grace-counter +++ b/plugins/marks-of-grace-counter @@ -1,2 +1,2 @@ repository=https://github.com/Cyborger1/marks-of-grace-counter.git -commit=91dad8d8107769a603c049b82a91f1745c156c79 +commit=f7c3d8594ec69a001e4f3338fd1ca3be0cfbadc4 diff --git a/plugins/master-scroll-book b/plugins/master-scroll-book index 11b19afbcda..530df6b497a 100644 --- a/plugins/master-scroll-book +++ b/plugins/master-scroll-book @@ -1,2 +1,2 @@ repository=https://github.com/Enriath/external-plugins.git -commit=f46cd0b2728d44aabe2a38240d44edc979f96644 +commit=c6cb611b05de5b69cbf3ee703bb7138d2c316600 diff --git a/plugins/mastering-mixology b/plugins/mastering-mixology new file mode 100644 index 00000000000..1ecb8811805 --- /dev/null +++ b/plugins/mastering-mixology @@ -0,0 +1,3 @@ +repository=https://github.com/hex-agon/mastering-mixology.git +commit=bcca634c9320b5ae2d891c13481db51b4836004c +authors=Hexagon diff --git a/plugins/max-hit-calculator b/plugins/max-hit-calculator index 3a0987da96b..6de140bd0af 100644 --- a/plugins/max-hit-calculator +++ b/plugins/max-hit-calculator @@ -1,2 +1,2 @@ repository=https://github.com/j-cob44/max-hit-calc.git -commit=22391104cf0dc8bac815ed920b0233ac59448273 +commit=0bed5e42da5494cafd4ac841d1ff1d3ada393cb5 diff --git a/plugins/maxhitplugin b/plugins/maxhitplugin index 8fa0b543df9..ed786907af4 100644 --- a/plugins/maxhitplugin +++ b/plugins/maxhitplugin @@ -1,2 +1,3 @@ repository=https://github.com/Matt12yearslater/max-hit.git -commit=23d328cb160dd471431fd88fbb8268b8f01f01a2 +commit=5edb716712f06a8dd3de933d414f7629ff19a24c +authors=Matt12yearslater,Seebity,caleblee9 diff --git a/plugins/menu-highlighting b/plugins/menu-highlighting new file mode 100644 index 00000000000..ae6d1ea339e --- /dev/null +++ b/plugins/menu-highlighting @@ -0,0 +1,3 @@ +repository=https://github.com/mejrs/menu-highlighting.git +commit=b67f6815595ec7a7607419448c77c890ebebe548 +authors=mejrs \ No newline at end of file diff --git a/plugins/missing-pet-notifier b/plugins/missing-pet-notifier new file mode 100644 index 00000000000..8dfd11824f7 --- /dev/null +++ b/plugins/missing-pet-notifier @@ -0,0 +1,2 @@ +repository=https://github.com/tylerwgrass/missing-pet-notifier.git +commit=1917132f2e4ea11b3e8f9d4e073db68096982ffb diff --git a/plugins/monster-hp-percentage b/plugins/monster-hp-percentage index 05b41834703..ce8d8a485d6 100644 --- a/plugins/monster-hp-percentage +++ b/plugins/monster-hp-percentage @@ -1,2 +1,2 @@ repository=https://github.com/lejeffe/MonsterHP.git -commit=a92f250d7d59cabad83eb2b78f5e8f9cc430f35a +commit=c1c5f87436587da7fb9f6b5e55bc3f2c14c4661f diff --git a/plugins/monster-monitor b/plugins/monster-monitor new file mode 100644 index 00000000000..c61b9cfddc4 --- /dev/null +++ b/plugins/monster-monitor @@ -0,0 +1,2 @@ +repository=https://github.com/ChunkyAtlas/monster-monitor.git +commit=ecda79ecf657e9960d99b2583bf43a6fa1e46be7 diff --git a/plugins/monsterstats b/plugins/monsterstats index c5475b3c8de..643c3891947 100644 --- a/plugins/monsterstats +++ b/plugins/monsterstats @@ -1,2 +1,2 @@ repository=https://github.com/Koitere/monster-stats.git -commit=3b75bd73c281d80d0948b75959829455f32be0ad +commit=d0d12b3eb99cd8c6bda62970a94939498505b979 diff --git a/plugins/multi-lines b/plugins/multi-lines index 8027366ae6a..3af48fb7952 100644 --- a/plugins/multi-lines +++ b/plugins/multi-lines @@ -1,2 +1,2 @@ repository=https://github.com/tsbreuer/Multi-Lines.git -commit=6eca6fe3031ec62a08d1a5ef9e073a286d8c99db +commit=858246aa7381584c81b1a9a94c67af595a75a51a diff --git a/plugins/multi-metronome b/plugins/multi-metronome new file mode 100644 index 00000000000..ea7b91a4123 --- /dev/null +++ b/plugins/multi-metronome @@ -0,0 +1,2 @@ +repository=https://github.com/Pwootage/runelite-multi-metronome.git +commit=29b8fbd49730ab6009f9e43331f045144a51eafa \ No newline at end of file diff --git a/plugins/music-favourites b/plugins/music-favourites new file mode 100644 index 00000000000..940e43b693b --- /dev/null +++ b/plugins/music-favourites @@ -0,0 +1,2 @@ +repository=https://github.com/Syhlex/music-favourites.git +commit=69c0b8f471d3fab1b0578cda0af866ff21b4d809 diff --git a/plugins/naturalspeech b/plugins/naturalspeech index 74a5d061024..09142a4912a 100644 --- a/plugins/naturalspeech +++ b/plugins/naturalspeech @@ -1,4 +1,4 @@ repository=https://github.com/phyce/rl-natural-speech.git -commit=c7a5e0d63b18e8214acd35ed0fbd332eefc6c907 +commit=d31da91b698b031d5de748f56feb7d1b190e45d9 warning=This plugin downloads voice model files from, (and sends your IP address in the process, to) huggingface.co, a 3rd party website not controlled or verified by the RuneLite Developers. authors=phyce,TheLouisHong diff --git a/plugins/nature-runecraft-utilities b/plugins/nature-runecraft-utilities new file mode 100644 index 00000000000..0f40266101d --- /dev/null +++ b/plugins/nature-runecraft-utilities @@ -0,0 +1,2 @@ +repository= https://github.com/alex-macm/Nature-Runecrafting-Util.git +commit=965363d4f735554a2809e44d2548cda953970237 diff --git a/plugins/nex-droprate-calculator b/plugins/nex-droprate-calculator new file mode 100644 index 00000000000..0ec2910810d --- /dev/null +++ b/plugins/nex-droprate-calculator @@ -0,0 +1,2 @@ +repository=https://github.com/Worley03/nex-droprate-calculator.git +commit=12dca90da29cdc742f6e5531ce5adc17331ab0ad diff --git a/plugins/nexnostalgia b/plugins/nexnostalgia index ce9703e4fb9..076b8f242a6 100644 --- a/plugins/nexnostalgia +++ b/plugins/nexnostalgia @@ -1,2 +1,2 @@ repository=https://github.com/hex-agon/runelite-plugins.git -commit=b5591971bff2a65ddd85638720b22cc171e9502b +commit=8d779dd07773e813ca2cc0f59ba9ab940f1589d8 diff --git a/plugins/nexus-map b/plugins/nexus-map index 9f33b6fafb5..99e08034b6a 100644 --- a/plugins/nexus-map +++ b/plugins/nexus-map @@ -1,2 +1,3 @@ repository=https://github.com/Antipixel/nexus-map.git -commit=3794df79b5bfaf03bd7de07800dae1fc9626ae51 +commit=2dfc8291dc93f417ed00080f1b806ce0ff3f9395 +authors=Antipixel,Cyborger1 diff --git a/plugins/nm-autosplitter b/plugins/nm-autosplitter index 2f3fe3a0088..c06a9a36b23 100644 --- a/plugins/nm-autosplitter +++ b/plugins/nm-autosplitter @@ -1,2 +1,3 @@ repository=https://github.com/framboid/nm-autosplitter.git commit=6d257bcced462e819f5b7be0bd99ccf19d5d1ebc +disabled=deleted by author \ No newline at end of file diff --git a/plugins/no-bad-alchs b/plugins/no-bad-alchs index 21cd7233916..87ad5eabe8e 100644 --- a/plugins/no-bad-alchs +++ b/plugins/no-bad-alchs @@ -1,2 +1,2 @@ repository=https://github.com/CreativeTechGuy/no-bad-alchs.git -commit=1dd62088cf06f847161fd4d20945a3d8caf37e3c +commit=d208a32f5a4b594cce3c56154d8dc2b2060f7496 diff --git a/plugins/no-examine b/plugins/no-examine index 7e7ad9d2fa9..92f361c8c7b 100644 --- a/plugins/no-examine +++ b/plugins/no-examine @@ -1,2 +1,2 @@ repository=https://github.com/Skretzo/runelite-plugins.git -commit=f97c0ea114e7a570c0e1857c1598999ee3d0c044 +commit=50b4b465b0a6ee6283b6c8eef2edc2775b51cfe7 diff --git a/plugins/normal-ancient-teleports b/plugins/normal-ancient-teleports index b57ac169ee1..7d8b16619a2 100644 --- a/plugins/normal-ancient-teleports +++ b/plugins/normal-ancient-teleports @@ -1,2 +1,2 @@ -repository=https://github.com/IdylRS/runelite-plugins.git -commit=b874aef14928ef78a1b3afe15c21710c05eae37c +repository=https://github.com/zoltander/Normal-Ancient-Teleports.git +commit=8f1b6528f9ef7ef8cc781f953ab561304ef19ff2 diff --git a/plugins/notification-messages b/plugins/notification-messages index 30557c2e876..70495ad95ab 100644 --- a/plugins/notification-messages +++ b/plugins/notification-messages @@ -1,2 +1,3 @@ repository=https://github.com/Broooklyn/runelite-external-plugins.git -commit=1293d6b725b8a0833a88ab17d8b5d0415795c070 \ No newline at end of file +commit=1293d6b725b8a0833a88ab17d8b5d0415795c070 +disabled=unmaintained \ No newline at end of file diff --git a/plugins/npc-dialogue b/plugins/npc-dialogue index a828d6fea85..d97658a6007 100644 --- a/plugins/npc-dialogue +++ b/plugins/npc-dialogue @@ -1,2 +1,2 @@ repository=https://github.com/leejt/npc-dialogue.git -commit=b780b933198f2c6e6f5e0c4b1bb422776804ea64 +commit=8e9b47f3d338142efb590915c8786bce43f08684 diff --git a/plugins/npc-id b/plugins/npc-id index 949b7810d14..5d4d55d584b 100644 --- a/plugins/npc-id +++ b/plugins/npc-id @@ -1,2 +1,2 @@ repository=https://github.com/Skretzo/runelite-plugins.git -commit=d147cef9bef029517d73a754613698748bbdb219 +commit=83c338db6a3370eeb44f4e27f54932ec2271d20a diff --git a/plugins/npc-labels b/plugins/npc-labels index c590dce1ebf..908cb2acd16 100644 --- a/plugins/npc-labels +++ b/plugins/npc-labels @@ -1,2 +1,3 @@ repository=https://github.com/Alex-Banna/npc-labels.git -commit=56cce5f37aea54b9b3154aed43490c9270b1d836 \ No newline at end of file +commit=56cce5f37aea54b9b3154aed43490c9270b1d836 +disabled=unmaintained \ No newline at end of file diff --git a/plugins/npc-timer b/plugins/npc-timer new file mode 100644 index 00000000000..751b61d6fb7 --- /dev/null +++ b/plugins/npc-timer @@ -0,0 +1,2 @@ +repository=https://github.com/sethks/npc-timer.git +commit=3022d30c42a0930c6d799be40676ec6cfb0848ce diff --git a/plugins/nylo-death-indicators b/plugins/nylo-death-indicators index 5f8d257284d..8e5e0941f3d 100644 --- a/plugins/nylo-death-indicators +++ b/plugins/nylo-death-indicators @@ -1,2 +1,2 @@ repository=https://github.com/InfernoStats/Nylo-Death-Indicators.git -commit=c41816bcc95285e556538dbd5cce7885513ee42a +commit=3c133a12666519738de350746dc8818b09713201 diff --git a/plugins/nyloer b/plugins/nyloer index e679c09fea2..6d47c4e8753 100644 --- a/plugins/nyloer +++ b/plugins/nyloer @@ -1,2 +1,2 @@ repository=https://github.com/EIKOOT/nyloer.git -commit=57a4f6dc43b7675256fac6fd2f13c303bc48f22d +commit=f33aa03f84e095c6a0dfbe6180c9c24116f9196e diff --git a/plugins/obelisk-protection b/plugins/obelisk-protection new file mode 100644 index 00000000000..cb49cb0c395 --- /dev/null +++ b/plugins/obelisk-protection @@ -0,0 +1,2 @@ +repository=https://github.com/Car-Role/Obelisk-Protection.git +commit=cb3a530f01adbff26d3f4fc6258802aeb85f0f83 diff --git a/plugins/obelisk-reminder b/plugins/obelisk-reminder new file mode 100644 index 00000000000..ad0a9fd0444 --- /dev/null +++ b/plugins/obelisk-reminder @@ -0,0 +1,2 @@ +repository=https://github.com/AcolyteOfFire/Obelisk_Reminder.git +commit=c4a17a74c2bdef00cc519de88e297c08601b3595 diff --git a/plugins/odablock-dmm-finale b/plugins/odablock-dmm-finale new file mode 100644 index 00000000000..5e83c8ef76a --- /dev/null +++ b/plugins/odablock-dmm-finale @@ -0,0 +1,3 @@ +repository=https://github.com/DapperMickie/custom-friendlist.git +commit=ce59677e10e16d06256bff08841d304ab772bcb9 +disabled=the finale is over diff --git a/plugins/on-screen-notes b/plugins/on-screen-notes index 791705377b0..56293c0fe69 100644 --- a/plugins/on-screen-notes +++ b/plugins/on-screen-notes @@ -1,3 +1,3 @@ repository=https://github.com/raiyni/example-plugin.git -commit=9adbb5eaa22891cbc49c96d1310ddd22b398be87 +commit=247765e652b794da4352c89c36ab1097f38a1c7b diff --git a/plugins/onlyree b/plugins/onlyree new file mode 100644 index 00000000000..23536d59f87 --- /dev/null +++ b/plugins/onlyree @@ -0,0 +1,2 @@ +repository=https://github.com/Tyler-Programs/OnlyRee.git +commit=a3d34e2665b946bc4f1f42e9c4ffaf353b75b2fd diff --git a/plugins/optimal-quest-guide b/plugins/optimal-quest-guide index 4daea389045..f516c01e836 100644 --- a/plugins/optimal-quest-guide +++ b/plugins/optimal-quest-guide @@ -1,2 +1,2 @@ repository=https://github.com/cesoun/optimal-quest-guide.git -commit=94d5af1f75d58f46f854d633201a83061b97f60a +commit=78a0cbb0256e24ddbba4443e25f847e523512d1f diff --git a/plugins/osrs-wiki-crowdsourcing b/plugins/osrs-wiki-crowdsourcing index 9c76564d794..93e6fc1bd2e 100644 --- a/plugins/osrs-wiki-crowdsourcing +++ b/plugins/osrs-wiki-crowdsourcing @@ -1,3 +1,3 @@ repository=https://github.com/leejt/osrs-wiki-crowdsourcing.git -commit=1757460e7094b8fa921544fd9266ec7172bea81f -authors=leejt,andmcadams,cdfisher +commit=1b6778eb3742934296c6b9435e9929e3746b600b +authors=leejt,andmcadams diff --git a/plugins/osrskillboard b/plugins/osrskillboard index 57120499a29..de9c0ed06d4 100644 --- a/plugins/osrskillboard +++ b/plugins/osrskillboard @@ -1,3 +1,3 @@ repository=https://github.com/Osrskillboard/OSRSKillboard-plugin.git -commit=a53fb880ad67f5faa46003450882355b4821f1f2 +commit=9dc540cea92948fd6fdcfaee74728e6a90c0cf0c warning=This plugin submits your username, Gear, PvP Kills, PvP Loot and IP address to a 3rd party website not controlled or verified by the RuneLite Developers. diff --git a/plugins/party-defence-tracker b/plugins/party-defence-tracker index 9bc7f67a96b..a8a5adf2bca 100644 --- a/plugins/party-defence-tracker +++ b/plugins/party-defence-tracker @@ -1,2 +1,2 @@ repository=https://github.com/MoreBuchus/buchus-plugins.git -commit=8ba021c5341525985dcd019b9f901cd0de894410 +commit=97e161eeb8c5e1c821c2d8d03538e0c60930f8b1 diff --git a/plugins/party-map-pin b/plugins/party-map-pin index 443ed30cdb2..094e914f67e 100644 --- a/plugins/party-map-pin +++ b/plugins/party-map-pin @@ -1,2 +1,2 @@ repository=https://github.com/DoinkOink/party-map-pin.git -commit=7a203312679b02825e27936eb25383486e754866 \ No newline at end of file +commit=aa77c329f4549d1d78ee679059c59f33a1ebfbfa diff --git a/plugins/party-panel b/plugins/party-panel index bf5151fb6a2..a660c9cbe6c 100644 --- a/plugins/party-panel +++ b/plugins/party-panel @@ -1,2 +1,2 @@ repository=https://github.com/TheStonedTurtle/party-panel.git -commit=909d718c9751ac546fe56f86de23d3e966960b31 +commit=8bcc00ec840af4a2799107bdcb2ea13c9ad9e042 diff --git a/plugins/party-status-bars-overlay b/plugins/party-status-bars-overlay new file mode 100644 index 00000000000..1611e7db033 --- /dev/null +++ b/plugins/party-status-bars-overlay @@ -0,0 +1,2 @@ +repository=https://github.com/lou0815/PartyStatusBarsOverlay.git +commit=835753c932c6655889a9945883bfefff9743045f diff --git a/plugins/path-marker b/plugins/path-marker index ddc5af53b5d..ed46915c583 100644 --- a/plugins/path-marker +++ b/plugins/path-marker @@ -1,2 +1,2 @@ repository=https://github.com/GeChallengeM/path-marker.git -commit=80ebb0ee50a6af7bb13159fc788804ad552e2c32 +commit=7e2edd75e7353a3ba5802e44d873355463e70569 diff --git a/plugins/pest-control-notifications b/plugins/pest-control-notifications new file mode 100644 index 00000000000..76b2203aca6 --- /dev/null +++ b/plugins/pest-control-notifications @@ -0,0 +1,2 @@ +repository=https://github.com/Cryslacks/pest-control-notifications.git +commit=7218c0cbbf19eb97b3418ecf630f5cffdd89d5e0 diff --git a/plugins/pet-the-capybara b/plugins/pet-the-capybara index 4a505b13be8..842d4ed435a 100644 --- a/plugins/pet-the-capybara +++ b/plugins/pet-the-capybara @@ -1,2 +1,2 @@ repository=https://github.com/Droei/Pet-The-Capybara.git -commit=26b5621bad158743fb6548b680cab05d6e839def \ No newline at end of file +commit=cdbc28b6d5af0c6c2c4ec785a7d8f4307b0436fd diff --git a/plugins/pet-to-npc-transmog b/plugins/pet-to-npc-transmog new file mode 100644 index 00000000000..b39c19db7ff --- /dev/null +++ b/plugins/pet-to-npc-transmog @@ -0,0 +1,2 @@ +repository=https://github.com/Tony905x/pet-to-npc-transmog.git +commit=9d38288641ad3a285a83b4a1b6a82b3e3a48ff20 diff --git a/plugins/pickpocket-helper b/plugins/pickpocket-helper index f0c61b3efc1..6f59265bccc 100644 --- a/plugins/pickpocket-helper +++ b/plugins/pickpocket-helper @@ -1,2 +1,3 @@ -repository=https://github.com/RDieleman/runelite-pickpocket-helper.git -commit=b2dde458886f0be68e9d54fddd2abaa2645bbba0 +repository=https://github.com/pajlads/runelite-pickpocket-helper.git +commit=ee6355529568b220413cd3eb8c0ef8e32fb1cb49 +authors=iProdigy diff --git a/plugins/placeholders-warning b/plugins/placeholders-warning index aa4411d5ebf..b3c6dc39d03 100644 --- a/plugins/placeholders-warning +++ b/plugins/placeholders-warning @@ -1,2 +1,2 @@ repository=https://github.com/CheesyCracks/placeholders-warning.git -commit=9b6f3cb421b6754b6cf013510ad8864a5051c541 +commit=37f39773ce7ed2bc2051c1c96924930bb01fedde diff --git a/plugins/plank-sack b/plugins/plank-sack index 1d592e2bc2b..10eb07824f3 100644 --- a/plugins/plank-sack +++ b/plugins/plank-sack @@ -1,2 +1,2 @@ repository=https://github.com/Enriath/external-plugins.git -commit=5c460f8ffa6a1d7ec33e74f9c1efef73196ae104 +commit=9e9624a48219a76717e66eb70dc41892c5a751ed diff --git a/plugins/pneck-reminder b/plugins/pneck-reminder index 31df4112f9c..d7c277e6318 100644 --- a/plugins/pneck-reminder +++ b/plugins/pneck-reminder @@ -1,2 +1,2 @@ repository=https://github.com/AbusiveTuna/PneckReminder.git -commit=7bd3925a0d417a3d93fd972abaae51f108eff436 +commit=1486bf133f89350617306ace7b85b7f9deafd232 diff --git a/plugins/poh-treasure-chest-ge-value b/plugins/poh-treasure-chest-ge-value new file mode 100644 index 00000000000..54d9ec18535 --- /dev/null +++ b/plugins/poh-treasure-chest-ge-value @@ -0,0 +1,2 @@ +repository=https://github.com/nicDamours/POHTreasureChestGEValue.git +commit=1def1f75c940ccdfcc57a2d2769921dbb4d3914a \ No newline at end of file diff --git a/plugins/poison-moo b/plugins/poison-moo new file mode 100644 index 00000000000..289d697c551 --- /dev/null +++ b/plugins/poison-moo @@ -0,0 +1,2 @@ +repository=https://github.com/remindful7560/OSRS-Plugins.git +commit=ad9d0b358f83771c5dc73f3eb0e869d5ebf95def diff --git a/plugins/poisoned-npcs b/plugins/poisoned-npcs index eadabb2c9b8..68b8c2b2c67 100644 --- a/plugins/poisoned-npcs +++ b/plugins/poisoned-npcs @@ -1,2 +1,2 @@ repository=https://github.com/tautges/runelite-poisoned-npcs-plugin.git -commit=b8e2c928ff3bbef07daacb563ca6418748a9c5ae +commit=3dffea11df3b5a315ccd32bb4b8afa79f39aeba7 diff --git a/plugins/pokescape-pvm b/plugins/pokescape-pvm index 82c0a327316..9014f88586e 100644 --- a/plugins/pokescape-pvm +++ b/plugins/pokescape-pvm @@ -1,3 +1,3 @@ repository=https://github.com/Quoded/PokeScape-PvM.git -commit=9a8fcdc805fc9a75ea4b35c56415b28e807b931e +commit=482366be88196a05cf67d270db0c439fb41ea081 warning=This plugin submits your IP address, RSN, world, loot, and screenshots to a 3rd party website not controlled or verified by the RuneLite Developers. diff --git a/plugins/potion-storage-bars b/plugins/potion-storage-bars new file mode 100644 index 00000000000..def5bf97368 --- /dev/null +++ b/plugins/potion-storage-bars @@ -0,0 +1,2 @@ +repository=https://github.com/mrchooch/potion-bars.git +commit=4f9176f5f844f5d33bf52ab8d64a9237330db391 diff --git a/plugins/prayer-or-restore b/plugins/prayer-or-restore new file mode 100644 index 00000000000..dbfefdef302 --- /dev/null +++ b/plugins/prayer-or-restore @@ -0,0 +1,2 @@ +repository=https://github.com/Gnuder/prayer-or-restore.git +commit=6b8966bb7f76628a1b7f5a1c7d840e5ce89160e9 diff --git a/plugins/prayer-regeneration-helper b/plugins/prayer-regeneration-helper new file mode 100644 index 00000000000..1ee69c42ca7 --- /dev/null +++ b/plugins/prayer-regeneration-helper @@ -0,0 +1,2 @@ +repository=https://github.com/Supalosa/prayer-regeneration-timer.git +commit=3e27e25bb8b80984a783b3d81921c7256e458739 diff --git a/plugins/price-graph-opener b/plugins/price-graph-opener index 3b45b510278..78b57b8f1bc 100644 --- a/plugins/price-graph-opener +++ b/plugins/price-graph-opener @@ -1,2 +1,2 @@ repository=https://github.com/Raitab/plugins.git -commit=619a0c9a41671c4179d10cf0b4e4a4132b619a2e +commit=b9f04b47e2b14c66446015041cba490156954b24 diff --git a/plugins/prison-sentence b/plugins/prison-sentence new file mode 100644 index 00000000000..31c283cf101 --- /dev/null +++ b/plugins/prison-sentence @@ -0,0 +1,2 @@ +repository=https://github.com/Fiskmans/rl_prison_sentence.git +commit=8be7fb8bfa3eef78259058e82cb74d660b237e8f \ No newline at end of file diff --git a/plugins/proximityscape-discord b/plugins/proximityscape-discord index f8cfce13eb4..7c568a48e31 100644 --- a/plugins/proximityscape-discord +++ b/plugins/proximityscape-discord @@ -1,3 +1,4 @@ repository=https://github.com/warnerblue/proximityscape-discord.git commit=3e871eaf9b8385f27ab1c108b8992c90c26390b4 warning=This plugin submits your world, region, and IP address to a 3rd party server not controlled or verified by the RuneLite Developers. +disabled=deleted by author \ No newline at end of file diff --git a/plugins/purchase-progress b/plugins/purchase-progress index d87e808c964..038e9ea3a1a 100644 --- a/plugins/purchase-progress +++ b/plugins/purchase-progress @@ -1,2 +1,2 @@ repository=https://github.com/BrastaSauce/purchase-progress.git -commit=facf1e2b51462fee6c7ba4e85012ff961635756c \ No newline at end of file +commit=6cb4a878b083a12e18345820190782cb2bf46373 \ No newline at end of file diff --git a/plugins/pvp-performance-tracker b/plugins/pvp-performance-tracker index 035583dd2aa..e7e09fe5471 100644 --- a/plugins/pvp-performance-tracker +++ b/plugins/pvp-performance-tracker @@ -1,2 +1,2 @@ repository=https://github.com/Matsyir/pvp-performance-tracker.git -commit=9fb9a9a8630331a038248d7f76c9ca0e5f206569 +commit=c4e1b99159a5a3809a9ce57adabb705cdebc958a diff --git a/plugins/pyramid-plunder-counter b/plugins/pyramid-plunder-counter index 7c87ae8d45d..33850241433 100644 --- a/plugins/pyramid-plunder-counter +++ b/plugins/pyramid-plunder-counter @@ -1,2 +1,2 @@ repository=https://github.com/adnapPanda/pyramid-plunder-counter.git -commit=0e0a206187e5df1f8ddb089cbbf8917174891f57 +commit=3dcb9e8f55b26225337d83f61a72bcf6c16f9d88 diff --git a/plugins/quest-helper b/plugins/quest-helper index 3a084feb811..2aad5771d25 100644 --- a/plugins/quest-helper +++ b/plugins/quest-helper @@ -1,2 +1,2 @@ repository=https://github.com/Zoinkwiz/quest-helper.git -commit=259f591acab97e8b8ac24c117400babe2e46620d +commit=0fb01f96e3e5610a862dc0d0f0bef856414d5f25 diff --git a/plugins/quest-splits b/plugins/quest-splits index 90716af056a..a71b7b296a2 100644 --- a/plugins/quest-splits +++ b/plugins/quest-splits @@ -1,2 +1,2 @@ repository=https://github.com/jonas-fo/quest-splits.git -commit=749dd582537718ef43c1aee402f95e682f25963e +commit=275b12f08c761f32d4ec5990bd220c86bb34e108 diff --git a/plugins/quest-voiceover b/plugins/quest-voiceover new file mode 100644 index 00000000000..a0aad7d1c77 --- /dev/null +++ b/plugins/quest-voiceover @@ -0,0 +1,3 @@ +repository=https://github.com/KevinEdry/runelite-quest-voiceover.git +commit=0511aa777a73de37b81583224f37530c510f0b90 +jarSizeLimitMiB=15 \ No newline at end of file diff --git a/plugins/rainbow-rave b/plugins/rainbow-rave index 29f6680b4cf..0995a880f6d 100644 --- a/plugins/rainbow-rave +++ b/plugins/rainbow-rave @@ -1,3 +1,3 @@ repository=https://github.com/geheur/rainbow-rave.git -commit=8a4d91bcb831e2bb9861c44bd7b9d7bb0509fac8 +commit=d021f42dc9de746f65a1af4e676c6dd2126a5134 warning=This plugin shows bright flashing lights. diff --git a/plugins/random-event-hider b/plugins/random-event-hider index 380f091663e..91f22e2b30d 100644 --- a/plugins/random-event-hider +++ b/plugins/random-event-hider @@ -1,3 +1,3 @@ repository=https://github.com/YvesW/random-event-hider.git -commit=3c43ae77b8af2b13c635be3e2b72e31138792072 +commit=27743728beb8703da13888c9ccefdfc31ec2472e authors=YvesW diff --git a/plugins/random-hopper b/plugins/random-hopper index 875c7089d72..918d28a5581 100644 --- a/plugins/random-hopper +++ b/plugins/random-hopper @@ -1,2 +1,2 @@ repository=https://github.com/rugg0064/random-hopper.git -commit=eb1177586473382813d0a339c86bebc3fb3d662d +commit=d7104dbaca895790b1d9656e593a7b7bee4d5127 diff --git a/plugins/recommended-equipment b/plugins/recommended-equipment new file mode 100644 index 00000000000..f76f6de251e --- /dev/null +++ b/plugins/recommended-equipment @@ -0,0 +1,2 @@ +repository=https://github.com/t8or/runelite-recommended-equipment.git +commit=dd45953b8bfd1f67a609eb37acd7177797480550 diff --git a/plugins/red-clicks-only b/plugins/red-clicks-only new file mode 100644 index 00000000000..ba90e259ec4 --- /dev/null +++ b/plugins/red-clicks-only @@ -0,0 +1,2 @@ +repository=https://github.com/SamBenn/RL_RedClicksOnly.git +commit=3856624df925b236551807f3a78a6ff79d7e98cf diff --git a/plugins/region-locker b/plugins/region-locker index 0537f8745f5..830c214361b 100644 --- a/plugins/region-locker +++ b/plugins/region-locker @@ -1,3 +1,3 @@ repository=https://github.com/slaytostay/region-locker.git -commit=3e05ff7d70f1c3cbbd1faca24687f1a0b5cf134a +commit=17b0659d37b1882b3f1666968cdf8954413ed004 authors=slaytostay,ahooder diff --git a/plugins/resource-packs b/plugins/resource-packs index b823c7bdeb7..1ddb0247e00 100644 --- a/plugins/resource-packs +++ b/plugins/resource-packs @@ -1,3 +1,3 @@ repository=https://github.com/melkypie/resource-packs.git -commit=a6cb2cfdaf7a262be6209db553955db5d81bf22f +commit=d159718a56d8facdff54eabce521b197a8f2b030 authors=raiyni diff --git a/plugins/resting b/plugins/resting index 7d931480c8b..06d2054b756 100644 --- a/plugins/resting +++ b/plugins/resting @@ -1,2 +1,2 @@ repository=https://github.com/ScreteMonge/TestPlugin.git -commit=a20daf32a6db0802cf6cced989fcb87bc1657263 +commit=c20456da4722f61bf881687abde434b235fbf785 diff --git a/plugins/reword-manager b/plugins/reword-manager index cc36e22c0f2..7f83139aa1a 100644 --- a/plugins/reword-manager +++ b/plugins/reword-manager @@ -1,2 +1,2 @@ repository=https://github.com/ejaz-karim/reword-manager.git -commit=1aa3330c0d163976fc989ac97349f21401c88bc5 +commit=b9d21f2c3852d681d6fef42cc7031d1735362b44 diff --git a/plugins/roof-toggle b/plugins/roof-toggle index 0cf6201bab9..d1a5418a911 100644 --- a/plugins/roof-toggle +++ b/plugins/roof-toggle @@ -1,2 +1,2 @@ repository=https://github.com/ChrisScott9456/runelite-rooftoggle.git -commit=daf5a7ff79a8df49471e264460c0d9779bd9a608 +commit=444b74767ea2cb8123fd3c92b26f43bc28a02a92 diff --git a/plugins/rseye-connector b/plugins/rseye-connector index 3c2ab43f93b..e699681e2c4 100644 --- a/plugins/rseye-connector +++ b/plugins/rseye-connector @@ -1,3 +1,3 @@ repository=https://github.com/osrseye/rseye-connector.git -commit=49a73a8dc83130d2fc57eeb36b35549f193a4423 +commit=127665779377a85d1f4759712e9562900d152931 authors=BasketBandit diff --git a/plugins/rspaint b/plugins/rspaint new file mode 100644 index 00000000000..8513ab3b431 --- /dev/null +++ b/plugins/rspaint @@ -0,0 +1,2 @@ +repository=https://github.com/geheur/better-ground-markers-improved.git +commit=b632d49a410ec448dcdd25e7a2b5463a5a975f5f diff --git a/plugins/ruby-counter b/plugins/ruby-counter index d78a242957f..440cbe95af3 100644 --- a/plugins/ruby-counter +++ b/plugins/ruby-counter @@ -1,2 +1,2 @@ repository=https://github.com/hyppis1/BoltProcCounter.git -commit=938c92def86d439daa3bb92fc785cb83bcd5589c +commit=6e3f7e4adee1231a3bc59b1207b9604b9d7e464d diff --git a/plugins/runite-rocks b/plugins/runite-rocks index 865267e71a8..517bf3db054 100644 --- a/plugins/runite-rocks +++ b/plugins/runite-rocks @@ -1,2 +1,2 @@ repository=https://github.com/TheStonedTurtle/RuniteRocks.git -commit=0ea5370a4fa5170df17c4b0e144f5939cb672dd1 +commit=18c6c95d7d8f840d576d42a45e6a38ad7c324c72 diff --git a/plugins/sandstone-buckets-counter b/plugins/sandstone-buckets-counter index d2e52d6f838..83f76aebbee 100644 --- a/plugins/sandstone-buckets-counter +++ b/plugins/sandstone-buckets-counter @@ -1,2 +1,3 @@ repository=https://github.com/wookkeey/sandstone-buckets-counter.git -commit=47e2cc78af9b77a6c38b26cc09121cd0e1f0a6ad +commit=68e2f5f7c1f8681e36d89f953e83a5c8256b8ccf +authors=lukaszklis diff --git a/plugins/scythe-crush-warning b/plugins/scythe-crush-warning new file mode 100644 index 00000000000..2ee5c6884b0 --- /dev/null +++ b/plugins/scythe-crush-warning @@ -0,0 +1,3 @@ +repository=https://github.com/gtjamesa/scythe-crush-warning-plugin.git +commit=71b0111283b5bef87447dd0b638d40b8a77570cf +authors=gtjamesa diff --git a/plugins/seaweed-spore-notifier b/plugins/seaweed-spore-notifier index ce3b1991bf8..5a9a03cbf38 100644 --- a/plugins/seaweed-spore-notifier +++ b/plugins/seaweed-spore-notifier @@ -1,2 +1,2 @@ repository=https://github.com/rbbi/seaweed-spore-notifier.git -commit=b98eaac13a6b9eec1a3906c2d3f6090cae7bd3a2 +commit=3dab183ce35a4a74fd191756375774f86a71fee9 diff --git a/plugins/sgs-savings-tracker b/plugins/sgs-savings-tracker new file mode 100644 index 00000000000..3e6f992f797 --- /dev/null +++ b/plugins/sgs-savings-tracker @@ -0,0 +1,2 @@ +repository=https://github.com/jeremybahadirli/sgs-savings-tracker.git +commit=d805b7118024879254b265de5fb0c17dfe5c2f08 diff --git a/plugins/shift-remapping b/plugins/shift-remapping index 6eafcdddfd6..0412d5b637e 100644 --- a/plugins/shift-remapping +++ b/plugins/shift-remapping @@ -1,2 +1,2 @@ repository=https://github.com/WhatATopic/Shift-Remapping.git -commit=cb1964f8e81588ec0db889eecbe2bc61b67513ea +commit=dda7dd84ecedea3f8f8dfe7f694c55bf7f3decd9 diff --git a/plugins/shortest-path b/plugins/shortest-path index cdb92ddb03d..e404eab402e 100644 --- a/plugins/shortest-path +++ b/plugins/shortest-path @@ -1,2 +1,2 @@ repository=https://github.com/Skretzo/shortest-path.git -commit=2052c8a9132171e02e0b6d5f99183a20441b39f2 +commit=5714c5a0f9aa102fcb0f280c2f78a58cb2c1d56d diff --git a/plugins/six-hour-reminder b/plugins/six-hour-reminder new file mode 100644 index 00000000000..600002cfdbc --- /dev/null +++ b/plugins/six-hour-reminder @@ -0,0 +1,2 @@ +repository=https://github.com/Richardant/Six-Hour-Reminder.git +commit=5752f29d7c8b0d1b3e074dcac30f31f3adb83714 diff --git a/plugins/skilling-boost-reminder b/plugins/skilling-boost-reminder new file mode 100644 index 00000000000..94ee9b7fa85 --- /dev/null +++ b/plugins/skilling-boost-reminder @@ -0,0 +1,2 @@ +repository=https://github.com/JonneSaloranta/skilling-boost-reminder.git +commit=86e3dd1cfec73ff314f0eaacf149d891fbdc1a1b diff --git a/plugins/skilling-notifications b/plugins/skilling-notifications index c35daae03f5..b53075b0d5f 100644 --- a/plugins/skilling-notifications +++ b/plugins/skilling-notifications @@ -1,2 +1,2 @@ repository=https://github.com/erwinvc/runelite-plugins.git -commit=18f52e26e4893c3fc34f8a74dc1c701d42c32df0 +commit=e4d5abf1d3b939e9cdb97c020929dc53a7a70f69 diff --git a/plugins/skills-tab-progress-bars b/plugins/skills-tab-progress-bars index bfd42f67f96..e2a9e771ab5 100644 --- a/plugins/skills-tab-progress-bars +++ b/plugins/skills-tab-progress-bars @@ -1,2 +1,2 @@ repository=https://github.com/m0bilebtw/skills-tab-progress-bars.git -commit=e75b046befc637cbc48569d4be34d7e8cb1b0e41 +commit=8f81a45de555fa0ddbc20d93e465b8ce73aaa201 diff --git a/plugins/skull-notifier b/plugins/skull-notifier index 4f74d69eb73..d0a4d5086d5 100644 --- a/plugins/skull-notifier +++ b/plugins/skull-notifier @@ -1,2 +1,3 @@ repository=https://github.com/Trevor159/runelite-external-plugins.git -commit=02e48796fe1e71ab39b2f5e64d5245678b4f7847 \ No newline at end of file +commit=02e48796fe1e71ab39b2f5e64d5245678b4f7847 +disabled=unmaintained \ No newline at end of file diff --git a/plugins/skull-prevention-reminder b/plugins/skull-prevention-reminder new file mode 100644 index 00000000000..ce644b98f9e --- /dev/null +++ b/plugins/skull-prevention-reminder @@ -0,0 +1,2 @@ +repository=https://github.com/lostcoastwizard/skull-prevention-reminder.git +commit=115b60392c3b30e18dea853aa7d78b9c0156d4de \ No newline at end of file diff --git a/plugins/slayer-additions b/plugins/slayer-additions index c8c532c07d1..1407e88c1bc 100644 --- a/plugins/slayer-additions +++ b/plugins/slayer-additions @@ -1,2 +1,2 @@ repository=https://github.com/SkyBouncer/sky_slayer.git -commit=d11e0e86c84792844cbd691688b6c315f3fd65a7 +commit=edee574e352c0ef860f8ae760f1d9d228f87490e diff --git a/plugins/slayer-assistant b/plugins/slayer-assistant index ee06658ecc4..8d30d5a717d 100644 --- a/plugins/slayer-assistant +++ b/plugins/slayer-assistant @@ -1,2 +1,2 @@ repository=https://github.com/LeeOkeefe/slayer-assistant-plugin.git -commit=58ea6f501330fa2995c0f07220e1e857ae741f0b +commit=1bd2e8b2ca9d4a165c90a6053ec17c498fd74b38 diff --git a/plugins/slayer-wiki b/plugins/slayer-wiki index 2b554726dd9..4e75a3c258f 100644 --- a/plugins/slayer-wiki +++ b/plugins/slayer-wiki @@ -1,2 +1,2 @@ repository=https://github.com/guillaume009/slayer-wiki.git -commit=ec152bb77efcf31836a523e60c148ef9580faa2c +commit=2ece09e0a6fd79bea07bfa8f3b53bc2305e73a42 diff --git a/plugins/sote-wall-remover b/plugins/sote-wall-remover new file mode 100644 index 00000000000..5e363280961 --- /dev/null +++ b/plugins/sote-wall-remover @@ -0,0 +1,2 @@ +repository=https://github.com/Need-Femboy/SoteWallRemover.git +commit=06db04dfd3b2bb23764b836d963cd1c243cc25f6 diff --git a/plugins/soul-wars b/plugins/soul-wars new file mode 100644 index 00000000000..0ba8df12a35 --- /dev/null +++ b/plugins/soul-wars @@ -0,0 +1,2 @@ +repository=https://github.com/Lucidare/soul-wars.git +commit=26672ebddf8d8c77e57cf39a5e26e8cd3d22de0f diff --git a/plugins/soulreaper-axe-qol b/plugins/soulreaper-axe-qol new file mode 100644 index 00000000000..d255deb902b --- /dev/null +++ b/plugins/soulreaper-axe-qol @@ -0,0 +1,2 @@ +repository=https://github.com/seacelery/soulreaper-axe-qol.git +commit=061b36dd5a31033dcacc3b6d7169b5ce44044225 diff --git a/plugins/sound-alerts b/plugins/sound-alerts index ea053dd39ba..6b6e9da473f 100644 --- a/plugins/sound-alerts +++ b/plugins/sound-alerts @@ -1,2 +1,2 @@ repository=https://github.com/Skykeiron/SoundAlerts.git -commit=45865577d9e1980b2b00b0d97b437a2c660c4a02 +commit=da1bd1e8e17b90d3faf9f209258ded0fac0a832d diff --git a/plugins/spawnpredictor b/plugins/spawnpredictor index 817211c4af2..104fca9fa6e 100644 --- a/plugins/spawnpredictor +++ b/plugins/spawnpredictor @@ -1,2 +1,2 @@ repository=https://github.com/damencs/spawn-predictor.git -commit=6000b5035579b9a4a4ecf2508c53c1117411650d \ No newline at end of file +commit=cff7ba42ef98d82a2c616d76f277f07075c362bd \ No newline at end of file diff --git a/plugins/spec-jingle b/plugins/spec-jingle new file mode 100644 index 00000000000..ca97d42a68d --- /dev/null +++ b/plugins/spec-jingle @@ -0,0 +1,2 @@ +repository=https://github.com/Servilabs/spec-jingle.git +commit=5d96c7584ecef39b53635a81819ee42c671c5e18 diff --git a/plugins/special-attack-notifier b/plugins/special-attack-notifier new file mode 100644 index 00000000000..f3aa4d9dad5 --- /dev/null +++ b/plugins/special-attack-notifier @@ -0,0 +1,2 @@ +repository=https://github.com/Foxori/special-attack-notifier.git +commit=975b3582ee47372408c77c97ff046e9eaa7387ea diff --git a/plugins/spectralclanmgmt b/plugins/spectralclanmgmt new file mode 100644 index 00000000000..6624606be3a --- /dev/null +++ b/plugins/spectralclanmgmt @@ -0,0 +1,3 @@ +repository=https://github.com/rebelego/spectralclanmgmt.git +commit=693321e7d17fa404f780c9c7b837e078171c6c63 +warning=This plugin may submit certain data to a 3rd-party server not controlled or verified by the RuneLite Developers. This data could include any of the following: your IP address, your account hash, your current in-game name, your previous in-game name, and/or your clan join date. IP addresses are transmitted as part of the HTTP request and are not retained by the server. diff --git a/plugins/spiderhider b/plugins/spiderhider index 6a31678e938..051226fcf38 100644 --- a/plugins/spiderhider +++ b/plugins/spiderhider @@ -1,2 +1,3 @@ repository=https://github.com/straightupgangsta/spiderhiderreal.git commit=b3a3f08f27b3eda55ae28d008ddbed090990d76e +disabled=unmaintained \ No newline at end of file diff --git a/plugins/spirit-tree-map b/plugins/spirit-tree-map index ca24f7ae923..a18cf10c5f1 100644 --- a/plugins/spirit-tree-map +++ b/plugins/spirit-tree-map @@ -1,2 +1,2 @@ repository=https://github.com/MJHylkema/spirit-tree-map.git -commit=a0c65e6404630e27a52564f967704f3b04715523 +commit=489e5de17beeeb77a5200cf4aa6c8b4488364521 diff --git a/plugins/star-calling-assist b/plugins/star-calling-assist index 450233b9e01..5b97c040aef 100644 --- a/plugins/star-calling-assist +++ b/plugins/star-calling-assist @@ -1,3 +1,3 @@ repository=https://github.com/zodaz/star-calling-assist.git -commit=b3a7b6d21a60449a95cc844c822b9eeddd52c89a +commit=8c4af39fd8893ac51d3151baa4a572f79a7837cd warning=This plugin submits your current world number along with your IP address to a 3rd party website not controlled or verified by the RuneLite Developers. By installing this plugin you agree to the star miners privacy policy: https://public.starminers.site/privacypolicy diff --git a/plugins/stronghold-of-security b/plugins/stronghold-of-security index b92ec36d050..edf6a2eeb97 100644 --- a/plugins/stronghold-of-security +++ b/plugins/stronghold-of-security @@ -1,2 +1,2 @@ repository=https://github.com/severikupari1/strongholdofsecurity.git -commit=ffb52e71feba8f36e71e73743c3c344bac4f7a4c +commit=8058ca09a3c29666d99f5b446f916e8a3cd6b8b6 diff --git a/plugins/supplies-tracker b/plugins/supplies-tracker index 9aa24b16969..14128e6ae83 100644 --- a/plugins/supplies-tracker +++ b/plugins/supplies-tracker @@ -1,2 +1,2 @@ repository=https://github.com/pwatts6060/SuppliesTrackerExternal.git -commit=cc1eac0d53b91eb8c3d7e8abd7226e5b8f7392ad +commit=ed224416a6dd9a43479b2491e671c8f4c4abbcdc diff --git a/plugins/target-true-tile b/plugins/target-true-tile index 80c51fed523..80ed0beef6d 100644 --- a/plugins/target-true-tile +++ b/plugins/target-true-tile @@ -1,3 +1,3 @@ repository=https://github.com/Notloc/runelite-target-true-tile.git -commit=3d45b04d3bd1b7767c4647a909d551506f9e3f97 +commit=08adbb77009f8fb2dbe3956f63e3cee1749e39a3 authors=Notloc diff --git a/plugins/tasks-tracker b/plugins/tasks-tracker index c50d0849278..54c61404f8e 100644 --- a/plugins/tasks-tracker +++ b/plugins/tasks-tracker @@ -1,3 +1,3 @@ repository=https://github.com/osrs-reldo/tasks-tracker-plugin.git -commit=7a30111ad4950a37b57517eabf6c1b28b82243b4 +commit=6d07c87cff462ff87047a8c96e2ff08f4d096629 authors=tylerthardy diff --git a/plugins/temple-trek-bog-helper b/plugins/temple-trek-bog-helper index 17b0c9b6640..2ffaa40e973 100644 --- a/plugins/temple-trek-bog-helper +++ b/plugins/temple-trek-bog-helper @@ -1,2 +1,3 @@ repository=https://github.com/sololegends/runelite-temple-trek-bog-helper.git commit=d85f8d0c9a0c49faf8a02bf93019de24a1fa4e4a +disabled=true diff --git a/plugins/the-gauntlet b/plugins/the-gauntlet index 05e03850997..60666f87913 100644 --- a/plugins/the-gauntlet +++ b/plugins/the-gauntlet @@ -1,2 +1,2 @@ -repository=https://github.com/rdutta/runelite-gauntlet.git -commit=594c3bf973c94ee512ff890f0b4648d092180029 +repository=https://github.com/LlemonDuck/the-gauntlet.git +commit=db78c98e2a2e41fd0367f0804b76f55e8f4895f9 diff --git a/plugins/thrall-helper b/plugins/thrall-helper index 65576e5c1d8..0749974d72b 100644 --- a/plugins/thrall-helper +++ b/plugins/thrall-helper @@ -1,2 +1,2 @@ repository=https://github.com/PortAGuy/thrall-helper.git -commit=bde662523d9458a4f625ced013a973ca9e92abc1 +commit=91efaee9926efc5dd47a30a6e8ab8c9287c0ddd2 diff --git a/plugins/tick-counter b/plugins/tick-counter index 5e54cf8fc3f..ea6597bbd39 100644 --- a/plugins/tick-counter +++ b/plugins/tick-counter @@ -1,2 +1,3 @@ repository=https://github.com/winterdaze/tick-counter.git -commit=212f37b7549f704c9f9b875ba920c9c8e43ffad7 \ No newline at end of file +commit=ce1e1400683aae9b7502b315ceadaac5569894dd +authors=LlemonDuck,Richardant,winterdaze diff --git a/plugins/tick-dance-aim-trainer b/plugins/tick-dance-aim-trainer index 4dc5974d277..402d2c5f2dc 100644 --- a/plugins/tick-dance-aim-trainer +++ b/plugins/tick-dance-aim-trainer @@ -1,2 +1,3 @@ repository=https://github.com/929482/tick-dance-aim-trainer.git commit=24c79d645f7c7ac4b734a022fa2a5168f78d86ca +disabled=unmaintained \ No newline at end of file diff --git a/plugins/tick-fixer-for-mac b/plugins/tick-fixer-for-mac index 7ba99917e6a..07ad681165e 100644 --- a/plugins/tick-fixer-for-mac +++ b/plugins/tick-fixer-for-mac @@ -1,2 +1,2 @@ repository=https://github.com/jonathangarelick/tick-fixer.git -commit=8c5444941cfd67253c5e5b99d8d0813fe50a2b7a +commit=7a978127ffb53e72951e8f6c05e3339b188021fd diff --git a/plugins/tick-manipulation-helper b/plugins/tick-manipulation-helper index a11e8766f06..9ed193f0061 100644 --- a/plugins/tick-manipulation-helper +++ b/plugins/tick-manipulation-helper @@ -1,2 +1,2 @@ repository=https://github.com/pwatts6060/runelite-plugins.git -commit=40da842f351c019d6bfabd0ab1be31fc8c1f0a1b +commit=525102bc7caa1a823eaa18c845fdf7a6bf205a78 diff --git a/plugins/tictac7x-charges b/plugins/tictac7x-charges index 98622b265f1..0149eb1e470 100644 --- a/plugins/tictac7x-charges +++ b/plugins/tictac7x-charges @@ -1,2 +1,2 @@ repository=https://github.com/TicTac7x/runelite-plugins.git -commit=5b3415d1a4566a45dd1561315761d5959cd7fb00 +commit=acaacac074fee82725ccb73e65f95a7c34aebd97 diff --git a/plugins/tictac7x-deposit-worn-items b/plugins/tictac7x-deposit-worn-items new file mode 100644 index 00000000000..a455dbb66b5 --- /dev/null +++ b/plugins/tictac7x-deposit-worn-items @@ -0,0 +1,2 @@ +repository=https://github.com/TicTac7x/runelite-plugins.git +commit=dd877004e0a0912e69d81379c37585e05cd7ef1f diff --git a/plugins/tictac7x-motherlode b/plugins/tictac7x-motherlode index fc9a8302099..7a6b8bf1bec 100644 --- a/plugins/tictac7x-motherlode +++ b/plugins/tictac7x-motherlode @@ -1,2 +1,2 @@ repository=https://github.com/TicTac7x/runelite-plugins.git -commit=a9381fdab8c082fbb3213d5c47c4413d25c89782 +commit=86916a10ae623c1356356b0c69144b12c880f935 diff --git a/plugins/tictac7x-rooftops b/plugins/tictac7x-rooftops index 471416ffc6c..a79f6706953 100644 --- a/plugins/tictac7x-rooftops +++ b/plugins/tictac7x-rooftops @@ -1,2 +1,2 @@ repository=https://github.com/TicTac7x/runelite-plugins.git -commit=2e9308fbbb8e3de8785271b09d2489d7ca1e0d96 +commit=bae4e9623b39b00eee2641d4c027f875ac5fc346 diff --git a/plugins/tile-grid b/plugins/tile-grid new file mode 100644 index 00000000000..0b962b9c871 --- /dev/null +++ b/plugins/tile-grid @@ -0,0 +1,3 @@ +repository=https://github.com/Notloc/runelite-tile-grid.git +commit=63265768f3cb6cf5651f42843d8959bec6ebc0d9 +authors=Notloc diff --git a/plugins/tile-packs b/plugins/tile-packs index 3fa6787551b..e1a53784eeb 100644 --- a/plugins/tile-packs +++ b/plugins/tile-packs @@ -1,2 +1,2 @@ repository=https://github.com/TrevorMDev/tile-packs.git -commit=704e10891abb4b40cd4c035d5917cf15aa642ac4 +commit=04f0e71b9e29b51dc11fe27e20a8626bf6f9bd17 diff --git a/plugins/time-tracking-reminder b/plugins/time-tracking-reminder index 0e6cb9c64ad..2fae85ca229 100644 --- a/plugins/time-tracking-reminder +++ b/plugins/time-tracking-reminder @@ -1,2 +1,2 @@ repository=https://github.com/queicherius/runelite-time-tracking-reminder.git -commit=2ab867ead8f0ac493e46587dc64394005a403646 +commit=c5f237f54f9d8edd434d1998f41e797d340ab56a diff --git a/plugins/timers-ca b/plugins/timers-ca index 7647d0747bc..672644e78b1 100644 --- a/plugins/timers-ca +++ b/plugins/timers-ca @@ -1,2 +1,2 @@ repository=https://github.com/PaJauKat/Timers-CA.git -commit=80f09334c483829bc2908ad65c109786a42a1909 +commit=b96d23176c0b74c1f72dfbee73f6bf4bca65a04c diff --git a/plugins/tk-swamp-helper b/plugins/tk-swamp-helper index 2e802c380be..b4c14cd60fd 100644 --- a/plugins/tk-swamp-helper +++ b/plugins/tk-swamp-helper @@ -1,2 +1,3 @@ repository=https://github.com/PlayerCoder1/Temple-Trekking-swamp.git commit=cc654788df2b41d3df700a7624805f74c8939382 +disabled=true diff --git a/plugins/tob-damage-counter b/plugins/tob-damage-counter index c6db9d02897..fb74fa3208e 100644 --- a/plugins/tob-damage-counter +++ b/plugins/tob-damage-counter @@ -1,2 +1,2 @@ repository=https://github.com/Trevor159/runelite-external-plugins.git -commit=6c5b480695f595c2ab55241801bd186e92e177e4 \ No newline at end of file +commit=c668472dc742504c052697d7cda35ac35312a4dd \ No newline at end of file diff --git a/plugins/tobqol b/plugins/tobqol index 4dc86ca92d4..67bba0769b1 100644 --- a/plugins/tobqol +++ b/plugins/tobqol @@ -1,2 +1,2 @@ repository=https://github.com/damencs/tob-qol.git -commit=6bf17b54611d5fb13cae0ed43163d913422d01fc \ No newline at end of file +commit=07aa8780678bc0790816505d36a5f8bd052ac767 \ No newline at end of file diff --git a/plugins/tog-crowdsourcing b/plugins/tog-crowdsourcing index 84b0165a58d..44b90e4a08a 100644 --- a/plugins/tog-crowdsourcing +++ b/plugins/tog-crowdsourcing @@ -1,3 +1,3 @@ repository=https://github.com/jcarbelbide/tog-crowdsourcing.git -commit=a8cdbd814a2e5be1adebf0c8be2970133e8df0f4 +commit=1e5b8b84bd674be0554645eba8e56393d6abe9b7 warning=This plugin submits your current world number along with your IP address to a 3rd party website not controlled or verified by the RuneLite Developers. diff --git a/plugins/tombs-of-amascut b/plugins/tombs-of-amascut index 01a73516012..77c0516c41e 100644 --- a/plugins/tombs-of-amascut +++ b/plugins/tombs-of-amascut @@ -1,2 +1,2 @@ repository=https://github.com/LlemonDuck/tombs-of-amascut.git -commit=d482d057966b4110160873e6989d7ed7b233fb5b +commit=97771f3505b6cbd41f50b1a2786aaa0e9b68f6f1 diff --git a/plugins/tool-required b/plugins/tool-required new file mode 100644 index 00000000000..b42d2485d49 --- /dev/null +++ b/plugins/tool-required @@ -0,0 +1,2 @@ +repository=https://github.com/Unmoon/tool-required.git +commit=dd5836111e4510df8f6d174155eda249fbd012b4 diff --git a/plugins/tostky-tracker b/plugins/tostky-tracker index c84b7d17c60..bfc328ff06e 100644 --- a/plugins/tostky-tracker +++ b/plugins/tostky-tracker @@ -1,2 +1,2 @@ repository=https://github.com/example-git/tostky-plugin.git -commit=e13a67955bb1e6a14d8d5648c3e949ad9b0fe3d7 +commit=7ee1e128bef4b3eb2a836da5fb13fc312f9926bd diff --git a/plugins/town-criers-cries b/plugins/town-criers-cries new file mode 100644 index 00000000000..85ead50366a --- /dev/null +++ b/plugins/town-criers-cries @@ -0,0 +1,2 @@ +repository=https://github.com/JREWeav/town-criers-cries.git +commit=9857878c9317ec8cf182d43a46652d4da279b761 diff --git a/plugins/transmog b/plugins/transmog index 8e7b29f3ae1..a1e9be7f40f 100644 --- a/plugins/transmog +++ b/plugins/transmog @@ -1,2 +1,3 @@ repository=https://github.com/Enriath/external-plugins.git -commit=803d992ea60b50a05cd67825354374177a9df7d8 +commit=b0afe7783c844df1a9da0fafbb1cf3164b73af75 +unavailable=This plugin is incompatible with the latest RuneLite version, and requires its author to update it. diff --git a/plugins/turael-skipping b/plugins/turael-skipping index 897181bec08..8b9608072a3 100644 --- a/plugins/turael-skipping +++ b/plugins/turael-skipping @@ -1,2 +1,2 @@ repository=https://github.com/BrastaSauce/turael-skpping.git -commit=03964a7f0ba64003205bd0c5fb5fea6e7410895a \ No newline at end of file +commit=6bde6a87ff7974f418c830f5f011c08d28ed3e0a \ No newline at end of file diff --git a/plugins/twitch-live-loadout b/plugins/twitch-live-loadout index 9aad5d64460..7658dbdaa45 100644 --- a/plugins/twitch-live-loadout +++ b/plugins/twitch-live-loadout @@ -1,2 +1,2 @@ repository=https://github.com/pepijnverburg/osrs-runelite-twitch-live-loadout-plugin.git -commit=5c7c13b4f7308d0bfcf40a1ae608510145a1edbc +commit=ccd87e1dc1ddace60168888228f2d8393acf6fce diff --git a/plugins/tzhaar-hp-tracker b/plugins/tzhaar-hp-tracker index 362142d7757..7cb12776631 100644 --- a/plugins/tzhaar-hp-tracker +++ b/plugins/tzhaar-hp-tracker @@ -1,2 +1,2 @@ repository=https://github.com/MoreBuchus/buchus-plugins.git -commit=d551ac8af4b5c373d9301a754c507aa2af9584c1 +commit=1c720ebadb9a2366f520d130e3c60c1775bd19b7 diff --git a/plugins/ultimate-vm b/plugins/ultimate-vm index 791f89855f3..d2c28f0c187 100644 --- a/plugins/ultimate-vm +++ b/plugins/ultimate-vm @@ -1,2 +1,2 @@ repository=https://github.com/rtaylor4444/UltimateVolcanicMine.git -commit=b89038851978b10a4fde5e478616425da7c70a99 +commit=2c70121b2444c76a5cf6fa954fd07e1614e1e7b7 diff --git a/plugins/unbalanced-trade-prevention b/plugins/unbalanced-trade-prevention index f3c8dfc82e4..e92737c7754 100644 --- a/plugins/unbalanced-trade-prevention +++ b/plugins/unbalanced-trade-prevention @@ -1,2 +1,2 @@ repository=https://github.com/TheStonedTurtle/unbalanced-trade-prevention.git -commit=03f25e9cc3b655ddc34b85d857f242a7a34358f7 +commit=61d8da55eb776f2902524db53a11bd02fcff1969 diff --git a/plugins/underwateragility b/plugins/underwateragility new file mode 100644 index 00000000000..09c7d778c2a --- /dev/null +++ b/plugins/underwateragility @@ -0,0 +1,2 @@ +repository=https://github.com/roundshoe/underwateragility.git +commit=9bb9d50676adf60dd88ee7ad482c18eb354afb68 diff --git a/plugins/undying-retribution-timer b/plugins/undying-retribution-timer index 25a917e558b..c425396c5ad 100644 --- a/plugins/undying-retribution-timer +++ b/plugins/undying-retribution-timer @@ -1,4 +1,3 @@ repository=https://github.com/DominickCobb-rs/undying-retribution-timer.git -commit=362da9aa704bd886097e7e6fa31988fbba7a51cc +commit=cd16d2bf4e62d90deee7254784ab800c661deed5 authors=DominickCobb -disabled=End of League diff --git a/plugins/unpotted-reminder b/plugins/unpotted-reminder index 23e405594c4..65e504c2bac 100644 --- a/plugins/unpotted-reminder +++ b/plugins/unpotted-reminder @@ -1,2 +1,2 @@ repository=https://github.com/AnkouOSRS/unpotted-reminder.git -commit=526db7a2b5e76299162a3d1f0a7087080c86b418 \ No newline at end of file +commit=3e04a9b8f3a438261f8dbb384d3f8f8dd1b60df5 \ No newline at end of file diff --git a/plugins/valuable-drop-prices b/plugins/valuable-drop-prices new file mode 100644 index 00000000000..a41d7dcb57d --- /dev/null +++ b/plugins/valuable-drop-prices @@ -0,0 +1,2 @@ +repository=https://github.com/Anderzenn/valuable-drop-prices.git +commit=9243d5943ff9342c6c18e3b2af80bfc38640d7a7 \ No newline at end of file diff --git a/plugins/varlamore-house-thieving b/plugins/varlamore-house-thieving index 6439f988ee5..0c3ece4c0aa 100644 --- a/plugins/varlamore-house-thieving +++ b/plugins/varlamore-house-thieving @@ -1,2 +1,2 @@ repository=https://github.com/sololegends/runelite-varlamore-house-thieving.git -commit=98a0e032270f60c2deb22ac5b8eb97b9c0f7d740 +commit=07b66901bf8d5a6d272ccd0a6c77821940509d11 diff --git a/plugins/vineyard-helper b/plugins/vineyard-helper new file mode 100644 index 00000000000..6e4f377d737 --- /dev/null +++ b/plugins/vineyard-helper @@ -0,0 +1,2 @@ +repository=https://github.com/SurfaceCode/vineyard-helper.git +commit=4aa71651b13003133ff9792642acf5f2815acc04 diff --git a/plugins/visual-metronome b/plugins/visual-metronome index b8f0693488a..5399db51213 100644 --- a/plugins/visual-metronome +++ b/plugins/visual-metronome @@ -1,2 +1,2 @@ repository=https://github.com/vincent0955/Visual-metronome.git -commit=143612512dad5cbc5f8e694eb603f6f1c601276d \ No newline at end of file +commit=8306a91d897ac1683d3454eadad970afd8dc47cf \ No newline at end of file diff --git a/plugins/vmrecolor b/plugins/vmrecolor new file mode 100644 index 00000000000..67ea9ced234 --- /dev/null +++ b/plugins/vmrecolor @@ -0,0 +1,2 @@ +repository=https://github.com/DominickCobb-rs/VM-Recolor.git +commit=fc186f446e904d76ba2cb2891973a13b68f07f10 diff --git a/plugins/voicescape b/plugins/voicescape index fad9005d56d..2db1ebad928 100644 --- a/plugins/voicescape +++ b/plugins/voicescape @@ -1,2 +1,3 @@ repository=https://github.com/derfurkan/VoiceScape.git -commit=d8f1aec188c05157e41b5d9b5372e4876d0c4f5f \ No newline at end of file +commit=d8f1aec188c05157e41b5d9b5372e4876d0c4f5f +disabled=deleted by author \ No newline at end of file diff --git a/plugins/wasted-bank-space b/plugins/wasted-bank-space index 41fb1b35c59..225804df369 100644 --- a/plugins/wasted-bank-space +++ b/plugins/wasted-bank-space @@ -1,2 +1,2 @@ repository=https://github.com/mcgeer/WastedBankSpace.git -commit=4ed1ca904d28c40c52fbcbba7f8900af52c49c75 +commit=ee8b9b6fdc47db9fc6853395f2303f57fe31bb18 diff --git a/plugins/watchdog b/plugins/watchdog index 3bedf29aeb5..902d1e8b13d 100644 --- a/plugins/watchdog +++ b/plugins/watchdog @@ -1,2 +1,2 @@ repository=https://github.com/adamk33n3r/runelite-watchdog.git -commit=bf2f863239c22a2ad0a29a8ba41760e25828b8b7 +commit=32809cd5135015b1c84d3b6ecc24dc3fa8ac74df diff --git a/plugins/weapon-animation-replacer b/plugins/weapon-animation-replacer index 3063d91ca68..d3857239aa6 100644 --- a/plugins/weapon-animation-replacer +++ b/plugins/weapon-animation-replacer @@ -1,2 +1,2 @@ repository=https://github.com/geheur/weapon-animation-replacer.git -commit=16c3e15bb19fad81e7a24877d9c2a4cf878b84aa +commit=677adcc4ab6b9dfc1f2af368cf15bc613cfdd0bc diff --git a/plugins/weapon-charges-2 b/plugins/weapon-charges-2 index bdd29b18cf1..78d28a35581 100644 --- a/plugins/weapon-charges-2 +++ b/plugins/weapon-charges-2 @@ -1,2 +1,2 @@ repository=https://github.com/geheur/weapon-charges.git -commit=5c5300ed9ea4266855abd66069d668be85d91dfc +commit=245bd6f1ee67951b6f98cec3913e3742c55379b2 diff --git a/plugins/what-pet-is-that-anyway b/plugins/what-pet-is-that-anyway new file mode 100644 index 00000000000..804cb619d98 --- /dev/null +++ b/plugins/what-pet-is-that-anyway @@ -0,0 +1,3 @@ +repository=https://github.com/sololegends/runelite-what-pet-is-that-anyway.git +commit=533ee959b8e12b86d587e1db9c976a165bffc2e7 +authors=Sololegends diff --git a/plugins/white-knight-rank b/plugins/white-knight-rank new file mode 100644 index 00000000000..150d4192940 --- /dev/null +++ b/plugins/white-knight-rank @@ -0,0 +1,3 @@ +repository=https://github.com/gtjamesa/white-knight-rank-plugin.git +commit=da43b2b4e24e04970460dbc25cdaeffa7d7be410 +authors=gtjamesa diff --git a/plugins/wikisync b/plugins/wikisync index 97663479a33..bc0c2450413 100644 --- a/plugins/wikisync +++ b/plugins/wikisync @@ -1,4 +1,4 @@ repository=https://github.com/weirdgloop/WikiSync.git -commit=6aadd82a8e133127c0ee369879f339651db692d0 +commit=8ab0ddc6cba3a157d992d2a4f814c29177640b0b warning=Similar to the official HiScores, this plugin pushes up data about your character that can be viewed by anyone.
We don't suggest using this if you are (for example) a PvP-locked hardcore ironman, where broadcasting your
quest status could be detrimental to your account by giving away information about what you're currently doing. authors=andmcadams,leejt,lezed1,jayktaylor diff --git a/plugins/wilderness-course-ticket-reminder b/plugins/wilderness-course-ticket-reminder new file mode 100644 index 00000000000..251b0961477 --- /dev/null +++ b/plugins/wilderness-course-ticket-reminder @@ -0,0 +1,2 @@ +repository=https://github.com/neafey/Wilderness-course-ticket-reminder.git +commit=d5936826824bcf0c48233d4b1baefd9bcb201b15 diff --git a/plugins/wilderness-multi-lines b/plugins/wilderness-multi-lines index 43981d2e752..aca261cb53d 100644 --- a/plugins/wilderness-multi-lines +++ b/plugins/wilderness-multi-lines @@ -1,2 +1,2 @@ repository=https://github.com/Nightfirecat/plugin-hub-plugins.git -commit=1f945bfc238b099f19e320b85de1e340dde49691 +commit=a98db1ff591fe992d3a2c074fab41ad1d0d547ab diff --git a/plugins/wilderness-player-alarm b/plugins/wilderness-player-alarm index 847a338c438..8d5724102fd 100644 --- a/plugins/wilderness-player-alarm +++ b/plugins/wilderness-player-alarm @@ -1,2 +1,2 @@ repository=https://github.com/adhansen/plugin-repo.git -commit=acf721f8d9372b0524b05c438c8ad0c4ee4121b0 +commit=438d44140068b64520cbdc22400b4e8a3e5b9d38 diff --git a/plugins/wilderness-warnings b/plugins/wilderness-warnings index f2b33196939..0f3fa03d0a5 100644 --- a/plugins/wilderness-warnings +++ b/plugins/wilderness-warnings @@ -1,2 +1,2 @@ repository=https://github.com/LuxOG/wildernesswarnings.git -commit=386cf93b6f383f74fdab0ab729f9f36b6188baa0 +commit=0d61ef2063307b81059e12c2c38739995f13781f diff --git a/plugins/wintertodt-scouter b/plugins/wintertodt-scouter index 418d454fec8..ed0d3aee2d7 100644 --- a/plugins/wintertodt-scouter +++ b/plugins/wintertodt-scouter @@ -1,3 +1,3 @@ -repository=https://github.com/nucleon/wintertodt-scouter.git -commit=910d8f1a8b905e10a7390d693c7260f90984f2fd +repository=https://github.com/Nouser/wintertodt-scouter.git +commit=45b3195d2561e2d9b71251480965837cb1529d13 warning=This plugin shares your IP with a 3rd party server not controlled or verified by the RuneLite Developers. diff --git a/plugins/wom-utils b/plugins/wom-utils index 354ec315a95..ff2e7a6c790 100644 --- a/plugins/wom-utils +++ b/plugins/wom-utils @@ -1,4 +1,4 @@ repository=https://github.com/wise-old-man/wiseoldman-runelite-plugin.git -commit=0c577998111d3113432a75aace9e1b33dc891fa5 +commit=6ca5f2f120f9eb36c20c11a7bb5b917da7fd8445 warning=This plugin submits the names of you, your friends and members of your clan chat to wiseoldman.net. authors=dekvall,rorro,psikoi diff --git a/plugins/world-cycle b/plugins/world-cycle index 70e21010898..5d2ebfb77a2 100644 --- a/plugins/world-cycle +++ b/plugins/world-cycle @@ -1,2 +1,2 @@ repository=https://github.com/1Defence/world-cycle.git -commit=e44d3443751e5b7deaec75cd0d7d17452c34e154 \ No newline at end of file +commit=e64e601db7615410c3bdee2e87c1411b9b1f0f64 \ No newline at end of file diff --git a/plugins/world-heatmap b/plugins/world-heatmap index 5f81663c488..182609ed01a 100644 --- a/plugins/world-heatmap +++ b/plugins/world-heatmap @@ -1,2 +1,2 @@ repository=https://github.com/GrandTheftWalrus/RuneLite-World-Heatmap.git -commit=3f763d868c8c5338eb116963a3f5153c089cd3d4 +commit=f40c3a73d0fc7c8001bbcaa0d66f54921ab33825 diff --git a/plugins/world-hider b/plugins/world-hider index 612d220c272..ab50c0bc9e4 100644 --- a/plugins/world-hider +++ b/plugins/world-hider @@ -1,2 +1,2 @@ repository=https://github.com/dekvall/runelite-external-plugins.git -commit=453da3b6a4a9d8075e2b3d385d554d4246e576e8 +commit=c16c6c64150d69e3103dbcc194a0d5a44a4c29e6 diff --git a/plugins/worldhop-counter b/plugins/worldhop-counter new file mode 100644 index 00000000000..6a03c09f2bd --- /dev/null +++ b/plugins/worldhop-counter @@ -0,0 +1,2 @@ +repository=https://github.com/Fiskmans/rl_worldhop_counter.git +commit=8990e54d34314972d05cfe4f3a397a2e99446062 \ No newline at end of file diff --git a/plugins/xp-drop-notify b/plugins/xp-drop-notify index cd473e439c2..33020ab683f 100644 --- a/plugins/xp-drop-notify +++ b/plugins/xp-drop-notify @@ -1,2 +1,2 @@ repository=https://github.com/pwatts6060/runelite-plugins.git -commit=0e5e9396f65873d0c7292393032f6bf7489a6d62 +commit=64783f149ca866c1a7e3fa0ec8145b57218b9713 diff --git a/plugins/xp-goalz b/plugins/xp-goalz index 1e67c0465f6..08999d35b76 100644 --- a/plugins/xp-goalz +++ b/plugins/xp-goalz @@ -1,2 +1,2 @@ -repository=https://github.com/erversteeg/Xp-Goals.git -commit=2f60e7aace82980e569ecad04ef1e32883d2b64d \ No newline at end of file +repository=https://github.com/hybridbrizz/Xp-Goals.git +commit=0e8f3d120bb3db46fe40974625ce8021a53ef4a1 \ No newline at end of file diff --git a/plugins/zoom-keybinding b/plugins/zoom-keybinding new file mode 100644 index 00000000000..517e093b428 --- /dev/null +++ b/plugins/zoom-keybinding @@ -0,0 +1,2 @@ +repository=https://github.com/R4lfE/zoom-keybinding.git +commit=d195594e21acbbb876995a8982ce69e4f9b13df0 diff --git a/runelite.version b/runelite.version index c9aab26376f..967ccf6bd90 100644 --- a/runelite.version +++ b/runelite.version @@ -1 +1 @@ -1.10.34 +1.10.45 diff --git a/templateplugin/build.gradle b/templateplugin/build.gradle index 07438b3cecd..ce0a720b2d3 100644 --- a/templateplugin/build.gradle +++ b/templateplugin/build.gradle @@ -6,6 +6,9 @@ repositories { mavenLocal() maven { url = 'https://repo.runelite.net' + content { + includeGroupByRegex("net\\.runelite.*") + } } mavenCentral() } @@ -26,7 +29,33 @@ dependencies { group = '${group_id}' version = '${version}' -tasks.withType(JavaCompile) { +tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' options.release.set(11) } + +tasks.register('shadowJar', Jar) { + dependsOn configurations.testRuntimeClasspath + manifest { + attributes('Main-Class': '${package}.${plugin_prefix}PluginTest', 'Multi-Release': true) + } + + duplicatesStrategy = DuplicatesStrategy.EXCLUDE + from sourceSets.main.output + from sourceSets.test.output + from { + configurations.testRuntimeClasspath.collect { file -> + file.isDirectory() ? file : zipTree(file) + } + } + + exclude 'META-INF/INDEX.LIST' + exclude 'META-INF/*.SF' + exclude 'META-INF/*.DSA' + exclude 'META-INF/*.RSA' + exclude '**/module-info.class' + + group = BasePlugin.BUILD_GROUP + archiveClassifier.set('shadow') + archiveFileName.set("$${rootProject.name}-$${project.version}-all.jar") +} diff --git a/templateplugin/gradle/wrapper/gradle-wrapper.jar b/templateplugin/gradle/wrapper/gradle-wrapper.jar index 41d9927a4d4..a4b76b9530d 100644 Binary files a/templateplugin/gradle/wrapper/gradle-wrapper.jar and b/templateplugin/gradle/wrapper/gradle-wrapper.jar differ diff --git a/templateplugin/gradle/wrapper/gradle-wrapper.properties b/templateplugin/gradle/wrapper/gradle-wrapper.properties index dcf5e2cb7b3..9036682bf0f 100644 --- a/templateplugin/gradle/wrapper/gradle-wrapper.properties +++ b/templateplugin/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,8 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionSha256Sum=cd5c2958a107ee7f0722004a12d0f8559b4564c34daad7df06cffd4d12a426d0 -distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip +distributionSha256Sum=682b4df7fe5accdca84a4d1ef6a3a6ab096b3efd5edf7de2bd8c758d95a93703 +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-all.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/templateplugin/gradlew b/templateplugin/gradlew index 1b6c787337f..f5feea6d6b1 100755 --- a/templateplugin/gradlew +++ b/templateplugin/gradlew @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -55,7 +57,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -80,13 +82,12 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +134,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +201,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ @@ -205,6 +217,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/templateplugin/gradlew.bat b/templateplugin/gradlew.bat index ac1b06f9382..9b42019c791 100644 --- a/templateplugin/gradlew.bat +++ b/templateplugin/gradlew.bat @@ -13,8 +13,10 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,7 +27,8 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -40,13 +43,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -56,11 +59,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -75,13 +78,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal