Fully implemented our vision for Multi-user sync via state:sync command
This commit is contained in:
94
NEWS.md
94
NEWS.md
@@ -1,5 +1,21 @@
|
||||
# Old Updates
|
||||
|
||||
### 2024-12-30
|
||||
|
||||
We have removed the old environment variables `WS_CRON_PROGRESS` and `WS_CRON_PUSH` in favor of the new ones
|
||||
`WS_SYNC_PROGRESS` and `WS_PUSH_ENABLED`. please update your environment variables accordingly. We have also added
|
||||
new FAQ entry about watch progress syncing via [this link](FAQ.md#sync-watch-progress).
|
||||
|
||||
### 2024-10-07
|
||||
|
||||
We have added a WebUI page for Custom GUIDs and stabilized on `v1.0` for the `guid.yaml` file spec. We strongly
|
||||
recommend
|
||||
to use the `WebUI` to manage the GUIDs, as it's much easier to use than editing the `guid.yaml` file directly. and both
|
||||
the
|
||||
`WebUI` and `API` have safeguards to prevent you from breaking the parser. For more information please check out the
|
||||
associated
|
||||
FAQ entry about it at [this link](FAQ.md#advanced-how-to-extend-the-guid-parser-to-support-more-guids-or-custom-ones).
|
||||
|
||||
### 2024-09-14
|
||||
|
||||
We have recently added support for extending WatchState with more GUIDs, as of now, the support for it is done via
|
||||
@@ -14,46 +30,61 @@ or request the maintainer to add support for it.
|
||||
### 2024-08-19
|
||||
|
||||
We have migrated the `state:push` task into the new events system, as such the old task `state:push` is now gone.
|
||||
To enable the new event handler for push events, use the new environment variable `WS_PUSH_ENABLED` and set it to `true`.
|
||||
To enable the new event handler for push events, use the new environment variable `WS_PUSH_ENABLED` and set it to
|
||||
`true`.
|
||||
Right now, it's disabled by default. However, for people who had the old task enabled, it will reuse that setting.
|
||||
|
||||
Keep in mind, the new event handler is more efficient and will only push data when there is a change in the play state. And it's much faster
|
||||
Keep in mind, the new event handler is more efficient and will only push data when there is a change in the play state.
|
||||
And it's much faster
|
||||
than the old task. This event handler will push data within a minute of the change.
|
||||
|
||||
PS: Please enable the task by setting its new environment variable `WS_PUSH_ENABLED` to `true`. The old `WS_CRON_PUSH` is now gone.
|
||||
PS: Please enable the task by setting its new environment variable `WS_PUSH_ENABLED` to `true`. The old `WS_CRON_PUSH`
|
||||
is now gone.
|
||||
and will be removed in the future releases.
|
||||
|
||||
### 2024-08-18
|
||||
|
||||
We have started migrating the old events system to a new one, so far we have migrated the `progress` and `requests` to it. As such,
|
||||
The old tasks `state:progress` and `state:requests` are now gone. To control if you want to enable the watch progress, there is new
|
||||
environment variable `WS_SYNC_PROGRESS` which you can set to `true` to enable the watch progress. It's disabled by default.
|
||||
We have started migrating the old events system to a new one, so far we have migrated the `progress` and `requests` to
|
||||
it. As such,
|
||||
The old tasks `state:progress` and `state:requests` are now gone. To control if you want to enable the watch progress,
|
||||
there is new
|
||||
environment variable `WS_SYNC_PROGRESS` which you can set to `true` to enable the watch progress. It's disabled by
|
||||
default.
|
||||
|
||||
We will continue to migrate the rest of the events to the new system, and we will keep you updated.
|
||||
|
||||
### 2024-08-10
|
||||
|
||||
I have recently added new experimental feature, to play your content directly from the WebUI. This feature is still in
|
||||
alpha, and missing a lot of features. But it's a start. Right now it does auto transcode on the fly to play any content in the browser.
|
||||
alpha, and missing a lot of features. But it's a start. Right now it does auto transcode on the fly to play any content
|
||||
in the browser.
|
||||
|
||||
The feature requires that you mount your media directories to the `WatchState` container similar to the `File integrity` feature. I have plans to expand
|
||||
the feature to support more controls, however, right now it's only support basic subtitles streams and default audio stream or first audio stream.
|
||||
The feature requires that you mount your media directories to the `WatchState` container similar to the `File integrity`
|
||||
feature. I have plans to expand
|
||||
the feature to support more controls, however, right now it's only support basic subtitles streams and default audio
|
||||
stream or first audio stream.
|
||||
|
||||
The transcoder works by converting the media on the fly to `HLS` segments, and the subtitles are selectable via the player ui which are also converted to `vtt` format.
|
||||
The transcoder works by converting the media on the fly to `HLS` segments, and the subtitles are selectable via the
|
||||
player ui which are also converted to `vtt` format.
|
||||
|
||||
Expects bugs and issues, as the feature is still in alpha. But I would love to hear your feedback. You can play the media by visiting
|
||||
the history page of the item you will see red play button on top right corner of the page. If the items has a play button, then you correctly mounted
|
||||
Expects bugs and issues, as the feature is still in alpha. But I would love to hear your feedback. You can play the
|
||||
media by visiting
|
||||
the history page of the item you will see red play button on top right corner of the page. If the items has a play
|
||||
button, then you correctly mounted
|
||||
the media directories. otherwise, the button be disabled with tooltip of `Media is inaccessible`.
|
||||
|
||||
The feature is not meant to replace your backend media player, the purpose of this feature is to quickly check the media without leaving the WebUI.
|
||||
The feature is not meant to replace your backend media player, the purpose of this feature is to quickly check the media
|
||||
without leaving the WebUI.
|
||||
|
||||
### 2024-08-01
|
||||
|
||||
We recently enabled listening on tls connections via `8443` which can be controlled by `HTTPS_PORT` environment variable.
|
||||
We recently enabled listening on tls connections via `8443` which can be controlled by `HTTPS_PORT` environment
|
||||
variable.
|
||||
Before today, we simply only exposed the port via the `Dockerfile`, but we weren't listening for connections on it.
|
||||
|
||||
However, please keep in mind that the certificate is self-signed, and you might get a warning from your browser. You can
|
||||
either accept the warning or add the certificate to your trusted certificates. We strongly recommend using a reverse proxy.
|
||||
either accept the warning or add the certificate to your trusted certificates. We strongly recommend using a reverse
|
||||
proxy.
|
||||
instead of relying on self-signed certificates.
|
||||
|
||||
### 2024-07-22
|
||||
@@ -62,14 +93,18 @@ We have recently added a new WebUI feature, `File integrity`, this feature will
|
||||
are reporting files that are not available on the disk. This feature is still in alpha, and we are working on improving
|
||||
it.
|
||||
|
||||
This feature `REQUIRES` that you mount your media directories to the `WatchState` container preferably as readonly. There is plans to add
|
||||
This feature `REQUIRES` that you mount your media directories to the `WatchState` container preferably as readonly.
|
||||
There is plans to add
|
||||
a path replacement feature to allow you change the pathing, but it's not implemented yet.
|
||||
|
||||
This feature will work on both local and remote cloud storages provided they are mounted into the container. We also may recommend not to
|
||||
use this feature depending on how your cloud storage provider treats file stat calls. As it might lead to unnecessary money spending. and of course
|
||||
This feature will work on both local and remote cloud storages provided they are mounted into the container. We also may
|
||||
recommend not to
|
||||
use this feature depending on how your cloud storage provider treats file stat calls. As it might lead to unnecessary
|
||||
money spending. and of course
|
||||
it will be slower.
|
||||
|
||||
For more information about how we cache the stat calls, please refer to the [FAQ](FAQ.md#How-does-the-file-integrity-feature-works).
|
||||
For more information about how we cache the stat calls, please refer to
|
||||
the [FAQ](FAQ.md#How-does-the-file-integrity-feature-works).
|
||||
|
||||
### 2024-07-06
|
||||
|
||||
@@ -111,8 +146,10 @@ can be used. This environment variable can be enabled by setting `WS_API_AUTO=tr
|
||||
|
||||
### 2024-05-14
|
||||
|
||||
We are happy to announce the beta testing of the `WebUI`. To get started on using it you just need to visit the url `http://localhost:8080` We are supposed to
|
||||
enabled it by default tomorrow, but we decided to give you a head start. We are looking forward to your feedback. If you don't use the `WebUI` then you need to
|
||||
We are happy to announce the beta testing of the `WebUI`. To get started on using it you just need to visit the url
|
||||
`http://localhost:8080` We are supposed to
|
||||
enabled it by default tomorrow, but we decided to give you a head start. We are looking forward to your feedback. If you
|
||||
don't use the `WebUI` then you need to
|
||||
add the environment variable `WEBUI_ENABLED=0` in your `compose.yaml` file. and restart the container.
|
||||
|
||||
### 2024-05-13
|
||||
@@ -128,8 +165,10 @@ Note: `WS_WEBUI_ENABLED` will be gone in few weeks, However it will still work f
|
||||
### 2024-05-05
|
||||
|
||||
**Edit** - We received requests that people are exposing watchstate externally, and there was concern that having open
|
||||
webhook endpoints might lead to abuse. As such, we have added a new environment variable `WS_SECURE_API_ENDPOINTS`. Simply set
|
||||
the environment variable to `1` to secure the webhook endpoint. This means you have to add `?apikey=yourapikey` to the end
|
||||
webhook endpoints might lead to abuse. As such, we have added a new environment variable `WS_SECURE_API_ENDPOINTS`.
|
||||
Simply set
|
||||
the environment variable to `1` to secure the webhook endpoint. This means you have to add `?apikey=yourapikey` to the
|
||||
end
|
||||
of the webhook endpoint.
|
||||
|
||||
-----
|
||||
@@ -166,9 +205,12 @@ All commands that was accepting backend name as argument now accepts `-s, --sele
|
||||
the command interface more consistent and easier to use.
|
||||
|
||||
Another breaking change is the removal of the `-c, --config` flag from all commands that was accepting it. This flag was
|
||||
used to override the default `servers.yaml` file. This was not working as expected as there are more than just the `servers.yaml`
|
||||
to consider like, the state of cache, and the state of the database. As such, we have removed this flag. However, we have
|
||||
added a new environment variable called `WS_BACKENDS_FILE` which can be used to override the default `servers.yaml` file.
|
||||
used to override the default `servers.yaml` file. This was not working as expected as there are more than just the
|
||||
`servers.yaml`
|
||||
to consider like, the state of cache, and the state of the database. As such, we have removed this flag. However, we
|
||||
have
|
||||
added a new environment variable called `WS_BACKENDS_FILE` which can be used to override the default `servers.yaml`
|
||||
file.
|
||||
We strongly recommend not to use it as it might lead to unexpected behavior.
|
||||
|
||||
We started working on a `Web API` which hopefully will lead to a `web frontend` to manage the tool. This is a long
|
||||
|
||||
Reference in New Issue
Block a user