Compare commits
No commits in common. "main" and "1.0.1" have entirely different histories.
58 changed files with 293 additions and 1413 deletions
23
.github/workflows/release.yml
vendored
23
.github/workflows/release.yml
vendored
|
|
@ -1,23 +0,0 @@
|
||||||
name: relese
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ "main" ]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Setup Go environment
|
|
||||||
uses: actions/setup-go@v3.5.0
|
|
||||||
- run: go install github.com/packwiz/packwiz@latest
|
|
||||||
- run: /home/runner/go/bin/packwiz refresh
|
|
||||||
- run: /home/runner/go/bin/packwiz modrinth export
|
|
||||||
- run: |
|
|
||||||
VERSION=`cat pack.toml | grep ^version | sed 's/version = "\(.*\)"/\1/'`
|
|
||||||
gh release create v$VERSION --generate-notes *.mrpack
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
965
.gitignore
vendored
965
.gitignore
vendored
|
|
@ -1,965 +0,0 @@
|
||||||
# Created by https://www.toptal.com/developers/gitignore/api/vim,node,data,emacs,python,pycharm,executable,sublimetext,visualstudio,visualstudiocode
|
|
||||||
# Edit at https://www.toptal.com/developers/gitignore?templates=vim,node,data,emacs,python,pycharm,executable,sublimetext,visualstudio,visualstudiocode
|
|
||||||
*.mrpack
|
|
||||||
|
|
||||||
### Data ###
|
|
||||||
*.csv
|
|
||||||
*.dat
|
|
||||||
*.efx
|
|
||||||
*.gbr
|
|
||||||
*.key
|
|
||||||
*.pps
|
|
||||||
*.ppt
|
|
||||||
*.pptx
|
|
||||||
*.sdf
|
|
||||||
*.tax2010
|
|
||||||
*.vcf
|
|
||||||
*.xml
|
|
||||||
|
|
||||||
### Emacs ###
|
|
||||||
# -*- mode: gitignore; -*-
|
|
||||||
*~
|
|
||||||
\#*\#
|
|
||||||
/.emacs.desktop
|
|
||||||
/.emacs.desktop.lock
|
|
||||||
*.elc
|
|
||||||
auto-save-list
|
|
||||||
tramp
|
|
||||||
.\#*
|
|
||||||
|
|
||||||
# Org-mode
|
|
||||||
.org-id-locations
|
|
||||||
*_archive
|
|
||||||
|
|
||||||
# flymake-mode
|
|
||||||
*_flymake.*
|
|
||||||
|
|
||||||
# eshell files
|
|
||||||
/eshell/history
|
|
||||||
/eshell/lastdir
|
|
||||||
|
|
||||||
# elpa packages
|
|
||||||
/elpa/
|
|
||||||
|
|
||||||
# reftex files
|
|
||||||
*.rel
|
|
||||||
|
|
||||||
# AUCTeX auto folder
|
|
||||||
/auto/
|
|
||||||
|
|
||||||
# cask packages
|
|
||||||
.cask/
|
|
||||||
dist/
|
|
||||||
|
|
||||||
# Flycheck
|
|
||||||
flycheck_*.el
|
|
||||||
|
|
||||||
# server auth directory
|
|
||||||
/server/
|
|
||||||
|
|
||||||
# projectiles files
|
|
||||||
.projectile
|
|
||||||
|
|
||||||
# directory configuration
|
|
||||||
.dir-locals.el
|
|
||||||
|
|
||||||
# network security
|
|
||||||
/network-security.data
|
|
||||||
|
|
||||||
|
|
||||||
### Executable ###
|
|
||||||
*.app
|
|
||||||
*.bat
|
|
||||||
*.cgi
|
|
||||||
*.com
|
|
||||||
*.exe
|
|
||||||
*.gadget
|
|
||||||
*.jar
|
|
||||||
*.pif
|
|
||||||
*.vb
|
|
||||||
*.wsf
|
|
||||||
|
|
||||||
### Node ###
|
|
||||||
# Logs
|
|
||||||
logs
|
|
||||||
*.log
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
lerna-debug.log*
|
|
||||||
.pnpm-debug.log*
|
|
||||||
|
|
||||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
||||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
||||||
|
|
||||||
# Runtime data
|
|
||||||
pids
|
|
||||||
*.pid
|
|
||||||
*.seed
|
|
||||||
*.pid.lock
|
|
||||||
|
|
||||||
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
||||||
lib-cov
|
|
||||||
|
|
||||||
# Coverage directory used by tools like istanbul
|
|
||||||
coverage
|
|
||||||
*.lcov
|
|
||||||
|
|
||||||
# nyc test coverage
|
|
||||||
.nyc_output
|
|
||||||
|
|
||||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
||||||
.grunt
|
|
||||||
|
|
||||||
# Bower dependency directory (https://bower.io/)
|
|
||||||
bower_components
|
|
||||||
|
|
||||||
# node-waf configuration
|
|
||||||
.lock-wscript
|
|
||||||
|
|
||||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
||||||
build/Release
|
|
||||||
|
|
||||||
# Dependency directories
|
|
||||||
node_modules/
|
|
||||||
jspm_packages/
|
|
||||||
|
|
||||||
# Snowpack dependency directory (https://snowpack.dev/)
|
|
||||||
web_modules/
|
|
||||||
|
|
||||||
# TypeScript cache
|
|
||||||
*.tsbuildinfo
|
|
||||||
|
|
||||||
# Optional npm cache directory
|
|
||||||
.npm
|
|
||||||
|
|
||||||
# Optional eslint cache
|
|
||||||
.eslintcache
|
|
||||||
|
|
||||||
# Optional stylelint cache
|
|
||||||
.stylelintcache
|
|
||||||
|
|
||||||
# Microbundle cache
|
|
||||||
.rpt2_cache/
|
|
||||||
.rts2_cache_cjs/
|
|
||||||
.rts2_cache_es/
|
|
||||||
.rts2_cache_umd/
|
|
||||||
|
|
||||||
# Optional REPL history
|
|
||||||
.node_repl_history
|
|
||||||
|
|
||||||
# Output of 'npm pack'
|
|
||||||
*.tgz
|
|
||||||
|
|
||||||
# Yarn Integrity file
|
|
||||||
.yarn-integrity
|
|
||||||
|
|
||||||
# dotenv environment variable files
|
|
||||||
.env
|
|
||||||
.env.development.local
|
|
||||||
.env.test.local
|
|
||||||
.env.production.local
|
|
||||||
.env.local
|
|
||||||
|
|
||||||
# parcel-bundler cache (https://parceljs.org/)
|
|
||||||
.cache
|
|
||||||
.parcel-cache
|
|
||||||
|
|
||||||
# Next.js build output
|
|
||||||
.next
|
|
||||||
out
|
|
||||||
|
|
||||||
# Nuxt.js build / generate output
|
|
||||||
.nuxt
|
|
||||||
dist
|
|
||||||
|
|
||||||
# Gatsby files
|
|
||||||
.cache/
|
|
||||||
# Comment in the public line in if your project uses Gatsby and not Next.js
|
|
||||||
# https://nextjs.org/blog/next-9-1#public-directory-support
|
|
||||||
# public
|
|
||||||
|
|
||||||
# vuepress build output
|
|
||||||
.vuepress/dist
|
|
||||||
|
|
||||||
# vuepress v2.x temp and cache directory
|
|
||||||
.temp
|
|
||||||
|
|
||||||
# Docusaurus cache and generated files
|
|
||||||
.docusaurus
|
|
||||||
|
|
||||||
# Serverless directories
|
|
||||||
.serverless/
|
|
||||||
|
|
||||||
# FuseBox cache
|
|
||||||
.fusebox/
|
|
||||||
|
|
||||||
# DynamoDB Local files
|
|
||||||
.dynamodb/
|
|
||||||
|
|
||||||
# TernJS port file
|
|
||||||
.tern-port
|
|
||||||
|
|
||||||
# Stores VSCode versions used for testing VSCode extensions
|
|
||||||
.vscode-test
|
|
||||||
|
|
||||||
# yarn v2
|
|
||||||
.yarn/cache
|
|
||||||
.yarn/unplugged
|
|
||||||
.yarn/build-state.yml
|
|
||||||
.yarn/install-state.gz
|
|
||||||
.pnp.*
|
|
||||||
|
|
||||||
### Node Patch ###
|
|
||||||
# Serverless Webpack directories
|
|
||||||
.webpack/
|
|
||||||
|
|
||||||
# Optional stylelint cache
|
|
||||||
|
|
||||||
# SvelteKit build / generate output
|
|
||||||
.svelte-kit
|
|
||||||
|
|
||||||
### PyCharm ###
|
|
||||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
|
||||||
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
||||||
|
|
||||||
# User-specific stuff
|
|
||||||
.idea/**/workspace.xml
|
|
||||||
.idea/**/tasks.xml
|
|
||||||
.idea/**/usage.statistics.xml
|
|
||||||
.idea/**/dictionaries
|
|
||||||
.idea/**/shelf
|
|
||||||
|
|
||||||
# AWS User-specific
|
|
||||||
.idea/**/aws.xml
|
|
||||||
|
|
||||||
# Generated files
|
|
||||||
.idea/**/contentModel.xml
|
|
||||||
|
|
||||||
# Sensitive or high-churn files
|
|
||||||
.idea/**/dataSources/
|
|
||||||
.idea/**/dataSources.ids
|
|
||||||
.idea/**/dataSources.local.xml
|
|
||||||
.idea/**/sqlDataSources.xml
|
|
||||||
.idea/**/dynamic.xml
|
|
||||||
.idea/**/uiDesigner.xml
|
|
||||||
.idea/**/dbnavigator.xml
|
|
||||||
|
|
||||||
# Gradle
|
|
||||||
.idea/**/gradle.xml
|
|
||||||
.idea/**/libraries
|
|
||||||
|
|
||||||
# Gradle and Maven with auto-import
|
|
||||||
# When using Gradle or Maven with auto-import, you should exclude module files,
|
|
||||||
# since they will be recreated, and may cause churn. Uncomment if using
|
|
||||||
# auto-import.
|
|
||||||
# .idea/artifacts
|
|
||||||
# .idea/compiler.xml
|
|
||||||
# .idea/jarRepositories.xml
|
|
||||||
# .idea/modules.xml
|
|
||||||
# .idea/*.iml
|
|
||||||
# .idea/modules
|
|
||||||
# *.iml
|
|
||||||
# *.ipr
|
|
||||||
|
|
||||||
# CMake
|
|
||||||
cmake-build-*/
|
|
||||||
|
|
||||||
# Mongo Explorer plugin
|
|
||||||
.idea/**/mongoSettings.xml
|
|
||||||
|
|
||||||
# File-based project format
|
|
||||||
*.iws
|
|
||||||
|
|
||||||
# IntelliJ
|
|
||||||
out/
|
|
||||||
|
|
||||||
# mpeltonen/sbt-idea plugin
|
|
||||||
.idea_modules/
|
|
||||||
|
|
||||||
# JIRA plugin
|
|
||||||
atlassian-ide-plugin.xml
|
|
||||||
|
|
||||||
# Cursive Clojure plugin
|
|
||||||
.idea/replstate.xml
|
|
||||||
|
|
||||||
# SonarLint plugin
|
|
||||||
.idea/sonarlint/
|
|
||||||
|
|
||||||
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
||||||
com_crashlytics_export_strings.xml
|
|
||||||
crashlytics.properties
|
|
||||||
crashlytics-build.properties
|
|
||||||
fabric.properties
|
|
||||||
|
|
||||||
# Editor-based Rest Client
|
|
||||||
.idea/httpRequests
|
|
||||||
|
|
||||||
# Android studio 3.1+ serialized cache file
|
|
||||||
.idea/caches/build_file_checksums.ser
|
|
||||||
|
|
||||||
### PyCharm Patch ###
|
|
||||||
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
|
||||||
|
|
||||||
# *.iml
|
|
||||||
# modules.xml
|
|
||||||
# .idea/misc.xml
|
|
||||||
# *.ipr
|
|
||||||
|
|
||||||
# Sonarlint plugin
|
|
||||||
# https://plugins.jetbrains.com/plugin/7973-sonarlint
|
|
||||||
.idea/**/sonarlint/
|
|
||||||
|
|
||||||
# SonarQube Plugin
|
|
||||||
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
|
|
||||||
.idea/**/sonarIssues.xml
|
|
||||||
|
|
||||||
# Markdown Navigator plugin
|
|
||||||
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
|
|
||||||
.idea/**/markdown-navigator.xml
|
|
||||||
.idea/**/markdown-navigator-enh.xml
|
|
||||||
.idea/**/markdown-navigator/
|
|
||||||
|
|
||||||
# Cache file creation bug
|
|
||||||
# See https://youtrack.jetbrains.com/issue/JBR-2257
|
|
||||||
.idea/$CACHE_FILE$
|
|
||||||
|
|
||||||
# CodeStream plugin
|
|
||||||
# https://plugins.jetbrains.com/plugin/12206-codestream
|
|
||||||
.idea/codestream.xml
|
|
||||||
|
|
||||||
# Azure Toolkit for IntelliJ plugin
|
|
||||||
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
|
|
||||||
.idea/**/azureSettings.xml
|
|
||||||
|
|
||||||
### Python ###
|
|
||||||
# Byte-compiled / optimized / DLL files
|
|
||||||
__pycache__/
|
|
||||||
*.py[cod]
|
|
||||||
*$py.class
|
|
||||||
|
|
||||||
# C extensions
|
|
||||||
*.so
|
|
||||||
|
|
||||||
# Distribution / packaging
|
|
||||||
.Python
|
|
||||||
build/
|
|
||||||
develop-eggs/
|
|
||||||
downloads/
|
|
||||||
eggs/
|
|
||||||
.eggs/
|
|
||||||
lib/
|
|
||||||
lib64/
|
|
||||||
parts/
|
|
||||||
sdist/
|
|
||||||
var/
|
|
||||||
wheels/
|
|
||||||
share/python-wheels/
|
|
||||||
*.egg-info/
|
|
||||||
.installed.cfg
|
|
||||||
*.egg
|
|
||||||
MANIFEST
|
|
||||||
|
|
||||||
# PyInstaller
|
|
||||||
# Usually these files are written by a python script from a template
|
|
||||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
||||||
*.manifest
|
|
||||||
*.spec
|
|
||||||
|
|
||||||
# Installer logs
|
|
||||||
pip-log.txt
|
|
||||||
pip-delete-this-directory.txt
|
|
||||||
|
|
||||||
# Unit test / coverage reports
|
|
||||||
htmlcov/
|
|
||||||
.tox/
|
|
||||||
.nox/
|
|
||||||
.coverage
|
|
||||||
.coverage.*
|
|
||||||
nosetests.xml
|
|
||||||
coverage.xml
|
|
||||||
*.cover
|
|
||||||
*.py,cover
|
|
||||||
.hypothesis/
|
|
||||||
.pytest_cache/
|
|
||||||
cover/
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
*.mo
|
|
||||||
*.pot
|
|
||||||
|
|
||||||
# Django stuff:
|
|
||||||
local_settings.py
|
|
||||||
db.sqlite3
|
|
||||||
db.sqlite3-journal
|
|
||||||
|
|
||||||
# Flask stuff:
|
|
||||||
instance/
|
|
||||||
.webassets-cache
|
|
||||||
|
|
||||||
# Scrapy stuff:
|
|
||||||
.scrapy
|
|
||||||
|
|
||||||
# Sphinx documentation
|
|
||||||
docs/_build/
|
|
||||||
|
|
||||||
# PyBuilder
|
|
||||||
.pybuilder/
|
|
||||||
target/
|
|
||||||
|
|
||||||
# Jupyter Notebook
|
|
||||||
.ipynb_checkpoints
|
|
||||||
|
|
||||||
# IPython
|
|
||||||
profile_default/
|
|
||||||
ipython_config.py
|
|
||||||
|
|
||||||
# pyenv
|
|
||||||
# For a library or package, you might want to ignore these files since the code is
|
|
||||||
# intended to run in multiple environments; otherwise, check them in:
|
|
||||||
# .python-version
|
|
||||||
|
|
||||||
# pipenv
|
|
||||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
||||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
||||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
||||||
# install all needed dependencies.
|
|
||||||
#Pipfile.lock
|
|
||||||
|
|
||||||
# poetry
|
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
||||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
||||||
# commonly ignored for libraries.
|
|
||||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
||||||
#poetry.lock
|
|
||||||
|
|
||||||
# pdm
|
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
||||||
#pdm.lock
|
|
||||||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
||||||
# in version control.
|
|
||||||
# https://pdm.fming.dev/#use-with-ide
|
|
||||||
.pdm.toml
|
|
||||||
|
|
||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
||||||
__pypackages__/
|
|
||||||
|
|
||||||
# Celery stuff
|
|
||||||
celerybeat-schedule
|
|
||||||
celerybeat.pid
|
|
||||||
|
|
||||||
# SageMath parsed files
|
|
||||||
*.sage.py
|
|
||||||
|
|
||||||
# Environments
|
|
||||||
.venv
|
|
||||||
env/
|
|
||||||
venv/
|
|
||||||
ENV/
|
|
||||||
env.bak/
|
|
||||||
venv.bak/
|
|
||||||
|
|
||||||
# Spyder project settings
|
|
||||||
.spyderproject
|
|
||||||
.spyproject
|
|
||||||
|
|
||||||
# Rope project settings
|
|
||||||
.ropeproject
|
|
||||||
|
|
||||||
# mkdocs documentation
|
|
||||||
/site
|
|
||||||
|
|
||||||
# mypy
|
|
||||||
.mypy_cache/
|
|
||||||
.dmypy.json
|
|
||||||
dmypy.json
|
|
||||||
|
|
||||||
# Pyre type checker
|
|
||||||
.pyre/
|
|
||||||
|
|
||||||
# pytype static type analyzer
|
|
||||||
.pytype/
|
|
||||||
|
|
||||||
# Cython debug symbols
|
|
||||||
cython_debug/
|
|
||||||
|
|
||||||
# PyCharm
|
|
||||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
||||||
#.idea/
|
|
||||||
|
|
||||||
### Python Patch ###
|
|
||||||
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
|
||||||
poetry.toml
|
|
||||||
|
|
||||||
# ruff
|
|
||||||
.ruff_cache/
|
|
||||||
|
|
||||||
# LSP config files
|
|
||||||
pyrightconfig.json
|
|
||||||
|
|
||||||
### SublimeText ###
|
|
||||||
# Cache files for Sublime Text
|
|
||||||
*.tmlanguage.cache
|
|
||||||
*.tmPreferences.cache
|
|
||||||
*.stTheme.cache
|
|
||||||
|
|
||||||
# Workspace files are user-specific
|
|
||||||
*.sublime-workspace
|
|
||||||
|
|
||||||
# Project files should be checked into the repository, unless a significant
|
|
||||||
# proportion of contributors will probably not be using Sublime Text
|
|
||||||
# *.sublime-project
|
|
||||||
|
|
||||||
# SFTP configuration file
|
|
||||||
sftp-config.json
|
|
||||||
sftp-config-alt*.json
|
|
||||||
|
|
||||||
# Package control specific files
|
|
||||||
Package Control.last-run
|
|
||||||
Package Control.ca-list
|
|
||||||
Package Control.ca-bundle
|
|
||||||
Package Control.system-ca-bundle
|
|
||||||
Package Control.cache/
|
|
||||||
Package Control.ca-certs/
|
|
||||||
Package Control.merged-ca-bundle
|
|
||||||
Package Control.user-ca-bundle
|
|
||||||
oscrypto-ca-bundle.crt
|
|
||||||
bh_unicode_properties.cache
|
|
||||||
|
|
||||||
# Sublime-github package stores a github token in this file
|
|
||||||
# https://packagecontrol.io/packages/sublime-github
|
|
||||||
GitHub.sublime-settings
|
|
||||||
|
|
||||||
### Vim ###
|
|
||||||
# Swap
|
|
||||||
[._]*.s[a-v][a-z]
|
|
||||||
!*.svg # comment out if you don't need vector files
|
|
||||||
[._]*.sw[a-p]
|
|
||||||
[._]s[a-rt-v][a-z]
|
|
||||||
[._]ss[a-gi-z]
|
|
||||||
[._]sw[a-p]
|
|
||||||
|
|
||||||
# Session
|
|
||||||
Session.vim
|
|
||||||
Sessionx.vim
|
|
||||||
|
|
||||||
# Temporary
|
|
||||||
.netrwhist
|
|
||||||
# Auto-generated tag files
|
|
||||||
tags
|
|
||||||
# Persistent undo
|
|
||||||
[._]*.un~
|
|
||||||
|
|
||||||
### VisualStudioCode ###
|
|
||||||
.vscode/*
|
|
||||||
!.vscode/settings.json
|
|
||||||
!.vscode/tasks.json
|
|
||||||
!.vscode/launch.json
|
|
||||||
!.vscode/extensions.json
|
|
||||||
!.vscode/*.code-snippets
|
|
||||||
|
|
||||||
# Local History for Visual Studio Code
|
|
||||||
.history/
|
|
||||||
|
|
||||||
# Built Visual Studio Code Extensions
|
|
||||||
*.vsix
|
|
||||||
|
|
||||||
### VisualStudioCode Patch ###
|
|
||||||
# Ignore all local history of files
|
|
||||||
.history
|
|
||||||
.ionide
|
|
||||||
|
|
||||||
### VisualStudio ###
|
|
||||||
## Ignore Visual Studio temporary files, build results, and
|
|
||||||
## files generated by popular Visual Studio add-ons.
|
|
||||||
##
|
|
||||||
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
|
|
||||||
|
|
||||||
# User-specific files
|
|
||||||
*.rsuser
|
|
||||||
*.suo
|
|
||||||
*.user
|
|
||||||
*.userosscache
|
|
||||||
*.sln.docstates
|
|
||||||
|
|
||||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
|
||||||
*.userprefs
|
|
||||||
|
|
||||||
# Mono auto generated files
|
|
||||||
mono_crash.*
|
|
||||||
|
|
||||||
# Build results
|
|
||||||
[Dd]ebug/
|
|
||||||
[Dd]ebugPublic/
|
|
||||||
[Rr]elease/
|
|
||||||
[Rr]eleases/
|
|
||||||
x64/
|
|
||||||
x86/
|
|
||||||
[Ww][Ii][Nn]32/
|
|
||||||
[Aa][Rr][Mm]/
|
|
||||||
[Aa][Rr][Mm]64/
|
|
||||||
bld/
|
|
||||||
[Bb]in/
|
|
||||||
[Oo]bj/
|
|
||||||
[Ll]og/
|
|
||||||
[Ll]ogs/
|
|
||||||
|
|
||||||
# Visual Studio 2015/2017 cache/options directory
|
|
||||||
.vs/
|
|
||||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
|
||||||
#wwwroot/
|
|
||||||
|
|
||||||
# Visual Studio 2017 auto generated files
|
|
||||||
Generated\ Files/
|
|
||||||
|
|
||||||
# MSTest test Results
|
|
||||||
[Tt]est[Rr]esult*/
|
|
||||||
[Bb]uild[Ll]og.*
|
|
||||||
|
|
||||||
# NUnit
|
|
||||||
*.VisualState.xml
|
|
||||||
TestResult.xml
|
|
||||||
nunit-*.xml
|
|
||||||
|
|
||||||
# Build Results of an ATL Project
|
|
||||||
[Dd]ebugPS/
|
|
||||||
[Rr]eleasePS/
|
|
||||||
dlldata.c
|
|
||||||
|
|
||||||
# Benchmark Results
|
|
||||||
BenchmarkDotNet.Artifacts/
|
|
||||||
|
|
||||||
# .NET Core
|
|
||||||
project.lock.json
|
|
||||||
project.fragment.lock.json
|
|
||||||
artifacts/
|
|
||||||
|
|
||||||
# ASP.NET Scaffolding
|
|
||||||
ScaffoldingReadMe.txt
|
|
||||||
|
|
||||||
# StyleCop
|
|
||||||
StyleCopReport.xml
|
|
||||||
|
|
||||||
# Files built by Visual Studio
|
|
||||||
*_i.c
|
|
||||||
*_p.c
|
|
||||||
*_h.h
|
|
||||||
*.ilk
|
|
||||||
*.meta
|
|
||||||
*.obj
|
|
||||||
*.iobj
|
|
||||||
*.pch
|
|
||||||
*.pdb
|
|
||||||
*.ipdb
|
|
||||||
*.pgc
|
|
||||||
*.pgd
|
|
||||||
*.rsp
|
|
||||||
*.sbr
|
|
||||||
*.tlb
|
|
||||||
*.tli
|
|
||||||
*.tlh
|
|
||||||
*.tmp
|
|
||||||
*.tmp_proj
|
|
||||||
*_wpftmp.csproj
|
|
||||||
*.tlog
|
|
||||||
*.vspscc
|
|
||||||
*.vssscc
|
|
||||||
.builds
|
|
||||||
*.pidb
|
|
||||||
*.svclog
|
|
||||||
*.scc
|
|
||||||
|
|
||||||
# Chutzpah Test files
|
|
||||||
_Chutzpah*
|
|
||||||
|
|
||||||
# Visual C++ cache files
|
|
||||||
ipch/
|
|
||||||
*.aps
|
|
||||||
*.ncb
|
|
||||||
*.opendb
|
|
||||||
*.opensdf
|
|
||||||
*.cachefile
|
|
||||||
*.VC.db
|
|
||||||
*.VC.VC.opendb
|
|
||||||
|
|
||||||
# Visual Studio profiler
|
|
||||||
*.psess
|
|
||||||
*.vsp
|
|
||||||
*.vspx
|
|
||||||
*.sap
|
|
||||||
|
|
||||||
# Visual Studio Trace Files
|
|
||||||
*.e2e
|
|
||||||
|
|
||||||
# TFS 2012 Local Workspace
|
|
||||||
$tf/
|
|
||||||
|
|
||||||
# Guidance Automation Toolkit
|
|
||||||
*.gpState
|
|
||||||
|
|
||||||
# ReSharper is a .NET coding add-in
|
|
||||||
_ReSharper*/
|
|
||||||
*.[Rr]e[Ss]harper
|
|
||||||
*.DotSettings.user
|
|
||||||
|
|
||||||
# TeamCity is a build add-in
|
|
||||||
_TeamCity*
|
|
||||||
|
|
||||||
# DotCover is a Code Coverage Tool
|
|
||||||
*.dotCover
|
|
||||||
|
|
||||||
# AxoCover is a Code Coverage Tool
|
|
||||||
.axoCover/*
|
|
||||||
!.axoCover/settings.json
|
|
||||||
|
|
||||||
# Coverlet is a free, cross platform Code Coverage Tool
|
|
||||||
coverage*.json
|
|
||||||
coverage*.xml
|
|
||||||
coverage*.info
|
|
||||||
|
|
||||||
# Visual Studio code coverage results
|
|
||||||
*.coverage
|
|
||||||
*.coveragexml
|
|
||||||
|
|
||||||
# NCrunch
|
|
||||||
_NCrunch_*
|
|
||||||
.*crunch*.local.xml
|
|
||||||
nCrunchTemp_*
|
|
||||||
|
|
||||||
# MightyMoose
|
|
||||||
*.mm.*
|
|
||||||
AutoTest.Net/
|
|
||||||
|
|
||||||
# Web workbench (sass)
|
|
||||||
.sass-cache/
|
|
||||||
|
|
||||||
# Installshield output folder
|
|
||||||
[Ee]xpress/
|
|
||||||
|
|
||||||
# DocProject is a documentation generator add-in
|
|
||||||
DocProject/buildhelp/
|
|
||||||
DocProject/Help/*.HxT
|
|
||||||
DocProject/Help/*.HxC
|
|
||||||
DocProject/Help/*.hhc
|
|
||||||
DocProject/Help/*.hhk
|
|
||||||
DocProject/Help/*.hhp
|
|
||||||
DocProject/Help/Html2
|
|
||||||
DocProject/Help/html
|
|
||||||
|
|
||||||
# Click-Once directory
|
|
||||||
publish/
|
|
||||||
|
|
||||||
# Publish Web Output
|
|
||||||
*.[Pp]ublish.xml
|
|
||||||
*.azurePubxml
|
|
||||||
# Note: Comment the next line if you want to checkin your web deploy settings,
|
|
||||||
# but database connection strings (with potential passwords) will be unencrypted
|
|
||||||
*.pubxml
|
|
||||||
*.publishproj
|
|
||||||
|
|
||||||
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
|
||||||
# checkin your Azure Web App publish settings, but sensitive information contained
|
|
||||||
# in these scripts will be unencrypted
|
|
||||||
PublishScripts/
|
|
||||||
|
|
||||||
# NuGet Packages
|
|
||||||
*.nupkg
|
|
||||||
# NuGet Symbol Packages
|
|
||||||
*.snupkg
|
|
||||||
# The packages folder can be ignored because of Package Restore
|
|
||||||
**/[Pp]ackages/*
|
|
||||||
# except build/, which is used as an MSBuild target.
|
|
||||||
!**/[Pp]ackages/build/
|
|
||||||
# Uncomment if necessary however generally it will be regenerated when needed
|
|
||||||
#!**/[Pp]ackages/repositories.config
|
|
||||||
# NuGet v3's project.json files produces more ignorable files
|
|
||||||
*.nuget.props
|
|
||||||
*.nuget.targets
|
|
||||||
|
|
||||||
# Microsoft Azure Build Output
|
|
||||||
csx/
|
|
||||||
*.build.csdef
|
|
||||||
|
|
||||||
# Microsoft Azure Emulator
|
|
||||||
ecf/
|
|
||||||
rcf/
|
|
||||||
|
|
||||||
# Windows Store app package directories and files
|
|
||||||
AppPackages/
|
|
||||||
BundleArtifacts/
|
|
||||||
Package.StoreAssociation.xml
|
|
||||||
_pkginfo.txt
|
|
||||||
*.appx
|
|
||||||
*.appxbundle
|
|
||||||
*.appxupload
|
|
||||||
|
|
||||||
# Visual Studio cache files
|
|
||||||
# files ending in .cache can be ignored
|
|
||||||
*.[Cc]ache
|
|
||||||
# but keep track of directories ending in .cache
|
|
||||||
!?*.[Cc]ache/
|
|
||||||
|
|
||||||
# Others
|
|
||||||
ClientBin/
|
|
||||||
~$*
|
|
||||||
*.dbmdl
|
|
||||||
*.dbproj.schemaview
|
|
||||||
*.jfm
|
|
||||||
*.pfx
|
|
||||||
*.publishsettings
|
|
||||||
orleans.codegen.cs
|
|
||||||
|
|
||||||
# Including strong name files can present a security risk
|
|
||||||
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
|
||||||
#*.snk
|
|
||||||
|
|
||||||
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
|
||||||
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
|
||||||
#bower_components/
|
|
||||||
|
|
||||||
# RIA/Silverlight projects
|
|
||||||
Generated_Code/
|
|
||||||
|
|
||||||
# Backup & report files from converting an old project file
|
|
||||||
# to a newer Visual Studio version. Backup files are not needed,
|
|
||||||
# because we have git ;-)
|
|
||||||
_UpgradeReport_Files/
|
|
||||||
Backup*/
|
|
||||||
UpgradeLog*.XML
|
|
||||||
UpgradeLog*.htm
|
|
||||||
ServiceFabricBackup/
|
|
||||||
*.rptproj.bak
|
|
||||||
|
|
||||||
# SQL Server files
|
|
||||||
*.mdf
|
|
||||||
*.ldf
|
|
||||||
*.ndf
|
|
||||||
|
|
||||||
# Business Intelligence projects
|
|
||||||
*.rdl.data
|
|
||||||
*.bim.layout
|
|
||||||
*.bim_*.settings
|
|
||||||
*.rptproj.rsuser
|
|
||||||
*- [Bb]ackup.rdl
|
|
||||||
*- [Bb]ackup ([0-9]).rdl
|
|
||||||
*- [Bb]ackup ([0-9][0-9]).rdl
|
|
||||||
|
|
||||||
# Microsoft Fakes
|
|
||||||
FakesAssemblies/
|
|
||||||
|
|
||||||
# GhostDoc plugin setting file
|
|
||||||
*.GhostDoc.xml
|
|
||||||
|
|
||||||
# Node.js Tools for Visual Studio
|
|
||||||
.ntvs_analysis.dat
|
|
||||||
|
|
||||||
# Visual Studio 6 build log
|
|
||||||
*.plg
|
|
||||||
|
|
||||||
# Visual Studio 6 workspace options file
|
|
||||||
*.opt
|
|
||||||
|
|
||||||
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
|
||||||
*.vbw
|
|
||||||
|
|
||||||
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
|
|
||||||
*.vbp
|
|
||||||
|
|
||||||
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
|
|
||||||
*.dsw
|
|
||||||
*.dsp
|
|
||||||
|
|
||||||
# Visual Studio 6 technical files
|
|
||||||
|
|
||||||
# Visual Studio LightSwitch build output
|
|
||||||
**/*.HTMLClient/GeneratedArtifacts
|
|
||||||
**/*.DesktopClient/GeneratedArtifacts
|
|
||||||
**/*.DesktopClient/ModelManifest.xml
|
|
||||||
**/*.Server/GeneratedArtifacts
|
|
||||||
**/*.Server/ModelManifest.xml
|
|
||||||
_Pvt_Extensions
|
|
||||||
|
|
||||||
# Paket dependency manager
|
|
||||||
.paket/paket.exe
|
|
||||||
paket-files/
|
|
||||||
|
|
||||||
# FAKE - F# Make
|
|
||||||
.fake/
|
|
||||||
|
|
||||||
# CodeRush personal settings
|
|
||||||
.cr/personal
|
|
||||||
|
|
||||||
# Python Tools for Visual Studio (PTVS)
|
|
||||||
*.pyc
|
|
||||||
|
|
||||||
# Cake - Uncomment if you are using it
|
|
||||||
# tools/**
|
|
||||||
# !tools/packages.config
|
|
||||||
|
|
||||||
# Tabs Studio
|
|
||||||
*.tss
|
|
||||||
|
|
||||||
# Telerik's JustMock configuration file
|
|
||||||
*.jmconfig
|
|
||||||
|
|
||||||
# BizTalk build output
|
|
||||||
*.btp.cs
|
|
||||||
*.btm.cs
|
|
||||||
*.odx.cs
|
|
||||||
*.xsd.cs
|
|
||||||
|
|
||||||
# OpenCover UI analysis results
|
|
||||||
OpenCover/
|
|
||||||
|
|
||||||
# Azure Stream Analytics local run output
|
|
||||||
ASALocalRun/
|
|
||||||
|
|
||||||
# MSBuild Binary and Structured Log
|
|
||||||
*.binlog
|
|
||||||
|
|
||||||
# NVidia Nsight GPU debugger configuration file
|
|
||||||
*.nvuser
|
|
||||||
|
|
||||||
# MFractors (Xamarin productivity tool) working folder
|
|
||||||
.mfractor/
|
|
||||||
|
|
||||||
# Local History for Visual Studio
|
|
||||||
.localhistory/
|
|
||||||
|
|
||||||
# Visual Studio History (VSHistory) files
|
|
||||||
.vshistory/
|
|
||||||
|
|
||||||
# BeatPulse healthcheck temp database
|
|
||||||
healthchecksdb
|
|
||||||
|
|
||||||
# Backup folder for Package Reference Convert tool in Visual Studio 2017
|
|
||||||
MigrationBackup/
|
|
||||||
|
|
||||||
# Ionide (cross platform F# VS Code tools) working folder
|
|
||||||
.ionide/
|
|
||||||
|
|
||||||
# Fody - auto-generated XML schema
|
|
||||||
FodyWeavers.xsd
|
|
||||||
|
|
||||||
# VS Code files for those working on multiple tools
|
|
||||||
*.code-workspace
|
|
||||||
|
|
||||||
# Local History for Visual Studio Code
|
|
||||||
|
|
||||||
# Windows Installer files from build outputs
|
|
||||||
*.cab
|
|
||||||
*.msi
|
|
||||||
*.msix
|
|
||||||
*.msm
|
|
||||||
*.msp
|
|
||||||
|
|
||||||
# JetBrains Rider
|
|
||||||
*.sln.iml
|
|
||||||
|
|
||||||
### VisualStudio Patch ###
|
|
||||||
# Additional files built by Visual Studio
|
|
||||||
|
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/vim,node,data,emacs,python,pycharm,executable,sublimetext,visualstudio,visualstudiocode
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
#This file stores configuration options for Iris, such as the currently active shaderpack
|
|
||||||
#Wed Mar 08 17:05:11 CST 2023
|
|
||||||
disableUpdateMessage=false
|
|
||||||
enableDebugOptions=false
|
|
||||||
maxShadowRenderDistance=32
|
|
||||||
shaderPack=BSL_v8.2.02.zip
|
|
||||||
enableShaders=true
|
|
||||||
|
|
||||||
soundCategory_master:1.0
|
|
||||||
soundCategory_music:0.0
|
|
||||||
soundCategory_record:1.0
|
|
||||||
soundCategory_weather:0.5
|
|
||||||
soundCategory_block:1.0
|
|
||||||
soundCategory_hostile:1.0
|
|
||||||
soundCategory_neutral:1.0
|
|
||||||
soundCategory_player:1.0
|
|
||||||
soundCategory_ambient:0.5
|
|
||||||
soundCategory_voice:1.0
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
'offhand' : '{Count:1b,id:"minecraft:shield",tag:{Damage:0}}',
|
|
||||||
'head' : '{Count:1b,id:"minecraft:leather_helmet",tag:{Damage:0}}',
|
|
||||||
'chest' : '{Count:1b,id:"minecraft:leather_chestplate",tag:{Damage:0}}',
|
|
||||||
'legs' : '{Count:1b,id:"minecraft:leather_leggings",tag:{Damage:0}}',
|
|
||||||
'feet' : '{Count:1b,id:"minecraft:leather_boots",tag:{Damage:0}}',
|
|
||||||
0 : '{Count:1b,id:"minecraft:stone_axe",tag:{Damage:0}}',
|
|
||||||
1 : '{Count:1b,id:"minecraft:stone_pickaxe",tag:{Damage:0}}',
|
|
||||||
2 : '{Count:9b,id:"minecraft:bread"}',
|
|
||||||
2 : '',
|
|
||||||
3 : '',
|
|
||||||
4 : '',
|
|
||||||
5 : '',
|
|
||||||
6 : '',
|
|
||||||
7 : '',
|
|
||||||
8 : '',
|
|
||||||
9 : '',
|
|
||||||
10 : '',
|
|
||||||
11 : '',
|
|
||||||
12 : '',
|
|
||||||
13 : '',
|
|
||||||
14 : '',
|
|
||||||
15 : '',
|
|
||||||
16 : '',
|
|
||||||
17 : '',
|
|
||||||
18 : '',
|
|
||||||
19 : '',
|
|
||||||
20 : '',
|
|
||||||
21 : '',
|
|
||||||
22 : '',
|
|
||||||
23 : '',
|
|
||||||
24 : '',
|
|
||||||
25 : '',
|
|
||||||
26 : '',
|
|
||||||
27 : '',
|
|
||||||
28 : '',
|
|
||||||
29 : '',
|
|
||||||
30 : '',
|
|
||||||
31 : '',
|
|
||||||
32 : '',
|
|
||||||
33 : '',
|
|
||||||
34 : '',
|
|
||||||
35 : '',
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
||||||
version:3120
|
|
||||||
autoJump:false
|
|
||||||
snooperEnabled:false
|
|
||||||
darkMojangStudiosBackground:true
|
|
||||||
simulationDistance:6
|
|
||||||
guiScale:3
|
|
||||||
maxFps:260
|
|
||||||
advancedItemTooltips:true
|
|
||||||
tutorialStep:none
|
|
||||||
skipMultiplayerWarning:true
|
|
||||||
joinedFirstServer:true
|
|
||||||
chatPreview:false
|
|
||||||
key_key.saveToolbarActivator:key.keyboard.unknown
|
|
||||||
key_zoomify.key.zoom:key.keyboard.c
|
|
||||||
key_zoomify.key.zoom.secondary:key.keyboard.unknown
|
|
||||||
key_key.antighost.reveal:key.keyboard.unknown
|
|
||||||
key_iris.keybind.reload:key.keyboard.unknown
|
|
||||||
key_iris.keybind.toggleShaders:key.keyboard.unknown
|
|
||||||
key_iris.keybind.shaderPackSelection:key.keyboard.unknown
|
|
||||||
soundCategory_master:1.0
|
|
||||||
soundCategory_music:0
|
|
||||||
soundCategory_record:1.0
|
|
||||||
soundCategory_weather:0.5
|
|
||||||
soundCategory_block:1.0
|
|
||||||
soundCategory_hostile:1.0
|
|
||||||
soundCategory_neutral:1.0
|
|
||||||
soundCategory_player:1.0
|
|
||||||
soundCategory_ambient:0.5
|
|
||||||
soundCategory_voice:1.0
|
|
||||||
139
index.toml
139
index.toml
|
|
@ -1,85 +1,63 @@
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/yosbr/config/iris.properties"
|
|
||||||
hash = "7e19892b834ca681e69bff8b666ad7fb41c783d80e44826b9984056f15a1b781"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/yosbr/config/starterkit/starterkit.txt"
|
|
||||||
hash = "98e29fe814d5e77ee23f9631c3ae647b873e374f3df5dc2b1b4b53e232bccd92"
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "config/yosbr/options.txt"
|
|
||||||
hash = "9187cba268ca7b365ce3f8a99198a95ebe748d6ea14db42b9c355c7e616005ff"
|
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/appleskin.pw.toml"
|
file = "mods/appleskin.pw.toml"
|
||||||
hash = "6869de1ca55dc09beabb3c234727e84be4d4fbdcbad2c8081c03010713f374e1"
|
hash = "4d571d5ebe245ffb62a0df83e81d1c03670807d3528650d6dd9c983bd26ae860"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/badpackets.pw.toml"
|
file = "mods/badpackets.pw.toml"
|
||||||
hash = "b2e0d51beac88a90d9b9051c075890c862bd6e33483b45f69584af23e61dd7e5"
|
hash = "63edbd012db544d0590a1cd2563a4973c0316b8033370b41a48c05b0e8e667e5"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/betterf3.pw.toml"
|
file = "mods/betterf3.pw.toml"
|
||||||
hash = "a5eac6a8d140ee215411d88e61bf9b53a2a26021032b65cffc0924403475dbba"
|
hash = "e8cd685b609577ab23e2a55ec3273a1ff9475daef52f0999b2c5d27f7c795f5c"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/blur-fabric.pw.toml"
|
file = "mods/blur-fabric.pw.toml"
|
||||||
hash = "68a120db2b2c4db5fbfde501a6ee0504c692f3b1e777cc4dd85f1cb90c84dcd0"
|
hash = "309fa9d0ab190059d9a13933db512f36f01ec0b40f37fa6e919ec085c686df9e"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/cardinal-components-api.pw.toml"
|
file = "mods/cardinal-components-api.pw.toml"
|
||||||
hash = "50e3b067e93d3e6683d540edc4d046ed7b6b5fbb31409df1727b120f225b1975"
|
hash = "5d898bbdb655828c59223382f85016f8328884b3ff176b697c51e8dedaec68c1"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/cloth-config.pw.toml"
|
file = "mods/cloth-config.pw.toml"
|
||||||
hash = "1fc52599bb002e467661afaa4b844c517fb549ad14eb6f552bf11dfb5c8b535e"
|
hash = "213cad77d46ff46fe20780b01856cb1a8812747e9c3564203669bf3905e646e2"
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/collective.pw.toml"
|
|
||||||
hash = "5dc1b3414774e16c9fcdf4d5283457ac1a8df0c498851009157b62517de3fd5e"
|
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/command-macros.pw.toml"
|
file = "mods/command-macros.pw.toml"
|
||||||
hash = "be57a455bb8c8f01f1e9b18a32ab3079de5d5f09cd934bf9365e68fad95bfc21"
|
hash = "9aee9efd97da0e04e19279a7e80a7f785778ee8adebfbbd3ae5c446e6e50f01f"
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/diggus-maximus.pw.toml"
|
|
||||||
hash = "db690311634819527b9455423d21dce9057a5f00292e8270a1b2baa28a063936"
|
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/durabilityviewer.pw.toml"
|
file = "mods/durabilityviewer.pw.toml"
|
||||||
hash = "30fb402a2189537fbcad664b5ac28df0bc47e557b03af95117c10b58c86cc0fe"
|
hash = "84c3fa8f432a1f7d8692e7a52f5c4a7b60c5c215a1329af48df76544e72b90d6"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/fabric-api.pw.toml"
|
file = "mods/fabric-api.pw.toml"
|
||||||
hash = "714158dafbd5954a8024d5b7e677fc1303d1c0bc665c7df5942d3a685904988e"
|
hash = "bdc0026a453334abaa888c085ea5f34c7a818406a79b8c4702d5345f883787cb"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/fabric-language-kotlin.pw.toml"
|
file = "mods/fabric-language-kotlin.pw.toml"
|
||||||
hash = "6f95b9e670d557f852a798489d7b5ec48ed8ddc7e8e1809ff06d4b187d17aac9"
|
hash = "0fe83c99b29c952f464c7bfba9cc86cc4f834bef7834821433fe23ce3dd230e6"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/fallingleaves.pw.toml"
|
file = "mods/fallingleaves.pw.toml"
|
||||||
hash = "0c4c20d601b15dbc85c275732d9efe9369597503c7d6caa9a7fee217f67073e7"
|
hash = "423581d9738b23798456b7ba021698355ef8f03cef93d8c1266102a227d9a200"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/fallingtree.pw.toml"
|
file = "mods/fallingtree.pw.toml"
|
||||||
hash = "7325f217817b1793fce374f9e71280a57fb02af18f4c6175e9ae10b267272470"
|
hash = "99f6a7efa6c8946aacfa1465ad8a2912cdf3233dc09a5788ad5d7f6d679836b4"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
|
|
@ -89,57 +67,57 @@ metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/forge-config-api-port.pw.toml"
|
file = "mods/forge-config-api-port.pw.toml"
|
||||||
hash = "e00070f0db00ebcd304f8f68fd44e59ceaedbc8c27743c9c195134aae57c5fde"
|
hash = "3a68d8f694877589b9d29bd7b44b590a123007f28142d0deed1ba34c9b90b51c"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/glsl-panorama.pw.toml"
|
file = "mods/glsl-panorama.pw.toml"
|
||||||
hash = "22785ac1be221752745af6018e9323c0f90b918478483b601e4b783b4efe7d98"
|
hash = "7595eb37f5307a361209db642b2eb18943aa3d3812659cf8a66a273c93325417"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/iceberg.pw.toml"
|
file = "mods/iceberg.pw.toml"
|
||||||
hash = "a4d47f10df4769734a850e6a2cd7342802f92f5e269b27464c86cfd0b5a2182f"
|
hash = "a81c6e60f18faf727ed743029c8a4d093c6c96f0c450be7bf3535985ee6f4288"
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/indium.pw.toml"
|
|
||||||
hash = "0c5e71addef34c8dcd1c81dfc2ad851a3e274b9d8d3a7d388e1113d4139bf8d8"
|
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/iris.pw.toml"
|
file = "mods/iris.pw.toml"
|
||||||
hash = "7df52a269aaabcb9c4d3ce72322177f4cb5d2e8fc8d506554fa6b6290b0ad548"
|
hash = "2355898e55539353e3fe43057c1c2880e02ceb6b64c8f5d1e0bc2a660635c323"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/item-highlighter.pw.toml"
|
file = "mods/item-highlighter.pw.toml"
|
||||||
hash = "c5d5b857fa70cb5deed260054b9723dc8069635880061d5ba328e1eb684604bf"
|
hash = "94e7f92d2fd5f41e9092466413a7c04ee4f514082fc389fad0bf5603b06287db"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/jei.pw.toml"
|
file = "mods/jei.pw.toml"
|
||||||
hash = "e43d696d9a6546f3b622a1242c42d3ec34d3a0739225b9b51319c9402f09041b"
|
hash = "86bdf3e7c87946fad718883449651e7606fba0d0fa173eb32b3d985e2a2cd8d5"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/journeymap-integration.pw.toml"
|
file = "mods/journeymap-integration.pw.toml"
|
||||||
hash = "e5baa5b81dbd3dda0e75a524c10302d278fceee4be251cdbee2a48bf3eae1f94"
|
hash = "50f3f61cfcb45933fd97d797ab64ca88bff83bf1031bdc0654af4ded691e38bb"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/journeymap.pw.toml"
|
file = "mods/journeymap.pw.toml"
|
||||||
hash = "050c95aa9ef6b9f7eb32f3ac51bd6b13e307468d9b83e0fa7720dddabfd1fc5a"
|
hash = "31d7d57cf0d65483fca5ead4ba11a0c63efb5c38a9bfd959f64a380908b6bace"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/litematica-printer.pw.toml"
|
file = "mods/litematica-printer.pw.toml"
|
||||||
hash = "3aa4802505046aeeb8f9a2f13a7750cc0263cea111ab488fb28a9d71a3e47984"
|
hash = "c1773d444c3a0839f8d8e65c4d51004909f1c2e75a8c2d573ae656a44fc40a88"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/magiclib.pw.toml"
|
||||||
|
hash = "66f1350327721eddb21d3b1037bb7b0f8b38074ab08aac37e20aa797343e23b6"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/malilib.pw.toml"
|
file = "mods/malilib.pw.toml"
|
||||||
hash = "aac087baa5cda20dea324cebd9076991e4802561702b11292d96bdbc6ed15472"
|
hash = "3926d859126491c673d921c3f3f93316766689ff0694f83d82255ec4776d3c74"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
|
|
@ -149,89 +127,100 @@ metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/midnightcontrols.pw.toml"
|
file = "mods/midnightcontrols.pw.toml"
|
||||||
hash = "bda1dd1e157c3db8fba22bab8bda6062cbb1c598ba787ae7404550a7ad95ea5e"
|
hash = "3c65e87193d79b218c0636cdfeca699ad6edcdbea035abfc7ce59005f1b4fb42"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/midnightlib.pw.toml"
|
file = "mods/midnightlib.pw.toml"
|
||||||
hash = "54e445b0b16e34991e7c2e2475905c1c36a65f7103ba9e4af05fe0df09160c4b"
|
hash = "d8e9c12d291ecb9f829fe57504ceeb404bbdd2f9de2595595659ebb90440c826"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/modmenu.pw.toml"
|
file = "mods/modmenu.pw.toml"
|
||||||
hash = "b136ca50e7d8239319f528ceb521e3482f753b25d768afaf39fa6ea81e549f2e"
|
hash = "be0fd8b9cd9f8a94428ea8ac5ec84f4f7bab23697236b7a2e54d8537834e0315"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/mouse-tweaks.pw.toml"
|
file = "mods/mouse-tweaks.pw.toml"
|
||||||
hash = "669008dbd2508a67f8c409096cf2357de450f26a69494289e5852045ade7d358"
|
hash = "8f554f10f3ca26505c1f51871263a7d75fca1e07a288c60c1a96b18f830beede"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/phosphor.pw.toml"
|
||||||
|
hash = "466d5892937df5aa05388291463b163b42fa454d8bfd22713484a0167ca3702d"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/puddles.pw.toml"
|
||||||
|
hash = "aeaba266c12841cff28278435042855c525a7127c1390ef235f08254cac23a9b"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/reeses-sodium-options.pw.toml"
|
file = "mods/reeses-sodium-options.pw.toml"
|
||||||
hash = "19a098ab3131eb6daf0033199744d33dbb31a4ce9b20b9fc6eb709ab1272aa7e"
|
hash = "b2e3be698473bfb3f08865a11e74c9ee8d47239ac72a79d60acc1ee381722a50"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/replaymod.pw.toml"
|
file = "mods/replaymod.pw.toml"
|
||||||
hash = "9e7c1e6cf3b81dce5a77bf5c95ed9d8e9b936b932aeadb1255245234230ced16"
|
hash = "04f8f8b903ea1b32de55cada48745016ea4c3ab7667a01f26ddf051b2efd731e"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/servercore.pw.toml"
|
file = "mods/servercore.pw.toml"
|
||||||
hash = "17b4cf782db225c145f5c2ababe1042deb0fed021f410d42691829673fa916c3"
|
hash = "94d8491cd39504b6faa3fb1c3da6233dfc0dbf5d854798a53079fb3f7c5fdfd0"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/sodium-extra.pw.toml"
|
file = "mods/sodium-extra.pw.toml"
|
||||||
hash = "7e39ba5b471407bf43c212fae99856276bf4411046aa3a5df5a7d27e76c7a2b3"
|
hash = "8da0d4c285e7e57aee3f08ab4e268d04518704ace4060744f042aef3a7f6bc50"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/sodium-shadowy-path-blocks.pw.toml"
|
file = "mods/sodium-shadowy-path-blocks.pw.toml"
|
||||||
hash = "c2fb8a64bc4610b7d026dc4cce78ad2a2f7264e5be4755849187e3caed5cac55"
|
hash = "2f175e539c7cb0f843e13e3a8b495d8d3b01ef623a7dd8c8b8c50eec9c3aed6e"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/sodium.pw.toml"
|
file = "mods/sodium.pw.toml"
|
||||||
hash = "9a927c3e0830ba32e1b8a2e543597781724462595b8cce58f676962b442bb52b"
|
hash = "aa4dcf55ac3191b0b31437521714c1d28364c3396cf06ef07fa76a08488c1837"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/starter-kit.pw.toml"
|
file = "mods/sound-physics-remastered.pw.toml"
|
||||||
hash = "48cdf89fd831068e391a00ae7f4ab0a588eaa860d5356435d5c447e4989d29ab"
|
hash = "08d9f157fea976ba8e7a20ebfce995fe5419ebddf581fcdab079aaceb33053e3"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/toms-storage.pw.toml"
|
file = "mods/toms-storage.pw.toml"
|
||||||
hash = "94dbdfe3831f0adbcbf9e1ed1a9d86eb7d5141ef10ebf6bf0a9d05713a21c9c6"
|
hash = "4d817fb45630a8ea31f6f37ea93eacfdfd30cc8281f8cf4f93a039da4cea988e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/world-stripper.pw.toml"
|
||||||
|
hash = "dcf1bfafe6f224bc683a0e11df5e5dfec76ce54ce5e487723befdfc7dab18bfe"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/worldedit-items.pw.toml"
|
||||||
|
hash = "57122c2979ed5e0a35c4a20ac72f466102ed6cfe62aacd414b3a8c5ae6d9a848"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/wthit.pw.toml"
|
file = "mods/wthit.pw.toml"
|
||||||
hash = "d84cd8cdfc4159872ffb18d41da94c1c525a725a8b4ec2b0818358d14fd4ca83"
|
hash = "53ba03514c34cf2540c35722a0405ffea1dca1f35eb4d91e8e016d89267eb2fa"
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/yosbr.pw.toml"
|
|
||||||
hash = "6f6334f336a876088431df70e2bba6ac52ca2ddeb73a4880ce88d6954b09af00"
|
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "shaderpacks/bsl-shaders.pw.toml"
|
file = "shaderpacks/bsl-shaders.pw.toml"
|
||||||
hash = "820c7a11a6d105ee6b8e4faaf0b93f807fcdbc803f816437e2170c76c439e38c"
|
hash = "6f796fa32047df2fba6fca47eb50b8547a82f80c0522c9d0822a43436d5d1f6b"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "shaderpacks/complementary-shaders-v4.pw.toml"
|
file = "shaderpacks/complementary-shaders-v4.pw.toml"
|
||||||
hash = "356650c70469f8597be3f7a99067ad397202bd091336218b588ebf0bb4856e51"
|
hash = "d468216fa4b4917769fae3179b7bb47656f8a65474e87352d5b379783384e0af"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "shaderpacks/rethinking-voxels.pw.toml"
|
file = "shaderpacks/rethinking-voxels.pw.toml"
|
||||||
hash = "b71aae4389aa77112335858465e31b13f8bbdc4a1c60a0a54ceb6338e339ce1b"
|
hash = "6e2b1e07d0a729f548c17b04b8bf2c06995bc840ae7ad2a89490d7249f386d72"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "starterkit/starterkit.txt"
|
|
||||||
hash = "05bb85e48174b0153a15842377217c3e7c8c6659c2cd8abd73b2de2ba72ac14d"
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "AppleSkin"
|
name = "AppleSkin"
|
||||||
filename = "appleskin-fabric-mc1.20-2.5.0.jar"
|
filename = "appleskin-fabric-mc1.19-2.4.1.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/CxnVG86Y/appleskin-fabric-mc1.20-2.5.0.jar"
|
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/fabric-mc1.19-2.4.1/appleskin-fabric-mc1.19-2.4.1.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "f01bcf9adbaaeb5f6b185864c0b879e8e3923991"
|
hash = "7bd52695e82b1ddd1fdb3320154b68bf48dfff37"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "EsAfCjCV"
|
mod-id = "EsAfCjCV"
|
||||||
version = "CxnVG86Y"
|
version = "pIFVoWvG"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "bad packets"
|
name = "bad packets"
|
||||||
filename = "badpackets-fabric-0.5.1.jar"
|
filename = "badpackets-fabric-0.2.1.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/ftdbN0KK/versions/Bz8FfSYz/badpackets-fabric-0.5.1.jar"
|
url = "https://cdn.modrinth.com/data/ftdbN0KK/versions/AifWRdyF/badpackets-fabric-0.2.1.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "1a1e7f243a70a492c5c8a7865b3c80acbdae7def"
|
hash = "17438ba70d88752f73d814405927450c81d035b9"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "ftdbN0KK"
|
mod-id = "ftdbN0KK"
|
||||||
version = "Bz8FfSYz"
|
version = "AifWRdyF"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "BetterF3"
|
name = "BetterF3"
|
||||||
filename = "BetterF3-8.0.1-Fabric-1.20.2.jar"
|
filename = "BetterF3-4.0.0-Fabric-1.19.2.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/o935ywNh/BetterF3-8.0.1-Fabric-1.20.2.jar"
|
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/RbNy07Bx/BetterF3-4.0.0-Fabric-1.19.2.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "9792a063cc9a74bb496472900e4591309e5cdaa2"
|
hash = "1bbc527d23b53e0aae4d5e1deddf92b1f394b94b"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "8shC1gFX"
|
mod-id = "8shC1gFX"
|
||||||
version = "o935ywNh"
|
version = "RbNy07Bx"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Blur (Fabric)"
|
name = "Blur (Fabric)"
|
||||||
filename = "blur-3.1.1.jar"
|
filename = "blur-2.6.0.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/NK39zBp2/versions/qh7RxICc/blur-3.1.1.jar"
|
url = "https://cdn.modrinth.com/data/NK39zBp2/versions/2.6.0/blur-2.6.0.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "e36d1b6f459c5f1a9c253c8394ba869fd64c0a45"
|
hash = "863af78e9486755bec63ee68b8ba676dc70f5313"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "NK39zBp2"
|
mod-id = "NK39zBp2"
|
||||||
version = "qh7RxICc"
|
version = "S0scZppQ"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Cardinal Components API"
|
name = "Cardinal Components API"
|
||||||
filename = "cardinal-components-api-5.2.2.jar"
|
filename = "cardinal-components-api-5.0.2.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/K01OU20C/versions/qW85eawp/cardinal-components-api-5.2.2.jar"
|
url = "https://cdn.modrinth.com/data/K01OU20C/versions/tPfCTMiZ/cardinal-components-api-5.0.2.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "b049c6342185dae10607d6c1fe2fd792db189582"
|
hash = "2ca37fd1372f48d39154aea952a9db148d1db9e5"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "K01OU20C"
|
mod-id = "K01OU20C"
|
||||||
version = "qW85eawp"
|
version = "tPfCTMiZ"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Cloth Config API"
|
name = "Cloth Config API"
|
||||||
filename = "cloth-config-12.0.109-fabric.jar"
|
filename = "cloth-config-8.2.88-fabric.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/LnfolBYb/cloth-config-12.0.109-fabric.jar"
|
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/EXrxCjl6/cloth-config-8.2.88-fabric.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "66ebcea9ec4ce863f0cc99e56d91a4c1a4e276a4"
|
hash = "4b93c69f22e9bdeeca201992e99632824b55f9cb"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "9s6osm5g"
|
mod-id = "9s6osm5g"
|
||||||
version = "LnfolBYb"
|
version = "EXrxCjl6"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Collective"
|
|
||||||
filename = "collective-1.20.2-6.66.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/e0M1UDsY/versions/84QjDeoH/collective-1.20.2-6.66.jar"
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "9a6f5e7b9f094283f1f1d3decb0359b40453958b"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "e0M1UDsY"
|
|
||||||
version = "84QjDeoH"
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Command Macros"
|
name = "Command Macros"
|
||||||
filename = "cmdkeybind-1.6.3-1.20.jar"
|
filename = "cmdkeybind-1.6.0-1.19.X.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/h3r1moh7/versions/snLr0hHP/cmdkeybind-1.6.3-1.20.jar"
|
url = "https://cdn.modrinth.com/data/h3r1moh7/versions/K7PcKM4C/cmdkeybind-1.6.0-1.19.X.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "0cf171a575e571727d775c4ae2d0a185896b57e9"
|
hash = "75f8a622ad200bc97e5b0201066e412818ef3d68"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "h3r1moh7"
|
mod-id = "h3r1moh7"
|
||||||
version = "snLr0hHP"
|
version = "K7PcKM4C"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Diggus Maximus"
|
|
||||||
filename = "diggusmaximus-1.5.9-1.20.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/S4LrRnI7/versions/ygAyNaax/diggusmaximus-1.5.9-1.20.jar"
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "7b36c55155d6320287007491818a23bd1c23b2b3"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "S4LrRnI7"
|
|
||||||
version = "ygAyNaax"
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Durability Viewer"
|
name = "Durability Viewer"
|
||||||
filename = "durabilityviewer-1.20.2-fabric0.89.1-1.10.5.jar"
|
filename = "durabilityviewer-1.19.1-fabric0.58.5-1.10.3.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/LTM1f0yY/versions/gWKtksGC/durabilityviewer-1.20.2-fabric0.89.1-1.10.5.jar"
|
url = "https://cdn.modrinth.com/data/LTM1f0yY/versions/1.19.1-fabric0.58.5-1.10.3/durabilityviewer-1.19.1-fabric0.58.5-1.10.3.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "eee9316193e827ce39d9b8a8bdbaf8af5303a5a9"
|
hash = "4c0b3f5906c930d0b28c70248f6a643aa6736632"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "LTM1f0yY"
|
mod-id = "LTM1f0yY"
|
||||||
version = "gWKtksGC"
|
version = "CYhU3d5T"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Fabric API"
|
name = "Fabric API"
|
||||||
filename = "fabric-api-0.90.0+1.20.2.jar"
|
filename = "fabric-api-0.75.1+1.19.2.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/Hk8zAzIB/fabric-api-0.90.0%2B1.20.2.jar"
|
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/6iOab8Tp/fabric-api-0.75.1%2B1.19.2.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "57f3a073dc52365cb6f9b81dc360d1cd3a6c7cc7"
|
hash = "8c39ce0a82cb2b5f9e909f47a61d7825e29ccf05"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "P7dR8mSH"
|
mod-id = "P7dR8mSH"
|
||||||
version = "Hk8zAzIB"
|
version = "6iOab8Tp"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Fabric Language Kotlin"
|
name = "Fabric Language Kotlin"
|
||||||
filename = "fabric-language-kotlin-1.10.10+kotlin.1.9.10.jar"
|
filename = "fabric-language-kotlin-1.9.1+kotlin.1.8.10.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/48ri5y9r/fabric-language-kotlin-1.10.10%2Bkotlin.1.9.10.jar"
|
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/lgFl3olb/fabric-language-kotlin-1.9.1%2Bkotlin.1.8.10.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "c708f3f4e94f0f66e72c6e96858368f0512c3b38"
|
hash = "12f265ea91e73ac2c74c6f66d446671122bbb1c8"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "Ha28R6CL"
|
mod-id = "Ha28R6CL"
|
||||||
version = "48ri5y9r"
|
version = "lgFl3olb"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Falling Leaves"
|
name = "Falling Leaves"
|
||||||
filename = "fallingleaves-1.15.4+1.20.1.jar"
|
filename = "fallingleaves-1.13.0+1.19.2.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/WhbRG4iK/versions/KpvXCE2X/fallingleaves-1.15.4%2B1.20.1.jar"
|
url = "https://cdn.modrinth.com/data/WhbRG4iK/versions/aufE28Na/fallingleaves-1.13.0%2B1.19.2.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "5101bd05c678a874c1fa40c3363d1c127f7074d5"
|
hash = "7472f0cbd986fb5620640469316d9fae924119f9"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "WhbRG4iK"
|
mod-id = "WhbRG4iK"
|
||||||
version = "KpvXCE2X"
|
version = "aufE28Na"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "FallingTree"
|
name = "FallingTree"
|
||||||
filename = "FallingTree-1.20.2-5.0.1.jar"
|
filename = "FallingTree-1.19.2-3.10.0.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/Fb4jn8m6/versions/BJ2K7C0J/FallingTree-1.20.2-5.0.1.jar"
|
url = "https://cdn.modrinth.com/data/Fb4jn8m6/versions/9kSv8gsK/FallingTree-1.19.2-3.10.0.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "fea4a738254785be589f5f26fb4007ddb624fea1"
|
hash = "52d1a2d2eba71bb0257af18c5013b8fef9cf3961"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "Fb4jn8m6"
|
mod-id = "Fb4jn8m6"
|
||||||
version = "BJ2K7C0J"
|
version = "9kSv8gsK"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Forge Config API Port"
|
name = "Forge Config API Port"
|
||||||
filename = "ForgeConfigAPIPort-v9.0.0-1.20.2-Fabric.jar"
|
filename = "ForgeConfigAPIPort-v4.2.11-1.19.2-Fabric.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/ohNO6lps/versions/f5d9VI72/ForgeConfigAPIPort-v9.0.0-1.20.2-Fabric.jar"
|
url = "https://cdn.modrinth.com/data/ohNO6lps/versions/3VCgXZ79/ForgeConfigAPIPort-v4.2.11-1.19.2-Fabric.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "e9471a5836daab325aaa9bd08759705f8de94545"
|
hash = "00d05a6d57ee557ab216de5527e1434e3cf50c24"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "ohNO6lps"
|
mod-id = "ohNO6lps"
|
||||||
version = "f5d9VI72"
|
version = "3VCgXZ79"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "GLSL Panorama Shaders"
|
name = "GLSL Panorama Shaders"
|
||||||
filename = "glslmc-0.2.2.jar"
|
filename = "glslmc-0.1.2.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/kqc8wQyk/versions/KpBqGhh7/glslmc-0.2.2.jar"
|
url = "https://cdn.modrinth.com/data/kqc8wQyk/versions/essDshzM/glslmc-0.1.2.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "3585c73df5706ec7f6eda2c8daec11c1304a44b6"
|
hash = "8822162726b858e51053fe3e83b49103c25c4edd"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "kqc8wQyk"
|
mod-id = "kqc8wQyk"
|
||||||
version = "KpBqGhh7"
|
version = "essDshzM"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Iceberg"
|
name = "Iceberg"
|
||||||
filename = "Iceberg-1.20.1-fabric-1.1.15.jar"
|
filename = "Iceberg-1.19.1-fabric-1.0.46.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/5faXoLqX/versions/SLE7PvYD/Iceberg-1.20.1-fabric-1.1.15.jar"
|
url = "https://cdn.modrinth.com/data/5faXoLqX/versions/qC0waeNX/Iceberg-1.19.1-fabric-1.0.46.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "0d2e4a54ed7971e3c2d13b4b9583fb9e65e6ccc1"
|
hash = "cff3a1f0aa7bd3c6f3ac29ae5cb9e6aba991ecd1"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "5faXoLqX"
|
mod-id = "5faXoLqX"
|
||||||
version = "SLE7PvYD"
|
version = "qC0waeNX"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Indium"
|
|
||||||
filename = "indium-1.0.27+mc1.20.1.jar"
|
|
||||||
side = "client"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/Orvt0mRa/versions/Lue6O9z9/indium-1.0.27%2Bmc1.20.1.jar"
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "8c8e6b96243155b41f2f9d29d5940ee895bcb141"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "Orvt0mRa"
|
|
||||||
version = "Lue6O9z9"
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Iris Shaders"
|
name = "Iris Shaders"
|
||||||
filename = "iris-mc1.20.2-1.6.10.jar"
|
filename = "iris-mc1.19.2-1.5.2.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/O7RZrusV/iris-mc1.20.2-1.6.10.jar"
|
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/7cPNddw8/iris-mc1.19.2-1.5.2.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "daa258f5acba8a7cc6cc31c2b4d635e342d27e22"
|
hash = "5377f13f7315dd48111bd431bb8ea6e6137a8c62"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "YL57xq9U"
|
mod-id = "YL57xq9U"
|
||||||
version = "O7RZrusV"
|
version = "7cPNddw8"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Item Highlighter"
|
name = "Item Highlighter"
|
||||||
filename = "Highlighter-1.20.1-fabric-1.1.6.jar"
|
filename = "Highlighter-1.19.1-fabric-1.1.4.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/cVNW5lr6/versions/bEkFFVMh/Highlighter-1.20.1-fabric-1.1.6.jar"
|
url = "https://cdn.modrinth.com/data/cVNW5lr6/versions/9UOIlrvQ/Highlighter-1.19.1-fabric-1.1.4.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "4673a4829738d5d6477d152a32cbdebd2e100dba"
|
hash = "8cd2382c3573602e31810a43209d03dd9bf913d1"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "cVNW5lr6"
|
mod-id = "cVNW5lr6"
|
||||||
version = "bEkFFVMh"
|
version = "9UOIlrvQ"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Just Enough Items"
|
name = "Just Enough Items"
|
||||||
filename = "jei-1.20.2-fabric-16.0.0.28.jar"
|
filename = "jei-1.19.2-fabric-11.5.2.1007.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/7Qec2BlS/jei-1.20.2-fabric-16.0.0.28.jar"
|
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/Fq2JkIID/jei-1.19.2-fabric-11.5.2.1007.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "82cf080ff9c78ab1cc34b35a648df28be1dedcfa"
|
hash = "0046df5c28a6b981e57f815a8684769b8efb7109"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "u6dRKJwZ"
|
mod-id = "u6dRKJwZ"
|
||||||
version = "7Qec2BlS"
|
version = "Fq2JkIID"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "JourneyMap Integration"
|
name = "JourneyMap Integration"
|
||||||
filename = "jmi-fabric-1.20.1-0.14-45.jar"
|
filename = "jmi-fabric-1.19.2-0.13-30.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/M1ZKbfkJ/versions/K25QJ6AR/jmi-fabric-1.20.1-0.14-45.jar"
|
url = "https://cdn.modrinth.com/data/M1ZKbfkJ/versions/O4q1xkMh/jmi-fabric-1.19.2-0.13-30.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "e63678ca624ebfe301cb780028c3f66cd21ffa1c"
|
hash = "7b9a2f8e4a9b6fb9a3ce2b90d9679303da3c7884"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "M1ZKbfkJ"
|
mod-id = "M1ZKbfkJ"
|
||||||
version = "K25QJ6AR"
|
version = "O4q1xkMh"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "JourneyMap"
|
name = "JourneyMap"
|
||||||
filename = "journeymap-1.20.2-5.9.15-fabric.jar"
|
filename = "journeymap-1.19.2-5.9.3-fabric.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/lfHFW1mp/versions/O5jKsqSz/journeymap-1.20.2-5.9.15-fabric.jar"
|
url = "https://cdn.modrinth.com/data/lfHFW1mp/versions/MC2AwUAt/journeymap-1.19.2-5.9.3-fabric.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "e3bd324220fe43cd8c7d7aa732fb55dcf881c7cf"
|
hash = "c0dedec5510a48f9a5829b7fc5d37a4391069f89"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "lfHFW1mp"
|
mod-id = "lfHFW1mp"
|
||||||
version = "O5jKsqSz"
|
version = "MC2AwUAt"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Litematica Printer"
|
name = "Litematica Printer"
|
||||||
filename = "litematica-printer-1.20.1-3.2.1.jar"
|
filename = "litematica-printer-1.19.2-2.5.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/3llatzyE/versions/5ybtVRWR/litematica-printer-1.20.1-3.2.1.jar"
|
url = "https://cdn.modrinth.com/data/3llatzyE/versions/2.5/litematica-printer-1.19.2-2.5.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "496db16e1d5c248a8ca71e1d8b0f2919ff599a9e"
|
hash = "1a6318bfad00fb6a292c95bd7017769eff43590a"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "3llatzyE"
|
mod-id = "3llatzyE"
|
||||||
version = "5ybtVRWR"
|
version = "x9MUxjhZ"
|
||||||
|
|
|
||||||
13
mods/magiclib.pw.toml
Normal file
13
mods/magiclib.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "MagicLib"
|
||||||
|
filename = "magiclib-0.5.37.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/mv1zH6ln/versions/0.5.37/magiclib-0.5.37.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "db727c64dba42540f0a447b9c42c5e19f6872b9a"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "mv1zH6ln"
|
||||||
|
version = "acRGcXkA"
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "MaLiLib"
|
name = "MaLiLib"
|
||||||
filename = "malilib-fabric-1.20.2-0.17.0.jar"
|
filename = "malilib-fabric-1.19.2-0.13.0.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "2b17cf879d747487d59a72f088dd68cc0e5dc526"
|
hash = "adc66c8c481293d6fe316da539eb5b8e46e8ac76"
|
||||||
mode = "metadata:curseforge"
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.curseforge]
|
[update.curseforge]
|
||||||
file-id = 4788432
|
file-id = 3923052
|
||||||
project-id = 303119
|
project-id = 303119
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "MidnightControls"
|
name = "MidnightControls"
|
||||||
filename = "midnightcontrols-1.9.0+1.20.2.jar"
|
filename = "midnightcontrols-1.7.4+1.19.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/bXX9h73M/versions/N7rxLFKx/midnightcontrols-1.9.0%2B1.20.2.jar"
|
url = "https://cdn.modrinth.com/data/bXX9h73M/versions/HuoYq3E7/midnightcontrols-1.7.4%2B1.19.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "299123f627ef9dd748bdf9d2fe05f6f5b976dead"
|
hash = "fc2ffef4d69cdd7e50de4891648003364133117c"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "bXX9h73M"
|
mod-id = "bXX9h73M"
|
||||||
version = "N7rxLFKx"
|
version = "HuoYq3E7"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "MidnightLib"
|
name = "MidnightLib"
|
||||||
filename = "midnightlib-fabric-1.5.0.jar"
|
filename = "midnightlib-0.6.1.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/codAaoxh/versions/Ozm1zl15/midnightlib-fabric-1.5.0.jar"
|
url = "https://cdn.modrinth.com/data/codAaoxh/versions/WjT0Llfm/midnightlib-0.6.1.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "250ce181342bd2da2acb0788f77dacb71ef10fac"
|
hash = "1900376fa98df38ceec337874fc5ffe33501e5f0"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "codAaoxh"
|
mod-id = "codAaoxh"
|
||||||
version = "Ozm1zl15"
|
version = "WjT0Llfm"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Mod Menu"
|
name = "Mod Menu"
|
||||||
filename = "modmenu-8.0.0.jar"
|
filename = "modmenu-4.2.0-beta.2.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/TwfjidT5/modmenu-8.0.0.jar"
|
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/gSoPJyVn/modmenu-4.2.0-beta.2.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "6c781bc4ebf6b11296715c663bc1c7542e4eb630"
|
hash = "6e627ee1b31f5be89e14c85e888f47463d8da9c2"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "mOgUt4GM"
|
mod-id = "mOgUt4GM"
|
||||||
version = "TwfjidT5"
|
version = "gSoPJyVn"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Mouse Tweaks"
|
name = "Mouse Tweaks"
|
||||||
filename = "MouseTweaks-fabric-mc1.20-2.25.jar"
|
filename = "MouseTweaks-fabric-mc1.19-2.22.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/m0Dd8Cjy/MouseTweaks-fabric-mc1.20-2.25.jar"
|
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/1.19-2.22-fabric/MouseTweaks-fabric-mc1.19-2.22.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "21ae6dd81324543e77c10bbb2b928320d71b6750"
|
hash = "6004ccf55a3013c54fdbef3b28613c3326231d2c"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "aC3cM3Vq"
|
mod-id = "aC3cM3Vq"
|
||||||
version = "m0Dd8Cjy"
|
version = "pmMCbsN3"
|
||||||
|
|
|
||||||
13
mods/phosphor.pw.toml
Normal file
13
mods/phosphor.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Phosphor"
|
||||||
|
filename = "phosphor-fabric-mc1.19.x-0.8.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/hEOCdOgW/versions/mc1.19.x-0.8.1/phosphor-fabric-mc1.19.x-0.8.1.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "2dd6f771ba5878d81892b9487f35340e94c87a1c"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "hEOCdOgW"
|
||||||
|
version = "Di0Jgej2"
|
||||||
13
mods/puddles.pw.toml
Normal file
13
mods/puddles.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Motschen's Puddles"
|
||||||
|
filename = "puddles-1.2.2.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/535D1YoA/versions/1.2.2/puddles-1.2.2.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "7d06e68491b5c63eff7cce5592ad38537b2d0d9d"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "535D1YoA"
|
||||||
|
version = "amsuRdpv"
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Reese's Sodium Options"
|
name = "Reese's Sodium Options"
|
||||||
filename = "reeses_sodium_options-1.6.5+mc1.20.2-build.96.jar"
|
filename = "reeses_sodium_options-1.4.9+mc1.19.2-build.67.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/UpKbnidp/reeses_sodium_options-1.6.5%2Bmc1.20.2-build.96.jar"
|
url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/hkSQ9RqT/reeses_sodium_options-1.4.9%2Bmc1.19.2-build.67.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "c77155eed72144525d377d0385ddc1d0d18ece6e"
|
hash = "3b48ed460ce30c38e6058fdd0c3d6a221913e4e4"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "Bh37bMuy"
|
mod-id = "Bh37bMuy"
|
||||||
version = "UpKbnidp"
|
version = "hkSQ9RqT"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "ReplayMod"
|
name = "ReplayMod"
|
||||||
filename = "replaymod-1.20.1-2.6.13.jar"
|
filename = "replaymod-1.19.2-2.6.9.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/Nv2fQJo5/versions/akFkhrL8/replaymod-1.20.1-2.6.13.jar"
|
url = "https://cdn.modrinth.com/data/Nv2fQJo5/versions/YtwBv8Wx/replaymod-1.19.2-2.6.9.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "a7d1cf1041c1b869dbe25d98abe81138ef634936"
|
hash = "27b26233affe9ad8dc1d93417605e75ad96b6746"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "Nv2fQJo5"
|
mod-id = "Nv2fQJo5"
|
||||||
version = "akFkhrL8"
|
version = "YtwBv8Wx"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "ServerCore"
|
name = "ServerCore"
|
||||||
filename = "servercore-fabric-1.3.8+1.20.2.jar"
|
filename = "servercore-1.3.3-1.19.2.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/4WWQxlQP/versions/LrB49Mln/servercore-fabric-1.3.8%2B1.20.2.jar"
|
url = "https://cdn.modrinth.com/data/4WWQxlQP/versions/kzD8EGTS/servercore-1.3.3-1.19.2.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "e99fb454665cd298f44bfb5b415b4b54c02224f9"
|
hash = "4bea059cb5ae5dcbe0959d6fcf5ac2120e7f1f40"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "4WWQxlQP"
|
mod-id = "4WWQxlQP"
|
||||||
version = "LrB49Mln"
|
version = "kzD8EGTS"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Sodium Extra"
|
name = "Sodium Extra"
|
||||||
filename = "sodium-extra-0.5.2+mc1.20.2-build.113.jar"
|
filename = "sodium-extra-0.4.16+mc1.19.2-build.90.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/zgaajBnP/sodium-extra-0.5.2%2Bmc1.20.2-build.113.jar"
|
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/MTxUvPFz/sodium-extra-0.4.16%2Bmc1.19.2-build.90.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "89b9467dec7694d1b2c10294d0ff4315859381df"
|
hash = "39a06ef409c407304dd9581b3f2d6537ecd5b63d"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "PtjYWJkn"
|
mod-id = "PtjYWJkn"
|
||||||
version = "zgaajBnP"
|
version = "MTxUvPFz"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Sodium Shadowy Path Blocks"
|
name = "Sodium Shadowy Path Blocks"
|
||||||
filename = "sodium-shadowy-path-blocks-3.2.1.jar"
|
filename = "sodium-shadowy-path-blocks-3.1.0.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/EIa1eiMm/versions/mTd2QOfb/sodium-shadowy-path-blocks-3.2.1.jar"
|
url = "https://cdn.modrinth.com/data/EIa1eiMm/versions/lvRng8PE/sodium-shadowy-path-blocks-3.1.0.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "9c202aa90bfec1c261b471c9a0640f8255ad2230"
|
hash = "5b9a81676364dc4456f5cd4c26e844597958a514"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "EIa1eiMm"
|
mod-id = "EIa1eiMm"
|
||||||
version = "mTd2QOfb"
|
version = "lvRng8PE"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Sodium"
|
name = "Sodium"
|
||||||
filename = "sodium-fabric-mc1.20.1-0.5.3.jar"
|
filename = "sodium-fabric-mc1.19.2-0.4.4+build.18.jar"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/4OZL6q9h/sodium-fabric-mc1.20.1-0.5.3.jar"
|
url = "https://cdn.modrinth.com/data/AANobbMI/versions/rAfhHfow/sodium-fabric-mc1.19.2-0.4.4%2Bbuild.18.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "74784e6deb72e8cdb4e3788ac3a3cfd88fc77acf"
|
hash = "227648dc4f6a8604bafc282612a6de47eff70cd8"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "AANobbMI"
|
mod-id = "AANobbMI"
|
||||||
version = "4OZL6q9h"
|
version = "rAfhHfow"
|
||||||
|
|
|
||||||
13
mods/sound-physics-remastered.pw.toml
Normal file
13
mods/sound-physics-remastered.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "Sound Physics Remastered"
|
||||||
|
filename = "soundphysics-fabric-1.19.2-1.0.18.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/qyVF9oeo/versions/xXUcyQrd/soundphysics-fabric-1.19.2-1.0.18.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "1708d7578def69d41fc019534b0c5b5fd6bbc1d9"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "qyVF9oeo"
|
||||||
|
version = "xXUcyQrd"
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Starter Kit"
|
|
||||||
filename = "starterkit-1.20.2-5.2.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/6L3ydNi8/versions/PmrWrfiI/starterkit-1.20.2-5.2.jar"
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "8f4cb3407f46cf574b833a6b73ea4fe087e3c84c"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "6L3ydNi8"
|
|
||||||
version = "PmrWrfiI"
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Tom's Simple Storage Mod"
|
name = "Tom's Simple Storage Mod"
|
||||||
filename = "toms_storage_fabric-1.20.2-1.6.8.jar"
|
filename = "toms_storage_fabric-1.19-1.4.3.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/XZNI4Cpy/versions/s3MMZ8BE/toms_storage_fabric-1.20.2-1.6.8.jar"
|
url = "https://cdn.modrinth.com/data/XZNI4Cpy/versions/vuy50CXH/toms_storage_fabric-1.19-1.4.3.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "3a6ea865575269ec8925702ebc68e4e674be1e17"
|
hash = "fd8e637b953c23a711c024ab77d449acffb8dbc1"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "XZNI4Cpy"
|
mod-id = "XZNI4Cpy"
|
||||||
version = "s3MMZ8BE"
|
version = "vuy50CXH"
|
||||||
|
|
|
||||||
13
mods/world-stripper.pw.toml
Normal file
13
mods/world-stripper.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "World Stripper"
|
||||||
|
filename = "World+Stripper-1.19-3.2.2-Fabric.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/4jjTCjk3/versions/u5KQQJRx/World%2BStripper-1.19-3.2.2-Fabric.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "db8c4f100c566c27ba35b79d34836d2091b47e22"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "4jjTCjk3"
|
||||||
|
version = "u5KQQJRx"
|
||||||
13
mods/worldedit-items.pw.toml
Normal file
13
mods/worldedit-items.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name = "WorldEdit Items"
|
||||||
|
filename = "WorldEditItems-v1.2.1-FabricQuilt.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
url = "https://cdn.modrinth.com/data/xBMX8ICO/versions/jIlxOa1E/WorldEditItems-v1.2.1-FabricQuilt.jar"
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "29c546ab6d5fcfe9c6e480c4b74c8ba17370ad2e"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.modrinth]
|
||||||
|
mod-id = "xBMX8ICO"
|
||||||
|
version = "jIlxOa1E"
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "WTHIT"
|
name = "WTHIT"
|
||||||
filename = "wthit-fabric-9.0.0.jar"
|
filename = "wthit-fabric-5.14.0.jar"
|
||||||
side = "both"
|
side = "both"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/6AQIaxuO/versions/dgaZGeyt/wthit-fabric-9.0.0.jar"
|
url = "https://cdn.modrinth.com/data/6AQIaxuO/versions/45r2JtO2/wthit-fabric-5.14.0.jar"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "d01808a2c3da3ff7fe6dbd6c8cc94f897cb621f5"
|
hash = "0efba98afddfcf90631885fa359b95bcad5ac8eb"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "6AQIaxuO"
|
mod-id = "6AQIaxuO"
|
||||||
version = "dgaZGeyt"
|
version = "45r2JtO2"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
name = "Your Options Shall Be Respected (YOSBR)"
|
|
||||||
filename = "yosbr-0.1.2.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
url = "https://cdn.modrinth.com/data/WwbubTsV/versions/KMOzdYko/yosbr-0.1.2.jar"
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "f0340e9c0bc95d67f3f3e9c1cd79b61054af11f9"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.modrinth]
|
|
||||||
mod-id = "WwbubTsV"
|
|
||||||
version = "KMOzdYko"
|
|
||||||
12
pack.toml
12
pack.toml
|
|
@ -1,17 +1,13 @@
|
||||||
name = "waylonwalker"
|
name = "waylonwalker"
|
||||||
author = "Waylon Walker"
|
author = "Waylon Walker"
|
||||||
version = "1.1.0"
|
version = "1.0.1"
|
||||||
pack-format = "packwiz:1.1.0"
|
pack-format = "packwiz:1.1.0"
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
file = "index.toml"
|
file = "index.toml"
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
hash = "edffce52f2c9fae77f1037e87edc6f31b681ec2823cc53148fb2fd6aa820a7f4"
|
hash = "01772ecd30b38ee10ba4d557ed76cdda5ad6aaabcc4af0092ecae368dd209086"
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
fabric = "0.14.23"
|
fabric = "0.14.17"
|
||||||
minecraft = "1.20.2"
|
minecraft = "1.19.2"
|
||||||
|
|
||||||
[options]
|
|
||||||
acceptable-game-versions = ["1.20.0", "1.20.1", "1.20.2"]
|
|
||||||
datapack-folder = "datapacks"
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "BSL Shaders"
|
name = "BSL Shaders"
|
||||||
filename = "BSL_v8.2.05.zip"
|
filename = "BSL_v8.2.02.zip"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/Q1vvjJYV/versions/Mshu5RrT/BSL_v8.2.05.zip"
|
url = "https://cdn.modrinth.com/data/Q1vvjJYV/versions/WTZIsXCy/BSL_v8.2.02.zip"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "08f2b997d93c9eaa71e18886862cadf03f55437a"
|
hash = "4463faa8252453635ed6a12f5d09f67819bf1704"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "Q1vvjJYV"
|
mod-id = "Q1vvjJYV"
|
||||||
version = "Mshu5RrT"
|
version = "WTZIsXCy"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Complementary Shaders v4"
|
name = "Complementary Shaders v4"
|
||||||
filename = "ComplementaryUnbound_r5.0.1.zip"
|
filename = "ComplementaryShaders_v4.7.1.zip"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/R6NEzAwj/versions/JHN3K1Ng/ComplementaryUnbound_r5.0.1.zip"
|
url = "https://cdn.modrinth.com/data/R6NEzAwj/versions/YWBtNYH3/ComplementaryShaders_v4.7.1.zip"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "52c599c7d23cf6c27cef0946e6bcaa248f59f5df"
|
hash = "ace224078b04b7eea7541cde4f7630a89b4831cc"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "R6NEzAwj"
|
mod-id = "R6NEzAwj"
|
||||||
version = "JHN3K1Ng"
|
version = "YWBtNYH3"
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
name = "Rethinking Voxels"
|
name = "Rethinking Voxels"
|
||||||
filename = "rethinking-voxels_r0.1_alpha9a.zip"
|
filename = "rethinking-voxels_beta18.zip"
|
||||||
side = "client"
|
side = "client"
|
||||||
|
|
||||||
[download]
|
[download]
|
||||||
url = "https://cdn.modrinth.com/data/kmwfVOoi/versions/H05Uhtt3/rethinking-voxels_r0.1_alpha9a.zip"
|
url = "https://cdn.modrinth.com/data/kmwfVOoi/versions/5NlLe3RT/rethinking-voxels_beta18.zip"
|
||||||
hash-format = "sha1"
|
hash-format = "sha1"
|
||||||
hash = "3718b1817231c463edfea8015e01b00b1fa40787"
|
hash = "a431045300e530083d22a81bf18da6f40f1df495"
|
||||||
|
|
||||||
[update]
|
[update]
|
||||||
[update.modrinth]
|
[update.modrinth]
|
||||||
mod-id = "kmwfVOoi"
|
mod-id = "kmwfVOoi"
|
||||||
version = "H05Uhtt3"
|
version = "5NlLe3RT"
|
||||||
|
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
'offhand': '{Count:1b,id:"minecraft:shield", tag:{Damage:0}}',
|
|
||||||
'head': '{Count:1b,id:"minecraft:leather_helmet", tag:{Damage:0}}',
|
|
||||||
'chest': '{Count:1b,id:"minecraft:leather_chestplate", tag:{Damage:0}}',
|
|
||||||
'legs': '{Count:1b,id:"minecraft:leather_leggings", tag:{Damage:0}}',
|
|
||||||
'feet': '{Count:1b,id:"minecraft:leather_boots", tag:{Damage:0}}',
|
|
||||||
0: '{Count:1b,id:"minecraft:stone_axe", tag:{Damage:0}}',
|
|
||||||
1: '{Count:1b,id:"minecraft:stone_pickaxe", tag:{Damage:0}}',
|
|
||||||
2: '{Count:10b,id:"minecraft:bread", tag:{Damage:0}}',
|
|
||||||
3 : '',
|
|
||||||
4 : '',
|
|
||||||
5 : '',
|
|
||||||
6 : '',
|
|
||||||
7 : '',
|
|
||||||
8 : '',
|
|
||||||
9 : '',
|
|
||||||
10 : '',
|
|
||||||
11 : '',
|
|
||||||
12 : '',
|
|
||||||
13 : '',
|
|
||||||
14 : '',
|
|
||||||
15 : '',
|
|
||||||
16 : '',
|
|
||||||
17 : '',
|
|
||||||
18 : '',
|
|
||||||
19 : '',
|
|
||||||
20 : '',
|
|
||||||
21 : '',
|
|
||||||
22 : '',
|
|
||||||
23 : '',
|
|
||||||
24 : '',
|
|
||||||
25 : '',
|
|
||||||
26 : '',
|
|
||||||
27 : '',
|
|
||||||
28 : '',
|
|
||||||
29 : '',
|
|
||||||
30 : '',
|
|
||||||
31 : '',
|
|
||||||
32 : '',
|
|
||||||
33 : '',
|
|
||||||
34 : '',
|
|
||||||
35 : '',
|
|
||||||
BIN
waylonwalker-1.0.0.mrpack
Normal file
BIN
waylonwalker-1.0.0.mrpack
Normal file
Binary file not shown.
BIN
waylonwalker-1.0.1.mrpack
Normal file
BIN
waylonwalker-1.0.1.mrpack
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue