From 5c8260eaed540e60244f6afd908319ec7e445cd2 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Thu, 18 Dec 2025 11:38:53 -0600 Subject: [PATCH 1/4] show svg and html project files --- create_requirement_images.py | 2 ++ get_imports.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/create_requirement_images.py b/create_requirement_images.py index e52fcf2..cceb9cb 100755 --- a/create_requirement_images.py +++ b/create_requirement_images.py @@ -70,9 +70,11 @@ def asset_path(asset_name): "mpy": file_icon, "txt": file_empty_icon, "toml": file_icon, + "html": file_icon, "bmp": file_image_icon, "png": file_image_icon, "jpg": file_image_icon, + "svg": file_image_icon, "wav": file_music_icon, "mp3": file_music_icon, "mid": file_music_icon, diff --git a/get_imports.py b/get_imports.py index e4de803..beb506f 100644 --- a/get_imports.py +++ b/get_imports.py @@ -33,9 +33,11 @@ "mpy", "txt", "toml", + "html", "bmp", "png", "jpg", + "svg", "wav", "mp3", "mid", From 115bf734da2a1c7e33d6d4947e3f51a88e1ca927 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Thu, 18 Dec 2025 13:05:36 -0600 Subject: [PATCH 2/4] use ubuntu-latest image for actions --- .github/workflows/build-images.yml | 2 +- .github/workflows/pre-commit.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index 813f89c..0df0cab 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -10,7 +10,7 @@ on: jobs: build-images: - runs-on: ubuntu-24.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: python3 -m venv build_images_venv diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index b004682..85ca190 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -10,7 +10,7 @@ on: jobs: pre-commit: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.10 From 3bee420a7747cf313c03fa75f729be0168d97e19 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Thu, 18 Dec 2025 13:09:21 -0600 Subject: [PATCH 3/4] use newer python version --- .github/workflows/pre-commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 85ca190..23cc1c5 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -13,8 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Set up Python 3.10 + - name: Set up Python 3.12 uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.12" - uses: pre-commit/action@v2.0.2 From 2a4d0f55b152a9a825d470d44760edf454b1fda8 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Thu, 18 Dec 2025 13:13:36 -0600 Subject: [PATCH 4/4] use newer pre-commit action version --- .github/workflows/pre-commit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 23cc1c5..89321d2 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -12,9 +12,9 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python 3.12 uses: actions/setup-python@v4 with: python-version: "3.12" - - uses: pre-commit/action@v2.0.2 + - uses: pre-commit/action@v3.0.1