diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..eb993f2 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["wowbox.code-debuger", "formulahendry.code-runner", "DavidAnson.vscode-markdownlint", "ms-python.flake8", "ms-python.python", "github.vscode-github-actions", "GitHub.vscode-pull-request-github"] +} \ No newline at end of file diff --git a/README.md b/README.md index b141ed8..9822669 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ This is a Python program written to help with making an advanced CatPack. - Community CatPack Collection (Prism Community discord)
- Support: + Need help?Issue tracker - @@ -39,5 +39,3 @@ There are 2 types of CatPacks: - Advanced CatPacks - these are folders with a JSON file and a bunch of images inside. The JSON dictates how the CatPack is intended to work. For more information on CatPacks, refer to the [Prism Launcher wiki](https://prismlauncher.org/wiki/getting-started/catpacks/). - -Documentation surrounding the project is currently work-in-progress. Check back later. diff --git a/requirements.txt b/requirements.txt index f49b800..13a7522 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,9 @@ # App -pyinstaller==6.11.0 pillow==11.0.0 +# Compiling +pyinstaller==6.11.0 + # Documentation mkdocs==1.6.1 mkdocs-material==9.5.41 \ No newline at end of file diff --git a/script.py b/script.py index 740b043..914faa4 100644 --- a/script.py +++ b/script.py @@ -175,7 +175,7 @@ def on_confirm(): root.geometry("800x600") # Folder name entry -tk.Label(root, text="Enter Folder Name:").pack(pady=5) +tk.Label(root, text="CatPack Name:").pack(pady=5) folder_name_entry = tk.Entry(root) folder_name_entry.pack(pady=5)