SangeFault/README.md

78 lines
2.8 KiB
Markdown
Raw Normal View History

# SangeFault
2021-04-03 20:24:06 +00:00
## Installation Instructions
2021-04-26 13:44:26 +00:00
Hello there! Thanks for trying out world's first complex open-source Minecraft resourcepack for 1.8.9 first of all! I am very thankful for that :D.
2021-04-03 20:29:37 +00:00
Now let's go on to the installation instructions:
### Installation using your graphical interface
Recommended for users who are scared of the command line.
Instructions:
1. Go to the releases tab or click [this link](https://github.com/SangeloDev/SangeFault/releases) and download the latest version.
2. Unzip the zip file.
3. Windows:
- Press WIN+R together on your keyboard.
- Type in `%appdata%` and click `Run`.
- Go into your Minecraft folder (eg. `.minecraft`) and then into `resourcepacks`
- Paste in the zip file which was **inside** the zip file you downloaded earlier.
2021-04-03 20:25:32 +00:00
Mac:
- Open a Finder window.
- Press `⌘ + ⇧ + G`, type in `~/Library/Application\ Support/` and press enter.
- Locate your Minecraft folder (eg. `.minecraft`) and open it.
- Locate the `resourcepacks` folder and open it.
2021-04-26 13:31:25 +00:00
- Paste in the zip file which was **inside** the zip you downloaded earlier.
Linux:
2021-04-03 20:28:20 +00:00
- Go to your Minecraft path: /home/`username`/`minecraft path (eg. .minecraft)`
- Locate the `resourcepacks` folder and open it.
2021-04-26 13:31:25 +00:00
- Paste in the zip file which was **inside** the zip you downloaded earlier.
4. Start Minecraft and enjoy!
### Command-line installation
Windows:
```bash
# Open your minecraft resourcepack folder
cd %appdata%/.minecraft/resourcepacks
# Clone this repo into your resource packs folder.
git clone https://github.com/SangeloDev/SangeFault
```
Mac:
```bash
# Open your minecraft resourcepack folder
cd ~/Library/Application\ Support/.minecraft/resourcepacks
# Clone this repo into your resource packs folder.
git clone https://github.com/SangeloDev/SangeFault
```
Linux:
```bash
# Open your minecraft resourcepack folder
cd ~/.minecraft/resourcepacks
# Clone this repo into your resource packs folder.
git clone https://github.com/SangeloDev/SangeFault
```
2021-04-03 20:24:06 +00:00
## Update Instructions
This is how you update my pack to the latest release. This pack is far from finished, y'know?
### Update using graphical interface
1. Download the latest release
2. Follow the installation instructions for your os.
3. Start Minecraft and enjoy!
### Update using command-line
1. Go into your folder again (as explained) and run the command `git pull` instead of the `git clone` command.
## Versioning
Since release 1.0.3, I am using a versioning system for releases, since this pack is still WIP.
2021-05-07 09:56:28 +00:00
I'll be naming:
- Major releases (1.0, 1.1, etc.) as MR
- Minor releases (1.0.1, 1.1.4, etc.) as mR
- Patches (1.0.2.1, etc.) as PR
(May be changed in the future)
2021-04-03 20:30:21 +00:00
#### *Follow the Easy Installation Instructions to find your directory if you don't know where it is.