diff options
| author | TheFrenchGhosty <47571719+TheFrenchGhosty@users.noreply.github.com> | 2021-01-08 13:02:03 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-08 13:02:03 +0000 |
| commit | ba148d749f3f3b745704c35bde2f72ea194b1ddb (patch) | |
| tree | 92285de5250989637e805ea61dd046166fc24475 | |
| parent | e254d2de8ed9e895b27a6d93f2f67ee1544ad037 (diff) | |
| parent | 606dd11b4f9fb6fc2aaca85e18e6a2d750d5ad6c (diff) | |
| download | invidious-ba148d749f3f3b745704c35bde2f72ea194b1ddb.tar.gz invidious-ba148d749f3f3b745704c35bde2f72ea194b1ddb.tar.bz2 invidious-ba148d749f3f3b745704c35bde2f72ea194b1ddb.zip | |
Merge pull request #1647 from hackerncoder/removeOmarrothMentions
Remove omarroth mentions
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | kubernetes/Chart.yaml | 4 | ||||
| -rw-r--r-- | kubernetes/values.yaml | 2 | ||||
| -rw-r--r-- | shard.yml | 1 | ||||
| -rw-r--r-- | src/invidious/comments.cr | 2 | ||||
| -rw-r--r-- | src/invidious/helpers/helpers.cr | 1 | ||||
| -rw-r--r-- | src/invidious/users.cr | 2 |
7 files changed, 8 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 314a134f..8aa416ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# Note: This is no longer updated and links to omarroths repo, which doesn't exist anymore.
+
# 0.20.0 (2019-011-06)
# Version 0.20.0: Custom Playlists
diff --git a/kubernetes/Chart.yaml b/kubernetes/Chart.yaml index bb0838ad..9e4b793e 100644 --- a/kubernetes/Chart.yaml +++ b/kubernetes/Chart.yaml @@ -9,9 +9,9 @@ keywords: - video - privacy home: https://invidio.us/ -icon: https://raw.githubusercontent.com/omarroth/invidious/05988c1c49851b7d0094fca16aeaf6382a7f64ab/assets/favicon-32x32.png +icon: https://raw.githubusercontent.com/iv-org/invidious/05988c1c49851b7d0094fca16aeaf6382a7f64ab/assets/favicon-32x32.png sources: -- https://github.com/omarroth/invidious +- https://github.com/iv-org/invidious maintainers: - name: Leon Klingele email: mail@leonklingele.de diff --git a/kubernetes/values.yaml b/kubernetes/values.yaml index 4d037022..08def6e4 100644 --- a/kubernetes/values.yaml +++ b/kubernetes/values.yaml @@ -1,7 +1,7 @@ name: invidious image: - repository: omarroth/invidious + repository: iv-org/invidious tag: latest pullPolicy: Always @@ -3,6 +3,7 @@ version: 0.20.1 authors: - Omar Roth <omarroth@protonmail.com> + - Invidous team targets: invidious: diff --git a/src/invidious/comments.cr b/src/invidious/comments.cr index 8849c87f..0ac99ba5 100644 --- a/src/invidious/comments.cr +++ b/src/invidious/comments.cr @@ -242,7 +242,7 @@ end def fetch_reddit_comments(id, sort_by = "confidence") client = make_client(REDDIT_URL) - headers = HTTP::Headers{"User-Agent" => "web:invidious:v#{CURRENT_VERSION} (by /u/omarroth)"} + headers = HTTP::Headers{"User-Agent" => "web:invidious:v#{CURRENT_VERSION} (by github.com/iv-org/invidious)"} # TODO: Use something like #479 for a static list of instances to use here query = "(url:3D#{id}%20OR%20url:#{id})%20(site:invidio.us%20OR%20site:youtube.com%20OR%20site:youtu.be)" diff --git a/src/invidious/helpers/helpers.cr b/src/invidious/helpers/helpers.cr index e41f8317..1f56ec92 100644 --- a/src/invidious/helpers/helpers.cr +++ b/src/invidious/helpers/helpers.cr @@ -95,7 +95,6 @@ class Config property port : Int32 = 3000 # Port to listen for connections (overrided by command line argument) property host_binding : String = "0.0.0.0" # Host to bind (overrided by command line argument) property pool_size : Int32 = 100 # Pool size for HTTP requests to youtube.com and ytimg.com (each domain has a separate pool of `pool_size`) - property admin_email : String = "omarroth@protonmail.com" # Email for bug reports @[YAML::Field(converter: Preferences::StringToCookies)] property cookies : HTTP::Cookies = HTTP::Cookies.new # Saved cookies in "name1=value1; name2=value2..." format diff --git a/src/invidious/users.cr b/src/invidious/users.cr index 6bc2acd2..153e3b6a 100644 --- a/src/invidious/users.cr +++ b/src/invidious/users.cr @@ -427,7 +427,7 @@ def generate_captcha(key, db) end def generate_text_captcha(key, db) - response = make_client(TEXTCAPTCHA_URL, &.get("/omarroth@protonmail.com.json").body) + response = make_client(TEXTCAPTCHA_URL, &.get("/github.com/iv.org/invidious.json").body) response = JSON.parse(response) tokens = response["a"].as_a.map do |answer| |
