1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00
Commit Graph

83 Commits

Author SHA1 Message Date
krateng
4682914b88 Ensured API consistency to v2 for scrobbling 2022-04-07 05:25:10 +02:00
krateng
781ed66357 Fixed audioscrobbler APIs 2022-04-06 22:51:14 +02:00
krateng
2720dc1be5 Removed old API key functions 2022-04-06 22:46:43 +02:00
krateng
34db81ccef Adapted audioscrobbler legacy API to new architecture 2022-04-06 22:45:56 +02:00
krateng
c676e0a5bf Adapted audioscrobbler API to new architecture 2022-04-06 22:22:18 +02:00
krateng
08bd352641 Adapted listenbrainz API to new architecture 2022-04-06 22:13:16 +02:00
krateng
de18ecff26 More elegant client checking for scrobbles 2022-04-06 21:08:14 +02:00
krateng
24c65d4acc Removed GET scrobbling 2022-04-06 17:44:59 +02:00
krateng
1257768e33 Reworked scrobble handling 2022-04-06 17:42:48 +02:00
krateng
e1ce80131a Added export to web interface 2022-04-04 18:31:04 +02:00
krateng
ba5b0c8957 Fixed images in search results 2022-04-03 16:34:10 +02:00
krateng
9f8e691924 Moved image handling to top level module 2022-03-27 22:02:24 +02:00
krateng
dad027677e More imports 2022-03-25 19:58:34 +01:00
krateng
fce450fac3 Fixed another missing import 2022-03-25 19:55:58 +01:00
krateng
822895461e Fixed backup from web interface 2022-03-25 19:50:16 +01:00
krateng
cc24d48e65 Added support for themes to procrastinate from actually needed work 2022-03-18 01:59:47 +01:00
krateng
2930d40685 Fixed search and image upload 2022-03-06 04:52:10 +01:00
krateng
e398dd3ac1 A few fixes 2022-03-06 02:58:02 +01:00
krateng
bdbb644d8e Complete reorganization of process control 2022-03-06 01:58:33 +01:00
krateng
aff56c9069 Logging 2022-03-02 04:52:04 +01:00
krateng
bde06deb4f Fixed cache trimming 2022-02-19 08:02:07 +01:00
krateng
deb35ec042 Scrobbling fixes 2022-02-18 05:33:34 +01:00
krateng
b95d1e8b0c Even more fixes 2022-02-14 06:45:53 +01:00
krateng
73564eccc1 More fixes 2022-02-14 06:42:27 +01:00
krateng
b53df53c40 Fixes 2022-02-14 06:39:18 +01:00
krateng
fee94a88c5 Scrobble origin is now saved 2022-02-14 06:07:54 +01:00
krateng
8db87bdbc5 Various fixes 2022-02-13 07:45:22 +01:00
krateng
a64d3610d3 Fixed convoluted old scrobbling functionality 2022-02-13 06:15:29 +01:00
krateng
034f8b32c7 Merge branch 'master' into v3 2022-02-13 05:57:53 +01:00
krateng
b3002b1578 Fixed Plex scrobbling (new web interface) 2022-01-26 07:34:17 +01:00
krateng
efad4379be Added log output, GH-98 2022-01-16 16:49:17 +01:00
krateng
65a076c249 Replaced old camelCase functions 2022-01-07 04:57:13 +01:00
krateng
80acf6275f Moved API key checking to proper module 2022-01-06 05:19:56 +01:00
krateng
9370e62a47 Restored API info, fix FoxxMD/multi-scrobbler#38 2022-01-01 06:43:02 +01:00
krateng
e62c637aa0 Implemented initial support for importing scrobbles 2021-12-31 23:13:08 +01:00
krateng
83f1956256 Removed tuple-version use 2021-12-26 21:36:58 +01:00
krateng
af569ae983 Added backup from web interface 2021-12-26 20:53:38 +01:00
krateng
0ec93d7d0f Reworked pkginfo again 2021-12-25 23:43:34 +01:00
krateng
6aee8c7a48 Implemented web interface for API key management, close GH-24 2021-12-25 03:30:39 +01:00
krateng
3ee68e75ac Ready to finally merge, fix GH-25 2021-12-21 23:05:36 +01:00
krateng
6ccbf68923 Replaced more settings calls, added missing settings 2021-12-19 22:18:42 +01:00
krateng
4186171b8f Replaced settings calls 2021-12-19 21:41:43 +01:00
krateng
b39e2b889a Added description for some settings 2021-12-19 21:04:43 +01:00
krateng
e597ba8504 More work on new settings 2021-12-14 21:19:15 +01:00
krateng
9b98b3db3c Listenbrainz API now returns user name 2021-11-12 17:23:55 +01:00
krateng
33af60ed2c Updated listenbrainz endpoint, should fix GH-86 2021-11-12 17:16:59 +01:00
Brian Pepple
d1b598a32b
Refactoring (#83)
* Merge isinstance calls

* Inline variable that is immediately returned

* Replace set() with comprehension

* Replace assignment with augmented assignment

* Remove unnecessary else after guard condition

* Convert for loop into list comprehension

* Replace unused for index with underscore

* Merge nested if conditions

* Convert for loop into list comprehension

* Convert for loop into set comprehension

* Remove unnecessary else after guard condition

* Replace if statements with if expressions

* Simplify sequence comparison

* Replace multiple comparisons with in operator

* Merge isinstance calls

* Merge nested if conditions

* Add guard clause

* Merge duplicate blocks in conditional

* Replace unneeded comprehension with generator

* Inline variable that is immediately returned

* Remove unused imports

* Replace unneeded comprehension with generator

* Remove unused imports

* Remove unused import

* Inline variable that is immediately returned

* Swap if/else branches and remove unnecessary else

* Use str.join() instead of for loop

* Multiple refactors

- Remove redundant pass statement
- Hoist repeated code outside conditional statement
- Swap if/else to remove empty if body

* Inline variable that is immediately returned

* Simplify generator expression

* Replace if statement with if expression

* Multiple refactoring

- Replace range(0, x) with range(x)
- Swap if/else branches
- Remove unnecessary else after guard condition

* Use str.join() instead of for loop

* Hoist repeated code outside conditional statement

* Use str.join() instead of for loop

* Inline variables that are immediately returned

* Merge dictionary assignment with declaration

* Use items() to directly unpack dictionary values

* Extract dup code from methods into a new one
2021-10-19 14:58:24 +02:00
Krateng
c4a9c6dc0f Fixed scrobbles view 2021-01-12 18:47:18 +01:00
Krateng
c86f3597fd Added proper multi-artist scrobbling via API 2021-01-10 15:30:11 +01:00
Krateng
adfd6d2fc2 Fixes 2021-01-06 21:53:43 +01:00