File tree Expand file tree Collapse file tree 7 files changed +17
-36
lines changed
java/com/github/simulatan/meteornotificationsaddon Expand file tree Collapse file tree 7 files changed +17
-36
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ repositories {
1818 name = " meteor-maven-snapshots"
1919 url = " https://maven.meteordev.org/snapshots"
2020 }
21- jcenter()
2221}
2322
2423dependencies {
@@ -31,6 +30,13 @@ dependencies {
3130 modImplementation " meteordevelopment:meteor-client:${ project.meteor_version} "
3231}
3332
33+ configurations. all {
34+ resolutionStrategy {
35+ cacheDynamicVersionsFor 0 , " seconds"
36+ cacheChangingModulesFor 0 , " seconds"
37+ }
38+ }
39+
3440processResources {
3541 inputs. property " version" , project. version
3642
@@ -43,4 +49,4 @@ processResources {
4349tasks. withType(JavaCompile ). configureEach {
4450 it. options. encoding = " UTF-8"
4551 it. options. release = 17
46- }
52+ }
Original file line number Diff line number Diff line change 11org.gradle.jvmargs =-Xmx2G
22
33# Fabric (https://fabricmc.net/versions.html)
4- minecraft_version =1.18
5- yarn_mappings =1.18+build.1
4+ minecraft_version =1.18.2
5+ yarn_mappings =1.18.2 +build.1
66loader_version =0.12.12
77
88# Mod Properties
9- mod_version =1.0.1
9+ mod_version =1.0.2
1010maven_group =com.github.simulatan
1111archives_base_name =notifications-addon
1212
1313# Dependency Versions
1414
1515# Meteor (https://maven.meteordev.org/)
16- meteor_version =SNAPSHOT
16+ meteor_version =SNAPSHOT
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.3.3 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.4.1 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
5- zipStorePath =wrapper/dists
5+ zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 77import meteordevelopment .meteorclient .systems .Systems ;
88import meteordevelopment .meteorclient .systems .commands .Commands ;
99import meteordevelopment .meteorclient .systems .hud .HUD ;
10- import meteordevelopment .meteorclient .systems .modules .Modules ;
1110import org .apache .logging .log4j .LogManager ;
1211import org .apache .logging .log4j .Logger ;
1312
@@ -30,4 +29,4 @@ public void onInitialize() {
3029 HUD hud = Systems .get (HUD .class );
3130 hud .elements .add (new NotificationsHudElement (hud ));
3231 }
33- }
32+ }
Original file line number Diff line number Diff line change 1111import com .mojang .brigadier .suggestion .Suggestions ;
1212import com .mojang .brigadier .suggestion .SuggestionsBuilder ;
1313import meteordevelopment .meteorclient .systems .commands .Command ;
14- import meteordevelopment .meteorclient .systems .modules .Modules ;
1514import meteordevelopment .meteorclient .utils .player .ChatUtils ;
1615import net .minecraft .command .CommandSource ;
1716import net .minecraft .text .LiteralText ;
@@ -77,4 +76,4 @@ public Collection<String> getExamples() {
7776 return EXAMPLES ;
7877 }
7978 }
80- }
79+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 99 },
1010 "mixins" : [
1111 " MeshMixin" ,
12- " ModuleMixin" ,
1312 " ModulesMixin" ,
1413 " Renderer2DMixin"
1514 ]
16- }
15+ }
You can’t perform that action at this time.
0 commit comments