Update bundles

This commit is contained in:
GitHub Action
2025-02-05 21:35:21 +00:00
parent 6ca6db355e
commit 12c0a681f5
6 changed files with 514 additions and 13 deletions

View File

@@ -5792,6 +5792,63 @@
"tests": [],
"_id": "Remux"
},
{
"name": "Repack1",
"description": "Release groups use specific terms to indicate when they're fixing issues in releases:\nIn Scene releases, groups can only occupy one release slot, which leads to two different terms:\n- PROPER is used when a different group fixes issues in another group's release\n- REPACK is used when a group fixes issues in their own release\n\nP2P releases are simpler - REPACK is typically used whenever a group releases a fixed version.\n\nREAL / RERIP indicate similar things but their specific meaning / origin is unclear.\n\nThis custom format will catch basic level fixes (no number suffixes).",
"tags": [
"Flag",
"Repack"
],
"conditions": [
{
"name": "Repack1",
"negate": false,
"pattern": "(?<=.*?\\d{4}.*?)\\b(re(pack|rip)|proper)\\b",
"required": true,
"type": "release_title"
}
],
"tests": [],
"_id": "Repack1"
},
{
"name": "Repack2",
"description": "Release groups use specific terms to indicate when they're fixing issues in releases:\nIn Scene releases, groups can only occupy one release slot, which leads to two different terms:\n- PROPER is used when a different group fixes issues in another group's release\n- REPACK is used when a group fixes issues in their own release\n\nP2P releases are simpler - REPACK is typically used whenever a group releases a fixed version.\n\nREAL / RERIP indicate similar things but their specific meaning / origin is unclear.\n\nThis custom format will catch level 2 fixes",
"tags": [
"Flag",
"Repack"
],
"conditions": [
{
"name": "Repack2",
"negate": false,
"pattern": "\\b(real[\\s.]?(re(pack|rip)|proper)|(re(pack|rip)|proper)2)\\b",
"required": true,
"type": "release_title"
}
],
"tests": [],
"_id": "Repack2"
},
{
"name": "Repack3",
"description": "Release groups use specific terms to indicate when they're fixing issues in releases:\nIn Scene releases, groups can only occupy one release slot, which leads to two different terms:\n- PROPER is used when a different group fixes issues in another group's release\n- REPACK is used when a group fixes issues in their own release\n\nP2P releases are simpler - REPACK is typically used whenever a group releases a fixed version.\n\nREAL / RERIP indicate similar things but their specific meaning / origin is unclear.\n\nThis custom format will catch level 3 fixes",
"tags": [
"Flag",
"Repack"
],
"conditions": [
{
"name": "Repack3",
"negate": false,
"pattern": "\\b(real[\\s.]?real[\\s.]?(re(pack|rip)|proper)|(re(pack|rip)|proper)3)\\b",
"required": true,
"type": "release_title"
}
],
"tests": [],
"_id": "Repack3"
},
{
"name": "Roku [1080p]",
"description": "Matches 1080p 'Roku' WEB-DLs. Negates any encodes.",

File diff suppressed because one or more lines are too long

View File

@@ -145,6 +145,18 @@
"name": "x264",
"score": 10
},
{
"name": "Repack3",
"score": 7
},
{
"name": "Repack2",
"score": 6
},
{
"name": "Repack1",
"score": 5
},
{
"name": "2160p",
"score": -9999
@@ -488,6 +500,18 @@
"name": "x264",
"score": 10
},
{
"name": "Repack3",
"score": 7
},
{
"name": "Repack2",
"score": 6
},
{
"name": "Repack1",
"score": 5
},
{
"name": "x265",
"score": -90
@@ -793,6 +817,18 @@
"name": "x264",
"score": 10
},
{
"name": "Repack3",
"score": 7
},
{
"name": "Repack2",
"score": 6
},
{
"name": "Repack1",
"score": 5
},
{
"name": "2160p",
"score": -9999
@@ -1078,6 +1114,18 @@
"name": "Roku",
"score": 10
},
{
"name": "Repack3",
"score": 7
},
{
"name": "Repack2",
"score": 6
},
{
"name": "Repack1",
"score": 5
},
{
"name": "Unknown Lossless Audio",
"score": 5
@@ -1435,6 +1483,14 @@
"name": "x264",
"score": 10
},
{
"name": "Repack3",
"score": 7
},
{
"name": "Repack2",
"score": 6
},
{
"name": "Atmos",
"score": 5
@@ -1451,6 +1507,10 @@
"name": "FLAC",
"score": 5
},
{
"name": "Repack1",
"score": 5
},
{
"name": "Unknown Lossless Audio",
"score": 5
@@ -1882,6 +1942,14 @@
"name": "x264",
"score": 10
},
{
"name": "Repack3",
"score": 7
},
{
"name": "Repack2",
"score": 6
},
{
"name": "Atmos",
"score": 5
@@ -1898,6 +1966,10 @@
"name": "FLAC",
"score": 5
},
{
"name": "Repack1",
"score": 5
},
{
"name": "Unknown Lossless Audio",
"score": 5
@@ -2243,6 +2315,18 @@
"name": "Roku",
"score": 10
},
{
"name": "Repack3",
"score": 7
},
{
"name": "Repack2",
"score": 6
},
{
"name": "Repack1",
"score": 5
},
{
"name": "Unknown Lossless Audio",
"score": 5

View File

@@ -3817,6 +3817,366 @@
],
"_id": "Remux"
},
{
"name": "Repack1",
"pattern": "(?<=.*?\\d{4}.*?)\\b(re(pack|rip)|proper)\\b",
"description": "Matches 'PROPER' or 'REPACK' or 'RERIP' only when they appear after a year (4 digits) but not before one.\n\n* `(?<=.*?\\d{4}.*?)` - look for a 4-digit number before\n* `\\b(re(pack|rip)|proper)\\b` - match proper/repack/rerip",
"tags": [
"Repack",
"Flag"
],
"tests": [
{
"expected": true,
"id": 1,
"input": "The Zone of Interest 2023 PROPER 2160p UHD BluRay TrueHD 7.1 Atmos HDR x265-MainFrame",
"lastRun": "2025-02-06T06:58:16.693168",
"matchSpan": {
"end": 32,
"start": 26
},
"matchedContent": "PROPER",
"matchedGroups": [
"PROPER",
null
],
"passes": true
},
{
"expected": false,
"id": 2,
"input": "Proper.Pronouns.2020.720p.WEB-DL.AAC2.0.x264-ZTR.mkv",
"lastRun": "2025-02-06T06:58:16.693168",
"matchSpan": null,
"matchedContent": null,
"matchedGroups": [],
"passes": true
},
{
"expected": true,
"id": 3,
"input": "Proper.Pronouns.2020.720p.PROPER.WEB-DL.AAC2.0.x264-ZTR.mkv",
"lastRun": "2025-02-06T06:58:16.693168",
"matchSpan": {
"end": 32,
"start": 26
},
"matchedContent": "PROPER",
"matchedGroups": [
"PROPER",
null
],
"passes": true
},
{
"expected": true,
"id": 4,
"input": "Sonic.the.Hedgehog.3.2024.REPACK.2160p.WEB-DL.DDP5.1.Atmos.DoVi.HDR.H.265-FLUX",
"lastRun": "2025-02-06T06:58:16.693168",
"matchSpan": {
"end": 32,
"start": 26
},
"matchedContent": "REPACK",
"matchedGroups": [
"REPACK",
"PACK"
],
"passes": true
},
{
"expected": true,
"id": 5,
"input": "roommate.wanted.2015.rerip.720p.bluray.x264-rusted.mkv",
"lastRun": "2025-02-06T06:58:16.693168",
"matchSpan": {
"end": 26,
"start": 21
},
"matchedContent": "rerip",
"matchedGroups": [
"rerip",
"rip"
],
"passes": true
}
],
"_id": "Repack1"
},
{
"name": "Repack2",
"pattern": "\\b(real[\\s.]?(re(pack|rip)|proper)|(re(pack|rip)|proper)2)\\b",
"description": "Matches either \"real\" (with optional space/dot) followed by proper/repack/rerip, or proper2/repack2/rerip2\n\n* `\\b(real[\\s.]?(re(pack|rip)|proper)` - match real followed by proper/repack/rerip\n* `|(re(pack|rip)|proper)2)\\b` - or match proper2/repack2/rerip2",
"tags": [
"Repack",
"Flag"
],
"tests": [
{
"expected": true,
"id": 1,
"input": "The Zone of Interest 2023 PROPER2 2160p UHD BluRay TrueHD 7.1 Atmos HDR x265-MainFrame",
"lastRun": "2025-02-06T07:10:05.298113",
"matchSpan": {
"end": 33,
"start": 26
},
"matchedContent": "PROPER2",
"matchedGroups": [
"PROPER2",
null,
null,
"PROPER",
null
],
"passes": true
},
{
"expected": false,
"id": 2,
"input": "Proper.Pronouns.2020.720p.WEB-DL.AAC2.0.x264-ZTR.mkv",
"lastRun": "2025-02-06T07:10:05.298113",
"matchSpan": null,
"matchedContent": null,
"matchedGroups": [],
"passes": true
},
{
"expected": true,
"id": 3,
"input": "Proper.Pronouns.2020.720p.PROPER2.WEB-DL.AAC2.0.x264-ZTR.mkv",
"lastRun": "2025-02-06T07:10:05.298113",
"matchSpan": {
"end": 33,
"start": 26
},
"matchedContent": "PROPER2",
"matchedGroups": [
"PROPER2",
null,
null,
"PROPER",
null
],
"passes": true
},
{
"expected": true,
"id": 4,
"input": "Sonic.the.Hedgehog.3.2024.REPACK2.2160p.WEB-DL.DDP5.1.Atmos.DoVi.HDR.H.265-FLUX",
"lastRun": "2025-02-06T07:10:05.298113",
"matchSpan": {
"end": 33,
"start": 26
},
"matchedContent": "REPACK2",
"matchedGroups": [
"REPACK2",
null,
null,
"REPACK",
"PACK"
],
"passes": true
},
{
"expected": true,
"id": 5,
"input": "roommate.wanted.2015.rerip2.720p.bluray.x264-rusted.mkv",
"lastRun": "2025-02-06T07:10:05.298113",
"matchSpan": {
"end": 27,
"start": 21
},
"matchedContent": "rerip2",
"matchedGroups": [
"rerip2",
null,
null,
"rerip",
"rip"
],
"passes": true
},
{
"expected": false,
"id": 6,
"input": "The Zone of Interest 2023 PROPER 2160p UHD BluRay TrueHD 7.1 Atmos HDR x265-MainFrame",
"lastRun": "2025-02-06T07:10:05.298113",
"matchSpan": null,
"matchedContent": null,
"matchedGroups": [],
"passes": true
},
{
"expected": false,
"id": 7,
"input": "Sonic.the.Hedgehog.3.2024.REPACK.2160p.WEB-DL.DDP5.1.Atmos.DoVi.HDR.H.265-FLUX",
"lastRun": "2025-02-06T07:10:05.298113",
"matchSpan": null,
"matchedContent": null,
"matchedGroups": [],
"passes": true
},
{
"expected": true,
"id": 8,
"input": "Yo-Kai Watch S02E17 DUBBED REAL REPACK HDTV x264-W4F",
"lastRun": "2025-02-06T07:10:05.298113",
"matchSpan": {
"end": 38,
"start": 27
},
"matchedContent": "REAL REPACK",
"matchedGroups": [
"REAL REPACK",
"REPACK",
"PACK",
null,
null
],
"passes": true
}
],
"_id": "Repack2"
},
{
"name": "Repack3",
"pattern": "\\b(real[\\s.]?real[\\s.]?(re(pack|rip)|proper)|(re(pack|rip)|proper)3)\\b",
"description": "Matches either \"real real\" (with optional space/dot between words) followed by proper/repack/rerip, or proper3/repack3/rerip3\n\n* `\\b(real[\\s.]?real[\\s.]?(re(pack|rip)|proper)` - match real real followed by proper/repack/rerip\n* `|(re(pack|rip)|proper)3)\\b` - or match proper3/repack3/rerip3",
"tags": [
"Repack",
"Flag"
],
"tests": [
{
"expected": true,
"id": 1,
"input": "The Zone of Interest 2023 PROPER3 2160p UHD BluRay TrueHD 7.1 Atmos HDR x265-MainFrame",
"lastRun": "2025-02-06T07:11:35.323972",
"matchSpan": {
"end": 33,
"start": 26
},
"matchedContent": "PROPER3",
"matchedGroups": [
"PROPER3",
null,
null,
"PROPER",
null
],
"passes": true
},
{
"expected": false,
"id": 2,
"input": "Proper.Pronouns.2020.720p.WEB-DL.AAC2.0.x264-ZTR.mkv",
"lastRun": "2025-02-06T07:11:35.323972",
"matchSpan": null,
"matchedContent": null,
"matchedGroups": [],
"passes": true
},
{
"expected": true,
"id": 3,
"input": "Proper.Pronouns.2020.720p.PROPER3.WEB-DL.AAC2.0.x264-ZTR.mkv",
"lastRun": "2025-02-06T07:11:35.323972",
"matchSpan": {
"end": 33,
"start": 26
},
"matchedContent": "PROPER3",
"matchedGroups": [
"PROPER3",
null,
null,
"PROPER",
null
],
"passes": true
},
{
"expected": true,
"id": 4,
"input": "Sonic.the.Hedgehog.3.2024.REPACK3.2160p.WEB-DL.DDP5.1.Atmos.DoVi.HDR.H.265-FLUX",
"lastRun": "2025-02-06T07:11:35.323972",
"matchSpan": {
"end": 33,
"start": 26
},
"matchedContent": "REPACK3",
"matchedGroups": [
"REPACK3",
null,
null,
"REPACK",
"PACK"
],
"passes": true
},
{
"expected": true,
"id": 5,
"input": "roommate.wanted.2015.rerip3.720p.bluray.x264-rusted.mkv",
"lastRun": "2025-02-06T07:11:35.323972",
"matchSpan": {
"end": 27,
"start": 21
},
"matchedContent": "rerip3",
"matchedGroups": [
"rerip3",
null,
null,
"rerip",
"rip"
],
"passes": true
},
{
"expected": false,
"id": 6,
"input": "The Zone of Interest 2023 PROPER 2160p UHD BluRay TrueHD 7.1 Atmos HDR x265-MainFrame",
"lastRun": "2025-02-06T07:11:35.323972",
"matchSpan": null,
"matchedContent": null,
"matchedGroups": [],
"passes": true
},
{
"expected": false,
"id": 7,
"input": "Sonic.the.Hedgehog.3.2024.REPACK.2160p.WEB-DL.DDP5.1.Atmos.DoVi.HDR.H.265-FLUX",
"lastRun": "2025-02-06T07:11:35.323972",
"matchSpan": null,
"matchedContent": null,
"matchedGroups": [],
"passes": true
},
{
"expected": true,
"id": 8,
"input": "Yo-Kai Watch S02E17 DUBBED REAL REAL REPACK HDTV x264-W4F",
"lastRun": "2025-02-06T07:11:35.323972",
"matchSpan": {
"end": 43,
"start": 27
},
"matchedContent": "REAL REAL REPACK",
"matchedGroups": [
"REAL REAL REPACK",
"REPACK",
"PACK",
null,
null
],
"passes": true
}
],
"_id": "Repack3"
},
{
"name": "Roku",
"pattern": "\\b(1080p[ .\\-_]ROKU|ROKU[ .\\-_]1080p)\\b",

View File

@@ -1,5 +1,5 @@
{
"updated_at": "2025-02-05T07:39:03.179515+00:00",
"updated_at": "2025-02-05T21:35:21.875051+00:00",
"folders": [
"custom_formats",
"profiles",

File diff suppressed because one or more lines are too long