Skip to content

Commit cb562c0

Browse files
Improve readme and update instructions (#1259)
* Improve update notes in readme * Add cover image * Change update url
1 parent f5d92c8 commit cb562c0

File tree

3 files changed

+7
-26
lines changed

3 files changed

+7
-26
lines changed

README.md

Lines changed: 6 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,43 +7,26 @@
77

88
A new Minecraft world editor and converter that supports all versions since Java 1.12 and Bedrock 1.7.
99

10-
![edit](resource/img/edit.jpg)
10+
![cover](resource/img/cover.jpg)
1111

12-
## Running compiled builds
12+
## Running compiled builds (Currently Windows only)
1313

14-
Download the zip file for your operating system from the list of [compiled builds](https://github.com/Amulet-Team/Amulet-Map-Editor/releases). (Currently Windows only)
14+
Purchase and download the zip file for your operating system from [amuletmc.com](https://www.amuletmc.com).
15+
Old versions can be found on our [releases page](https://github.com/Amulet-Team/Amulet-Map-Editor/releases).
1516

16-
Extract the contained folder to a location on your computer and run the executable.
17+
Extract the contained folder to a location on your computer and run `amulet_app.exe`.
1718

1819
## Running from Source
1920

2021
**If you are running a compiled build you do NOT need to do this.**
2122

22-
1) Install [Python 3.10](https://www.python.org/downloads/release/python-31011/)
23-
2) We recommend setting up a [python virtual environment](https://docs.python.org/3/tutorial/venv.html) so you don't run into issues with dependency conflicts.
24-
3) run `python -m pip install amulet-map-editor` to install the library and all its dependencies.
25-
4) run `python -m amulet_map_editor` to run the program
23+
See instructions on [amuletmc.com](https://www.amuletmc.com/installing-from-source)
2624

2725
## Running with Docker (Linux)
2826
The Docker image runs on any Linux distro with Docker support.
2927
To run the Docker image, clone this repository and run `rundocker.sh`.
3028
Compatibility with wayland is done through xwayland for x11 support.
3129

32-
### Notes
33-
34-
If you have python 2 installed `python` may point to the wrong version in which case you will have to swap out `python` for `python3`
35-
36-
When installing from source the following dependencies will be installed
37-
38-
- numpy
39-
- wxpython
40-
- pyopengl
41-
- [Amulet-Core](https://github.com/Amulet-Team/Amulet-Core) The library to handle loading and saving data to the world formats.
42-
- [Amulet-NBT](https://github.com/Amulet-Team/Amulet-NBT) The library to handle reading and saving NBT and SNBT.
43-
- [PyMCTranslate](https://github.com/gentlegiantJGC/PyMCTranslate) The library to handle block, block entity, entity and biome translation. between versions
44-
- [Minecraft-Model-Reader](https://github.com/gentlegiantJGC/Minecraft-Model-Reader) The library to handle loading block models and textures from a resource pack for use in the renderer.
45-
- [Amulet-LevelDB](https://github.com/Amulet-Team/Amulet-LevelDB) The wrapper for Mojang's custom LevelDB.
46-
4730
## Contributing
4831

4932
For information about contributing to this project, please read the [contribution](contributing.md) file.

amulet_map_editor/api/framework/update_check.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,7 @@ def __init__(self, parent, current_version: str, new_version: str):
7171

7272
@staticmethod
7373
def goto_download_page(new_version, _):
74-
webbrowser.open(
75-
f"https://github.com/Amulet-Team/Amulet-Map-Editor/releases/tag/{new_version}"
76-
)
74+
webbrowser.open(f"https://www.amuletmc.com")
7775

7876

7977
def _is_compatible(current_version: Version, release_version: Version) -> bool:

resource/img/cover.jpg

514 KB
Loading

0 commit comments

Comments
 (0)