Skip to content

Commit

Permalink
Merge pull request #1 from EternalModz/main
Browse files Browse the repository at this point in the history
Several small fixes.
  • Loading branch information
jeremy2206 authored Mar 21, 2024
2 parents 9a12035 + eb36668 commit 4e12a29
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 11 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# Java-to-WiiU-Texture-Pack-Converter
- Made by Jerem2206
- Country Language EN
- Made by Jerem2206.
- Country Language: EN
- Tested on Windows 10 & 11
---
## What does it add?
An easier way to convert blocks/items/particles/paintings from Java version texture packs for WiiU and others

## How to do ?
- put your blocks/items/particles/paintings images in the input folder and run the corresponding .exe .
- And click on the convert button.
- Then find the result in the output folder.
---
## Roadmap
## What does it do?
The tool provides an easy way to convert Minecraft Java Edition textures over to the Wii U and other LCE versions of Minecraft.

## How do I use the tool?
1. Put your texture into the **input** folder and run the corresponding .exe file.
2. Once the conversion window shows up, click the **convert** button.
3. After converting, check the finished results in the **output** folder.

## Roadmap
### Converter Version
- [x] 1.8
- [x] 1.9
Expand Down

0 comments on commit 4e12a29

Please sign in to comment.