Skip to content

Commit

Permalink
new preset & bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
AlPha5130 committed Feb 1, 2021
1 parent 96c90a2 commit 6e3bfca
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions meme_resourcepack/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"uuid": "69236b67-0176-4afe-8f68-28fc433d2f77",
"version": [
1,
1,
1
2,
0
],
"min_engine_version": [
1,
Expand All @@ -22,8 +22,8 @@
"uuid": "e6681328-db8c-41ce-943c-2b08f86fcbf1",
"version": [
1,
1,
1
2,
0
]
}
],
Expand Down
1 change: 1 addition & 0 deletions modules/no_blue_ui/module_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"resource": [
"a_letter",
"bagify",
"bee_pickaxe",
"observer_think",
"trident_model"
]
Expand Down
11 changes: 7 additions & 4 deletions preset_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from sys import exit
from memepack_builder.wrapper import main

pack_version = '1.1.1'
pack_version = '1.2.0'
build_unsuccessful = 0

def check_version_consistency():
Expand All @@ -20,17 +20,19 @@ def check_version_consistency():
if check_version_consistency():
preset_args = [
{'platform': 'be', 'type': 'mcpack', 'compatible': False, 'modules': {'language': [], 'resource': [
'all'], 'mixed': [], 'collection': []}, 'hash': False, 'output': 'builds'},
'all'], 'mixed': ['all'], 'collection': []}, 'hash': False, 'output': 'builds'},
{'platform': 'be', 'type': 'mcpack', 'compatible': False, 'modules': {'language': [], 'resource': [
'blue_ui'], 'mixed': [], 'collection': []}, 'hash': False, 'output': 'builds'},
{'platform': 'be', 'type': 'mcpack', 'compatible': False, 'modules': {'language': [], 'resource': [
], 'mixed': [], 'collection': ['no_blue_ui']}, 'hash': False, 'output': 'builds'},
], 'mixed': ['all'], 'collection': ['no_blue_ui']}, 'hash': False, 'output': 'builds'},
{'platform': 'be', 'type': 'mcpack', 'compatible': False, 'modules': {'language': [], 'resource': [
], 'mixed': [], 'collection': []}, 'hash': False, 'output': 'builds'},
{'platform': 'be', 'type': 'mcpack', 'compatible': True, 'modules': {'language': [], 'resource': [
'all'], 'mixed': ['all'], 'collection': []}, 'hash': False, 'output': 'builds'},
{'platform': 'be', 'type': 'mcpack', 'compatible': True, 'modules': {'language': [], 'resource': [
], 'mixed': [], 'collection': []}, 'hash': False, 'output': 'builds'},
{'platform': 'be', 'type': 'zip', 'compatible': False, 'modules': {'language': [], 'resource': [
'all'], 'mixed':[], 'collection': []}, 'hash': False, 'output': 'builds'},
'all'], 'mixed':['all'], 'collection': []}, 'hash': False, 'output': 'builds'},
{'platform': 'be', 'type': 'zip', 'compatible': True, 'modules': {'language': [], 'resource': [
], 'mixed':[], 'collection': []}, 'hash': False, 'output': 'builds'},
]
Expand All @@ -39,6 +41,7 @@ def check_version_consistency():
f"meme-resourcepack_noresource_v{pack_version}.mcpack",
f"meme-resourcepack_noblueui_v{pack_version}.mcpack",
f"meme-resourcepack_noresource_noblueui_v{pack_version}.mcpack",
f"meme-resourcepack_compatible_v{pack_version}.mcpack",
f"meme-resourcepack_compatible_noresource_noblueui_v{pack_version}.mcpack",
f"meme-resourcepack_v{pack_version}.zip",
f"meme-resourcepack_compatible_noresource_noblueui_v{pack_version}.zip",
Expand Down

0 comments on commit 6e3bfca

Please sign in to comment.