diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-10 20:02:47 -0500 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-01-10 20:02:47 -0500 |
| commit | d16216a6152cc763298f240467d323c1b2cf7c0e (patch) | |
| tree | 1dba15738e329ec4af0264154695d75089c1ea74 /src | |
| parent | df23d750cd5e0144941a05e8c1875e53b5f9e7cb (diff) | |
| download | decky-bazzite-buddy-d16216a6152cc763298f240467d323c1b2cf7c0e.tar.gz decky-bazzite-buddy-d16216a6152cc763298f240467d323c1b2cf7c0e.zip | |
feat: button to open all release notes in browser
Diffstat (limited to 'src')
| -rwxr-xr-x | src/index.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/index.tsx b/src/index.tsx index c2c1f86..d6428a1 100755 --- a/src/index.tsx +++ b/src/index.tsx @@ -57,6 +57,21 @@ function Content() { }} > <h2>Bazzite Release Notes</h2> + <button + style={{ + padding: "10px 20px", + marginBottom: "15px", + backgroundColor: "#0078D7", + color: "#ffffff", + border: "none", + borderRadius: "5px", + cursor: "pointer", + fontSize: "16px", + }} + onClick={() => window.open("https://github.com/ublue-os/bazzite/releases", "_blank")} + > + View All Release Notes + </button> {error ? ( <p style={{ color: "red" }} aria-live="polite"> {error} |
