krateng
d7d2f676a7
Removed some superfluous id resolving of entities
2023-03-31 05:18:43 +02:00
krateng
451014f6e7
Temporary fix for scrobbling with no album info
2023-03-31 04:22:33 +02:00
krateng
f9ce0e6ba9
Fixed broken link for album top weeks
2023-03-31 02:49:26 +02:00
krateng
015b779ca9
Fixed caching issue when changing album info of track
2023-03-30 21:22:29 +02:00
krateng
eb7268985c
Added dummy file for album image folder creation
2023-03-30 20:54:24 +02:00
krateng
8cb446f1fb
Fixed scrobbling with incomplete album information
2023-03-30 20:39:27 +02:00
krateng
feaccf1259
Added album title rule
2023-03-30 19:57:56 +02:00
krateng
0bdcb94f5b
Scrobble guessing can now use rawscrobble
2023-03-30 17:18:08 +02:00
krateng
e52d57e413
Fixed design of album search results
2023-03-30 17:05:35 +02:00
krateng
3877401a05
Added handling for albums when merging artists
2023-03-30 16:49:36 +02:00
krateng
d0d76166fc
Added functionality to parse old album information
2023-03-30 16:08:03 +02:00
krateng
fd5d01b728
Spaghetti Code
2023-03-30 14:39:44 +02:00
krateng
12b5eb0b74
Made the album showcase prettier
2023-03-30 02:17:27 +02:00
krateng
db2b4760a0
Added album showcase module for artist page
2023-03-30 00:51:46 +02:00
krateng
1e70d529fb
Fixed potential bug for some sql functions
2023-03-29 20:29:44 +02:00
krateng
f0bfe8dfa7
Added merging for albums
2023-03-29 18:20:23 +02:00
krateng
deb96c9ce7
Adjusted artist page for album artists
2023-03-29 17:56:07 +02:00
krateng
5eec25963b
Fixed things for albumartists with no tracks
2023-03-29 17:26:36 +02:00
krateng
e18dffbd2f
Adjusted DB cleanup to account for albums
2023-03-29 17:06:07 +02:00
krateng
d860e19b54
Added albums to search
2023-03-29 15:31:04 +02:00
krateng
688cac81ee
Implemented web editing for albums
2023-03-29 00:19:40 +02:00
krateng
c7f392a74f
Created some interlinking with the new album pages
2023-03-28 21:50:24 +02:00
krateng
dc2a8a54f9
Implemented additional album functions
2023-03-28 21:49:21 +02:00
krateng
4d1f810e92
Improved support for artistless albums
2023-03-28 21:49:07 +02:00
krateng
add7991604
Unified filter desciptions
2023-03-28 21:00:39 +02:00
krateng
4a0bd4b97e
More album functionality
2023-03-28 20:58:50 +02:00
krateng
27a2bc705a
Added web pages for albums
2023-03-28 20:26:46 +02:00
krateng
99cb8f4c64
Fixed DB locking
2023-03-28 19:58:25 +02:00
krateng
fd9987ec35
Implemented images for albums
2023-03-28 19:58:12 +02:00
krateng
69b456dc73
Scrobbling fixes
2023-03-28 18:41:49 +02:00
krateng
1a43aa302d
Updated API tests
2023-03-28 18:32:45 +02:00
krateng
1086dfee25
Implemented and changed more album stuff
2023-03-28 18:21:31 +02:00
krateng
6d55d60535
Implemented more album functions
2023-03-28 17:36:13 +02:00
krateng
e7b1cb469d
Implemented several functions for albums
2023-03-28 17:22:16 +02:00
krateng
4620ed1407
Added album support to URI handler
2023-03-28 16:43:29 +02:00
krateng
657bb7e6d7
Added setting for album information update
2023-03-28 16:14:29 +02:00
krateng
3a4f145f41
Added album support for scrobbling
2023-03-28 16:04:50 +02:00
krateng
7f62021d57
Added functions for albums
2023-03-28 15:37:28 +02:00
krateng
8f3df9881c
Added album support to database
2023-03-28 15:03:19 +02:00
krateng
11a5cb7401
Fixed scrobbler
2023-03-28 00:06:59 +02:00
krateng
b4c8a0d68b
Updated settings.md
2023-03-27 19:09:44 +02:00
krateng
88403d2583
Fetch smaller image from musicbrainz, fix GH-206
2023-03-27 18:10:53 +02:00
krateng
866d4ccd9b
Merge pull request #205 from FoxxMD/lsio
...
Refactor container image to use linuxserverio alpine base
2023-03-21 19:14:11 +01:00
FoxxMD
3db51a94d6
Add permission check and docs for PUID/PGID usage
2023-03-17 11:51:11 -04:00
FoxxMD
a9c29f158e
Refactor containerfile to align with lsio python install
...
* Simplify project file copy
* Reduce system and project dependency installs into single layer
* Add default permission ENVs for backwards-compatibility
2023-03-17 11:44:16 -04:00
krateng
ab8af32812
Merge pull request #204 from FoxxMD/imagePerf
...
Improve image rendering performance
2023-03-17 16:43:49 +01:00
FoxxMD
7bc2ba0237
Move image base to linuxserverio alpine base
...
krateng/maloja#96
2023-03-17 10:28:07 -04:00
FoxxMD
b8371347b7
Add configuration boolean for rendering album/artist icons
...
If a user has a slow internet connection or is using a low-power device they may wish to not render icons at all to prevent additional cpu/network load. Defaults to `true` to preserve existing behavior.
2023-03-16 15:21:02 -04:00
FoxxMD
1e3c6597d4
Lazy load tile and entity background images
...
CSS 'background-image:url' causes the browser to synchronously load images which prevents DOM from fully loading.
Replace this with lazyload.js to make
* js load style=background-image... after DOM is loaded and
* only load images in viewport
The end result is much faster *apparent* page loads as all DOM is loaded before images and a reduction in load for both client/server as images are only loaded if they become visible.
2023-03-16 15:01:54 -04:00
krateng
37210995fa
Merge pull request #202 from christophernewton/master
...
Fixed search response failure for manual scrobbling
2023-03-07 16:54:51 +01:00