Skip to content

Commit 11122c1

Browse files
committed
Prepare for release of v2.1.0
1 parent ec826f0 commit 11122c1

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
run: ./gradlew build
2323
- uses: actions/upload-artifact@master
2424
with:
25-
path: build/libs/skript-reflect-2.0.0-SNAPSHOT.jar
25+
path: build/libs/skript-reflect-@version@.jar

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
# skript-reflect
22

3-
This fork of [skript-mirror](https://github.com/btk5h/skript-mirror) aims to fix multiple issues that I believe have been present for too long, and implement some long-wanted features.
3+
This fork of [skript-mirror](https://github.com/btk5h/skript-mirror) aims to fix
4+
multiple issues that I believe have been present for too long, and implement some long-wanted features.
45

56
Documentation: https://tpgamesnl.gitbook.io/skript-reflect
67

78
Source code: https://github.com/TPGamesNL/skript-reflect
89

9-
Downloads: [actions](https://github.com/TPGamesNL/skript-reflect/actions?query=event%3Apush+is%3Asuccess+actor%3ATPGamesNL) (I'll probably release an actual version soon).
10+
Downloads: [releases](https://github.com/TPGamesNL/skript-reflect/releases) or
11+
[actions](https://github.com/TPGamesNL/skript-reflect/actions?query=event%3Apush+is%3Asuccess+actor%3ATPGamesNL) \(not stable\)
1012

11-
If you want to talk about this project or something else, contact me on Discord: TPGamesNL#0880
13+
Discord: https://discord.gg/jDW8UbD
1214

1315
## What's been changed in this fork:
1416
* Added custom events
15-
* Support for more Java versions (Java 13+, OpenJ9)
17+
* Support for more Java versions \(Java 13+, OpenJ9\)
1618
* Support for listening to asynchronous events
1719
* Class proxy fixes + documentation
1820
* Fixed multiple issues with local variables

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.apache.tools.ant.filters.ReplaceTokens
22

33
group 'com.btk5h.skript-mirror'
4-
version '2.0.0-SNAPSHOT'
4+
version '2.1.0'
55

66
apply plugin: 'java'
77

src/main/java/com/btk5h/skriptmirror/ParseOrderWorkarounds.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* be parsed before classes at the end of the list.
1818
* <p>
1919
* This class should only be used to guarantee that skript-mirror's syntax is parsed before other addons. It cannot
20-
* guarantee that another addon's syntax will be parsed before skript-mirror.
20+
* guarantee that another addon's syntax will be parsed before skript-reflect.
2121
*/
2222
public class ParseOrderWorkarounds {
2323
private static String[] PARSE_ORDER = {

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: skript-reflect
22
version: @version@
33
description: Reflection utilities for Skript
44
author: Bryan Terce <[email protected]>, TPGamesNL
5-
website: https://github.com/TPGamesNL/skript-mirror
5+
website: https://github.com/TPGamesNL/skript-reflect
66
api-version: 1.15
77

88
main: com.btk5h.skriptmirror.SkriptMirror

0 commit comments

Comments
 (0)