Skip to content

Commit ce0b724

Browse files
committed
Reduce MA Score on 1080p and below Profiles
1 parent 6cf87bb commit ce0b724

1 file changed

Lines changed: 68 additions & 0 deletions

File tree

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
-- @operation: export
2+
-- @entity: batch
3+
-- @name: Reduce MA Score on 1080p and below Profiles
4+
-- @exportedAt: 2026-03-14T00:57:01.065Z
5+
-- @opIds: 2978, 2979, 2980, 2981, 2982, 2983, 2984
6+
7+
-- --- BEGIN op 2978 ( update quality_profile "1080p Balanced" )
8+
UPDATE quality_profile_custom_formats
9+
SET score = 3000
10+
WHERE quality_profile_name = '1080p Balanced'
11+
AND custom_format_name = 'MA'
12+
AND arr_type = 'radarr'
13+
AND score = 4000;
14+
-- --- END op 2978
15+
16+
-- --- BEGIN op 2979 ( update quality_profile "1080p Compact" )
17+
UPDATE quality_profile_custom_formats
18+
SET score = 3000
19+
WHERE quality_profile_name = '1080p Compact'
20+
AND custom_format_name = 'MA'
21+
AND arr_type = 'radarr'
22+
AND score = 4000;
23+
-- --- END op 2979
24+
25+
-- --- BEGIN op 2980 ( update quality_profile "1080p Efficient" )
26+
UPDATE quality_profile_custom_formats
27+
SET score = 3000
28+
WHERE quality_profile_name = '1080p Efficient'
29+
AND custom_format_name = 'MA'
30+
AND arr_type = 'radarr'
31+
AND score = 4000;
32+
-- --- END op 2980
33+
34+
-- --- BEGIN op 2981 ( update quality_profile "1080p Quality" )
35+
UPDATE quality_profile_custom_formats
36+
SET score = 3000
37+
WHERE quality_profile_name = '1080p Quality'
38+
AND custom_format_name = 'MA'
39+
AND arr_type = 'radarr'
40+
AND score = 4000;
41+
-- --- END op 2981
42+
43+
-- --- BEGIN op 2982 ( update quality_profile "1080p Quality HDR" )
44+
UPDATE quality_profile_custom_formats
45+
SET score = 3000
46+
WHERE quality_profile_name = '1080p Quality HDR'
47+
AND custom_format_name = 'MA'
48+
AND arr_type = 'radarr'
49+
AND score = 4000;
50+
-- --- END op 2982
51+
52+
-- --- BEGIN op 2983 ( update quality_profile "1080p Remux" )
53+
UPDATE quality_profile_custom_formats
54+
SET score = 3000
55+
WHERE quality_profile_name = '1080p Remux'
56+
AND custom_format_name = 'MA'
57+
AND arr_type = 'radarr'
58+
AND score = 4000;
59+
-- --- END op 2983
60+
61+
-- --- BEGIN op 2984 ( update quality_profile "720p Quality" )
62+
UPDATE quality_profile_custom_formats
63+
SET score = 3000
64+
WHERE quality_profile_name = '720p Quality'
65+
AND custom_format_name = 'MA'
66+
AND arr_type = 'radarr'
67+
AND score = 4000;
68+
-- --- END op 2984

0 commit comments

Comments
 (0)