[PR #28] [MERGED] Develop/v2.1.0 beta.1 #83

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

📋 Pull Request Information

Original PR: https://github.com/usenocturne/nocturne-ui/pull/28
Author: @brandonsaldan
Created: 11/23/2024
Status: Merged
Merged: 11/23/2024
Merged by: @brandonsaldan

Base: mainHead: develop/v2.1.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
  • ca650b5 chore(settings): bring 2.1.0-beta.1 branch to date with main
  • c50f0ae Merge pull request #17 from usenocturne/main
  • 0e95acd feat(auth): add qr code authentication
  • 412f364 chore: revert changes
  • 158a9e0 fix(api): refactor api
  • 3e3cc59 feat(auth): add WIP qr code authentication
  • 5e0e125 fix(api): use edge runtime in qr endpoints

📊 Changes

32 files changed (+2915 additions, -1308 deletions)

View changed files

📝 bun.lockb (+0 -0)
📝 package-lock.json (+1 -1)
📝 package.json (+3 -2)
📝 src/components/AuthSelection.jsx (+26 -10)
src/components/DonationQRModal.jsx (+66 -0)
src/components/PhoneAuthPage.jsx (+166 -0)
src/components/QRAuthFlow.jsx (+162 -0)
src/components/ResetTimerOverlay.jsx (+76 -0)
📝 src/components/Settings.jsx (+53 -9)
src/constants/errorCodes.js (+40 -0)
src/lib/colorUtils.js (+103 -0)
📝 src/lib/supabaseClient.js (+6 -13)
📝 src/pages/_app.jsx (+1042 -742)
📝 src/pages/album/[albumId].jsx (+1 -3)
src/pages/api/refresh-token.js (+0 -202)
src/pages/api/token.js (+0 -231)
📝 src/pages/api/v1/app/lyrics.js (+0 -0)
src/pages/api/v1/auth/qr/check.js (+88 -0)
src/pages/api/v1/auth/qr/create.js (+77 -0)
src/pages/api/v1/auth/refresh-token.js (+199 -0)

...and 12 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/28 **Author:** [@brandonsaldan](https://github.com/brandonsaldan) **Created:** 11/23/2024 **Status:** ✅ Merged **Merged:** 11/23/2024 **Merged by:** [@brandonsaldan](https://github.com/brandonsaldan) **Base:** `main` ← **Head:** `develop/v2.1.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 - [`ca650b5`](https://github.com/usenocturne/nocturne-ui/commit/ca650b5e436d5569526ea733441b77f4338a08d2) chore(settings): bring 2.1.0-beta.1 branch to date with main - [`c50f0ae`](https://github.com/usenocturne/nocturne-ui/commit/c50f0ae95206f49a68139e76571f086272e2b14e) Merge pull request #17 from usenocturne/main - [`0e95acd`](https://github.com/usenocturne/nocturne-ui/commit/0e95acd7a80ca1a62ef7a7db91956a70d1f94846) feat(auth): add qr code authentication - [`412f364`](https://github.com/usenocturne/nocturne-ui/commit/412f364a8850dd28eee92eb75b513f2d1cddab84) chore: revert changes - [`158a9e0`](https://github.com/usenocturne/nocturne-ui/commit/158a9e0bf666edb341e637e8e7746756344241f1) fix(api): refactor api - [`3e3cc59`](https://github.com/usenocturne/nocturne-ui/commit/3e3cc597e8a80d450f9bd4eb896dda26a45b74b4) feat(auth): add WIP qr code authentication - [`5e0e125`](https://github.com/usenocturne/nocturne-ui/commit/5e0e125ff2935d2652f0805d62a23638a687ef59) fix(api): use edge runtime in qr endpoints ### 📊 Changes **32 files changed** (+2915 additions, -1308 deletions) <details> <summary>View changed files</summary> 📝 `bun.lockb` (+0 -0) 📝 `package-lock.json` (+1 -1) 📝 `package.json` (+3 -2) 📝 `src/components/AuthSelection.jsx` (+26 -10) ➕ `src/components/DonationQRModal.jsx` (+66 -0) ➕ `src/components/PhoneAuthPage.jsx` (+166 -0) ➕ `src/components/QRAuthFlow.jsx` (+162 -0) ➕ `src/components/ResetTimerOverlay.jsx` (+76 -0) 📝 `src/components/Settings.jsx` (+53 -9) ➕ `src/constants/errorCodes.js` (+40 -0) ➕ `src/lib/colorUtils.js` (+103 -0) 📝 `src/lib/supabaseClient.js` (+6 -13) 📝 `src/pages/_app.jsx` (+1042 -742) 📝 `src/pages/album/[albumId].jsx` (+1 -3) ➖ `src/pages/api/refresh-token.js` (+0 -202) ➖ `src/pages/api/token.js` (+0 -231) 📝 `src/pages/api/v1/app/lyrics.js` (+0 -0) ➕ `src/pages/api/v1/auth/qr/check.js` (+88 -0) ➕ `src/pages/api/v1/auth/qr/create.js` (+77 -0) ➕ `src/pages/api/v1/auth/refresh-token.js` (+199 -0) _...and 12 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:07 +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#83
No description provided.