Skip to content

Commit

Permalink
Merge branch '1.20/dev' into 1.19.4/next
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/client/java/nl/enjarai/doabarrelroll/DoABarrelRollClient.java
#	src/main/resources/fabric.mod.json
  • Loading branch information
enjarai committed Nov 13, 2023
2 parents f637d65 + cb5f95a commit 9df0be5
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,20 @@ jobs:
game_vers: |
1.20
1.20.1
java_vers: 17
GITHUB_REF: ${{ github.ref }}
secrets:
CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }}
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
PUBLISH_MAVEN_USERNAME: ${{ secrets.PUBLISH_MAVEN_USERNAME }}
PUBLISH_MAVEN_PASSWORD: ${{ secrets.PUBLISH_MAVEN_PASSWORD }}

deploy_1_20_2:
needs: deploy_1_20
uses: enjarai/do-a-barrel-roll/.github/workflows/publish.yml@1.20.2/dev
with:
branch: 1.20.2/dev
game_vers: |
1.20.2
java_vers: 17
GITHUB_REF: ${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
This does not apply to normal servers.
- Changed the default toggle keybind to I to avoid conflicting with the advancements button.
- Fixed an incompatibility with Keybind Fix.
- Separated 1.20 and 1.20.2 support into separate jars.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dependencies {
modImplementation "com.terraformersmc:modmenu:${project.modmenu_version}"

// Mixin Extras for extra compatibility.
include(implementation("com.github.llamalad7.mixinextras:mixinextras-fabric:${project.mixin_extras_version}"))
implementation("com.github.llamalad7.mixinextras:mixinextras-fabric:${project.mixin_extras_version}")
annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-fabric:${project.mixin_extras_version}")
clientAnnotationProcessor("com.github.llamalad7.mixinextras:mixinextras-fabric:${project.mixin_extras_version}")

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ org.gradle.jvmargs=-Xmx4096M
minecraft_version=1.19.4

archives_base_name=do-a-barrel-roll
mod_version=3.3.6
mod_version=3.3.7
maven_group=nl.enjarai

yarn_version=1.19.4+build.1

loader_version=0.14.24
fabric_version=0.75.3+1.19.4

cicada_version=0.4.6
cicada_version=0.5.0+1.20.1-minus
# https://modrinth.com/mod/modmenu/versions#all-versions
modmenu_version=6.1.0-beta.3
# https://github.com/isXander/YetAnotherConfigLib/releases
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,6 @@ public static boolean isFallFlying() {
}

public static boolean isConnectedToRealms() {
return false;
return false; // We are not connected to realms.
}
}
2 changes: 1 addition & 1 deletion src/main/java/nl/enjarai/doabarrelroll/DoABarrelRoll.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static void init() {
@Override
public void registerConversations(ConversationManager conversationManager) {
conversationManager.registerSource(
JsonSource.fromUrl("https://raw.githubusercontent.com/enjarai/do-a-barrel-roll/1.20/dev/src/main/resources/cicada/do-a-barrel-roll/conversations.json")
JsonSource.fromUrl("https://raw.githubusercontent.com/enjarai/do-a-barrel-roll/1.20.2/dev/src/main/resources/cicada/do-a-barrel-roll/conversations.json")
.or(JsonSource.fromResource("cicada/do-a-barrel-roll/conversations.json")),
LOGGER::info
);
Expand Down

0 comments on commit 9df0be5

Please sign in to comment.