Skip to content

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ozelot379 committed Jul 20, 2019
1 parent 014f20e commit c2fb157
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [1.3.4]
- Readme

## [1.3.3]
- Custom log callback

Expand Down
39 changes: 38 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ For the graphic manipulation, it uses the [jimp library](https://www.npmjs.com/p

# Usage

Be sure you have installed [NodeJS](https://nodejs.org) (At least the LTS version)
## GUI
Look at https://github.com/ozelot379/ConvertMinecraftJavaTextureToBedrockGUI/releases

## CLI
Be sure you have installed [NodeJS](https://nodejs.org) (At least the LTS version)

Install it global with your package manager

yarn:
Expand Down Expand Up @@ -105,6 +108,40 @@ For instance for textures, that can not be converted or are not converted correc

This files are applied additionally before output

## Debug and build
First clone this repo and install the dependencies

yarn:
```bash
yarn
```
npm:
```bash
npm install
```

Then you can start the debug

yarn:
```bash
yarn debug
```
npm:
```bash
npm run debug
```

You can create a build

yarn:
```bash
yarn build
```
npm:
```bash
npm run build
```

# License
The Minecraft Java and Bedrock products are © by [Mojang](https://mojang.com/)

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ozelot379/convert-minecraft-java-texture-to-bedrock",
"productName": "ConvertMinecraftJavaTextureToBedrock",
"version": "1.3.3",
"version": "1.3.4",
"description": "Convert Minecraft Java texture packs to Minecraft Bedrock texture packs",
"keywords": [
"Minecraft",
Expand Down Expand Up @@ -42,9 +42,9 @@
"ConvertMinecraftJavaTextureToBedrock": "dist/cli.js"
},
"scripts": {
"build": "webpack",
"cli": "node dist/cli.js",
"debug": "webpack --mode=development && node dist/cli.js",
"build": "webpack",
"test": "webpack --mode=development && mocha tests"
}
}

0 comments on commit c2fb157

Please sign in to comment.