Commit graph

241 commits

Author SHA1 Message Date
child_duckling
df2f7b7216 Merge branch 'develop' 2022-03-08 18:07:59 -08:00
booploops
ae4dbb4a9a plugins update, added explore plugins 2022-03-08 17:10:36 -08:00
booploops
bd4a2e7d27 working on plugin pages 2022-03-08 02:26:47 -08:00
vapormusic
c5d86cd707 disable this for now 2022-03-05 22:16:59 +07:00
vapormusic
a26cb2380c fix miniplayer on top, add blur toggle on windows 2022-03-05 21:20:39 +07:00
child_duckling
159ee76432 general update checking improvements + jsdoc + dev mode notifs 2022-03-04 22:54:06 -08:00
Core
37030073d8 Just gonna do this 2022-03-03 10:59:29 +00:00
Core
be5b1d637f typescript is the best thing ever
and everyone should use it
2022-03-03 09:46:00 +00:00
Core
6a394f818d #509 Fix 2022-03-03 09:00:16 +00:00
booploops
19b4e1f73c added bootstrap-vue 2022-03-02 23:04:20 -08:00
booploops
6924c76f4c adds playlist track mapping 2022-03-02 15:05:41 -08:00
booploops
b446b82c7b improvements to controller scroll groups 2022-03-02 06:59:27 -08:00
booploops
a8375c5c59 adds playlist caching 2022-03-02 06:03:19 -08:00
JYW0803
aec0651ba0
Fix update (#534)
```
[2022-03-01 08:24:54.075] [error] TypeError: autoUpdater.checkForUpdate is not a function
    at Function.checkForUpdate (C:\Program Files\Cider\resources\app.asar\src\main\base\utils.ts:161:27)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
    at IpcMainImpl.<anonymous> (C:\Program Files\Cider\resources\app.asar\src\main\base\browserwindow.ts:976:13)
[2022-03-01 08:24:54.075] [error] (node:29508) UnhandledPromiseRejectionWarning: TypeError: autoUpdater.checkForUpdate is not a function
    at Function.checkForUpdate (C:\Program Files\Cider\resources\app.asar\src\main\base\utils.ts:161:27)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)
    at IpcMainImpl.<anonymous> (C:\Program Files\Cider\resources\app.asar\src\main\base\browserwindow.ts:976:13)
[2022-03-01 08:24:54.075] [error] (node:29508) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 4)
```
2022-03-01 12:26:11 -08:00
vapormusic
8e846e0dc6 change id 2022-03-01 19:17:38 +07:00
vapormusic
c2a0bf2f45 add metadata support 2022-03-01 19:12:15 +07:00
vapormusic
6e0bfa99be switch id 2022-03-01 19:12:15 +07:00
booploops
8013d663e9 added window style to settings 2022-02-28 23:57:47 -08:00
booploops
3f9bb100d7 will now write id to theme.json 2022-02-28 22:50:31 -08:00
booploops
e865e41b93 adds theme notifications 2022-02-28 22:42:02 -08:00
booploops
b4de904cd0 added open themes folder button 2022-02-28 22:12:38 -08:00
booploops
f46826d696 verify commit field exists 2022-02-28 22:06:46 -08:00
booploops
a60c91b379 changed how themes are saved 2022-02-28 22:01:14 -08:00
Core
2d16423106
#523 Patch 2022-03-01 03:37:20 +00:00
Core
89e0d7c104
Update notifications
Removed the shit tone of check for updates, made it manual
Redone the function in utils
Logging for autoupdater implemented
2022-02-27 18:34:40 +00:00
child_duckling
23dafc4036 check for update on launch, prep for operation balls 2022-02-25 22:54:50 -08:00
booploops
919fed493b better hot reloading for themes 2022-02-25 17:42:44 -08:00
vapormusic
25188864bd save library-albums into prefs 2022-02-25 14:36:38 +07:00
booploops
1f36f8e691 added artist-chip element 2022-02-24 04:31:03 -08:00
vapormusic
b2f959b6ff keep quant, remove dither 2022-02-24 14:15:13 +07:00
vapormusic
05980a65c1 remove dither for now 2022-02-24 13:18:03 +07:00
vapormusic
dc50d732ad test gc 2022-02-24 10:58:55 +07:00
vapormusic
c893304b5d chromecast (very botchy) 2022-02-23 22:17:04 +07:00
vapormusic
d0904bcdd3 fix sendAudio() 2022-02-23 13:32:00 +07:00
booploops
76f397d272 display repo full_name if description is not provided 2022-02-22 19:05:15 -08:00
booploops
b305fdbdc3 move app template handling to backend 2022-02-21 20:51:03 -08:00
vapormusic
abf6def954 privateEnabled 2022-02-22 08:33:23 +07:00
cryptofyre
ddf8d05204 move some stuff to case break. 2022-02-21 17:09:28 -06:00
cryptofyre
b0c4218bcc Change JSONC to JSON. 2022-02-21 15:23:48 -06:00
vapormusic
eb60f46493 fix themes 2022-02-21 12:42:06 +07:00
vapormusic
4b48917c37 fix themes for linux 2022-02-21 18:30:14 +07:00
Tobias Speicher
8edfddc409
Replace deprecated String.prototype.substr()
String.prototype.substr() is deprecated (see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr) so we replace it with slice() or substring() which work similarily but aren't deprecated.
Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
2022-02-20 15:09:12 +01:00
Maikiwi
462d77fc1e bring back auto upd 2022-02-19 22:05:37 -08:00
kyw504100
fe16fe4098
Plug-in entries in sub-menu 2022-02-20 02:38:20 +08:00
booploops
02ba9a7c42 Added resume from history 2022-02-19 01:13:22 -08:00
child_duckling
2991a92b68 remote testing on dev env and nodeintegration on webview 2022-02-19 00:34:15 -08:00
Maikiwi
858c283bcc failsafes and fixed buttons 2022-02-19 00:19:16 -08:00
booploops
4d18080395 Added dirName 2022-02-18 22:34:43 -08:00
booploops
a42a88ad6c support for nested files in themes, added /plugins 2022-02-18 21:43:07 -08:00
booploops
c9f17a71bd adds audiolabs 2022-02-18 19:03:30 -08:00