SkytAsul / BeautyQuests

A quests plugin based on a simple-to-use graphical interface (Minecraft)
MIT License
149 stars 28 forks source link

SkillAPI renamed to Fabled #317

Open Travja opened 1 month ago

Travja commented 1 month ago

I just want to take the opportunity to inform you that SkillAPI has undergone a rename and is now Fabled. The new resource is located at the Maven coordinates below. This change also renames the main entry point for API operations and the packages associated with the classes. The studio.magemonkey.fabled.Fabled class should be used instead of SkillAPI, though the api should remain backwards compatible. These compatibility classes are likely to be removed at some point in the future, so these should be updated. Supporting older versions of SkillAPI prior to the rename may still be important, so I'd recommend setting up a try-catch where you try the Fabled-based implementation and fall back to the SkillAPI implementation on an exception.

<repository>
    <id>sonatype</id>
    <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</repository>
...
<dependency>
    <groupId>studio.magemonkey</groupId>
    <artifactId>fabled</artifactId>
    <version>1.0.0-R0.21-SNAPSHOT</version>
</dependency>
SkytAsul commented 1 month ago

Thanks for the heads-up. It seems like you are talking about ProSkillAPI though, not regular SkillAPI?

Travja commented 1 month ago

Yes, that's correct.

SkytAsul commented 3 weeks ago

May you try the #407 build and tell me if it works correctly?