28 lines
835 B
Markdown
28 lines
835 B
Markdown
|
|
# Pack Sync
|
|
### A simple utility for resoucepack developers who like to stay organised.
|
|
|
|
### Use Case:
|
|
- You have a folder full of all your projects working on minecraft resource packs
|
|
- You want to be able to automatically archive these files and move them to your resourcepacks folders for testing
|
|
- You make modular packs with different themes that need to be kept organised
|
|
|
|
### How pack sync can help
|
|
The pack sync client is a command line utility that allows you to automatically
|
|
archive and load all of your resourcepacks into correct folders.
|
|
|
|
|
|
### Usage:
|
|
|
|
- start by creating a config.toml file
|
|
```toml
|
|
repository = "."
|
|
resourcepacks = "_resourcepacks"
|
|
ignore_folder_prefix = "_"
|
|
|
|
[versions.1-8-9]
|
|
resourcepacks = "mc_instances/1.8.9/resourcepacks"
|
|
|
|
[versions.1-20-1]
|
|
resourcepacks = "mc_instances/1.20.4/resourcepacks"
|
|
``` |