Skip to content

Commit

Permalink
Some more support for Java v1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ozelot379 committed Jul 29, 2019
1 parent bfa3c63 commit 932d855
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 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.4.0]
- Some more support for Java v1.13

## [1.3.10]
- Fix

Expand Down
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@ Convert Minecraft Java texture packs to Minecraft Bedrock texture packs

It supports always the latest Minecraft versions, currently:

| Minecraft | Version |
|-----------|---------|
| Java | v1.14.x |
| Bedrock | v1.11.x |

Older versions still usable by tags later
| Minecraft | Version |
|-----------|---------------------|
| Java | v1.13.x or v1.14.x |
| Bedrock | v1.12.x |

Currently it supports blocks, items, entities, paintings, particles and map icons textures

Expand Down Expand Up @@ -91,8 +89,6 @@ ConvertMinecraftJavaTextureToBedrock(input, output/*, "options"*/).then((outputP
| options.verbose | Verbose log |
| options.logCallback | Custom log callback (Default is `console.log`) |

Example is the [CLI script](./src/cli.js)

## Known issues
- Convert horse textures is very tricky and may buggy

Expand Down
2 changes: 1 addition & 1 deletion 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.10",
"version": "1.4.0",
"description": "Convert Minecraft Java texture packs to Minecraft Bedrock texture packs",
"keywords": [
"Minecraft",
Expand Down
6 changes: 6 additions & 0 deletions src/Converter/RenameConverter.js
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,9 @@ class RenameConverter extends AbstractConverter {
["textures/items/red_dye.png", "./dye_powder_red.png"],
["textures/items/white_dye.png", "./dye_powder_white_new.png"],
["textures/items/yellow_dye.png", "./dye_powder_yellow.png"],
["textures/items/cactus_green.png", "./dye_powder_green.png"], // 1.13
["textures/items/dandelion_yellow.png", "./dye_powder_yellow.png"], // 1.13
["textures/items/rose_red.png", "./dye_powder_red.png"], // 1.13

// End crystal
["textures/entity/end_crystal", "./endercrystal"],
Expand Down Expand Up @@ -637,6 +640,9 @@ class RenameConverter extends AbstractConverter {
// Observer
["textures/blocks/observer_back_on.png", "./observer_back_lit.png"],

// Painting
["textures/painting/paintings_kristoffer_zetterstrand.png", "./kz.png"], // 1.13

// Panda
["textures/entity/panda/aggressive_panda.png", "./panda_aggressive.png"],
["textures/entity/panda/brown_panda.png", "./panda_brown.png"],
Expand Down

0 comments on commit 932d855

Please sign in to comment.