diff --git a/.github/workflows/update-download-metrics.yml b/.github/workflows/update-download-metrics.yml index 72f1298..87d582b 100644 --- a/.github/workflows/update-download-metrics.yml +++ b/.github/workflows/update-download-metrics.yml @@ -26,6 +26,8 @@ jobs: python-version: "3.12" - name: Update README metrics and chart + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: scripts/update_download_metrics.py - name: Commit and push if changed diff --git a/Neon Vision Editor.xcodeproj/project.pbxproj b/Neon Vision Editor.xcodeproj/project.pbxproj index 3026062..f499b20 100644 --- a/Neon Vision Editor.xcodeproj/project.pbxproj +++ b/Neon Vision Editor.xcodeproj/project.pbxproj @@ -361,7 +361,7 @@ CODE_SIGNING_ALLOWED = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 413; + CURRENT_PROJECT_VERSION = 414; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = CS727NF72U; ENABLE_APP_SANDBOX = YES; @@ -444,7 +444,7 @@ CODE_SIGNING_ALLOWED = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 413; + CURRENT_PROJECT_VERSION = 414; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = CS727NF72U; ENABLE_APP_SANDBOX = YES; diff --git a/README.md b/README.md index 6588b31..2adcf8a 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@

Styled line chart shows per-release totals plus a scaled 14-day git clone volume bar.

-

Git clones (last 14 days): 1508.

+

Git clones (last 14 days): 1629.

Snapshot total downloads: 560 across releases.

## Project Docs diff --git a/docs/images/release-download-trend.svg b/docs/images/release-download-trend.svg index 0ef3638..16e573f 100644 --- a/docs/images/release-download-trend.svg +++ b/docs/images/release-download-trend.svg @@ -78,14 +78,14 @@ Release trend line with highlighted points - Git Clones (last 14 days): 1508 + Git Clones (last 14 days): 1629 - + 0 - 800 - 1600 - Scale: 0 to 1600 clones in the last 14 days. + 1000 + 2000 + Scale: 0 to 2000 clones in the last 14 days. diff --git a/scripts/update_download_metrics.py b/scripts/update_download_metrics.py index 526f0d9..58f46b2 100755 --- a/scripts/update_download_metrics.py +++ b/scripts/update_download_metrics.py @@ -389,6 +389,11 @@ def main() -> int: readme_before = README.read_text(encoding="utf-8") existing_clone_total = parse_existing_clone_total(readme_before) + if clone_total_api is None: + print( + "Warning: clone traffic API unavailable; reusing existing README clone total.", + file=sys.stderr, + ) clone_total = clone_total_api if clone_total_api is not None else (existing_clone_total or 0) svg = generate_svg(trend_points, clone_total, snapshot_date) readme_after = update_readme(