Skip to content

Commit

Permalink
v4.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PiSaucer committed Feb 8, 2022
1 parent 54d1960 commit 1e81e53
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 59 deletions.
7 changes: 0 additions & 7 deletions .dockerignore

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ old
vendor
*.lock
*-lock.json
*.log
*.log
.DS_STORE
7 changes: 0 additions & 7 deletions .npmignore

This file was deleted.

8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

## [[v4.3.0]](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/releases/tag/v4.3.0) - Lastest Commit - Feb 4, 2022
## [[v4.3.1]](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/releases/tag/v4.3.1) - Lastest Commit - Feb 8, 2022
- 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).
- Remove docker information
- Remove `update_gh-pages.sh`
- Fix Conversion Grammar

## [[v4.3.0]](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/releases/tag/v4.3.0) - [54d1960](https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/commit/54d19602a8d98f7b2fec61361404b4550e276abb) - Feb 4, 2022
- Reformated some files
- 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)
- Automated builds for `gh-pages` with [GitHub Actions](https://github.com/features/actions)
Expand Down
18 changes: 0 additions & 18 deletions Dockerfile

This file was deleted.

13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@modifiedcommand/convert-minecraft-java-texture-to-bedrock-webapp",
"productName": "ConvertJavaTextureToBedrockWebApp",
"version": "4.3.0",
"version": "4.3.1",
"description": "Web app for converting Minecraft Java texture packs to Bedrock texture packs",
"keywords": [
"Minecraft",
Expand All @@ -21,14 +21,12 @@
"url": "https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock/issues"
},
"homepage": "https://github.com/ModifiedCommand/ConvertJavaTextureToBedrock#readme",
"dependencies": {
"file-loader": "^6.2.0"
},
"devDependencies": {
"@modifiedcommand/convert-minecraft-java-texture-to-bedrock-api": "github:ModifiedCommand/ConvertJavaTextureToBedrockApi",
"@modifiedcommand/convert-minecraft-java-texture-to-bedrock-api": "4.1.3",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.4.2",
"favicons-webpack-plugin": "1.0.2",
"file-loader": "6.2.0",
"file-saver": "https://github.com/eligrey/FileSaver.js/tarball/9a0a1e4ae2732c2d8eedc0214ef1c0fa32d15150",
"html-webpack-plugin": "3.2.0",
"less": "3.11.1",
Expand All @@ -52,5 +50,8 @@
"scripts": {
"build": "node_modules/.bin/webpack --config webpack.config.js"
},
"private": false
"private": false,
"dependencies": {
"@modifiedcommand/convert-base-api": "^1.0.8"
}
}
4 changes: 2 additions & 2 deletions src/js/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ document.addEventListener("DOMContentLoaded", () => {
selectInputFileButton.value = selectInputFolderButton.value = "";

const savePopup = swal({
title: "Conversion was successfully",
title: "Conversion was successful",
content: logs,
icon: "success",
buttons: "Save"
Expand All @@ -201,7 +201,7 @@ document.addEventListener("DOMContentLoaded", () => {
selectInputFileButton.value = selectInputFolderButton.value = "";

swal({
title: "Conversion was failed",
title: "Conversion failed",
content: logs,
icon: "error"
});
Expand Down
2 changes: 1 addition & 1 deletion src/js/worker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AbstractLog, ArrayInput, FileInputEntry, FileOutput } from "@geekcornernpm/convert-base-api";
import { AbstractLog, ArrayInput, FileInputEntry, FileOutput } from "@modifiedcommand/convert-base-api";
import { ConvertJavaTextureToBedrockApi } from "@modifiedcommand/convert-minecraft-java-texture-to-bedrock-api";

addEventListener("message", async e => {
Expand Down
16 changes: 0 additions & 16 deletions update_gh-pages.sh

This file was deleted.

0 comments on commit 1e81e53

Please sign in to comment.