-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,67 @@ | ||
# 0.18.0 (2019-06-06) | ||
|
||
# Version 0.18.0: Native Notifications and Optimizations | ||
|
||
Hope everyone has been doing well. This past month there have been [97 commits](https://github.com/omarroth/invidious/compare/0.17.0...0.18.0) from 10 contributors. For the most part changes this month have been on optimizing various parts of the site, mainly subscription feeds and support for serving images and other assets. | ||
|
||
I'm quite happy to mention that support for Greek (`el`) has been added, which I hope will continue to make the site accessible for more users. | ||
|
||
Subscription feeds will now only update when necessary, rather than periodically. This greatly lightens the load on DB as well as making the feeds generally more responsive when changing subscriptions, importing data, and when receiving new uploads. | ||
|
||
Caching for images and other assets should be greatly improved with [#456](https://github.com/omarroth/invidious/issues/456). JavaScript has been pulled out into separate files where possible to take advantage of this, which should result in lighter pages and faster load times. | ||
|
||
This past month several people have encountered issues with downloads and watching high quality video through the site, see [#532](https://github.com/omarroth/invidious/issues/532) and [#562](https://github.com/omarroth/invidious/issues/562). For this coming month I've allocated some more hardware which should help with this, and I'm also looking into optimizing how videos are currently served. | ||
|
||
## For Developers | ||
|
||
`viewCount` is now available for `/api/v1/popular` and all videos returned from `/api/v1/auth/notifications`. Both also now provide `"type"` for indicating available information for each object. | ||
|
||
An `/authorize_token` page is now available for more easily creating new tokens for use in applications, see [this comment](https://github.com/omarroth/invidious/issues/473#issuecomment-496230812) in [#473](https://github.com/omarroth/invidious/issues/473) for more details. | ||
|
||
A POST `/api/v1/auth/notifications` endpoint is also now available for correctly returning notifications for 150+ channels. | ||
|
||
## For Administrators | ||
|
||
There are two new schema changes for administrators: `views` for adding view count to the popular page, and `feed_needs_update` for tracking feed changes. | ||
|
||
As always the relevant migration scripts are provided which should run when following instructions for [updating](https://github.com/omarroth/invidious/wiki/Updating). Otherwise, adding `check_tables: true` to your config will automatically make the required changes. | ||
|
||
## Native Notifications | ||
|
||
[<img src="https://omar.yt/81c3ae1839831bd9300d75e273b6552a86dc2352/native_notification.png" height="160" width="472">](https://omar.yt/81c3ae1839831bd9300d75e273b6552a86dc2352/native_notification.png "Example of native notification, available in repository under screnshots/native_notification.png") | ||
|
||
It is now possible to receive [Web notifications](https://developer.mozilla.org/en-US/docs/Web/API/Notifications_API) from subscribed channels. | ||
|
||
You can enable notifications by clicking "Enable web notifications" in your preferences. Generally they appear within 20-60 seconds of a new video being uploaded, and I've found them to be an enormous quality of life improvement. | ||
|
||
Although it has been fairly stable, please feel free to report any issues you find [here](https://github.com/omarroth/invidious/issues) or emailing me directly at [email protected]. | ||
|
||
Important to note for administrators is that instances require [`use_pubsub_feeds`](https://github.com/omarroth/invidious/wiki/Configuration) and must be served over HTTPS in order to correctly send web notifications. | ||
|
||
## Finances | ||
|
||
### Donations | ||
|
||
- [Patreon](https://www.patreon.com/omarroth) : \$49.73 | ||
- [Liberapay](https://liberapay.com/omarroth) : \$100.57 | ||
- Crypto : ~\$11.12 (converted from BCH, BTC) | ||
- Total : \$161.42 | ||
|
||
### Expenses | ||
|
||
- invidious-load1 (nyc1) : \$10.00 (load balancer) | ||
- invidious-update1 (s-1vcpu-1gb) : \$5.00 (updates feeds) | ||
- invidious-node1 (s-1vcpu-1gb) : \$5.00 (web server) | ||
- invidious-node2 (s-1vcpu-1gb) : \$5.00 (web server) | ||
- invidious-node3 (s-1vcpu-1gb) : \$5.00 (web server) | ||
- invidious-node4 (s-1vcpu-1gb) : \$5.00 (web server) | ||
- invidious-node5 (s-1vcpu-1gb) : \$5.00 (web server) | ||
- invidious-node6 (s-1vcpu-1gb) : \$5.00 (web server) | ||
- invidious-db1 (s-4vcpu-8gb) : \$40.00 (database) | ||
- Total : \$85.00 | ||
|
||
See you all next month! | ||
|
||
# 0.17.0 (2019-05-06) | ||
|
||
# Version 0.17.0: Player and Authentication API | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: invidious | ||
version: 0.17.0 | ||
version: 0.18.0 | ||
|
||
authors: | ||
- Omar Roth <[email protected]> | ||
|