-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add `sha1` and `complianceLevel` fields to VersionEntry * Add tests for parsing `version_manifest_v2.json` * Mark the Manifest V1 constructor as deprecated and reorganize tests for VersionManifest * Parameterize Tests * Bump Version * Add some missing fields --------- Co-authored-by: xtrm <[email protected]>
- Loading branch information
Showing
10 changed files
with
208 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Update HTML Changelog | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
paths: | ||
- CHANGELOG.md | ||
|
||
jobs: | ||
dispatch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Dispatch website rebuild | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: manual-publish.yaml | ||
repo: quiltmc/quiltmc.org | ||
token: "${{ secrets.COZY_PAT }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# 1.0.0 | ||
|
||
Creation of Launcher Meta Parser - A shared library for Quilt tools to parse the launchermeta information from Mojang | ||
|
||
# 1.1.0 | ||
|
||
Changes: | ||
- Update gradle and other dependencies | ||
- Add support for v2 Manifest files | ||
- Improve tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ plugins { | |
} | ||
|
||
group 'org.quiltmc' | ||
version '1.0.0' | ||
version '1.1.0' | ||
|
||
repositories { | ||
mavenCentral() | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters