jmt-gh
e3ec5dd506
convert sessions page to use settings content component
2022-11-25 21:08:10 -08:00
jmt-gh
762748225d
convert settings page to use settings content component
2022-11-25 21:07:41 -08:00
jmt-gh
4db34e0c56
Add new settings content component
...
This commit adds a new settings conent component. This is a container
component for the settings pages, so that they all get the same
formatting by default. It handles the header text, description text, and
any "add new" plus button as needed.
2022-11-25 21:06:18 -08:00
advplyr
fb078d05bc
Merge pull request #1218 from jmt-gh/fix_notifications_ui
...
Update notification settings UI to match other pages
2022-11-25 14:01:00 -06:00
jmt-gh
f59edffa43
update notification settings to match other pages
2022-11-25 11:04:11 -08:00
advplyr
7aa0ddb71f
Merge branch 'master' into playlists
2022-11-25 08:09:46 -06:00
advplyr
a0a6256c7a
Merge pull request #1212 from Weldawadyathink/master
...
Improve title naming for single file audiobooks when opening RSS feed
2022-11-25 06:21:55 -06:00
advplyr
df7e331605
Update server/objects/FeedEpisode.js
2022-11-25 06:21:50 -06:00
Spenser Bushey
8c23704e17
Merge branch 'advplyr:master' into master
2022-11-24 23:12:55 -08:00
Spenser Bushey
12abb1731c
Single file audiobook rss feed naming logic moved to FeedEpisode.js
2022-11-24 23:10:20 -08:00
advplyr
180293ebc1
Update:Cleanup socket usage & add func for emitting events to admin users
2022-11-24 16:35:26 -06:00
advplyr
e2af33e136
Update:Refactor socket connection management into SocketAuthority
2022-11-24 15:53:58 -06:00
advplyr
42e68edc65
Fix:Users table activity & cleanup
2022-11-24 14:44:09 -06:00
advplyr
47e732c213
Merge branch 'master' of https://github.com/advplyr/audiobookshelf
2022-11-24 13:51:53 -06:00
advplyr
77a86d92f4
Update:Socket event for getting online users & test event for messaging all online users
2022-11-24 13:51:41 -06:00
advplyr
64a8a046c1
Update:Backups API endpoints, add get all backups route, update socket init event payload
2022-11-24 13:14:29 -06:00
Spenser Bushey
1f02cbddd3
Merge branch 'advplyr:master' into master
2022-11-23 22:37:02 -08:00
Spenser Bushey
5e7bca02b3
RSS feeds for single file audiobooks now use book title
2022-11-23 22:36:07 -08:00
advplyr
097f9549b1
Merge pull request #1211 from lkiesow/started-at
...
Fix startedAt in progress API
2022-11-23 17:37:40 -06:00
Lars Kiesow
45434b16e0
Fix startedAt in progress API
...
If no progress had been set before, setting `startedAt` did not work and
it would always been set to `finishedAt` or `Date.now()`. Settings this
if any progress had already been recorded did work.
This fixes the problem so that setting `startedAt` it properly works in
both cases.
2022-11-24 00:16:20 +01:00
advplyr
6af5ac2be1
Merge pull request #1208 from konradorlinski/polish-translation
...
Add more polish translation
2022-11-23 16:08:20 -06:00
advplyr
34ff7efa27
Merge pull request #1205 from lkiesow/api-start-end-date
...
Allow specifying start and end of progress via API
2022-11-23 16:07:53 -06:00
ko
8f4391003f
Add more polish translation
2022-11-23 18:29:35 +01:00
advplyr
ecefb30f3d
Merge pull request #1206 from lkiesow/400-bad-request
...
Respond with bad request to unvalid request data
2022-11-23 07:27:18 -06:00
Lars Kiesow
a8162b57ba
Respond with bad request to unvalid request data
...
This patch updates the batch progress update endpoint to respond with a
`400 Bad Request` instead of a `500 Internal Server Error` if a user
sends an invalid request with no body. This is a user error after all.
```
❯ curl -i -X PATCH \
'http://127.0.0.1:3333/api/me/progress/batch/update ' \
-H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5Q_MoRptP0oI' \
-H 'Content-Type: application/json'
HTTP/1.1 400 Bad Request
…
Missing request payload
```
2022-11-23 02:15:36 +01:00
Lars Kiesow
b0edac4234
Allow specifying start and end of progress via API
...
This patch is a minor extension to the update progress and batch update
progress API and allows you to specify `finishedAt` and `startedAt` when
updating a progress.
If not specified, both values are still automatically set to the current
time. If just `finishedAt` is specified, `startedAt` is set to the same
value.
Example API request:
```
❯ curl -i -X PATCH \
'http://127.0.0.1:3333/api/me/progress/li_ywupqxw5d22adcadpa ' \
-H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VySWQiOiJyb290IiwidXNlcm5hbWUiOiJyb290IiwiaWF0IjoxNjY4OTYxNjAxfQ._NbilCoFy_hfoqy7uvbV4E_0X6qgLYapQ_MoRptP0oI' \
-H 'Content-Type: application/json' \
--data-raw '{"isFinished":true, "finishedAt": 1668556852000, "startedAt": 1668056852000}'
```
2022-11-23 01:32:52 +01:00
advplyr
98c4045a71
Setting up Playlist model
2022-11-22 18:08:11 -06:00
advplyr
24e90e2ead
Merge branch 'master' of https://github.com/advplyr/audiobookshelf
2022-11-22 16:58:05 -06:00
advplyr
145e0217b6
Update:Media session show next/prev track buttons #1201
2022-11-22 16:57:18 -06:00
advplyr
e5925fb1b6
Create config.yml
2022-11-22 16:27:59 -06:00
advplyr
9e416d02bd
Merge pull request #1200 from springsunx/patch-1
...
Update _id.vue
2022-11-22 04:33:56 -06:00
SunX
82b7068130
Update _id.vue
2022-11-22 12:51:37 +08:00
advplyr
579ee36857
Merge pull request #1197 from Hallo951/patch-1
...
Update de.json
2022-11-21 10:08:57 -06:00
advplyr
4f2d7a519d
Update client/strings/de.json
2022-11-21 10:08:51 -06:00
advplyr
a3642d92c5
Update client/strings/de.json
2022-11-21 10:08:45 -06:00
advplyr
224f36164f
Update client/strings/de.json
2022-11-21 10:08:39 -06:00
Hallo951
638c220ae8
Update de.json
2022-11-21 16:27:41 +01:00
advplyr
51070b3e7b
Merge branch 'master' of https://github.com/advplyr/audiobookshelf
2022-11-21 07:52:38 -06:00
advplyr
0aa2723063
Update:API status codes and update server settings response payload
2022-11-21 07:52:33 -06:00
advplyr
1af66c8e8b
Merge pull request #1196 from tomazed/master
...
Update fr.json
2022-11-21 07:18:51 -06:00
advplyr
7df8795d52
Fix:Icon sizes
2022-11-21 07:18:10 -06:00
Tomazed
a0e9ae7092
Merge branch 'advplyr:master' into master
2022-11-21 13:54:48 +01:00
Tomazed
0f0d8e317a
Update fr.json
2022-11-21 13:54:05 +01:00
advplyr
3d5ca7d5c4
Merge pull request #1192 from lkiesow/update-edit-author-modal
...
Update Author Modal on Changes
2022-11-21 06:43:32 -06:00
advplyr
e33104fa2b
Merge pull request #1193 from lkiesow/no-feed-no-error
...
No feed log level
2022-11-21 06:40:38 -06:00
advplyr
a2f1723642
Update log level for RSS feed requests
2022-11-21 06:39:32 -06:00
advplyr
93357cf280
Merge pull request #1195 from springsunx/patch-1
...
Update zh-cn.json
2022-11-21 06:28:53 -06:00
advplyr
767427c787
Merge pull request #1194 from burghy86/patch-5
...
Update it.json
2022-11-21 06:27:52 -06:00
SunX
9377631896
Update zh-cn.json
2022-11-21 19:01:34 +08:00
burghy86
d08af094b8
Update it.json
...
fix and add new string
2022-11-21 11:40:40 +01:00