TheLimeGlass / Skacket

A Skript addon for handling and maintaining packet syntaxes.
Apache License 2.0
8 stars 5 forks source link

Bump GlowingAPI from master-SNAPSHOT to 1.0.1 #86

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 2 years ago

Bumps GlowingAPI from master-SNAPSHOT to 1.0.1.

Release notes

Sourced from GlowingAPI's releases.

1.0.1

Added a cache lookup for what entities are glowing for whom. Fixed stop glowing not working properly Added a system that will update the entity back to glowing after it's metadata changes.

First release.

GlowingAPI v1.0.0

Requires ProtocolLib https://www.spigotmc.org/resources/protocollib.1997/

An API for handling client side glowing effects.

Compiling

Maven

Maven requires setting up profiles and defining the token else where https://help.github.com/en/github/managing-packages-with-github-packages/configuring-apache-maven-for-use-with-github-packages

Gradle

In your build.gradle add:

repositories {
    maven {
        url 'https://maven.pkg.github.com/Sitrica/GlowingAPI/'
        credentials {
            username = "Sitrica"
            password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_PACKAGES_KEY")
        }
    }
}

dependencies { compile (group: 'com.sitrica', name: 'GlowingAPI', version: '1.0.0') }

Getting a Github token:

1.) Go into your account settings on Github and create a personal token with the read:packages scope checked. 2.) Generate that key, and now go add a System Environment Variable named GITHUB_PACKAGES_KEY 3.) Restart computer or if using Chocolatey type refreshenv

Note: you can just directly put your token as the password, but we highly discourage that.

Example of usage:

public class ExamplePlugin extends JavaPlugin {
private static ExamplePlugin instance;
private GlowingAPI glowing;

@Override
public void onEnable() {

</tr></table>

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)