diff --git a/CHANGELOG.md b/CHANGELOG.md index c1721c916..04e64be3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ seaweedchan: - External image embedding - Account for time options in youtube links for embedding +- Once again remove /v/ and /vg/ archiving... ;_; ### 1.1.6 - 2013-05-01 seaweedchan: diff --git a/builds/4chan-X.js b/builds/4chan-X.js index 837b32d25..2d5b56e02 100644 --- a/builds/4chan-X.js +++ b/builds/4chan-X.js @@ -7546,9 +7546,6 @@ return "//archive.foolz.us/" + boardID + "/full_image/" + filename; case 'u': return "//nsfw.foolz.us/" + boardID + "/full_image/" + filename; - case 'v': - case 'vg': - return "//archive.nihil-ad-rem.net/" + boardID + "/full_image/" + filename; case 'po': return "//archive.thedarkcave.org/" + boardID + "/full_image/" + filename; case 'hr': @@ -7631,11 +7628,6 @@ boards: ['a', 'co', 'gd', 'jp', 'm', 'q', 'sp', 'tg', 'tv', 'vp', 'vr', 'wsg'], type: 'foolfuuka' }, - 'NihilAdRem': { - base: '//archive.nihil-ad-rem.net', - boards: ['v', 'vg'], - type: 'foolfuuka' - }, 'NSFWFoolz': { base: 'https://nsfw.foolz.us', boards: ['u'], diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index fa8040cbd..f97bfd9db 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -7567,9 +7567,6 @@ return "//archive.foolz.us/" + boardID + "/full_image/" + filename; case 'u': return "//nsfw.foolz.us/" + boardID + "/full_image/" + filename; - case 'v': - case 'vg': - return "//archive.nihil-ad-rem.net/" + boardID + "/full_image/" + filename; case 'po': return "//archive.thedarkcave.org/" + boardID + "/full_image/" + filename; case 'hr': @@ -7652,11 +7649,6 @@ boards: ['a', 'co', 'gd', 'jp', 'm', 'q', 'sp', 'tg', 'tv', 'vp', 'vr', 'wsg'], type: 'foolfuuka' }, - 'NihilAdRem': { - base: '//archive.nihil-ad-rem.net', - boards: ['v', 'vg'], - type: 'foolfuuka' - }, 'NSFWFoolz': { base: 'https://nsfw.foolz.us', boards: ['u'], diff --git a/builds/crx/script.js b/builds/crx/script.js index a0e3ffc46..b4e0b3e18 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -7550,9 +7550,6 @@ return "//archive.foolz.us/" + boardID + "/full_image/" + filename; case 'u': return "//nsfw.foolz.us/" + boardID + "/full_image/" + filename; - case 'v': - case 'vg': - return "//archive.nihil-ad-rem.net/" + boardID + "/full_image/" + filename; case 'po': return "//archive.thedarkcave.org/" + boardID + "/full_image/" + filename; case 'hr': @@ -7635,11 +7632,6 @@ boards: ['a', 'co', 'gd', 'jp', 'm', 'q', 'sp', 'tg', 'tv', 'vp', 'vr', 'wsg'], type: 'foolfuuka' }, - 'NihilAdRem': { - base: '//archive.nihil-ad-rem.net', - boards: ['v', 'vg'], - type: 'foolfuuka' - }, 'NSFWFoolz': { base: 'https://nsfw.foolz.us', boards: ['u'], diff --git a/src/Archive/Redirect.coffee b/src/Archive/Redirect.coffee index 1150f9cb9..4a7a5c5a5 100644 --- a/src/Archive/Redirect.coffee +++ b/src/Archive/Redirect.coffee @@ -13,8 +13,6 @@ Redirect = "//archive.foolz.us/#{boardID}/full_image/#{filename}" when 'u' "//nsfw.foolz.us/#{boardID}/full_image/#{filename}" - when 'v', 'vg' - "//archive.nihil-ad-rem.net/#{boardID}/full_image/#{filename}" when 'po' "//archive.thedarkcave.org/#{boardID}/full_image/#{filename}" when 'hr', 'tv' @@ -72,10 +70,6 @@ Redirect = base: 'https://archive.foolz.us' boards: ['a', 'co', 'gd', 'jp', 'm', 'q', 'sp', 'tg', 'tv', 'vp', 'vr', 'wsg'] type: 'foolfuuka' - 'NihilAdRem': - base: '//archive.nihil-ad-rem.net' - boards: ['v', 'vg'] - type: 'foolfuuka' 'NSFWFoolz': base: 'https://nsfw.foolz.us' boards: ['u']