Skip to content

Commit 1e81e53

Browse files
committedFeb 8, 2022
v4.3.1
1 parent 54d1960 commit 1e81e53

9 files changed

+19
-59
lines changed
 

‎.dockerignore

-7
This file was deleted.

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ old
66
vendor
77
*.lock
88
*-lock.json
9-
*.log
9+
*.log
10+
.DS_STORE

‎.npmignore

-7
This file was deleted.

‎CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

3-
## [[v4.3.0]](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/releases/tag/v4.3.0) - Lastest Commit - Feb 4, 2022
3+
## [[v4.3.1]](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/releases/tag/v4.3.1) - Lastest Commit - Feb 8, 2022
4+
- Made my own fork of [convert-base-api](https://github.com/ModifiedCommand/convert-base-api) to fix the rename zip error in [issue 1](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/issues/1).
5+
- Remove docker information
6+
- Remove `update_gh-pages.sh`
7+
- Fix Conversion Grammar
8+
9+
## [[v4.3.0]](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/releases/tag/v4.3.0) - [54d1960](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/commit/54d19602a8d98f7b2fec61361404b4550e276abb) - Feb 4, 2022
410
- Reformated some files
511
- Fix all the packages with [API](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrockApi) version [`v4.0.8`](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrockApi/releases/tag/v4.0.8)
612
- Automated builds for `gh-pages` with [GitHub Actions](https://github.com/features/actions)

‎Dockerfile

-18
This file was deleted.

‎package.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@modifiedcommand/convert-minecraft-java-texture-to-bedrock-webapp",
33
"productName": "ConvertJavaTextureToBedrockWebApp",
4-
"version": "4.3.0",
4+
"version": "4.3.1",
55
"description": "Web app for converting Minecraft Java texture packs to Bedrock texture packs",
66
"keywords": [
77
"Minecraft",
@@ -21,14 +21,12 @@
2121
"url": "https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/issues"
2222
},
2323
"homepage": "https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock#readme",
24-
"dependencies": {
25-
"file-loader": "^6.2.0"
26-
},
2724
"devDependencies": {
28-
"@modifiedcommand/convert-minecraft-java-texture-to-bedrock-api": "github:ModifiedCommand/ConvertJavaTextureToBedrockApi",
25+
"@modifiedcommand/convert-minecraft-java-texture-to-bedrock-api": "4.1.3",
2926
"clean-webpack-plugin": "3.0.0",
3027
"css-loader": "3.4.2",
3128
"favicons-webpack-plugin": "1.0.2",
29+
"file-loader": "6.2.0",
3230
"file-saver": "https://github.com/eligrey/FileSaver.js/tarball/9a0a1e4ae2732c2d8eedc0214ef1c0fa32d15150",
3331
"html-webpack-plugin": "3.2.0",
3432
"less": "3.11.1",
@@ -52,5 +50,8 @@
5250
"scripts": {
5351
"build": "node_modules/.bin/webpack --config webpack.config.js"
5452
},
55-
"private": false
53+
"private": false,
54+
"dependencies": {
55+
"@modifiedcommand/convert-base-api": "^1.0.8"
56+
}
5657
}

‎src/js/index.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ document.addEventListener("DOMContentLoaded", () => {
175175
selectInputFileButton.value = selectInputFolderButton.value = "";
176176

177177
const savePopup = swal({
178-
title: "Conversion was successfully",
178+
title: "Conversion was successful",
179179
content: logs,
180180
icon: "success",
181181
buttons: "Save"
@@ -201,7 +201,7 @@ document.addEventListener("DOMContentLoaded", () => {
201201
selectInputFileButton.value = selectInputFolderButton.value = "";
202202

203203
swal({
204-
title: "Conversion was failed",
204+
title: "Conversion failed",
205205
content: logs,
206206
icon: "error"
207207
});

‎src/js/worker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AbstractLog, ArrayInput, FileInputEntry, FileOutput } from "@geekcornernpm/convert-base-api";
1+
import { AbstractLog, ArrayInput, FileInputEntry, FileOutput } from "@modifiedcommand/convert-base-api";
22
import { ConvertJavaTextureToBedrockApi } from "@modifiedcommand/convert-minecraft-java-texture-to-bedrock-api";
33

44
addEventListener("message", async e => {

‎update_gh-pages.sh

-16
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.