Compare commits

...

3 Commits

Author SHA1 Message Date
Deluan
ddab0da207 docs: update commit message format in CONTRIBUTING.md
Signed-off-by: Deluan <deluan@navidrome.org>
2026-02-20 11:00:34 -05:00
Deluan Quintão
08a71320ea fix(ui): make toggle switches visible in Gruvbox Dark theme (#5063) (#5064)
The secondary color (#3c3836) matches the panel/table cell background,
making checked MuiSwitch thumbs invisible. Add MuiSwitch override using
Gruvbox cyan (#458588), consistent with existing interactive elements.
2026-02-18 15:38:20 -05:00
Raphael Catolino
44a5482493 fix(ui): activity Indicator switching constantly between online/offline (#5054)
When using HTTP2, setting the writeTimeout too low causes the channel to
close before the keepAlive event has a chance of beeing sent.

Signed-off-by: rca <raphael.catolino@gmail.com>
Co-authored-by: Deluan Quintão <deluan@navidrome.org>
2026-02-17 14:47:20 -05:00
3 changed files with 14 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ Before submitting a pull request, ensure that you go through the following:
### Commit Conventions ### Commit Conventions
Each commit message must adhere to the following format: Each commit message must adhere to the following format:
``` ```
<type>(scope): <description> - <issue number> <type>(scope): <description>
[optional body] [optional body]
``` ```

View File

@@ -24,8 +24,9 @@ type Broker interface {
const ( const (
keepAliveFrequency = 15 * time.Second keepAliveFrequency = 15 * time.Second
writeTimeOut = 5 * time.Second // The timeout must be higher than the keepAliveFrequency, or the lack of activity will cause the channel to close.
bufferSize = 1 writeTimeOut = keepAliveFrequency + 5*time.Second
bufferSize = 1
) )
type ( type (

View File

@@ -97,6 +97,16 @@ export default {
boxShadow: '3px 3px 5px #3c3836', boxShadow: '3px 3px 5px #3c3836',
}, },
}, },
MuiSwitch: {
colorSecondary: {
'&$checked': {
color: '#458588',
},
'&$checked + $track': {
backgroundColor: '#458588',
},
},
},
NDMobileArtistDetails: { NDMobileArtistDetails: {
bgContainer: { bgContainer: {
background: background: