Commit Graph

102 Commits

Author SHA1 Message Date
b06c87ff8d User: Remove broken Google login (various comments) 2023-06-11 16:34:59 +02:00
36f7c99cfb Update config.example.yml
Document save playback position in the config.example.yml
2023-05-07 17:49:43 +02:00
98301a2237 Add ability to disable all user notifications (#3473) 2023-01-05 23:08:05 +00:00
4fc5d43374 Update config.example.yml 2022-11-22 17:22:46 +00:00
9656067296 Add "light" and "auto" as accepted values for dark_mode 2022-11-22 17:08:32 +00:00
9eb2ad367e Correct config.example.yml dark_mode comment 2022-11-22 15:51:14 +00:00
3b39b8c772 Add table cleaning job (#3294) 2022-10-12 10:06:36 +02:00
7c45026383 Fix playlist limit 2022-09-28 12:21:23 +02:00
4818b89ab1 Allow to set maximum custom playlist length via a config variable. 2022-08-27 22:36:07 +02:00
3d77642a1e Disable decrypt_polling by default + add comment (#3244) 2022-08-06 17:09:10 +00:00
644ba46945 Remove mentions that decrypt_polling is broken
And add notice about bandwidth usage, related to https://github.com/iv-org/invidious/issues/3234
2022-08-06 10:09:45 +00:00
7f445f6167 Merge pull request #2915 from MathiusD/RefreshChannelsJob-frenquency
Allow configuration of the time between 2 RefreshChannelsJob
2022-02-25 00:04:48 +01:00
d8bb75be63 Document 'extend_desc' in config.example.yml
Thanks to "Le Jester" on Matrix for noticing that it was missing!
2022-02-23 21:50:30 +01:00
e60a1836fe Lint config.example.yml and config.cr
Follow lint indications :
- https://github.com/iv-org/invidious/pull/2915#discussion_r812396203
- https://github.com/iv-org/invidious/pull/2915#discussion_r812396807
2022-02-22 23:19:59 +01:00
fd0ac3a671 Update management of channel_refresh_interval
Follow indications:
https://github.com/iv-org/invidious/pull/2915#discussion_r811373503
2022-02-22 01:35:35 +01:00
dfab62ce48 Rename new property to channel_refresh_interval
Follow indications :
https://github.com/iv-org/invidious/pull/2915#discussion_r811373503
2022-02-22 00:46:26 +01:00
18197e7e3e Lint description of channel_refresh_time 2022-02-21 11:13:24 +01:00
f75a81c9ee Make configurable time between each RefreshChannelsJob 2022-02-21 10:53:20 +01:00
7e4690e43c Fix typos 2022-02-07 14:57:14 +02:00
e00f9a869d config: remove note about QUIC disabled at Google
The situation is back to normal.
2022-01-25 13:53:46 +01:00
cdc007c83c Specify the public schema for public videos
Unlike the other migrations, this one uses a bare table name to specify the table. This means it looks in the default search path. Unfortunately, the out of box search path is:

1. Schema with the same name as the user
2. Public

Because of this, if a schema exists with the same name as the DB user, the playlist_videos table will get created in _that_ schema, rather than the public schema, and then the grant statement will fail with an error like below if check_table is enabled as it keeps trying to create the table but failing on the grant statement:

```
2022-01-22 02:27:42 UTC [info] check_table: check_table: CREATE TABLE playlist_videos
Unhandled exception: relation "public.playlist_videos" does not exist (PQ::PQError)
  from /usr/share/crystal/src/primitives.cr:266:3 in 'handle_error'
  from lib/pg/src/pq/connection.cr:184:9 in 'handle_async_frames'
  from lib/pg/src/pq/connection.cr:162:7 in 'read'
  from lib/pg/src/pq/query.cr:53:14 in 'exec_all'
  from lib/db/src/db/database.cr:126:9 in '__crystal_main'
  from /usr/share/crystal/src/crystal/main.cr:110:5 in 'main'
  from src/env/__libc_start_main.c:94:2 in 'libc_start_main_stage2'
2022-01-22 02:27:43 UTC [info] check_table: check_table: CREATE TABLE playlist_videos
Unhandled exception: relation "public.playlist_videos" does not exist (PQ::PQError)
  from /usr/share/crystal/src/primitives.cr:266:3 in 'handle_error'
  from lib/pg/src/pq/connection.cr:184:9 in 'handle_async_frames'
  from lib/pg/src/pq/connection.cr:162:7 in 'read'
  from lib/pg/src/pq/query.cr:53:14 in 'exec_all'
  from lib/db/src/db/database.cr:126:9 in '__crystal_main'
  from /usr/share/crystal/src/crystal/main.cr:110:5 in 'main'
  from src/env/__libc_start_main.c:94:2 in 'libc_start_main_stage2'
```
2022-01-22 02:32:13 +00:00
7b9f5d74dc Create videos caching table as UNLOGGED 2022-01-09 16:58:29 +00:00
4940759627 Example config: Change 'use_quic' default value
Related to commit a120f143d7
Also point towards the Github issue.
2021-11-12 18:53:51 +01:00
a12571e748 Fix minor error in config.example.yml
Update the "note" for `locale`
2021-11-12 02:32:15 +01:00
ea0b1fdf44 Feature Request: Localization for trending (reword region doc) 2021-10-21 22:37:43 +03:00
d9c58c4837 Feature Request: Localization for trending iv-org#331 2021-10-21 14:54:15 +03:00
df968d1919 variable postgres username and database name (#2451) 2021-10-11 19:16:56 +00:00
adc12addfa Add config option to display source code URL in footer (#2450) 2021-10-07 13:53:12 +02:00
347c189f3f Merge pull request #1678 from Rjevski/idempotent-database-migrations
Make DB migrations idempotent.
2021-10-03 18:53:35 +00:00
9f5f5da894 config_example.yaml: document all possible options (#2083)
Fixes https://github.com/iv-org/documentation/issues/46
2021-07-16 20:34:40 +02:00
79e99908de Allow providing 12-Factor-style Database URL in config 2021-01-30 19:33:58 +00:00
ffa9e5dfab Make migrations (mostly) idempotent. 2021-01-17 14:20:34 +00:00
b566c4ba1a Untrack config.yml (#1557)
* Untrack config.yml

`config/config.yml` has been untracked and moved to `config/config.example.yml`.

The Dockerfile has been updated to copy all `config/config.*` files and to try
to move `config/config.example.yml` to `config/config.yml`. If a user supplied
`config/config.yml` exists it is not overwritten.

* Update Dockerfile to use `shard.lock`

* Fix tests
2020-12-10 08:18:30 +01:00
074497b0f6 Add migration script for polymer redesign 2020-06-15 18:20:31 -05:00
1eca969cf6 Add support for polymer redesign 2020-06-15 18:18:04 -05:00
61150c74d2 Move privacy type into playlists.sql 2020-04-14 18:09:48 -05:00
be055d9dcb Add support for custom playlists 2019-10-15 21:17:14 -04:00
418526af16 Provide db user in migrate-db-3646395.sh 2019-08-29 02:25:15 +02:00
18d66ddded Add 'needs_update' column for scheduling feed refresh 2019-06-01 10:19:18 -05:00
64464f23ae Add 'views' to channel_videos 2019-05-30 18:59:13 -05:00
42dd6326d5 Remove unnecessary index 2019-04-28 14:11:23 -05:00
698dfca319 Add migrate script for annotations.sql 2019-04-15 11:17:23 -05:00
3bcb98e644 Add config option to cache annotations from IA 2019-04-15 11:13:09 -05:00
c5001f3620 Add role to psql scripts 2019-04-06 07:38:33 -05:00
591a6b330a Remove 'crawl_threads', fix sleep in fibers 2019-03-25 09:23:42 -05:00
a1f49b279f Rename migrate scripts 2019-03-23 11:34:16 -05:00
fd26f9f34e Add support for premieres to search and feed 2019-03-22 14:54:35 -05:00
f0658bbd09 Add 'liveNow' to subscription feed 2019-03-22 14:52:57 -05:00
90715467a2 Set default value for 'subscribed' date 2019-03-03 20:44:29 -06:00
7425700009 Update pubsub to support lease_seconds 2019-03-03 20:40:24 -06:00