Skip to content

Commit

Permalink
[cleanup]
Browse files Browse the repository at this point in the history
* added an image for the mcm
  • Loading branch information
mlthelama committed Jan 11, 2023
1 parent e969f49 commit 14bc28f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.20)

set(NAME "LamasTinyHUD" CACHE STRING "")
set(VERSION 1.0.0.9 CACHE STRING "")
set(VERSION 1.0.0.10 CACHE STRING "")

# ---- Options ----

Expand Down
7 changes: 6 additions & 1 deletion mcm/Config/LamasTinyHUD/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2112,5 +2112,10 @@
}
]
}
]
],
"customContent": {
"source": "LamasTinyHUD/Illustration_llamas_tiny_hut.dds",
"x": 258,
"y": 95
}
}
Binary file added mcm/Illustration_llamas_tiny_hut.dds
Binary file not shown.
Binary file added sample/illustration_llamas_tiny_hut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added sample/lamastinyhud.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion scripts/archive_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@


def make_rel_archive(a_args):
languages: list[str] = ["english", "czech", "french", "german", "italian", "japanese", "polish", "russian", "spanish"]
languages: list[str] = ["english", "czech", "french", "german", "italian", "japanese", "polish", "russian",
"spanish"]

archive: zipfile = zipfile.ZipFile(a_args.name + ".zip", "w", zipfile.ZIP_DEFLATED)
archive.write(a_args.dll, "SKSE/Plugins/{}".format(os.path.basename(a_args.dll)))
Expand All @@ -23,6 +24,8 @@ def make_rel_archive(a_args):
"mcm/Config/LamasTinyHUD/config.json")
archive.write(os.path.join(a_args.src_dir, "mcm", "Config", "LamasTinyHUD", "settings.ini"),
"mcm/Config/LamasTinyHUD/settings.ini")
archive.write(os.path.join(a_args.src_dir, "mcm", "Illustration_llamas_tiny_hut.dds"),
"Interface/LamasTinyHUD/Illustration_llamas_tiny_hut.dds")
for lang in languages:
archive.write(os.path.join(a_args.src_dir, "mcm", "Interface", "Translations", "LamasTinyHUD_english.txt"),
"Interface/Translations/LamasTinyHUD_" + lang + ".txt")
Expand Down

0 comments on commit 14bc28f

Please sign in to comment.