diff --git a/docs/docs/resources/podcast_grid_big.png b/docs/docs/resources/podcast_grid_big.png index 77b92625..3c4880dd 100644 Binary files a/docs/docs/resources/podcast_grid_big.png and b/docs/docs/resources/podcast_grid_big.png differ diff --git a/docs/docs/resources/podcast_note.png b/docs/docs/resources/podcast_note.png index 19f18c53..f6f77c9f 100644 Binary files a/docs/docs/resources/podcast_note.png and b/docs/docs/resources/podcast_note.png differ diff --git a/manifest.json b/manifest.json index f634d9a3..f40a5add 100644 --- a/manifest.json +++ b/manifest.json @@ -8,4 +8,4 @@ "authorUrl": "https://bagerbach.com", "fundingUrl": "https://buymeacoffee.com/chhoumann", "isDesktopOnly": false -} \ No newline at end of file +} diff --git a/version-bump.mjs b/version-bump.mjs index d409fa0e..1a812111 100644 --- a/version-bump.mjs +++ b/version-bump.mjs @@ -6,9 +6,11 @@ const targetVersion = process.env.npm_package_version; let manifest = JSON.parse(readFileSync("manifest.json", "utf8")); const { minAppVersion } = manifest; manifest.version = targetVersion; -writeFileSync("manifest.json", JSON.stringify(manifest, null, "\t")); +// Write a trailing newline so the file stays Biome-clean (format:check). Without +// it, every release commit silently strips the newline and the next PR fails. +writeFileSync("manifest.json", `${JSON.stringify(manifest, null, "\t")}\n`); // update versions.json with target version and minAppVersion from manifest.json let versions = JSON.parse(readFileSync("versions.json", "utf8")); versions[targetVersion] = minAppVersion; -writeFileSync("versions.json", JSON.stringify(versions, null, "\t")); +writeFileSync("versions.json", `${JSON.stringify(versions, null, "\t")}\n`); diff --git a/versions.json b/versions.json index b13e45a3..feb07896 100644 --- a/versions.json +++ b/versions.json @@ -80,4 +80,4 @@ "2.15.1": "0.15.9", "2.16.0": "0.15.9", "2.17.0": "0.15.9" -} \ No newline at end of file +}