Skip to content

Commit d3f5a47

Browse files
committed
Update instructions in README, Launcher Version in settings
1 parent 04738fd commit d3f5a47

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ of Minecraft in one launcher.
1212
## FAQ:
1313
- **[Why it exists?](#why-it-exists)**
1414
- **[How do I hide/show editions?](#how-do-i-hideshow-editions)**
15+
- **[How to update MCMEL](#how-to-update-mcmel)**
1516
- **[How to configure the editions?](#how-to-configure-the-editions)**
1617
- [Minecraft: Java Edition](#minecraft-java-edition)
1718
- _[Splitscreen](#how-to-play-in-splitscreen-v021)_
@@ -35,6 +36,14 @@ In the **Settings** menu, each edition has a **"Show in launcher"** toggle.
3536
Simply enable or disable it based on which editions you want to appear in the launcher.
3637

3738
![screenshot](repo-screenshots/settings.png)
39+
40+
## How to update MCMEL:
41+
42+
1. Download the new version from [GitHub Releases](https://github.com/andusdev/mcmel/releases)
43+
2. Unzip the new version
44+
3. Replace the new games_config.json with the old one from your old MCMEL installation
45+
4. Start MCMEL!
46+
3847
## How to configure the editions?
3948

4049
In **Settings**, you will find sections for each edition. Every edition has different things to setup:

src/settings.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
QCheckBox, QRadioButton, QButtonGroup, QFileDialog, QMessageBox,
55
QGroupBox, QSizePolicy, QSpacerItem, QScrollArea, QWidget
66
)
7+
from src.update_check import __version__
78

89
CONFIG_FILE = "games_config.json"
910
DEFAULTS = {
@@ -212,6 +213,10 @@ def init_ui(self):
212213
github_label.setWordWrap(True)
213214
layout.addWidget(github_label)
214215

216+
version_label = QLabel(f"Launcher Version: <strong>{__version__}</strong>")
217+
version_label.setWordWrap(True)
218+
layout.addWidget(version_label)
219+
215220
btn_row = QHBoxLayout()
216221
btn_save, btn_cancel = QPushButton("Save"), QPushButton("Cancel")
217222
btn_save.clicked.connect(self.on_save)

0 commit comments

Comments
 (0)