mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 15:46:56 +00:00
63f9b26d91
Replaces the 99999999 sentinel with `LATEST = MIN`. The elseif `< LATEST` then reduces to `< MIN` on source builds, which the preceding `if` branch always catches first — so the soft-nudge never fires for unpinned installs. No explicit guard needed. A source/cloned install previously showed "ClassicAPI v9999.99.99 is available" because the sentinel leaked into FormatVersion before the release workflow could patch it. With this layout, source installs are silent and only properly-pinned release zips trigger the nudge. Workflow sed broadens to "= .*" so it overwrites the line regardless of whether the RHS is a digit string or a Lua identifier.