Compare commits
10 commits
79e4c8f4ae
...
6de140757f
| Author | SHA1 | Date | |
|---|---|---|---|
| 6de140757f | |||
| a470831c53 | |||
| 5bb50d8ec7 | |||
| b5679c07f3 | |||
| 31369e6416 | |||
| a5332cae95 | |||
| bc49369fc4 | |||
| 0e1fb2c4c7 | |||
| f9f6425a96 | |||
| 91622bf76c |
57 changed files with 1466 additions and 256 deletions
23
.github/workflows/release.yml
vendored
Normal file
23
.github/workflows/release.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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
Normal file
965
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,965 @@
|
|||
# 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
|
||||
18
config/yosbr/config/iris.properties
Normal file
18
config/yosbr/config/iris.properties
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#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
|
||||
42
config/yosbr/config/starterkit/starterkit.txt
Normal file
42
config/yosbr/config/starterkit/starterkit.txt
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
'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 : '',
|
||||
29
config/yosbr/options.txt
Normal file
29
config/yosbr/options.txt
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
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
|
||||
146
index.toml
146
index.toml
|
|
@ -1,63 +1,85 @@
|
|||
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]]
|
||||
file = "mods/appleskin.pw.toml"
|
||||
hash = "4d571d5ebe245ffb62a0df83e81d1c03670807d3528650d6dd9c983bd26ae860"
|
||||
hash = "6869de1ca55dc09beabb3c234727e84be4d4fbdcbad2c8081c03010713f374e1"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/badpackets.pw.toml"
|
||||
hash = "63edbd012db544d0590a1cd2563a4973c0316b8033370b41a48c05b0e8e667e5"
|
||||
hash = "b2e0d51beac88a90d9b9051c075890c862bd6e33483b45f69584af23e61dd7e5"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/betterf3.pw.toml"
|
||||
hash = "e8cd685b609577ab23e2a55ec3273a1ff9475daef52f0999b2c5d27f7c795f5c"
|
||||
hash = "a5eac6a8d140ee215411d88e61bf9b53a2a26021032b65cffc0924403475dbba"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/blur-fabric.pw.toml"
|
||||
hash = "309fa9d0ab190059d9a13933db512f36f01ec0b40f37fa6e919ec085c686df9e"
|
||||
hash = "68a120db2b2c4db5fbfde501a6ee0504c692f3b1e777cc4dd85f1cb90c84dcd0"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cardinal-components-api.pw.toml"
|
||||
hash = "5d898bbdb655828c59223382f85016f8328884b3ff176b697c51e8dedaec68c1"
|
||||
hash = "50e3b067e93d3e6683d540edc4d046ed7b6b5fbb31409df1727b120f225b1975"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/cloth-config.pw.toml"
|
||||
hash = "213cad77d46ff46fe20780b01856cb1a8812747e9c3564203669bf3905e646e2"
|
||||
hash = "1fc52599bb002e467661afaa4b844c517fb549ad14eb6f552bf11dfb5c8b535e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/collective.pw.toml"
|
||||
hash = "5dc1b3414774e16c9fcdf4d5283457ac1a8df0c498851009157b62517de3fd5e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/command-macros.pw.toml"
|
||||
hash = "9aee9efd97da0e04e19279a7e80a7f785778ee8adebfbbd3ae5c446e6e50f01f"
|
||||
hash = "be57a455bb8c8f01f1e9b18a32ab3079de5d5f09cd934bf9365e68fad95bfc21"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/diggus-maximus.pw.toml"
|
||||
hash = "db690311634819527b9455423d21dce9057a5f00292e8270a1b2baa28a063936"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/durabilityviewer.pw.toml"
|
||||
hash = "84c3fa8f432a1f7d8692e7a52f5c4a7b60c5c215a1329af48df76544e72b90d6"
|
||||
hash = "30fb402a2189537fbcad664b5ac28df0bc47e557b03af95117c10b58c86cc0fe"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-api.pw.toml"
|
||||
hash = "bdc0026a453334abaa888c085ea5f34c7a818406a79b8c4702d5345f883787cb"
|
||||
hash = "714158dafbd5954a8024d5b7e677fc1303d1c0bc665c7df5942d3a685904988e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fabric-language-kotlin.pw.toml"
|
||||
hash = "0fe83c99b29c952f464c7bfba9cc86cc4f834bef7834821433fe23ce3dd230e6"
|
||||
hash = "6f95b9e670d557f852a798489d7b5ec48ed8ddc7e8e1809ff06d4b187d17aac9"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fallingleaves.pw.toml"
|
||||
hash = "423581d9738b23798456b7ba021698355ef8f03cef93d8c1266102a227d9a200"
|
||||
hash = "0c4c20d601b15dbc85c275732d9efe9369597503c7d6caa9a7fee217f67073e7"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/fallingtree.pw.toml"
|
||||
hash = "99f6a7efa6c8946aacfa1465ad8a2912cdf3233dc09a5788ad5d7f6d679836b4"
|
||||
hash = "7325f217817b1793fce374f9e71280a57fb02af18f4c6175e9ae10b267272470"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
|
|
@ -67,52 +89,57 @@ metafile = true
|
|||
|
||||
[[files]]
|
||||
file = "mods/forge-config-api-port.pw.toml"
|
||||
hash = "3a68d8f694877589b9d29bd7b44b590a123007f28142d0deed1ba34c9b90b51c"
|
||||
hash = "e00070f0db00ebcd304f8f68fd44e59ceaedbc8c27743c9c195134aae57c5fde"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/glsl-panorama.pw.toml"
|
||||
hash = "7595eb37f5307a361209db642b2eb18943aa3d3812659cf8a66a273c93325417"
|
||||
hash = "22785ac1be221752745af6018e9323c0f90b918478483b601e4b783b4efe7d98"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iceberg.pw.toml"
|
||||
hash = "a81c6e60f18faf727ed743029c8a4d093c6c96f0c450be7bf3535985ee6f4288"
|
||||
hash = "a4d47f10df4769734a850e6a2cd7342802f92f5e269b27464c86cfd0b5a2182f"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/indium.pw.toml"
|
||||
hash = "0c5e71addef34c8dcd1c81dfc2ad851a3e274b9d8d3a7d388e1113d4139bf8d8"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/iris.pw.toml"
|
||||
hash = "2355898e55539353e3fe43057c1c2880e02ceb6b64c8f5d1e0bc2a660635c323"
|
||||
hash = "7df52a269aaabcb9c4d3ce72322177f4cb5d2e8fc8d506554fa6b6290b0ad548"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/item-highlighter.pw.toml"
|
||||
hash = "94e7f92d2fd5f41e9092466413a7c04ee4f514082fc389fad0bf5603b06287db"
|
||||
hash = "c5d5b857fa70cb5deed260054b9723dc8069635880061d5ba328e1eb684604bf"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/jei.pw.toml"
|
||||
hash = "86bdf3e7c87946fad718883449651e7606fba0d0fa173eb32b3d985e2a2cd8d5"
|
||||
hash = "e43d696d9a6546f3b622a1242c42d3ec34d3a0739225b9b51319c9402f09041b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/journeymap-integration.pw.toml"
|
||||
hash = "50f3f61cfcb45933fd97d797ab64ca88bff83bf1031bdc0654af4ded691e38bb"
|
||||
hash = "e5baa5b81dbd3dda0e75a524c10302d278fceee4be251cdbee2a48bf3eae1f94"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/journeymap.pw.toml"
|
||||
hash = "31d7d57cf0d65483fca5ead4ba11a0c63efb5c38a9bfd959f64a380908b6bace"
|
||||
hash = "050c95aa9ef6b9f7eb32f3ac51bd6b13e307468d9b83e0fa7720dddabfd1fc5a"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/litematica-printer.pw.toml"
|
||||
hash = "c1773d444c3a0839f8d8e65c4d51004909f1c2e75a8c2d573ae656a44fc40a88"
|
||||
hash = "3aa4802505046aeeb8f9a2f13a7750cc0263cea111ab488fb28a9d71a3e47984"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/magiclib.pw.toml"
|
||||
hash = "66f1350327721eddb21d3b1037bb7b0f8b38074ab08aac37e20aa797343e23b6"
|
||||
file = "mods/malilib.pw.toml"
|
||||
hash = "aac087baa5cda20dea324cebd9076991e4802561702b11292d96bdbc6ed15472"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
|
|
@ -122,80 +149,89 @@ metafile = true
|
|||
|
||||
[[files]]
|
||||
file = "mods/midnightcontrols.pw.toml"
|
||||
hash = "3c65e87193d79b218c0636cdfeca699ad6edcdbea035abfc7ce59005f1b4fb42"
|
||||
hash = "bda1dd1e157c3db8fba22bab8bda6062cbb1c598ba787ae7404550a7ad95ea5e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/midnightlib.pw.toml"
|
||||
hash = "d8e9c12d291ecb9f829fe57504ceeb404bbdd2f9de2595595659ebb90440c826"
|
||||
hash = "54e445b0b16e34991e7c2e2475905c1c36a65f7103ba9e4af05fe0df09160c4b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/modmenu.pw.toml"
|
||||
hash = "be0fd8b9cd9f8a94428ea8ac5ec84f4f7bab23697236b7a2e54d8537834e0315"
|
||||
hash = "b136ca50e7d8239319f528ceb521e3482f753b25d768afaf39fa6ea81e549f2e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/mouse-tweaks.pw.toml"
|
||||
hash = "8f554f10f3ca26505c1f51871263a7d75fca1e07a288c60c1a96b18f830beede"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/phosphor.pw.toml"
|
||||
hash = "466d5892937df5aa05388291463b163b42fa454d8bfd22713484a0167ca3702d"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/puddles.pw.toml"
|
||||
hash = "aeaba266c12841cff28278435042855c525a7127c1390ef235f08254cac23a9b"
|
||||
hash = "669008dbd2508a67f8c409096cf2357de450f26a69494289e5852045ade7d358"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/reeses-sodium-options.pw.toml"
|
||||
hash = "b2e3be698473bfb3f08865a11e74c9ee8d47239ac72a79d60acc1ee381722a50"
|
||||
hash = "19a098ab3131eb6daf0033199744d33dbb31a4ce9b20b9fc6eb709ab1272aa7e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/replaymod.pw.toml"
|
||||
hash = "04f8f8b903ea1b32de55cada48745016ea4c3ab7667a01f26ddf051b2efd731e"
|
||||
hash = "9e7c1e6cf3b81dce5a77bf5c95ed9d8e9b936b932aeadb1255245234230ced16"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/servercore.pw.toml"
|
||||
hash = "94d8491cd39504b6faa3fb1c3da6233dfc0dbf5d854798a53079fb3f7c5fdfd0"
|
||||
hash = "17b4cf782db225c145f5c2ababe1042deb0fed021f410d42691829673fa916c3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-extra.pw.toml"
|
||||
hash = "8da0d4c285e7e57aee3f08ab4e268d04518704ace4060744f042aef3a7f6bc50"
|
||||
hash = "7e39ba5b471407bf43c212fae99856276bf4411046aa3a5df5a7d27e76c7a2b3"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium-shadowy-path-blocks.pw.toml"
|
||||
hash = "2f175e539c7cb0f843e13e3a8b495d8d3b01ef623a7dd8c8b8c50eec9c3aed6e"
|
||||
hash = "c2fb8a64bc4610b7d026dc4cce78ad2a2f7264e5be4755849187e3caed5cac55"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/sodium.pw.toml"
|
||||
hash = "aa4dcf55ac3191b0b31437521714c1d28364c3396cf06ef07fa76a08488c1837"
|
||||
hash = "9a927c3e0830ba32e1b8a2e543597781724462595b8cce58f676962b442bb52b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/starter-kit.pw.toml"
|
||||
hash = "48cdf89fd831068e391a00ae7f4ab0a588eaa860d5356435d5c447e4989d29ab"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/toms-storage.pw.toml"
|
||||
hash = "4d817fb45630a8ea31f6f37ea93eacfdfd30cc8281f8cf4f93a039da4cea988e"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/world-stripper.pw.toml"
|
||||
hash = "dcf1bfafe6f224bc683a0e11df5e5dfec76ce54ce5e487723befdfc7dab18bfe"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/worldedit-items.pw.toml"
|
||||
hash = "57122c2979ed5e0a35c4a20ac72f466102ed6cfe62aacd414b3a8c5ae6d9a848"
|
||||
hash = "94dbdfe3831f0adbcbf9e1ed1a9d86eb7d5141ef10ebf6bf0a9d05713a21c9c6"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/wthit.pw.toml"
|
||||
hash = "53ba03514c34cf2540c35722a0405ffea1dca1f35eb4d91e8e016d89267eb2fa"
|
||||
hash = "d84cd8cdfc4159872ffb18d41da94c1c525a725a8b4ec2b0818358d14fd4ca83"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "mods/yosbr.pw.toml"
|
||||
hash = "6f6334f336a876088431df70e2bba6ac52ca2ddeb73a4880ce88d6954b09af00"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/bsl-shaders.pw.toml"
|
||||
hash = "820c7a11a6d105ee6b8e4faaf0b93f807fcdbc803f816437e2170c76c439e38c"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/complementary-shaders-v4.pw.toml"
|
||||
hash = "356650c70469f8597be3f7a99067ad397202bd091336218b588ebf0bb4856e51"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "shaderpacks/rethinking-voxels.pw.toml"
|
||||
hash = "b71aae4389aa77112335858465e31b13f8bbdc4a1c60a0a54ceb6338e339ce1b"
|
||||
metafile = true
|
||||
|
||||
[[files]]
|
||||
file = "starterkit/starterkit.txt"
|
||||
hash = "05bb85e48174b0153a15842377217c3e7c8c6659c2cd8abd73b2de2ba72ac14d"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "AppleSkin"
|
||||
filename = "appleskin-fabric-mc1.19-2.4.1.jar"
|
||||
filename = "appleskin-fabric-mc1.20-2.5.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/fabric-mc1.19-2.4.1/appleskin-fabric-mc1.19-2.4.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/EsAfCjCV/versions/CxnVG86Y/appleskin-fabric-mc1.20-2.5.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "7bd52695e82b1ddd1fdb3320154b68bf48dfff37"
|
||||
hash = "f01bcf9adbaaeb5f6b185864c0b879e8e3923991"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EsAfCjCV"
|
||||
version = "pIFVoWvG"
|
||||
version = "CxnVG86Y"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "bad packets"
|
||||
filename = "badpackets-fabric-0.2.1.jar"
|
||||
filename = "badpackets-fabric-0.5.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ftdbN0KK/versions/AifWRdyF/badpackets-fabric-0.2.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/ftdbN0KK/versions/Bz8FfSYz/badpackets-fabric-0.5.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "17438ba70d88752f73d814405927450c81d035b9"
|
||||
hash = "1a1e7f243a70a492c5c8a7865b3c80acbdae7def"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ftdbN0KK"
|
||||
version = "AifWRdyF"
|
||||
version = "Bz8FfSYz"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "BetterF3"
|
||||
filename = "BetterF3-4.0.0-Fabric-1.19.2.jar"
|
||||
filename = "BetterF3-8.0.1-Fabric-1.20.2.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/RbNy07Bx/BetterF3-4.0.0-Fabric-1.19.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/8shC1gFX/versions/o935ywNh/BetterF3-8.0.1-Fabric-1.20.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "1bbc527d23b53e0aae4d5e1deddf92b1f394b94b"
|
||||
hash = "9792a063cc9a74bb496472900e4591309e5cdaa2"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "8shC1gFX"
|
||||
version = "RbNy07Bx"
|
||||
version = "o935ywNh"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Blur (Fabric)"
|
||||
filename = "blur-2.6.0.jar"
|
||||
filename = "blur-3.1.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/NK39zBp2/versions/2.6.0/blur-2.6.0.jar"
|
||||
url = "https://cdn.modrinth.com/data/NK39zBp2/versions/qh7RxICc/blur-3.1.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "863af78e9486755bec63ee68b8ba676dc70f5313"
|
||||
hash = "e36d1b6f459c5f1a9c253c8394ba869fd64c0a45"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "NK39zBp2"
|
||||
version = "S0scZppQ"
|
||||
version = "qh7RxICc"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Cardinal Components API"
|
||||
filename = "cardinal-components-api-5.0.2.jar"
|
||||
filename = "cardinal-components-api-5.2.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/K01OU20C/versions/tPfCTMiZ/cardinal-components-api-5.0.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/K01OU20C/versions/qW85eawp/cardinal-components-api-5.2.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "2ca37fd1372f48d39154aea952a9db148d1db9e5"
|
||||
hash = "b049c6342185dae10607d6c1fe2fd792db189582"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "K01OU20C"
|
||||
version = "tPfCTMiZ"
|
||||
version = "qW85eawp"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Cloth Config API"
|
||||
filename = "cloth-config-8.2.88-fabric.jar"
|
||||
filename = "cloth-config-12.0.109-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/EXrxCjl6/cloth-config-8.2.88-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/9s6osm5g/versions/LnfolBYb/cloth-config-12.0.109-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4b93c69f22e9bdeeca201992e99632824b55f9cb"
|
||||
hash = "66ebcea9ec4ce863f0cc99e56d91a4c1a4e276a4"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "9s6osm5g"
|
||||
version = "EXrxCjl6"
|
||||
version = "LnfolBYb"
|
||||
|
|
|
|||
13
mods/collective.pw.toml
Normal file
13
mods/collective.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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"
|
||||
filename = "cmdkeybind-1.6.0-1.19.X.jar"
|
||||
filename = "cmdkeybind-1.6.3-1.20.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/h3r1moh7/versions/K7PcKM4C/cmdkeybind-1.6.0-1.19.X.jar"
|
||||
url = "https://cdn.modrinth.com/data/h3r1moh7/versions/snLr0hHP/cmdkeybind-1.6.3-1.20.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "75f8a622ad200bc97e5b0201066e412818ef3d68"
|
||||
hash = "0cf171a575e571727d775c4ae2d0a185896b57e9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "h3r1moh7"
|
||||
version = "K7PcKM4C"
|
||||
version = "snLr0hHP"
|
||||
|
|
|
|||
13
mods/diggus-maximus.pw.toml
Normal file
13
mods/diggus-maximus.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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"
|
||||
filename = "durabilityviewer-1.19.1-fabric0.58.5-1.10.3.jar"
|
||||
filename = "durabilityviewer-1.20.2-fabric0.89.1-1.10.5.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
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"
|
||||
url = "https://cdn.modrinth.com/data/LTM1f0yY/versions/gWKtksGC/durabilityviewer-1.20.2-fabric0.89.1-1.10.5.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4c0b3f5906c930d0b28c70248f6a643aa6736632"
|
||||
hash = "eee9316193e827ce39d9b8a8bdbaf8af5303a5a9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "LTM1f0yY"
|
||||
version = "CYhU3d5T"
|
||||
version = "gWKtksGC"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Fabric API"
|
||||
filename = "fabric-api-0.75.1+1.19.2.jar"
|
||||
filename = "fabric-api-0.90.0+1.20.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/6iOab8Tp/fabric-api-0.75.1%2B1.19.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/P7dR8mSH/versions/Hk8zAzIB/fabric-api-0.90.0%2B1.20.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "8c39ce0a82cb2b5f9e909f47a61d7825e29ccf05"
|
||||
hash = "57f3a073dc52365cb6f9b81dc360d1cd3a6c7cc7"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "P7dR8mSH"
|
||||
version = "6iOab8Tp"
|
||||
version = "Hk8zAzIB"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Fabric Language Kotlin"
|
||||
filename = "fabric-language-kotlin-1.9.1+kotlin.1.8.10.jar"
|
||||
filename = "fabric-language-kotlin-1.10.10+kotlin.1.9.10.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/lgFl3olb/fabric-language-kotlin-1.9.1%2Bkotlin.1.8.10.jar"
|
||||
url = "https://cdn.modrinth.com/data/Ha28R6CL/versions/48ri5y9r/fabric-language-kotlin-1.10.10%2Bkotlin.1.9.10.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "12f265ea91e73ac2c74c6f66d446671122bbb1c8"
|
||||
hash = "c708f3f4e94f0f66e72c6e96858368f0512c3b38"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Ha28R6CL"
|
||||
version = "lgFl3olb"
|
||||
version = "48ri5y9r"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Falling Leaves"
|
||||
filename = "fallingleaves-1.13.0+1.19.2.jar"
|
||||
filename = "fallingleaves-1.15.4+1.20.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/WhbRG4iK/versions/aufE28Na/fallingleaves-1.13.0%2B1.19.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/WhbRG4iK/versions/KpvXCE2X/fallingleaves-1.15.4%2B1.20.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "7472f0cbd986fb5620640469316d9fae924119f9"
|
||||
hash = "5101bd05c678a874c1fa40c3363d1c127f7074d5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "WhbRG4iK"
|
||||
version = "aufE28Na"
|
||||
version = "KpvXCE2X"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "FallingTree"
|
||||
filename = "FallingTree-1.19.2-3.10.0.jar"
|
||||
filename = "FallingTree-1.20.2-5.0.1.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Fb4jn8m6/versions/9kSv8gsK/FallingTree-1.19.2-3.10.0.jar"
|
||||
url = "https://cdn.modrinth.com/data/Fb4jn8m6/versions/BJ2K7C0J/FallingTree-1.20.2-5.0.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "52d1a2d2eba71bb0257af18c5013b8fef9cf3961"
|
||||
hash = "fea4a738254785be589f5f26fb4007ddb624fea1"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Fb4jn8m6"
|
||||
version = "9kSv8gsK"
|
||||
version = "BJ2K7C0J"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Forge Config API Port"
|
||||
filename = "ForgeConfigAPIPort-v4.2.11-1.19.2-Fabric.jar"
|
||||
filename = "ForgeConfigAPIPort-v9.0.0-1.20.2-Fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/ohNO6lps/versions/3VCgXZ79/ForgeConfigAPIPort-v4.2.11-1.19.2-Fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/ohNO6lps/versions/f5d9VI72/ForgeConfigAPIPort-v9.0.0-1.20.2-Fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "00d05a6d57ee557ab216de5527e1434e3cf50c24"
|
||||
hash = "e9471a5836daab325aaa9bd08759705f8de94545"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "ohNO6lps"
|
||||
version = "3VCgXZ79"
|
||||
version = "f5d9VI72"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "GLSL Panorama Shaders"
|
||||
filename = "glslmc-0.1.2.jar"
|
||||
filename = "glslmc-0.2.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/kqc8wQyk/versions/essDshzM/glslmc-0.1.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/kqc8wQyk/versions/KpBqGhh7/glslmc-0.2.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "8822162726b858e51053fe3e83b49103c25c4edd"
|
||||
hash = "3585c73df5706ec7f6eda2c8daec11c1304a44b6"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "kqc8wQyk"
|
||||
version = "essDshzM"
|
||||
version = "KpBqGhh7"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Iceberg"
|
||||
filename = "Iceberg-1.19.1-fabric-1.0.46.jar"
|
||||
filename = "Iceberg-1.20.1-fabric-1.1.15.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/5faXoLqX/versions/qC0waeNX/Iceberg-1.19.1-fabric-1.0.46.jar"
|
||||
url = "https://cdn.modrinth.com/data/5faXoLqX/versions/SLE7PvYD/Iceberg-1.20.1-fabric-1.1.15.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "cff3a1f0aa7bd3c6f3ac29ae5cb9e6aba991ecd1"
|
||||
hash = "0d2e4a54ed7971e3c2d13b4b9583fb9e65e6ccc1"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "5faXoLqX"
|
||||
version = "qC0waeNX"
|
||||
version = "SLE7PvYD"
|
||||
|
|
|
|||
13
mods/indium.pw.toml
Normal file
13
mods/indium.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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"
|
||||
filename = "iris-mc1.19.2-1.5.2.jar"
|
||||
filename = "iris-mc1.20.2-1.6.10.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/7cPNddw8/iris-mc1.19.2-1.5.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/YL57xq9U/versions/O7RZrusV/iris-mc1.20.2-1.6.10.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "5377f13f7315dd48111bd431bb8ea6e6137a8c62"
|
||||
hash = "daa258f5acba8a7cc6cc31c2b4d635e342d27e22"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "YL57xq9U"
|
||||
version = "7cPNddw8"
|
||||
version = "O7RZrusV"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Item Highlighter"
|
||||
filename = "Highlighter-1.19.1-fabric-1.1.4.jar"
|
||||
filename = "Highlighter-1.20.1-fabric-1.1.6.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/cVNW5lr6/versions/9UOIlrvQ/Highlighter-1.19.1-fabric-1.1.4.jar"
|
||||
url = "https://cdn.modrinth.com/data/cVNW5lr6/versions/bEkFFVMh/Highlighter-1.20.1-fabric-1.1.6.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "8cd2382c3573602e31810a43209d03dd9bf913d1"
|
||||
hash = "4673a4829738d5d6477d152a32cbdebd2e100dba"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "cVNW5lr6"
|
||||
version = "9UOIlrvQ"
|
||||
version = "bEkFFVMh"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Just Enough Items"
|
||||
filename = "jei-1.19.2-fabric-11.5.2.1007.jar"
|
||||
filename = "jei-1.20.2-fabric-16.0.0.28.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/Fq2JkIID/jei-1.19.2-fabric-11.5.2.1007.jar"
|
||||
url = "https://cdn.modrinth.com/data/u6dRKJwZ/versions/7Qec2BlS/jei-1.20.2-fabric-16.0.0.28.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "0046df5c28a6b981e57f815a8684769b8efb7109"
|
||||
hash = "82cf080ff9c78ab1cc34b35a648df28be1dedcfa"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "u6dRKJwZ"
|
||||
version = "Fq2JkIID"
|
||||
version = "7Qec2BlS"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "JourneyMap Integration"
|
||||
filename = "jmi-fabric-1.19.2-0.13-30.jar"
|
||||
filename = "jmi-fabric-1.20.1-0.14-45.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/M1ZKbfkJ/versions/O4q1xkMh/jmi-fabric-1.19.2-0.13-30.jar"
|
||||
url = "https://cdn.modrinth.com/data/M1ZKbfkJ/versions/K25QJ6AR/jmi-fabric-1.20.1-0.14-45.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "7b9a2f8e4a9b6fb9a3ce2b90d9679303da3c7884"
|
||||
hash = "e63678ca624ebfe301cb780028c3f66cd21ffa1c"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "M1ZKbfkJ"
|
||||
version = "O4q1xkMh"
|
||||
version = "K25QJ6AR"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "JourneyMap"
|
||||
filename = "journeymap-1.19.2-5.9.3-fabric.jar"
|
||||
filename = "journeymap-1.20.2-5.9.15-fabric.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/lfHFW1mp/versions/MC2AwUAt/journeymap-1.19.2-5.9.3-fabric.jar"
|
||||
url = "https://cdn.modrinth.com/data/lfHFW1mp/versions/O5jKsqSz/journeymap-1.20.2-5.9.15-fabric.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "c0dedec5510a48f9a5829b7fc5d37a4391069f89"
|
||||
hash = "e3bd324220fe43cd8c7d7aa732fb55dcf881c7cf"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "lfHFW1mp"
|
||||
version = "MC2AwUAt"
|
||||
version = "O5jKsqSz"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Litematica Printer"
|
||||
filename = "litematica-printer-1.19.2-2.5.jar"
|
||||
filename = "litematica-printer-1.20.1-3.2.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/3llatzyE/versions/2.5/litematica-printer-1.19.2-2.5.jar"
|
||||
url = "https://cdn.modrinth.com/data/3llatzyE/versions/5ybtVRWR/litematica-printer-1.20.1-3.2.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "1a6318bfad00fb6a292c95bd7017769eff43590a"
|
||||
hash = "496db16e1d5c248a8ca71e1d8b0f2919ff599a9e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "3llatzyE"
|
||||
version = "x9MUxjhZ"
|
||||
version = "5ybtVRWR"
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
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"
|
||||
13
mods/malilib.pw.toml
Normal file
13
mods/malilib.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "MaLiLib"
|
||||
filename = "malilib-fabric-1.20.2-0.17.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
hash-format = "sha1"
|
||||
hash = "2b17cf879d747487d59a72f088dd68cc0e5dc526"
|
||||
mode = "metadata:curseforge"
|
||||
|
||||
[update]
|
||||
[update.curseforge]
|
||||
file-id = 4788432
|
||||
project-id = 303119
|
||||
|
|
@ -1,13 +1,13 @@
|
|||
name = "MidnightControls"
|
||||
filename = "midnightcontrols-1.7.4+1.19.jar"
|
||||
filename = "midnightcontrols-1.9.0+1.20.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/bXX9h73M/versions/HuoYq3E7/midnightcontrols-1.7.4%2B1.19.jar"
|
||||
url = "https://cdn.modrinth.com/data/bXX9h73M/versions/N7rxLFKx/midnightcontrols-1.9.0%2B1.20.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "fc2ffef4d69cdd7e50de4891648003364133117c"
|
||||
hash = "299123f627ef9dd748bdf9d2fe05f6f5b976dead"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "bXX9h73M"
|
||||
version = "HuoYq3E7"
|
||||
version = "N7rxLFKx"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "MidnightLib"
|
||||
filename = "midnightlib-0.6.1.jar"
|
||||
filename = "midnightlib-fabric-1.5.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/codAaoxh/versions/WjT0Llfm/midnightlib-0.6.1.jar"
|
||||
url = "https://cdn.modrinth.com/data/codAaoxh/versions/Ozm1zl15/midnightlib-fabric-1.5.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "1900376fa98df38ceec337874fc5ffe33501e5f0"
|
||||
hash = "250ce181342bd2da2acb0788f77dacb71ef10fac"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "codAaoxh"
|
||||
version = "WjT0Llfm"
|
||||
version = "Ozm1zl15"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Mod Menu"
|
||||
filename = "modmenu-4.2.0-beta.2.jar"
|
||||
filename = "modmenu-8.0.0.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/gSoPJyVn/modmenu-4.2.0-beta.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/mOgUt4GM/versions/TwfjidT5/modmenu-8.0.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "6e627ee1b31f5be89e14c85e888f47463d8da9c2"
|
||||
hash = "6c781bc4ebf6b11296715c663bc1c7542e4eb630"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "mOgUt4GM"
|
||||
version = "gSoPJyVn"
|
||||
version = "TwfjidT5"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Mouse Tweaks"
|
||||
filename = "MouseTweaks-fabric-mc1.19-2.22.jar"
|
||||
filename = "MouseTweaks-fabric-mc1.20-2.25.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/1.19-2.22-fabric/MouseTweaks-fabric-mc1.19-2.22.jar"
|
||||
url = "https://cdn.modrinth.com/data/aC3cM3Vq/versions/m0Dd8Cjy/MouseTweaks-fabric-mc1.20-2.25.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "6004ccf55a3013c54fdbef3b28613c3326231d2c"
|
||||
hash = "21ae6dd81324543e77c10bbb2b928320d71b6750"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "aC3cM3Vq"
|
||||
version = "pmMCbsN3"
|
||||
version = "m0Dd8Cjy"
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
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"
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
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"
|
||||
filename = "reeses_sodium_options-1.4.9+mc1.19.2-build.67.jar"
|
||||
filename = "reeses_sodium_options-1.6.5+mc1.20.2-build.96.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/hkSQ9RqT/reeses_sodium_options-1.4.9%2Bmc1.19.2-build.67.jar"
|
||||
url = "https://cdn.modrinth.com/data/Bh37bMuy/versions/UpKbnidp/reeses_sodium_options-1.6.5%2Bmc1.20.2-build.96.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "3b48ed460ce30c38e6058fdd0c3d6a221913e4e4"
|
||||
hash = "c77155eed72144525d377d0385ddc1d0d18ece6e"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Bh37bMuy"
|
||||
version = "hkSQ9RqT"
|
||||
version = "UpKbnidp"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "ReplayMod"
|
||||
filename = "replaymod-1.19.2-2.6.9.jar"
|
||||
filename = "replaymod-1.20.1-2.6.13.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Nv2fQJo5/versions/YtwBv8Wx/replaymod-1.19.2-2.6.9.jar"
|
||||
url = "https://cdn.modrinth.com/data/Nv2fQJo5/versions/akFkhrL8/replaymod-1.20.1-2.6.13.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "27b26233affe9ad8dc1d93417605e75ad96b6746"
|
||||
hash = "a7d1cf1041c1b869dbe25d98abe81138ef634936"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Nv2fQJo5"
|
||||
version = "YtwBv8Wx"
|
||||
version = "akFkhrL8"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "ServerCore"
|
||||
filename = "servercore-1.3.3-1.19.2.jar"
|
||||
filename = "servercore-fabric-1.3.8+1.20.2.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/4WWQxlQP/versions/kzD8EGTS/servercore-1.3.3-1.19.2.jar"
|
||||
url = "https://cdn.modrinth.com/data/4WWQxlQP/versions/LrB49Mln/servercore-fabric-1.3.8%2B1.20.2.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "4bea059cb5ae5dcbe0959d6fcf5ac2120e7f1f40"
|
||||
hash = "e99fb454665cd298f44bfb5b415b4b54c02224f9"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "4WWQxlQP"
|
||||
version = "kzD8EGTS"
|
||||
version = "LrB49Mln"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Sodium Extra"
|
||||
filename = "sodium-extra-0.4.16+mc1.19.2-build.90.jar"
|
||||
filename = "sodium-extra-0.5.2+mc1.20.2-build.113.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/MTxUvPFz/sodium-extra-0.4.16%2Bmc1.19.2-build.90.jar"
|
||||
url = "https://cdn.modrinth.com/data/PtjYWJkn/versions/zgaajBnP/sodium-extra-0.5.2%2Bmc1.20.2-build.113.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "39a06ef409c407304dd9581b3f2d6537ecd5b63d"
|
||||
hash = "89b9467dec7694d1b2c10294d0ff4315859381df"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "PtjYWJkn"
|
||||
version = "MTxUvPFz"
|
||||
version = "zgaajBnP"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Sodium Shadowy Path Blocks"
|
||||
filename = "sodium-shadowy-path-blocks-3.1.0.jar"
|
||||
filename = "sodium-shadowy-path-blocks-3.2.1.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/EIa1eiMm/versions/lvRng8PE/sodium-shadowy-path-blocks-3.1.0.jar"
|
||||
url = "https://cdn.modrinth.com/data/EIa1eiMm/versions/mTd2QOfb/sodium-shadowy-path-blocks-3.2.1.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "5b9a81676364dc4456f5cd4c26e844597958a514"
|
||||
hash = "9c202aa90bfec1c261b471c9a0640f8255ad2230"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "EIa1eiMm"
|
||||
version = "lvRng8PE"
|
||||
version = "mTd2QOfb"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
name = "Sodium"
|
||||
filename = "sodium-fabric-mc1.19.2-0.4.4+build.18.jar"
|
||||
filename = "sodium-fabric-mc1.20.1-0.5.3.jar"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/rAfhHfow/sodium-fabric-mc1.19.2-0.4.4%2Bbuild.18.jar"
|
||||
url = "https://cdn.modrinth.com/data/AANobbMI/versions/4OZL6q9h/sodium-fabric-mc1.20.1-0.5.3.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "227648dc4f6a8604bafc282612a6de47eff70cd8"
|
||||
hash = "74784e6deb72e8cdb4e3788ac3a3cfd88fc77acf"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "AANobbMI"
|
||||
version = "rAfhHfow"
|
||||
version = "4OZL6q9h"
|
||||
|
|
|
|||
13
mods/starter-kit.pw.toml
Normal file
13
mods/starter-kit.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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"
|
||||
filename = "toms_storage_fabric-1.19-1.4.3.jar"
|
||||
filename = "toms_storage_fabric-1.20.2-1.6.8.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/XZNI4Cpy/versions/vuy50CXH/toms_storage_fabric-1.19-1.4.3.jar"
|
||||
url = "https://cdn.modrinth.com/data/XZNI4Cpy/versions/s3MMZ8BE/toms_storage_fabric-1.20.2-1.6.8.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "fd8e637b953c23a711c024ab77d449acffb8dbc1"
|
||||
hash = "3a6ea865575269ec8925702ebc68e4e674be1e17"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "XZNI4Cpy"
|
||||
version = "vuy50CXH"
|
||||
version = "s3MMZ8BE"
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
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"
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
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"
|
||||
filename = "wthit-fabric-5.14.0.jar"
|
||||
filename = "wthit-fabric-9.0.0.jar"
|
||||
side = "both"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/6AQIaxuO/versions/45r2JtO2/wthit-fabric-5.14.0.jar"
|
||||
url = "https://cdn.modrinth.com/data/6AQIaxuO/versions/dgaZGeyt/wthit-fabric-9.0.0.jar"
|
||||
hash-format = "sha1"
|
||||
hash = "0efba98afddfcf90631885fa359b95bcad5ac8eb"
|
||||
hash = "d01808a2c3da3ff7fe6dbd6c8cc94f897cb621f5"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "6AQIaxuO"
|
||||
version = "45r2JtO2"
|
||||
version = "dgaZGeyt"
|
||||
|
|
|
|||
13
mods/yosbr.pw.toml
Normal file
13
mods/yosbr.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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,13 +1,17 @@
|
|||
name = "waylonwalker"
|
||||
author = "Waylon Walker"
|
||||
version = "1.0.0"
|
||||
version = "1.1.0"
|
||||
pack-format = "packwiz:1.1.0"
|
||||
|
||||
[index]
|
||||
file = "index.toml"
|
||||
hash-format = "sha256"
|
||||
hash = "78119102306e33c2aea61a19772461e759b803851f49569ace8ab92193fb8ceb"
|
||||
hash = "edffce52f2c9fae77f1037e87edc6f31b681ec2823cc53148fb2fd6aa820a7f4"
|
||||
|
||||
[versions]
|
||||
fabric = "0.14.17"
|
||||
minecraft = "1.19.2"
|
||||
fabric = "0.14.23"
|
||||
minecraft = "1.20.2"
|
||||
|
||||
[options]
|
||||
acceptable-game-versions = ["1.20.0", "1.20.1", "1.20.2"]
|
||||
datapack-folder = "datapacks"
|
||||
|
|
|
|||
13
shaderpacks/bsl-shaders.pw.toml
Normal file
13
shaderpacks/bsl-shaders.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "BSL Shaders"
|
||||
filename = "BSL_v8.2.05.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/Q1vvjJYV/versions/Mshu5RrT/BSL_v8.2.05.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "08f2b997d93c9eaa71e18886862cadf03f55437a"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "Q1vvjJYV"
|
||||
version = "Mshu5RrT"
|
||||
13
shaderpacks/complementary-shaders-v4.pw.toml
Normal file
13
shaderpacks/complementary-shaders-v4.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Complementary Shaders v4"
|
||||
filename = "ComplementaryUnbound_r5.0.1.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/R6NEzAwj/versions/JHN3K1Ng/ComplementaryUnbound_r5.0.1.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "52c599c7d23cf6c27cef0946e6bcaa248f59f5df"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "R6NEzAwj"
|
||||
version = "JHN3K1Ng"
|
||||
13
shaderpacks/rethinking-voxels.pw.toml
Normal file
13
shaderpacks/rethinking-voxels.pw.toml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name = "Rethinking Voxels"
|
||||
filename = "rethinking-voxels_r0.1_alpha9a.zip"
|
||||
side = "client"
|
||||
|
||||
[download]
|
||||
url = "https://cdn.modrinth.com/data/kmwfVOoi/versions/H05Uhtt3/rethinking-voxels_r0.1_alpha9a.zip"
|
||||
hash-format = "sha1"
|
||||
hash = "3718b1817231c463edfea8015e01b00b1fa40787"
|
||||
|
||||
[update]
|
||||
[update.modrinth]
|
||||
mod-id = "kmwfVOoi"
|
||||
version = "H05Uhtt3"
|
||||
41
starterkit/starterkit.txt
Normal file
41
starterkit/starterkit.txt
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
'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 : '',
|
||||
Binary file not shown.
BIN
waylonwalker.zip
Normal file
BIN
waylonwalker.zip
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue