From 5e700692e7abcd081302b010e5a172d416e90706 Mon Sep 17 00:00:00 2001 From: Meow Meow Date: Sun, 11 Jan 2026 15:47:52 +1100 Subject: [PATCH 1/2] Fix typos and improve README formatting Updated installation instructions and credits section. --- README.md | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 385c970..2150830 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,21 @@ Allows users to hide/remove UI elements by right clicking on them. ## Installation +### Batteries Required +1. [TidaLuna](https://github.com/Inrixia/TidaLuna) - Plugin Framework for Tidal (what these plugins are for) +2. Tidal - Streaming Service (if you are here and dont use tidal.. then just enjoy the read <3) + +### Installing from Plugin Store (in TidaLuna) +1. Open Tidal (with Luna installed) +2. Navigate to Luna Settings (Top right of Tidal) +3. Click "Plugin Store" Tab +4. Scroll Down and just click on the plugins to install them +5. Naviagte to the "Plugins" Tab +6. And now your done and you can adjust the settings to your liking <3 + ### Installing from URL ### (They are in the store by default now) -1. Open TidalLuna after Building & Serving +1. Open TidaLuna after Building & Serving 2. Navigate to Luna Settings (Top right of Tidal) 3. Click "Plugin Store" Tab 4. Paste in the "Install from URL" Bar `https://github.com/meowarex/tidalluna-plugins/releases/download/latest/store.json` @@ -83,7 +95,7 @@ pnpm run watch ``` ### Installing Plugins in TidalLuna -1. Open TidalLuna after Building & Serving +1. Open TidaLuna after Building & Serving 2. Navigate to Luna Settings (Top right of Tidal) 3. Click "Plugin Store" Tab 4. Click Install on the Plugins at the top Labeled with "[Dev]" @@ -92,7 +104,7 @@ pnpm run watch ## Development This project is made for: -- **TidalLuna** - Modern plugin framework for Tidal | Inrixia +- **[TidaLuna](https://github.com/Inrixia/TidaLuna)** - Modern plugin framework for Tidal | Inrixia ## GitHub Actions @@ -100,10 +112,7 @@ This project is made for: - **Release automation** for distributing plugins - **Artifact uploads** for easy plugin distribution -## Based On <3 - -- **itzzexcel** - [GitHub](https://github.com/ItzzExcel) - ## Credits -Original Neptune versions by itzzexcel. Ported to Luna framework following the Luna plugin template structure by meowarex with help from Inrixia <3 +Inrixia | [TidalLuna](https://github.com/Inrixia/TidaLuna) Plugin Framework (The successor Neptune) +ItzzExcel | The Original Neptune version of "Radiant Lyrics" (Which was ported to Luna and Rewritten by me!) From 09857b6b542ce4a5b46e20a6a6413127c36475c6 Mon Sep 17 00:00:00 2001 From: meowarex Date: Thu, 15 Jan 2026 21:22:21 +1100 Subject: [PATCH 2/2] Fixed Media Table Border + Search bar Width --- plugins/audio-visualizer-luna/src/styles.css | 4 ++++ plugins/obsidian-theme-luna/src/oled-friendly.css | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/plugins/audio-visualizer-luna/src/styles.css b/plugins/audio-visualizer-luna/src/styles.css index 967a6a2..2835ea2 100644 --- a/plugins/audio-visualizer-luna/src/styles.css +++ b/plugins/audio-visualizer-luna/src/styles.css @@ -34,6 +34,10 @@ transition: all 0.3s ease-in-out; } +[data-type="search-field"] { + min-width: 220px !important; +} + /* Shadow when active - doesnt seem to only apply when active but thats better */ #audio-visualizer-container.active { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); diff --git a/plugins/obsidian-theme-luna/src/oled-friendly.css b/plugins/obsidian-theme-luna/src/oled-friendly.css index 786abdc..57c1ed7 100644 --- a/plugins/obsidian-theme-luna/src/oled-friendly.css +++ b/plugins/obsidian-theme-luna/src/oled-friendly.css @@ -114,7 +114,8 @@ margin: 5px; } -[data-test="media-table"] > div > div > div { +[data-test="media-table"] > div > div { + border-radius: 8px; border: 1px solid rgb(25, 25, 25) !important; }