-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add Artists & Albums to Library. - - Full Support for Fetching playback data via Invidious on UIA (Turn on 'fetch stream data via invidious' in Settings>Playback). - - Improved Action Menu (Previously SuperModal). - - Improved Library Tap Targets. - - Added Toast Notifications & Fetch Instances Toggle. - - Added minimal tooltips for buttons on playback screen for landscape users. - - Substantial Image processing optimizations. - - Support for injecting custom Invidious & Hyperpipe instances.
- Loading branch information
Showing
37 changed files
with
981 additions
and
672 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- instances | ||
schedule: | ||
- cron: "*/30 * * * *" | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: oven-sh/setup-bun@v2 | ||
- run: bun updater.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#actionsMenu { | ||
border: var(--border); | ||
box-shadow: var(--shadow); | ||
padding: 2dvmin 1dvmin; | ||
width: 100%; | ||
margin: 8dvmin auto; | ||
margin-top: auto; | ||
border-radius: calc(var(--roundness) * 1.3); | ||
background-color: var(--bg); | ||
animation: fromBelow 0.3s; | ||
overflow: auto; | ||
|
||
|
||
@media(orientation:landscape) { | ||
width: max-content; | ||
margin: auto 8dvmin; | ||
margin-left: auto; | ||
animation-name: fromRight; | ||
|
||
} | ||
|
||
ul { | ||
list-style: none; | ||
padding: 2dvmin; | ||
width: auto; | ||
display: grid; | ||
gap: 2vmin; | ||
} | ||
|
||
li { | ||
color: var(--text); | ||
font-size: large; | ||
user-select: none; | ||
display: flex; | ||
align-items: center; | ||
gap: 5dvmin; | ||
padding: 1vmin 2vmin; | ||
border: 0.1vmin solid transparent; | ||
border-radius: var(--roundness); | ||
|
||
&:hover { | ||
border: var(--border); | ||
background: var(--onBg); | ||
} | ||
|
||
i { | ||
font-weight: normal; | ||
font-size: larger; | ||
} | ||
} | ||
|
||
} | ||
|
||
#playlistSelector { | ||
font-weight: inherit; | ||
font-size: inherit; | ||
margin-left: -3px; | ||
width: 9ch; | ||
} |
Oops, something went wrong.