Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cleanup, rewrite and add features #3

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a85ab6b
2space to 4space indents
StanHash Jul 21, 2018
001c5d8
individual map files are now generated with the required definitions
StanHash Aug 13, 2018
880cdf0
general source aeration(?)
StanHash Aug 13, 2018
cac9c8c
add some commandline options and improved help
StanHash Aug 13, 2018
b53d828
Always print the 'generated by tmx2ea' message
StanHash Aug 13, 2018
4c12c6b
remove everything unecessary to the repo
StanHash Aug 13, 2018
b0ae7dd
replace tmx & six libraries by a pip requirement file
StanHash Aug 13, 2018
a8f9d9f
merge actual readme with markdown readme and formatted to markdown
StanHash Aug 13, 2018
1ff7bf4
add dist-makeing makefile and add pyinstaller to requirements
StanHash Aug 13, 2018
840cd63
add gitignore
StanHash Aug 13, 2018
9aea0e1
add SETUP.md
StanHash Aug 13, 2018
a579e33
(cleanup) oops I apparently removed tmx.py by accident
StanHash Oct 19, 2018
14c6276
nvm that I was tired
StanHash Oct 20, 2018
2405717
Merge branch 'misc_improvements'
StanHash Dec 3, 2019
0771287
oops I rewrote the whole again
StanHash Dec 3, 2019
49c9c50
generalize property default/alias resolution
StanHash Dec 4, 2019
ba87e64
restore noheader functionality
StanHash Dec 4, 2019
cf17569
throw gooder error
StanHash Dec 4, 2019
809b74d
update readme to refect new features
StanHash Dec 4, 2019
bb8f2ed
fix weird bad python thing
StanHash Dec 4, 2019
c4c816e
fix alignment of map cchange list
StanHash Dec 5, 2019
2c1f7cc
fix map change tile order
StanHash Dec 5, 2019
b16bb94
add/update some docstrings
StanHash Dec 5, 2019
328ba43
fix fe7 macro
StanHash Dec 28, 2019
c77111a
fix warning
StanHash Oct 1, 2020
671d3e7
create installer when -O given but not -s
StanHash May 29, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 117 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
# Should not be in repo
*.gba
*.exe
*.tmx
*.dmp
*.event

# Ready-to-distribute directory
ReleaseDist

# Compilation intermediaries
*.spec

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
Binary file removed 01000203.png
Binary file not shown.
Binary file removed 1800191A.png
Binary file not shown.
Loading