[PR #48] [CLOSED] Develop/v3.0.0 beta.1 #90

Closed
opened 2026-02-28 15:42:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/usenocturne/nocturne-ui/pull/48
Author: @brandonsaldan
Created: 11/27/2024
Status: Closed

Base: standaloneHead: develop/v3.0.0-beta.1


📝 Commits (10+)

  • 87e78d4 fix(auth): eliminate auth screen flash on app load
  • 7dd7841 feat(settings): add setting to sign out
  • 199be66 Merge pull request #9 from usenocturne/main
  • 0600732 fix(now-playing): pass handleError as prop
  • baa11ff Merge pull request #10 from usenocturne/release/v.2.0.0-beta.1
  • 1c6b8f6 fix(playlists): handle empty playlists
  • 3e63f1f Merge pull request #14 from usenocturne/release/v.2.0.0-beta.2
  • 6f50980 chore(version): bump version
  • f9665b4 Merge pull request #15 from usenocturne/release/v.2.0.0-beta.2
  • e0ba609 feat(settings): add sign out button to clear credentials

📊 Changes

36 files changed (+3531 additions, -1938 deletions)

View changed files

📝 .env.example (+2 -2)
.github/workflows/add-issues-to-triage.yaml (+20 -0)
Caddyfile (+8 -0)
📝 README.md (+119 -82)
📝 bun.lockb (+0 -0)
📝 package-lock.json (+12 -2)
📝 package.json (+3 -2)
📝 src/components/AuthSelection.jsx (+20 -198)
src/components/DonationQRModal.jsx (+61 -0)
src/components/PhoneAuthPage.jsx (+166 -0)
src/components/QRAuthFlow.jsx (+162 -0)
📝 src/components/Settings.jsx (+76 -1)
📝 src/components/Sidebar.jsx (+0 -1)
📝 src/lib/supabaseClient.js (+6 -13)
📝 src/pages/_app.jsx (+1123 -537)
📝 src/pages/album/[albumId].jsx (+18 -7)
src/pages/api/refresh-token.js (+0 -153)
src/pages/api/token.js (+0 -197)
📝 src/pages/api/v1/app/lyrics.js (+0 -0)
src/pages/api/v1/auth/qr/check.js (+88 -0)

...and 16 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/usenocturne/nocturne-ui/pull/48 **Author:** [@brandonsaldan](https://github.com/brandonsaldan) **Created:** 11/27/2024 **Status:** ❌ Closed **Base:** `standalone` ← **Head:** `develop/v3.0.0-beta.1` --- ### 📝 Commits (10+) - [`87e78d4`](https://github.com/usenocturne/nocturne-ui/commit/87e78d462a73aa0d93f64a7a84cdb7ca6188534d) fix(auth): eliminate auth screen flash on app load - [`7dd7841`](https://github.com/usenocturne/nocturne-ui/commit/7dd784173442a142229b42c4884d2b1e45fcc3d7) feat(settings): add setting to sign out - [`199be66`](https://github.com/usenocturne/nocturne-ui/commit/199be6673623c63ae2efe38601781f12f56500df) Merge pull request #9 from usenocturne/main - [`0600732`](https://github.com/usenocturne/nocturne-ui/commit/0600732c06803e51cbff1045c0633137ee906406) fix(now-playing): pass handleError as prop - [`baa11ff`](https://github.com/usenocturne/nocturne-ui/commit/baa11ff56a17ab5cbe383848851c71f73a0a5bdb) Merge pull request #10 from usenocturne/release/v.2.0.0-beta.1 - [`1c6b8f6`](https://github.com/usenocturne/nocturne-ui/commit/1c6b8f6d4cc7747047a11572df1fde4bd547563b) fix(playlists): handle empty playlists - [`3e63f1f`](https://github.com/usenocturne/nocturne-ui/commit/3e63f1fe4b5cc066ddc5fe95b649676a2428fc96) Merge pull request #14 from usenocturne/release/v.2.0.0-beta.2 - [`6f50980`](https://github.com/usenocturne/nocturne-ui/commit/6f509801f998d49d102c942b275081d90d0c7249) chore(version): bump version - [`f9665b4`](https://github.com/usenocturne/nocturne-ui/commit/f9665b4e2ead4c796372e405bdb8330006f9becb) Merge pull request #15 from usenocturne/release/v.2.0.0-beta.2 - [`e0ba609`](https://github.com/usenocturne/nocturne-ui/commit/e0ba609b26e4e4a5eb7334e590fe3556b4c49527) feat(settings): add sign out button to clear credentials ### 📊 Changes **36 files changed** (+3531 additions, -1938 deletions) <details> <summary>View changed files</summary> 📝 `.env.example` (+2 -2) ➕ `.github/workflows/add-issues-to-triage.yaml` (+20 -0) ➕ `Caddyfile` (+8 -0) 📝 `README.md` (+119 -82) 📝 `bun.lockb` (+0 -0) 📝 `package-lock.json` (+12 -2) 📝 `package.json` (+3 -2) 📝 `src/components/AuthSelection.jsx` (+20 -198) ➕ `src/components/DonationQRModal.jsx` (+61 -0) ➕ `src/components/PhoneAuthPage.jsx` (+166 -0) ➕ `src/components/QRAuthFlow.jsx` (+162 -0) 📝 `src/components/Settings.jsx` (+76 -1) 📝 `src/components/Sidebar.jsx` (+0 -1) 📝 `src/lib/supabaseClient.js` (+6 -13) 📝 `src/pages/_app.jsx` (+1123 -537) 📝 `src/pages/album/[albumId].jsx` (+18 -7) ➖ `src/pages/api/refresh-token.js` (+0 -153) ➖ `src/pages/api/token.js` (+0 -197) 📝 `src/pages/api/v1/app/lyrics.js` (+0 -0) ➕ `src/pages/api/v1/auth/qr/check.js` (+88 -0) _...and 16 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 15:42:08 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nocturne-ui#90
No description provided.