[PR #105] [CLOSED] fix: typo/missing text in the readme file #120

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

📋 Pull Request Information

Original PR: https://github.com/usenocturne/nocturne-ui/pull/105
Author: @framerate
Created: 5/6/2025
Status: Closed

Base: mainHead: readme-typo-fix


📝 Commits (10+)

  • e409e12 fix: fix up most of bluetooth
  • 081f847 fix: load all songs in playlists instead of 100 limit
  • 441413b chore: optimize images for artist/album views
  • 9d37808 chore: add license and readme
  • f1dfb55 remove PlaybackProgressContext
  • 7956e3e remove unused usePlaybackProgress import
  • b409502 Merge pull request #97 from alvvaro/alvvaro/fix-playbackcontext-rerendering
  • 8e1a820 feat: ability to boot up to now playing screen
  • 9cc63aa feat: add setting to boot into now playing
  • f0330e1 feat/fix: check for lyrics from spotify before lrclib

📊 Changes

26 files changed (+2336 additions, -1113 deletions)

View changed files

📝 .github/workflows/add-issues-to-triage.yaml (+3 -1)
.github/workflows/add-prs-to-triage.yaml (+22 -0)
LICENSE (+674 -0)
📝 README.md (+152 -7)
📝 src/App.jsx (+141 -97)
📝 src/components/auth/AuthScreen.jsx (+3 -20)
📝 src/components/auth/NetworkScreen.jsx (+14 -21)
📝 src/components/auth/PairingScreen.jsx (+3 -20)
src/components/common/GradientBackground.jsx (+41 -0)
src/components/common/overlays/BrightnessOverlay.jsx (+207 -0)
📝 src/components/content/ContentView.jsx (+32 -3)
📝 src/components/player/NowPlaying.jsx (+11 -9)
📝 src/components/player/ProgressBar.jsx (+7 -15)
📝 src/components/settings/Settings.jsx (+16 -1)
📝 src/components/tutorial/Tutorial.jsx (+3 -20)
📝 src/contexts/SettingsContext.jsx (+1 -0)
📝 src/hooks/useAuth.js (+61 -34)
📝 src/hooks/useGradientState.js (+20 -503)
src/hooks/useGradientTransition.js (+509 -0)
📝 src/hooks/useLyrics.js (+50 -5)

...and 6 more files

📄 Description

Small fix to fix some missing text.

image


🔄 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/105 **Author:** [@framerate](https://github.com/framerate) **Created:** 5/6/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `readme-typo-fix` --- ### 📝 Commits (10+) - [`e409e12`](https://github.com/usenocturne/nocturne-ui/commit/e409e123bf13bf8d9a741fec22d0c0903782a06d) fix: fix up most of bluetooth - [`081f847`](https://github.com/usenocturne/nocturne-ui/commit/081f847ddcf753a77134361c26d51696628f6613) fix: load all songs in playlists instead of 100 limit - [`441413b`](https://github.com/usenocturne/nocturne-ui/commit/441413b530ff2a362465ae3369fa867a1c0dc765) chore: optimize images for artist/album views - [`9d37808`](https://github.com/usenocturne/nocturne-ui/commit/9d37808a09e31d7d632b72e9f4b7eba4d0e4ffdb) chore: add license and readme - [`f1dfb55`](https://github.com/usenocturne/nocturne-ui/commit/f1dfb5577091f5eed064af5cae1ce3d44fb3ff6b) remove PlaybackProgressContext - [`7956e3e`](https://github.com/usenocturne/nocturne-ui/commit/7956e3e2c31369b35234f4899869a6e116547d15) remove unused usePlaybackProgress import - [`b409502`](https://github.com/usenocturne/nocturne-ui/commit/b40950230ae60e4dfbfbb18da1980e4765146adb) Merge pull request #97 from alvvaro/alvvaro/fix-playbackcontext-rerendering - [`8e1a820`](https://github.com/usenocturne/nocturne-ui/commit/8e1a820b3fa0fb54a9925cb434ebd5ac5710c4a2) feat: ability to boot up to now playing screen - [`9cc63aa`](https://github.com/usenocturne/nocturne-ui/commit/9cc63aaca4b33df18fa39251e80b2282946a98ac) feat: add setting to boot into now playing - [`f0330e1`](https://github.com/usenocturne/nocturne-ui/commit/f0330e1d7422eb825cce89dec1ce428114bcc7e2) feat/fix: check for lyrics from spotify before lrclib ### 📊 Changes **26 files changed** (+2336 additions, -1113 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/add-issues-to-triage.yaml` (+3 -1) ➕ `.github/workflows/add-prs-to-triage.yaml` (+22 -0) ➕ `LICENSE` (+674 -0) 📝 `README.md` (+152 -7) 📝 `src/App.jsx` (+141 -97) 📝 `src/components/auth/AuthScreen.jsx` (+3 -20) 📝 `src/components/auth/NetworkScreen.jsx` (+14 -21) 📝 `src/components/auth/PairingScreen.jsx` (+3 -20) ➕ `src/components/common/GradientBackground.jsx` (+41 -0) ➕ `src/components/common/overlays/BrightnessOverlay.jsx` (+207 -0) 📝 `src/components/content/ContentView.jsx` (+32 -3) 📝 `src/components/player/NowPlaying.jsx` (+11 -9) 📝 `src/components/player/ProgressBar.jsx` (+7 -15) 📝 `src/components/settings/Settings.jsx` (+16 -1) 📝 `src/components/tutorial/Tutorial.jsx` (+3 -20) 📝 `src/contexts/SettingsContext.jsx` (+1 -0) 📝 `src/hooks/useAuth.js` (+61 -34) 📝 `src/hooks/useGradientState.js` (+20 -503) ➕ `src/hooks/useGradientTransition.js` (+509 -0) 📝 `src/hooks/useLyrics.js` (+50 -5) _...and 6 more files_ </details> ### 📄 Description Small fix to fix some missing text. ![image](https://github.com/user-attachments/assets/2599a074-584e-4d6a-bcc3-54d5aeaf93b4) --- <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:14 +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#120
No description provided.