mcmu 1.2.0.dev0__tar.gz → 1.2.0.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/CHANGELOG.md +6 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/PKG-INFO +2 -2
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/pyproject.toml +1 -1
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/src/mcmu/__main__.py +2 -1
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/.github/ISSUE_TEMPLATE/custom.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/.github/pull_request_template.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/.gitignore +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/CODE_OF_CONDUCT.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/CONTRIBUTING.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/LICENSE +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/Makefile +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/README.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/SECURITY.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/TODO.md +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/requirements.txt +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/src/mcmu/__init__.py +0 -0
- {mcmu-1.2.0.dev0 → mcmu-1.2.0.dev1}/src/mcmu/minecraft_mod.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcmu
|
|
3
|
-
Version: 1.2.0.
|
|
3
|
+
Version: 1.2.0.dev1
|
|
4
4
|
Summary: A utility to update Minecraft java edition mods from Modrinth
|
|
5
5
|
Project-URL: homepage, https://github.com/Josiah-Jarvis/MCModUpdater
|
|
6
6
|
Project-URL: source, https://github.com/Josiah-Jarvis/MCModUpdater/
|
|
7
7
|
Project-URL: download, https://pypi.org/project/mcmu/#files
|
|
8
8
|
Project-URL: changelog, https://github.com/Josiah-Jarvis/MCModUpdater/blob/master/CHANGELOG.md
|
|
9
|
-
Project-URL: releasenotes, https://github.com/Josiah-Jarvis/MCModUpdater/compare/1.
|
|
9
|
+
Project-URL: releasenotes, https://github.com/Josiah-Jarvis/MCModUpdater/compare/1.2.0.dev0...1.2.0.dev1
|
|
10
10
|
Project-URL: documentation, https://github.com/Josiah-Jarvis/MCModUpdater/blob/master/README.md
|
|
11
11
|
Project-URL: issues, https://github.com/Josiah-Jarvis/MCModUpdater/issues
|
|
12
12
|
Author: Josiah Jarvis
|
|
@@ -56,7 +56,7 @@ homepage = "https://github.com/Josiah-Jarvis/MCModUpdater"
|
|
|
56
56
|
source = "https://github.com/Josiah-Jarvis/MCModUpdater/"
|
|
57
57
|
download = "https://pypi.org/project/mcmu/#files"
|
|
58
58
|
changelog = "https://github.com/Josiah-Jarvis/MCModUpdater/blob/master/CHANGELOG.md"
|
|
59
|
-
releasenotes = "https://github.com/Josiah-Jarvis/MCModUpdater/compare/1.
|
|
59
|
+
releasenotes = "https://github.com/Josiah-Jarvis/MCModUpdater/compare/1.2.0.dev0...1.2.0.dev1" # Change before every release
|
|
60
60
|
documentation = "https://github.com/Josiah-Jarvis/MCModUpdater/blob/master/README.md"
|
|
61
61
|
issues = "https://github.com/Josiah-Jarvis/MCModUpdater/issues"
|
|
62
62
|
|
|
@@ -8,7 +8,7 @@ from logging import getLogger, basicConfig
|
|
|
8
8
|
from argparse import ArgumentParser
|
|
9
9
|
from .minecraft_mod import Mod # Mod function import
|
|
10
10
|
|
|
11
|
-
__version__ = "1.2.0.
|
|
11
|
+
__version__ = "1.2.0.dev1"
|
|
12
12
|
__author__ = "Josiah Jarvis"
|
|
13
13
|
|
|
14
14
|
logger = getLogger(__name__)
|
|
@@ -102,6 +102,7 @@ def main():
|
|
|
102
102
|
del config['mods'][args.remove]
|
|
103
103
|
if not write_config_file(config_file, config):
|
|
104
104
|
return 1
|
|
105
|
+
print(f"Mod: {args.remove}, successfully removed")
|
|
105
106
|
elif args.list:
|
|
106
107
|
for mod in config['mods']:
|
|
107
108
|
print(f"{config['mods'][mod]['name']}\n\tVersion: {config['mods'][mod]['version']}\n\tFile: {config['mods'][mod]['file']}")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|