├── links.json
├── .github
└── workflows
│ └── call-build.yml
├── README.md
├── LICENSE
└── tags.json
/links.json:
--------------------------------------------------------------------------------
1 | {
2 | "links": [
3 | {
4 | "name": "Upstream Project",
5 | "url": "https://github.com/radarr/radarr"
6 | }
7 | ]
8 | }
9 |
--------------------------------------------------------------------------------
/.github/workflows/call-build.yml:
--------------------------------------------------------------------------------
1 | name: call-build
2 |
3 | on:
4 | workflow_dispatch:
5 | push:
6 | branches-ignore:
7 | - 'master'
8 |
9 | jobs:
10 | call:
11 | uses: hotio/build-workflow/.github/workflows/build-on-call.yml@master
12 | secrets: inherit
13 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Documentation
2 |
3 | All our documentation is located at [hotio.dev](https://hotio.dev).
4 |
5 | # Support
6 |
7 | If you need some assistance, please join our [discord](https://hotio.dev/discord) server.
8 |
9 | # Source
10 |
11 | The source is hosted at [GitHub](https://github.com/hotio). Usually in the branches `release`, `testing` or `nightly`.
12 |
13 | # Show your support
14 |
15 | You can show your support by giving us a star on GitHub, it's also possible to make a [donation](https://hotio.dev/donate).
16 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/tags.json:
--------------------------------------------------------------------------------
1 | {
2 | "nightly": {
3 | "description": "nightly",
4 | "hide": false,
5 | "last_updated": "2025-12-25T10:37:19.000Z",
6 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/20503580009",
7 | "latest": false,
8 | "tags": [
9 | "nightly",
10 | "nightly-6.1.0.10309",
11 | "nightly-4f1150c"
12 | ]
13 | },
14 | "pr-allowed-sort-keys": {
15 | "description": "",
16 | "hide": true,
17 | "last_updated": "2024-09-16T17:28:59.000Z",
18 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10888894117",
19 | "latest": false,
20 | "tags": [
21 | "pr-allowed-sort-keys",
22 | "pr-allowed-sort-keys-5.10.4.9202",
23 | "pr-allowed-sort-keys-1d86454"
24 | ]
25 | },
26 | "pr-alt-iso-code-mappings": {
27 | "description": "",
28 | "hide": true,
29 | "last_updated": "2024-03-05T09:40:31.000Z",
30 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/8153937524",
31 | "latest": false,
32 | "tags": [
33 | "pr-alt-iso-code-mappings",
34 | "pr-alt-iso-code-mappings-5.4.0.8635",
35 | "pr-alt-iso-code-mappings-9fd3190"
36 | ]
37 | },
38 | "pr-autotags-in-use": {
39 | "description": "",
40 | "hide": true,
41 | "last_updated": "2024-09-07T01:03:23.000Z",
42 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10747189983",
43 | "latest": false,
44 | "tags": [
45 | "pr-autotags-in-use",
46 | "pr-autotags-in-use-5.10.2.9157",
47 | "pr-autotags-in-use-d28ec90"
48 | ]
49 | },
50 | "pr-avoid-pending-releases-with-orphaned-movie": {
51 | "description": "",
52 | "hide": true,
53 | "last_updated": "2024-11-12T06:32:09.000Z",
54 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11791794284",
55 | "latest": false,
56 | "tags": [
57 | "pr-avoid-pending-releases-with-orphaned-movie",
58 | "pr-avoid-pending-releases-with-orphaned-movie-5.15.0.9403",
59 | "pr-avoid-pending-releases-with-orphaned-movie-acec826"
60 | ]
61 | },
62 | "pr-bump-coverlet": {
63 | "description": "",
64 | "hide": true,
65 | "last_updated": "2025-09-26T17:00:54.000Z",
66 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/18044166171",
67 | "latest": false,
68 | "tags": [
69 | "pr-bump-coverlet",
70 | "pr-bump-coverlet-6.0.1.10254",
71 | "pr-bump-coverlet-e5d78c0"
72 | ]
73 | },
74 | "pr-bump-selenium-support": {
75 | "description": "",
76 | "hide": true,
77 | "last_updated": "2025-06-09T18:35:53.000Z",
78 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/15541833811",
79 | "latest": false,
80 | "tags": [
81 | "pr-bump-selenium-support",
82 | "pr-bump-selenium-support-5.26.2.10095",
83 | "pr-bump-selenium-support-aa0ae78"
84 | ]
85 | },
86 | "pr-cleanup-duplicated-movie-translations": {
87 | "description": "",
88 | "hide": true,
89 | "last_updated": "2025-01-22T00:04:55.000Z",
90 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12898197435",
91 | "latest": false,
92 | "tags": [
93 | "pr-cleanup-duplicated-movie-translations",
94 | "pr-cleanup-duplicated-movie-translations-5.18.2.9652",
95 | "pr-cleanup-duplicated-movie-translations-30aaef5"
96 | ]
97 | },
98 | "pr-default-original-lang": {
99 | "description": "",
100 | "hide": true,
101 | "last_updated": "2025-04-16T18:18:33.000Z",
102 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14499640436",
103 | "latest": false,
104 | "tags": [
105 | "pr-default-original-lang",
106 | "pr-default-original-lang-5.22.2.9855",
107 | "pr-default-original-lang-0223b48"
108 | ]
109 | },
110 | "pr-deprecate-movie-file-movie-folder-format": {
111 | "description": "",
112 | "hide": true,
113 | "last_updated": "2025-05-13T10:55:01.000Z",
114 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14994761468",
115 | "latest": false,
116 | "tags": [
117 | "pr-deprecate-movie-file-movie-folder-format",
118 | "pr-deprecate-movie-file-movie-folder-format-5.23.0.9905",
119 | "pr-deprecate-movie-file-movie-folder-format-5df7ee3"
120 | ]
121 | },
122 | "pr-description-movie-availability": {
123 | "description": "",
124 | "hide": true,
125 | "last_updated": "2024-09-24T16:14:58.000Z",
126 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11017725574",
127 | "latest": false,
128 | "tags": [
129 | "pr-description-movie-availability",
130 | "pr-description-movie-availability-5.11.0.9223",
131 | "pr-description-movie-availability-42691eb"
132 | ]
133 | },
134 | "pr-discord-log-request-body-error": {
135 | "description": "",
136 | "hide": true,
137 | "last_updated": "2025-01-06T11:11:16.000Z",
138 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12631393566",
139 | "latest": false,
140 | "tags": [
141 | "pr-discord-log-request-body-error",
142 | "pr-discord-log-request-body-error-5.18.0.9588",
143 | "pr-discord-log-request-body-error-fcd1899"
144 | ]
145 | },
146 | "pr-dotnet6-synology": {
147 | "description": "",
148 | "hide": true,
149 | "last_updated": "2025-05-17T20:29:52.000Z",
150 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/15088813136",
151 | "latest": false,
152 | "tags": [
153 | "pr-dotnet6-synology",
154 | "pr-dotnet6-synology-5.24.0.9990",
155 | "pr-dotnet6-synology-77ab7eb"
156 | ]
157 | },
158 | "pr-en-language": {
159 | "description": "",
160 | "hide": true,
161 | "last_updated": "2025-04-07T13:13:24.000Z",
162 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14310073852",
163 | "latest": false,
164 | "tags": [
165 | "pr-en-language",
166 | "pr-en-language-5.22.2.9837",
167 | "pr-en-language-d975753"
168 | ]
169 | },
170 | "pr-enum-decision-engine-rejections": {
171 | "description": "",
172 | "hide": true,
173 | "last_updated": "2025-02-03T15:40:35.000Z",
174 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/13117117006",
175 | "latest": false,
176 | "tags": [
177 | "pr-enum-decision-engine-rejections",
178 | "pr-enum-decision-engine-rejections-5.19.0.9677",
179 | "pr-enum-decision-engine-rejections-88bd127"
180 | ]
181 | },
182 | "pr-equality-check": {
183 | "description": "",
184 | "hide": true,
185 | "last_updated": "2024-05-10T18:38:16.000Z",
186 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/9036578488",
187 | "latest": false,
188 | "tags": [
189 | "pr-equality-check",
190 | "pr-equality-check-5.5.3.8816",
191 | "pr-equality-check-77cfb75"
192 | ]
193 | },
194 | "pr-exclude-files": {
195 | "description": "",
196 | "hide": true,
197 | "last_updated": "2024-09-26T12:53:12.000Z",
198 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11052580618",
199 | "latest": false,
200 | "tags": [
201 | "pr-exclude-files",
202 | "pr-exclude-files-5.12.0.9248",
203 | "pr-exclude-files-9eea903"
204 | ]
205 | },
206 | "pr-fail-downloads": {
207 | "description": "",
208 | "hide": true,
209 | "last_updated": "2025-04-02T06:04:50.000Z",
210 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14212481930",
211 | "latest": false,
212 | "tags": [
213 | "pr-fail-downloads",
214 | "pr-fail-downloads-5.21.1.9800",
215 | "pr-fail-downloads-3180009"
216 | ]
217 | },
218 | "pr-filter-number-fraction-digits": {
219 | "description": "",
220 | "hide": true,
221 | "last_updated": "2024-09-12T17:58:15.000Z",
222 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10836126491",
223 | "latest": false,
224 | "tags": [
225 | "pr-filter-number-fraction-digits",
226 | "pr-filter-number-fraction-digits-5.10.3.9177",
227 | "pr-filter-number-fraction-digits-854c326"
228 | ]
229 | },
230 | "pr-fix-UHDBDRip-parsing": {
231 | "description": "",
232 | "hide": true,
233 | "last_updated": "2025-08-16T14:48:56.000Z",
234 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/17009636881",
235 | "latest": false,
236 | "tags": [
237 | "pr-fix-UHDBDRip-parsing",
238 | "pr-fix-UHDBDRip-parsing-5.27.4.10174",
239 | "pr-fix-UHDBDRip-parsing-f0ce547"
240 | ]
241 | },
242 | "pr-fix-blocklistyear0": {
243 | "description": "",
244 | "hide": true,
245 | "last_updated": "2025-06-20T03:27:41.000Z",
246 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/15770518930",
247 | "latest": false,
248 | "tags": [
249 | "pr-fix-blocklistyear0",
250 | "pr-fix-blocklistyear0-5.27.1.10114",
251 | "pr-fix-blocklistyear0-21f92b8"
252 | ]
253 | },
254 | "pr-fix-discover-movie-release-dates": {
255 | "description": "",
256 | "hide": true,
257 | "last_updated": "2024-11-18T21:22:20.000Z",
258 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11901289818",
259 | "latest": false,
260 | "tags": [
261 | "pr-fix-discover-movie-release-dates",
262 | "pr-fix-discover-movie-release-dates-5.15.1.9458",
263 | "pr-fix-discover-movie-release-dates-3a64278"
264 | ]
265 | },
266 | "pr-fix-relative-path-different-os": {
267 | "description": "",
268 | "hide": true,
269 | "last_updated": "2024-10-26T16:46:01.000Z",
270 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11533392255",
271 | "latest": false,
272 | "tags": [
273 | "pr-fix-relative-path-different-os",
274 | "pr-fix-relative-path-different-os-5.15.0.9385",
275 | "pr-fix-relative-path-different-os-e00178b"
276 | ]
277 | },
278 | "pr-freebox-infohash": {
279 | "description": "",
280 | "hide": true,
281 | "last_updated": "2024-04-20T10:38:09.000Z",
282 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/8764390431",
283 | "latest": false,
284 | "tags": [
285 | "pr-freebox-infohash",
286 | "pr-freebox-infohash-5.5.0.8732",
287 | "pr-freebox-infohash-1024f24"
288 | ]
289 | },
290 | "pr-hybrid-remux": {
291 | "description": "",
292 | "hide": true,
293 | "last_updated": "2024-09-26T07:29:13.000Z",
294 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11047549963",
295 | "latest": false,
296 | "tags": [
297 | "pr-hybrid-remux",
298 | "pr-hybrid-remux-5.11.0.9236",
299 | "pr-hybrid-remux-952843d"
300 | ]
301 | },
302 | "pr-improve-media-covers": {
303 | "description": "",
304 | "hide": true,
305 | "last_updated": "2025-04-07T13:40:49.000Z",
306 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14310690512",
307 | "latest": false,
308 | "tags": [
309 | "pr-improve-media-covers",
310 | "pr-improve-media-covers-5.22.1.9833",
311 | "pr-improve-media-covers-cc608f4"
312 | ]
313 | },
314 | "pr-improve-parsing-catalan": {
315 | "description": "",
316 | "hide": true,
317 | "last_updated": "2024-10-29T18:22:55.000Z",
318 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11580067303",
319 | "latest": false,
320 | "tags": [
321 | "pr-improve-parsing-catalan",
322 | "pr-improve-parsing-catalan-5.15.0.9398",
323 | "pr-improve-parsing-catalan-166586e"
324 | ]
325 | },
326 | "pr-improve-refresh-movie": {
327 | "description": "",
328 | "hide": true,
329 | "last_updated": "2025-04-11T17:07:16.000Z",
330 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14408307963",
331 | "latest": false,
332 | "tags": [
333 | "pr-improve-refresh-movie",
334 | "pr-improve-refresh-movie-5.22.2.9858",
335 | "pr-improve-refresh-movie-52942f6"
336 | ]
337 | },
338 | "pr-interactive-search-indexer-flags": {
339 | "description": "",
340 | "hide": true,
341 | "last_updated": "2024-05-07T16:30:59.000Z",
342 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/8988948988",
343 | "latest": false,
344 | "tags": [
345 | "pr-interactive-search-indexer-flags",
346 | "pr-interactive-search-indexer-flags-5.5.2.8778",
347 | "pr-interactive-search-indexer-flags-a1816e1"
348 | ]
349 | },
350 | "pr-kodi-rt-criticrating": {
351 | "description": "",
352 | "hide": true,
353 | "last_updated": "2024-03-24T07:53:09.000Z",
354 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/8407774388",
355 | "latest": false,
356 | "tags": [
357 | "pr-kodi-rt-criticrating",
358 | "pr-kodi-rt-criticrating-5.4.4.8684",
359 | "pr-kodi-rt-criticrating-b9a7810"
360 | ]
361 | },
362 | "pr-mac-runner": {
363 | "description": "",
364 | "hide": true,
365 | "last_updated": "2024-10-06T10:22:20.000Z",
366 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11201027855",
367 | "latest": false,
368 | "tags": [
369 | "pr-mac-runner",
370 | "pr-mac-runner-5.12.2.9295",
371 | "pr-mac-runner-f15133b"
372 | ]
373 | },
374 | "pr-manage-existing-files": {
375 | "description": "",
376 | "hide": true,
377 | "last_updated": "2025-02-16T19:36:14.000Z",
378 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/13358153729",
379 | "latest": false,
380 | "tags": [
381 | "pr-manage-existing-files",
382 | "pr-manage-existing-files-5.19.2.9708",
383 | "pr-manage-existing-files-744ee8b"
384 | ]
385 | },
386 | "pr-manage-movies-import": {
387 | "description": "",
388 | "hide": true,
389 | "last_updated": "2025-03-23T16:35:39.000Z",
390 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14020892271",
391 | "latest": false,
392 | "tags": [
393 | "pr-manage-movies-import",
394 | "pr-manage-movies-import-5.21.1.9794",
395 | "pr-manage-movies-import-f0d7b07"
396 | ]
397 | },
398 | "pr-migrations-sqlite-dbo": {
399 | "description": "",
400 | "hide": true,
401 | "last_updated": "2024-07-23T00:58:26.000Z",
402 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10050654696",
403 | "latest": false,
404 | "tags": [
405 | "pr-migrations-sqlite-dbo",
406 | "pr-migrations-sqlite-dbo-5.9.0.8935",
407 | "pr-migrations-sqlite-dbo-0ae070c"
408 | ]
409 | },
410 | "pr-movie-clean-title-the": {
411 | "description": "",
412 | "hide": true,
413 | "last_updated": "2024-10-02T15:23:33.000Z",
414 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11146668683",
415 | "latest": false,
416 | "tags": [
417 | "pr-movie-clean-title-the",
418 | "pr-movie-clean-title-the-5.12.1.9264",
419 | "pr-movie-clean-title-the-aec3d37"
420 | ]
421 | },
422 | "pr-movie-files-sort": {
423 | "description": "",
424 | "hide": true,
425 | "last_updated": "2024-02-20T13:44:48.000Z",
426 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/7974296022",
427 | "latest": false,
428 | "tags": [
429 | "pr-movie-files-sort",
430 | "pr-movie-files-sort-5.3.4.8542",
431 | "pr-movie-files-sort-5698356"
432 | ]
433 | },
434 | "pr-movie-path-validation-update": {
435 | "description": "",
436 | "hide": true,
437 | "last_updated": "2024-10-02T16:12:27.000Z",
438 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11147454777",
439 | "latest": false,
440 | "tags": [
441 | "pr-movie-path-validation-update",
442 | "pr-movie-path-validation-update-5.12.1.9265",
443 | "pr-movie-path-validation-update-9d803a4"
444 | ]
445 | },
446 | "pr-movie-root-folder-validation": {
447 | "description": "",
448 | "hide": true,
449 | "last_updated": "2024-08-21T02:20:44.000Z",
450 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10482341739",
451 | "latest": false,
452 | "tags": [
453 | "pr-movie-root-folder-validation",
454 | "pr-movie-root-folder-validation-5.10.0.9075",
455 | "pr-movie-root-folder-validation-5bde9b4"
456 | ]
457 | },
458 | "pr-naming-typescript": {
459 | "description": "",
460 | "hide": true,
461 | "last_updated": "2024-10-06T13:33:18.000Z",
462 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11202294365",
463 | "latest": false,
464 | "tags": [
465 | "pr-naming-typescript",
466 | "pr-naming-typescript-5.12.1.9283",
467 | "pr-naming-typescript-853c18a"
468 | ]
469 | },
470 | "pr-net8": {
471 | "description": "",
472 | "hide": true,
473 | "last_updated": "2024-06-07T16:27:29.000Z",
474 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/9420000336",
475 | "latest": false,
476 | "tags": [
477 | "pr-net8",
478 | "pr-net8-5.6.0.8832",
479 | "pr-net8-5e51c08"
480 | ]
481 | },
482 | "pr-net80": {
483 | "description": "",
484 | "hide": true,
485 | "last_updated": "2025-05-10T11:50:13.000Z",
486 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14945040190",
487 | "latest": false,
488 | "tags": [
489 | "pr-net80",
490 | "pr-net80-6.0.0.9922",
491 | "pr-net80-07a1908"
492 | ]
493 | },
494 | "pr-no-more-org-naming": {
495 | "description": "",
496 | "hide": true,
497 | "last_updated": "2025-07-24T14:11:51.000Z",
498 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/16499224233",
499 | "latest": false,
500 | "tags": [
501 | "pr-no-more-org-naming",
502 | "pr-no-more-org-naming-5.27.3.10146",
503 | "pr-no-more-org-naming-07e2cda"
504 | ]
505 | },
506 | "pr-provider-signal-events": {
507 | "description": "",
508 | "hide": true,
509 | "last_updated": "2024-10-18T09:52:34.000Z",
510 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11401466814",
511 | "latest": false,
512 | "tags": [
513 | "pr-provider-signal-events",
514 | "pr-provider-signal-events-5.13.0.9339",
515 | "pr-provider-signal-events-131364c"
516 | ]
517 | },
518 | "pr-qbit-stopped-started": {
519 | "description": "",
520 | "hide": true,
521 | "last_updated": "2024-10-25T06:25:47.000Z",
522 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11512997756",
523 | "latest": false,
524 | "tags": [
525 | "pr-qbit-stopped-started",
526 | "pr-qbit-stopped-started-5.13.1.9376",
527 | "pr-qbit-stopped-started-8348e73"
528 | ]
529 | },
530 | "pr-refresh-movie-before-every-import": {
531 | "description": "",
532 | "hide": true,
533 | "last_updated": "2025-04-16T17:02:57.000Z",
534 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/14498290431",
535 | "latest": false,
536 | "tags": [
537 | "pr-refresh-movie-before-every-import",
538 | "pr-refresh-movie-before-every-import-5.22.3.9879",
539 | "pr-refresh-movie-before-every-import-1558e78"
540 | ]
541 | },
542 | "pr-release-profile-typescript": {
543 | "description": "",
544 | "hide": true,
545 | "last_updated": "2024-10-04T13:22:45.000Z",
546 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11180700905",
547 | "latest": false,
548 | "tags": [
549 | "pr-release-profile-typescript",
550 | "pr-release-profile-typescript-5.12.1.9276",
551 | "pr-release-profile-typescript-f244012"
552 | ]
553 | },
554 | "pr-release-push-indexer-flags": {
555 | "description": "",
556 | "hide": true,
557 | "last_updated": "2024-05-06T23:26:05.000Z",
558 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/8977109063",
559 | "latest": false,
560 | "tags": [
561 | "pr-release-push-indexer-flags",
562 | "pr-release-push-indexer-flags-5.5.3.8800",
563 | "pr-release-push-indexer-flags-537b122"
564 | ]
565 | },
566 | "pr-release-year": {
567 | "description": "",
568 | "hide": true,
569 | "last_updated": "2024-10-26T12:06:24.000Z",
570 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11531605186",
571 | "latest": false,
572 | "tags": [
573 | "pr-release-year",
574 | "pr-release-year-5.14.0.9381",
575 | "pr-release-year-da40971"
576 | ]
577 | },
578 | "pr-rjt-msg": {
579 | "description": "",
580 | "hide": true,
581 | "last_updated": "2025-06-28T13:51:31.000Z",
582 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/15944797463",
583 | "latest": false,
584 | "tags": [
585 | "pr-rjt-msg",
586 | "pr-rjt-msg-5.27.1.10121",
587 | "pr-rjt-msg-d4fdeca"
588 | ]
589 | },
590 | "pr-smart-colon-replacement": {
591 | "description": "",
592 | "hide": true,
593 | "last_updated": "2024-09-25T06:27:00.000Z",
594 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11027486033",
595 | "latest": false,
596 | "tags": [
597 | "pr-smart-colon-replacement",
598 | "pr-smart-colon-replacement-5.11.0.9243",
599 | "pr-smart-colon-replacement-ef41bdd"
600 | ]
601 | },
602 | "pr-sonarcloud": {
603 | "description": "",
604 | "hide": true,
605 | "last_updated": "2024-07-10T16:28:22.000Z",
606 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/9877913230",
607 | "latest": false,
608 | "tags": [
609 | "pr-sonarcloud",
610 | "pr-sonarcloud-5.8.2.8913",
611 | "pr-sonarcloud-bb37106"
612 | ]
613 | },
614 | "pr-sonarr-manualimport-pulls": {
615 | "description": "",
616 | "hide": true,
617 | "last_updated": "2025-07-09T00:10:07.000Z",
618 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/16157037023",
619 | "latest": false,
620 | "tags": [
621 | "pr-sonarr-manualimport-pulls",
622 | "pr-sonarr-manualimport-pulls-5.27.1.10129",
623 | "pr-sonarr-manualimport-pulls-3864a76"
624 | ]
625 | },
626 | "pr-sonarr-pull-0877a671": {
627 | "description": "",
628 | "hide": true,
629 | "last_updated": "2024-08-13T05:13:01.000Z",
630 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10363957069",
631 | "latest": false,
632 | "tags": [
633 | "pr-sonarr-pull-0877a671",
634 | "pr-sonarr-pull-0877a671-5.9.0.9011",
635 | "pr-sonarr-pull-0877a671-73892d8"
636 | ]
637 | },
638 | "pr-sonarr-pull-11a9dcb3": {
639 | "description": "",
640 | "hide": true,
641 | "last_updated": "2024-08-03T03:50:51.000Z",
642 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10225073820",
643 | "latest": false,
644 | "tags": [
645 | "pr-sonarr-pull-11a9dcb3",
646 | "pr-sonarr-pull-11a9dcb3-5.9.0.8975",
647 | "pr-sonarr-pull-11a9dcb3-cbcd5b6"
648 | ]
649 | },
650 | "pr-sonarr-pull-14005d8d": {
651 | "description": "",
652 | "hide": true,
653 | "last_updated": "2024-08-22T03:31:55.000Z",
654 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10501322396",
655 | "latest": false,
656 | "tags": [
657 | "pr-sonarr-pull-14005d8d",
658 | "pr-sonarr-pull-14005d8d-5.10.0.9073",
659 | "pr-sonarr-pull-14005d8d-065b5cb"
660 | ]
661 | },
662 | "pr-sonarr-pull-160151c6": {
663 | "description": "",
664 | "hide": true,
665 | "last_updated": "2024-12-02T14:15:52.000Z",
666 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12121116124",
667 | "latest": false,
668 | "tags": [
669 | "pr-sonarr-pull-160151c6",
670 | "pr-sonarr-pull-160151c6-5.16.1.9496",
671 | "pr-sonarr-pull-160151c6-c02e743"
672 | ]
673 | },
674 | "pr-sonarr-pull-183b8b57": {
675 | "description": "",
676 | "hide": true,
677 | "last_updated": "2024-11-27T21:13:51.000Z",
678 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12058288591",
679 | "latest": false,
680 | "tags": [
681 | "pr-sonarr-pull-183b8b57",
682 | "pr-sonarr-pull-183b8b57-5.16.0.9468",
683 | "pr-sonarr-pull-183b8b57-e87e873"
684 | ]
685 | },
686 | "pr-sonarr-pull-19466aa2": {
687 | "description": "",
688 | "hide": true,
689 | "last_updated": "2024-07-17T13:25:09.000Z",
690 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/9975043729",
691 | "latest": false,
692 | "tags": [
693 | "pr-sonarr-pull-19466aa2",
694 | "pr-sonarr-pull-19466aa2-5.8.3.8923",
695 | "pr-sonarr-pull-19466aa2-fb63ad4"
696 | ]
697 | },
698 | "pr-sonarr-pull-30c36fdc": {
699 | "description": "",
700 | "hide": true,
701 | "last_updated": "2024-09-21T17:56:41.000Z",
702 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10974533238",
703 | "latest": false,
704 | "tags": [
705 | "pr-sonarr-pull-30c36fdc",
706 | "pr-sonarr-pull-30c36fdc-5.11.0.9220",
707 | "pr-sonarr-pull-30c36fdc-87ed02e"
708 | ]
709 | },
710 | "pr-sonarr-pull-33139d4b": {
711 | "description": "",
712 | "hide": true,
713 | "last_updated": "2024-10-26T22:41:40.000Z",
714 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11535481914",
715 | "latest": false,
716 | "tags": [
717 | "pr-sonarr-pull-33139d4b",
718 | "pr-sonarr-pull-33139d4b-5.15.0.9390",
719 | "pr-sonarr-pull-33139d4b-72325dc"
720 | ]
721 | },
722 | "pr-sonarr-pull-40f4ef27": {
723 | "description": "",
724 | "hide": true,
725 | "last_updated": "2024-11-27T06:14:14.000Z",
726 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12044760892",
727 | "latest": false,
728 | "tags": [
729 | "pr-sonarr-pull-40f4ef27",
730 | "pr-sonarr-pull-40f4ef27-5.16.0.9470",
731 | "pr-sonarr-pull-40f4ef27-cbead1b"
732 | ]
733 | },
734 | "pr-sonarr-pull-4dcc015f": {
735 | "description": "",
736 | "hide": true,
737 | "last_updated": "2025-01-05T03:08:35.000Z",
738 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12616009678",
739 | "latest": false,
740 | "tags": [
741 | "pr-sonarr-pull-4dcc015f",
742 | "pr-sonarr-pull-4dcc015f-5.17.2.9578",
743 | "pr-sonarr-pull-4dcc015f-82c7eff"
744 | ]
745 | },
746 | "pr-sonarr-pull-657c5428": {
747 | "description": "",
748 | "hide": true,
749 | "last_updated": "2025-07-25T13:50:19.000Z",
750 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/16523551765",
751 | "latest": false,
752 | "tags": [
753 | "pr-sonarr-pull-657c5428",
754 | "pr-sonarr-pull-657c5428-5.27.1.10128",
755 | "pr-sonarr-pull-657c5428-8438eff"
756 | ]
757 | },
758 | "pr-sonarr-pull-6677fd11": {
759 | "description": "",
760 | "hide": true,
761 | "last_updated": "2025-06-28T21:12:03.000Z",
762 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/15948202217",
763 | "latest": false,
764 | "tags": [
765 | "pr-sonarr-pull-6677fd11",
766 | "pr-sonarr-pull-6677fd11-5.27.1.10123",
767 | "pr-sonarr-pull-6677fd11-1c07935"
768 | ]
769 | },
770 | "pr-sonarr-pull-6d0f10b8": {
771 | "description": "",
772 | "hide": true,
773 | "last_updated": "2024-09-28T01:19:19.000Z",
774 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11079827401",
775 | "latest": false,
776 | "tags": [
777 | "pr-sonarr-pull-6d0f10b8",
778 | "pr-sonarr-pull-6d0f10b8-5.12.0.9250",
779 | "pr-sonarr-pull-6d0f10b8-ead82b1"
780 | ]
781 | },
782 | "pr-sonarr-pull-7dca9060": {
783 | "description": "",
784 | "hide": true,
785 | "last_updated": "2024-08-19T02:44:45.000Z",
786 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10446197248",
787 | "latest": false,
788 | "tags": [
789 | "pr-sonarr-pull-7dca9060",
790 | "pr-sonarr-pull-7dca9060-5.9.1.9063",
791 | "pr-sonarr-pull-7dca9060-0a37f6c"
792 | ]
793 | },
794 | "pr-sonarr-pull-9136ee4a": {
795 | "description": "",
796 | "hide": true,
797 | "last_updated": "2024-08-31T04:03:46.000Z",
798 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10642246666",
799 | "latest": false,
800 | "tags": [
801 | "pr-sonarr-pull-9136ee4a",
802 | "pr-sonarr-pull-9136ee4a-5.10.1.9122",
803 | "pr-sonarr-pull-9136ee4a-37cb1c3"
804 | ]
805 | },
806 | "pr-sonarr-pull-9b144e9a": {
807 | "description": "",
808 | "hide": true,
809 | "last_updated": "2024-08-15T04:04:52.000Z",
810 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10398578593",
811 | "latest": false,
812 | "tags": [
813 | "pr-sonarr-pull-9b144e9a",
814 | "pr-sonarr-pull-9b144e9a-5.9.0.9048",
815 | "pr-sonarr-pull-9b144e9a-8ffb9aa"
816 | ]
817 | },
818 | "pr-sonarr-pull-a0d29331": {
819 | "description": "",
820 | "hide": true,
821 | "last_updated": "2024-06-25T23:51:00.000Z",
822 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/9671135892",
823 | "latest": false,
824 | "tags": [
825 | "pr-sonarr-pull-a0d29331",
826 | "pr-sonarr-pull-a0d29331-5.8.0.8887",
827 | "pr-sonarr-pull-a0d29331-3bd3759"
828 | ]
829 | },
830 | "pr-sonarr-pull-a840bb54": {
831 | "description": "",
832 | "hide": true,
833 | "last_updated": "2025-01-18T14:50:50.000Z",
834 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12844963411",
835 | "latest": false,
836 | "tags": [
837 | "pr-sonarr-pull-a840bb54",
838 | "pr-sonarr-pull-a840bb54-5.18.1.9621",
839 | "pr-sonarr-pull-a840bb54-cb470d4"
840 | ]
841 | },
842 | "pr-sonarr-pull-b00229e53": {
843 | "description": "",
844 | "hide": true,
845 | "last_updated": "2025-09-23T22:41:48.000Z",
846 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/17960881575",
847 | "latest": false,
848 | "tags": [
849 | "pr-sonarr-pull-b00229e53",
850 | "pr-sonarr-pull-b00229e53-6.0.1.10236",
851 | "pr-sonarr-pull-b00229e53-7a56719"
852 | ]
853 | },
854 | "pr-sonarr-pull-c6071f6d": {
855 | "description": "",
856 | "hide": true,
857 | "last_updated": "2024-02-24T18:36:17.000Z",
858 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/8032396902",
859 | "latest": false,
860 | "tags": [
861 | "pr-sonarr-pull-c6071f6d",
862 | "pr-sonarr-pull-c6071f6d-5.4.0.8626",
863 | "pr-sonarr-pull-c6071f6d-426b421"
864 | ]
865 | },
866 | "pr-sonarr-pull-c7c1e3ac": {
867 | "description": "",
868 | "hide": true,
869 | "last_updated": "2024-05-10T05:50:36.000Z",
870 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/9027893725",
871 | "latest": false,
872 | "tags": [
873 | "pr-sonarr-pull-c7c1e3ac",
874 | "pr-sonarr-pull-c7c1e3ac-5.5.3.8811",
875 | "pr-sonarr-pull-c7c1e3ac-c1515c0"
876 | ]
877 | },
878 | "pr-sonarr-pull-d5dff8e8": {
879 | "description": "",
880 | "hide": true,
881 | "last_updated": "2024-06-30T18:34:04.000Z",
882 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/9734100235",
883 | "latest": false,
884 | "tags": [
885 | "pr-sonarr-pull-d5dff8e8",
886 | "pr-sonarr-pull-d5dff8e8-5.8.1.8901",
887 | "pr-sonarr-pull-d5dff8e8-3e63ce2"
888 | ]
889 | },
890 | "pr-sonarr-pull-d6278fce": {
891 | "description": "",
892 | "hide": true,
893 | "last_updated": "2024-04-19T07:27:34.000Z",
894 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/8749805172",
895 | "latest": false,
896 | "tags": [
897 | "pr-sonarr-pull-d6278fce",
898 | "pr-sonarr-pull-d6278fce-5.5.0.8727",
899 | "pr-sonarr-pull-d6278fce-1c19e5a"
900 | ]
901 | },
902 | "pr-sonarr-pull-da610a1f": {
903 | "description": "",
904 | "hide": true,
905 | "last_updated": "2024-10-02T12:36:11.000Z",
906 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11143841183",
907 | "latest": false,
908 | "tags": [
909 | "pr-sonarr-pull-da610a1f",
910 | "pr-sonarr-pull-da610a1f-5.12.1.9262",
911 | "pr-sonarr-pull-da610a1f-9c8b25f"
912 | ]
913 | },
914 | "pr-sonarr-pull-eb2fd135": {
915 | "description": "",
916 | "hide": true,
917 | "last_updated": "2024-08-11T16:42:41.000Z",
918 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10341263834",
919 | "latest": false,
920 | "tags": [
921 | "pr-sonarr-pull-eb2fd135",
922 | "pr-sonarr-pull-eb2fd135-5.9.0.9013",
923 | "pr-sonarr-pull-eb2fd135-6d514c8"
924 | ]
925 | },
926 | "pr-sonarr-pull-edfc12e2": {
927 | "description": "",
928 | "hide": true,
929 | "last_updated": "2025-01-08T20:35:59.000Z",
930 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12678377337",
931 | "latest": false,
932 | "tags": [
933 | "pr-sonarr-pull-edfc12e2",
934 | "pr-sonarr-pull-edfc12e2-5.17.0.9544",
935 | "pr-sonarr-pull-edfc12e2-e1bb225"
936 | ]
937 | },
938 | "pr-sonarr-pull-f05e552e": {
939 | "description": "",
940 | "hide": true,
941 | "last_updated": "2024-12-31T05:50:37.000Z",
942 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12556030364",
943 | "latest": false,
944 | "tags": [
945 | "pr-sonarr-pull-f05e552e",
946 | "pr-sonarr-pull-f05e552e-5.17.2.9566",
947 | "pr-sonarr-pull-f05e552e-88e760e"
948 | ]
949 | },
950 | "pr-sonarr-pulls-20240308": {
951 | "description": "",
952 | "hide": true,
953 | "last_updated": "2024-03-08T06:55:44.000Z",
954 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/8199832704",
955 | "latest": false,
956 | "tags": [
957 | "pr-sonarr-pulls-20240308",
958 | "pr-sonarr-pulls-20240308-5.4.2.8665",
959 | "pr-sonarr-pulls-20240308-22ef039"
960 | ]
961 | },
962 | "pr-sonarr-pulls-20241127": {
963 | "description": "",
964 | "hide": true,
965 | "last_updated": "2024-11-27T22:33:54.000Z",
966 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12059200644",
967 | "latest": false,
968 | "tags": [
969 | "pr-sonarr-pulls-20241127",
970 | "pr-sonarr-pulls-20241127-5.16.0.9476",
971 | "pr-sonarr-pulls-20241127-625829d"
972 | ]
973 | },
974 | "pr-sorting-movie-select": {
975 | "description": "",
976 | "hide": true,
977 | "last_updated": "2024-07-24T23:41:32.000Z",
978 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/10085563117",
979 | "latest": false,
980 | "tags": [
981 | "pr-sorting-movie-select",
982 | "pr-sorting-movie-select-5.9.0.8952",
983 | "pr-sorting-movie-select-14e3c6a"
984 | ]
985 | },
986 | "pr-stevenlu_migration": {
987 | "description": "",
988 | "hide": true,
989 | "last_updated": "2025-02-06T00:59:33.000Z",
990 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/13169554308",
991 | "latest": false,
992 | "tags": [
993 | "pr-stevenlu_migration",
994 | "pr-stevenlu_migration-5.19.0.9692",
995 | "pr-stevenlu_migration-d24926f"
996 | ]
997 | },
998 | "pr-telegramapikeylogcleanup": {
999 | "description": "",
1000 | "hide": true,
1001 | "last_updated": "2024-09-24T15:32:14.000Z",
1002 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11017013649",
1003 | "latest": false,
1004 | "tags": [
1005 | "pr-telegramapikeylogcleanup",
1006 | "pr-telegramapikeylogcleanup-5.11.0.9230",
1007 | "pr-telegramapikeylogcleanup-8789fc9"
1008 | ]
1009 | },
1010 | "pr-tmdb-list-fixes": {
1011 | "description": "",
1012 | "hide": true,
1013 | "last_updated": "2025-08-15T23:03:31.000Z",
1014 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/17001022681",
1015 | "latest": false,
1016 | "tags": [
1017 | "pr-tmdb-list-fixes",
1018 | "pr-tmdb-list-fixes-5.27.4.10173",
1019 | "pr-tmdb-list-fixes-f54232f"
1020 | ]
1021 | },
1022 | "pr-tmdb-person-filters": {
1023 | "description": "",
1024 | "hide": true,
1025 | "last_updated": "2024-10-11T01:11:21.000Z",
1026 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11284412078",
1027 | "latest": false,
1028 | "tags": [
1029 | "pr-tmdb-person-filters",
1030 | "pr-tmdb-person-filters-5.10.4.9206",
1031 | "pr-tmdb-person-filters-1cea570"
1032 | ]
1033 | },
1034 | "pr-trakt-ratings": {
1035 | "description": "",
1036 | "hide": true,
1037 | "last_updated": "2024-09-24T00:25:53.000Z",
1038 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/11004602113",
1039 | "latest": false,
1040 | "tags": [
1041 | "pr-trakt-ratings",
1042 | "pr-trakt-ratings-5.11.0.9227",
1043 | "pr-trakt-ratings-6c27125"
1044 | ]
1045 | },
1046 | "pr-transmission-labels": {
1047 | "description": "",
1048 | "hide": true,
1049 | "last_updated": "2024-12-01T18:05:38.000Z",
1050 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/12107787005",
1051 | "latest": false,
1052 | "tags": [
1053 | "pr-transmission-labels",
1054 | "pr-transmission-labels-5.16.1.9495",
1055 | "pr-transmission-labels-739a0ec"
1056 | ]
1057 | },
1058 | "pr-v6-develop": {
1059 | "description": "",
1060 | "hide": true,
1061 | "last_updated": "2025-09-07T16:25:41.000Z",
1062 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/17531007708",
1063 | "latest": false,
1064 | "tags": [
1065 | "pr-v6-develop",
1066 | "pr-v6-develop-6.0.0.10208",
1067 | "pr-v6-develop-69a733d"
1068 | ]
1069 | },
1070 | "pr-wanted-cutoff-missing": {
1071 | "description": "",
1072 | "hide": true,
1073 | "last_updated": "2024-05-13T22:50:35.000Z",
1074 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/9070841841",
1075 | "latest": false,
1076 | "tags": [
1077 | "pr-wanted-cutoff-missing",
1078 | "pr-wanted-cutoff-missing-5.6.0.8836",
1079 | "pr-wanted-cutoff-missing-de2143f"
1080 | ]
1081 | },
1082 | "release": {
1083 | "description": "master",
1084 | "hide": false,
1085 | "last_updated": "2025-12-25T10:37:42.000Z",
1086 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/20503580370",
1087 | "latest": true,
1088 | "tags": [
1089 | "release",
1090 | "release-6.0.4.10291",
1091 | "release-2c009b0"
1092 | ]
1093 | },
1094 | "testing": {
1095 | "description": "develop",
1096 | "hide": false,
1097 | "last_updated": "2025-12-25T10:37:47.000Z",
1098 | "last_updated_url": "https://github.com/hotio/radarr/actions/runs/20503580544",
1099 | "latest": false,
1100 | "tags": [
1101 | "testing",
1102 | "testing-6.1.0.10309",
1103 | "testing-69e0ace"
1104 | ]
1105 | }
1106 | }
1107 |
--------------------------------------------------------------------------------