1. 27 Apr, 2022 1 commit
  2. 28 Feb, 2022 2 commits
  3. 24 Jan, 2022 2 commits
  4. 19 Jan, 2022 1 commit
  5. 08 Jan, 2022 1 commit
  6. 14 Dec, 2021 1 commit
  7. 10 Dec, 2021 2 commits
  8. 09 Dec, 2021 1 commit
  9. 30 Nov, 2021 1 commit
  10. 17 Nov, 2021 1 commit
    • Revert compatibilityLevel bump · 4616cda6
      Using JAVA_17 is currently broken with the production server and not necessarily indicated by how Mixin treats this field
      Player authored
  11. 16 Nov, 2021 1 commit
  12. 10 Nov, 2021 3 commits
  13. 09 Nov, 2021 2 commits
  14. 25 Oct, 2021 1 commit
  15. 22 Sep, 2021 1 commit
  16. 26 Aug, 2021 1 commit
  17. 17 Aug, 2021 1 commit
  18. 17 Jul, 2021 1 commit
  19. 23 Jun, 2021 2 commits
  20. 08 Jun, 2021 1 commit
  21. 27 May, 2021 1 commit
  22. 12 May, 2021 1 commit
    • Update to 21w19a and Java 16 · 50f0be76
      This commit can be used as an example on how to update your mod to Java 16. You will need to ensure you have Java 16 installed and set as the active version to run this.
      
      Gradle 7 is required along with loom 0.8
      modmuss50 authored
  23. 27 Mar, 2021 1 commit
  24. 15 Mar, 2021 1 commit
  25. 26 Feb, 2021 1 commit
  26. 07 Feb, 2021 1 commit
  27. 03 Feb, 2021 1 commit
  28. 30 Jan, 2021 1 commit
  29. 15 Jan, 2021 1 commit
  30. 11 Nov, 2020 1 commit
  31. 10 Nov, 2020 2 commits
    • 1.16.4 · a126c791
      modmuss50 authored
    • Modernize Gradle buildscript (#71) · 90cb78d4
      * Modernize gradle buildscript
      
      * Bump yarn/loader/fabric api versions
      
      * Add GH actions to build example mod
      
      * Update in response to feedback
      zml authored
  32. 14 Oct, 2020 1 commit
    • Simply processResources logic & make it compatible with future versions of Gradle (#69) · 54035654
      * Ignore commonly generated Mac OS junk files
      
      This is optional, but it would be a huge quality of life improvement for anyone developing on Mac OS, as the first thing I do when starting a new project is always to add this to the .gitignore. Example: Just from the small changes I've made to the build script alone, I've generated 4 .DS_Store files, which would clutter up this PR if I included them.
      
      * Simply processResources logic & make it compatible with future versions of Gradle
      
      When the processResources task is currently run, it uses deprecated Gradle features. Running "gradle clean build --warning-mode all" should output a message along the lines of "Copying or archiving duplicate paths with the default duplicates strategy has been deprecated. This is scheduled to be removed in Gradle 7.0.". This is due to inlcuding all files twice, as the "from" blocks includes them for the second time (gradle includes these files by default). This PR simply edits the relevant files from the already selected resources directory. This also reduces the amount of repetition in the script.
      
      * Switch to double quotes to match style
      
      D'oh!
      Ned Loynd authored