Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Treetrain1 committed Aug 9, 2023
2 parents 4721fa0 + e99c219 commit c920850
Show file tree
Hide file tree
Showing 302 changed files with 7,571 additions and 5,324 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@

# This workflow applies licenses and commits changes
# to the repository.

name: license
on:
workflow_dispatch:

jobs:
build:
strategy:
matrix:
# Use these Java versions
java: [17] # Current Java LTS & minimum supported by Minecraft
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checking Out the Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Validating the Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setting up Java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
java-package: jdk
- name: Setting Up the Gradle Wrapper
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: Caching Dependencies
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/loom-cache
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-#{{ hashFiles('**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Apply Licenses
run: ./gradlew applyLicenses -PreleaseType=stable -PuseThirdPartyMods=false
- name: Commit Changes
uses: stefanzweifel/git-auto-commit-action@v4
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ target/
run/
/remappedSrc/
/src/main/generated/.cache
/config/

# java

hs_err_*.log
replay_*.log
*.hprof
*.jfr
/logs/
18 changes: 2 additions & 16 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,5 @@ Make sure to clear this after each release

Put changelog here:
-----------------
- Added a feature API to make parity between 1.19.2 and 1.19.3 easier
- Added a Liquid Rendering API
- Added an NBT File API for reading/writing from/to NBT files
- Wind Managers are now per-level and are saved
- Screen shaking is now saved to entities as well as the world
- Added command /windoverride with parameters x, y, and z representing the direction and strength of the wind.
Additionally, it has parameters true and false to enable and disable the override
- Added command /screenshake with parameters [entity or position], intensity, duration, falloff start, and distance.
- Added LowerHeightmapPlacement
- Added FadingDiskCarpetFeature
- Added FadingDiskTagFeature
- Added FadingDiskExceptInBiomeFeature
- Added NoisePathSwapUnderWaterTagFeature
- Added NoisePathTagFeature
- Added NoisePathTagUnderWaterFeature
- Added a PlacementModifiers API
- Updated included Jankson to 1.2.3
- Added a config reload command to reload configs from a mod (/frozenlib_config reload modId)
Loading

0 comments on commit c920850

Please sign in to comment.