-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
90 additions
and
4 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,42 @@ | ||
name: Mod publication | ||
|
||
on: [ workflow_dispatch ] | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gradle/wrapper-validation-action@v1 | ||
- run: chmod +x gradlew | ||
- name: Build | ||
run: ./gradlew build | ||
|
||
bintray: | ||
name: Bintray Publication | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gradle/wrapper-validation-action@v1 | ||
- run: chmod +x gradlew | ||
- name: Publish | ||
run: ./gradlew bintrayUpload | ||
env: | ||
BINTRAY_USER: ${{ secrets.BINTRAY_USER }} | ||
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }} | ||
|
||
modrinth: | ||
name: Modrinth Publication | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gradle/wrapper-validation-action@v1 | ||
- run: chmod +x gradlew | ||
- name: Publish | ||
run: ./gradlew modrinth | ||
env: | ||
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} |
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,26 @@ | ||
# VanillaTweaks Downloader | ||
|
||
**DISCLAIMER: None of the content that can be downloaded from the mod was created by me. Everything (but the mod) was created by the VanillaTweaks team.** | ||
|
||
[  ](https://github.com/ByMartrixx/VTDownloader/releases/latest) | ||
 | ||
|
||
<img src="https://i.imgur.com/77kxz8x.png" width="150"> | ||
|
||
Pick and download [Vanilla Tweaks](https://vanillatweaks.net) resource packs directly from your Minecraft Client! | ||
From the game menu, go to Options > Resource Packs > Download VT Pack, pick your texture packs, and press download. The pack will be directly downloaded to your resource packs folder. | ||
|
||
Suggestions? [Start a discussion](https://github.com/ByMartrixx/VTDownloader/discussions/new) or [Open an issue](https://github.com/ByMartrixx/VTDownloader/issues/new) | ||
|
||
<sup>To the VanillaTweaks team: if this mod breaks any term, please notify me on Discord (MartrixX#2970)<sup/> | ||
|
||
## [Credits](/credits.txt) | ||
|
||
#### Vanilla Tweaks: https://vanillatweaks.net | ||
|
||
### Planned features | ||
|
||
- Incompatible packs warning | ||
- Editing packs from the Resource Packs screen | ||
- Share button | ||
- Datapacks |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Credits: | ||
Vanilla Tweaks: https://vanillatweaks.net |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -32,8 +32,6 @@ | |
], | ||
|
||
"depends": { | ||
"fabricloader": ">=0.7.4", | ||
"fabric": "*", | ||
"minecraft": "1.16.x" | ||
"fabricloader": ">=0.7.4" | ||
} | ||
} |