Skip to content

Commit

Permalink
Compile Groovy Scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 7, 2024
1 parent ef02d2c commit 9039234
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
6 changes: 4 additions & 2 deletions compiled/posix_movie.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
[series_id: 229743, title: "VTuber Legend"],
[series_id: 240633, title: "A Journey Through Another World"],
[series_id: 245285, title: "Failure Frame"],
[series_id: 237045, title: "Chery Magic!"]
[series_id: 237045, title: "Chery Magic!"],
[series_id: 260840, title: "Whimsical Wish"]
]
def name_ = n
short_title.each {
Expand Down Expand Up @@ -64,7 +65,8 @@
[series_id: 229743, title: "VTuber Legend"],
[series_id: 240633, title: "A Journey Through Another World"],
[series_id: 245285, title: "Failure Frame"],
[series_id: 237045, title: "Chery Magic!"]
[series_id: 237045, title: "Chery Magic!"],
[series_id: 260840, title: "Whimsical Wish"]
]
def name_ = n
short_title.each {
Expand Down
13 changes: 11 additions & 2 deletions compiled/posix_tv.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
[series_id: 229743, title: "VTuber Legend"],
[series_id: 240633, title: "A Journey Through Another World"],
[series_id: 245285, title: "Failure Frame"],
[series_id: 237045, title: "Chery Magic!"]
[series_id: 237045, title: "Chery Magic!"],
[series_id: 260840, title: "Whimsical Wish"]
]
def name_ = n
short_title.each {
Expand All @@ -37,6 +38,13 @@
fixed_name = fixed_name.replaceAll(/(\s|\.)*$/, '')
fixed_name
}
{
def show_id = [
239779, 112888
]
def is_id_matches = show_id.find { curr_id -> tmdbid == curr_id } ?: ""
is_id_matches ? " ($y) [tmdbid-$is_id_matches]" : ""
}
{"/"}
{
episode.special ? 'Specials' : 'Season '+s
Expand Down Expand Up @@ -71,7 +79,8 @@
[series_id: 229743, title: "VTuber Legend"],
[series_id: 240633, title: "A Journey Through Another World"],
[series_id: 245285, title: "Failure Frame"],
[series_id: 237045, title: "Chery Magic!"]
[series_id: 237045, title: "Chery Magic!"],
[series_id: 260840, title: "Whimsical Wish"]
]
def name_ = n
short_title.each {
Expand Down
6 changes: 4 additions & 2 deletions compiled/windows_movie.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
[series_id: 229743, title: "VTuber Legend"],
[series_id: 240633, title: "A Journey Through Another World"],
[series_id: 245285, title: "Failure Frame"],
[series_id: 237045, title: "Chery Magic!"]
[series_id: 237045, title: "Chery Magic!"],
[series_id: 260840, title: "Whimsical Wish"]
]
def name_ = n
short_title.each {
Expand Down Expand Up @@ -63,7 +64,8 @@
[series_id: 229743, title: "VTuber Legend"],
[series_id: 240633, title: "A Journey Through Another World"],
[series_id: 245285, title: "Failure Frame"],
[series_id: 237045, title: "Chery Magic!"]
[series_id: 237045, title: "Chery Magic!"],
[series_id: 260840, title: "Whimsical Wish"]
]
def name_ = n
short_title.each {
Expand Down
13 changes: 11 additions & 2 deletions compiled/windows_tv.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
[series_id: 229743, title: "VTuber Legend"],
[series_id: 240633, title: "A Journey Through Another World"],
[series_id: 245285, title: "Failure Frame"],
[series_id: 237045, title: "Chery Magic!"]
[series_id: 237045, title: "Chery Magic!"],
[series_id: 260840, title: "Whimsical Wish"]
]
def name_ = n
short_title.each {
Expand All @@ -36,6 +37,13 @@
fixed_name = fixed_name.replaceAll(/(\s|\.)*$/, '')
fixed_name
}
{
def show_id = [
239779, 112888
]
def is_id_matches = show_id.find { curr_id -> tmdbid == curr_id } ?: ""
is_id_matches ? " ($y) [tmdbid-$is_id_matches]" : ""
}
{"/"}
{
episode.special ? 'Specials' : 'Season '+s
Expand Down Expand Up @@ -70,7 +78,8 @@
[series_id: 229743, title: "VTuber Legend"],
[series_id: 240633, title: "A Journey Through Another World"],
[series_id: 245285, title: "Failure Frame"],
[series_id: 237045, title: "Chery Magic!"]
[series_id: 237045, title: "Chery Magic!"],
[series_id: 260840, title: "Whimsical Wish"]
]
def name_ = n
short_title.each {
Expand Down

0 comments on commit 9039234

Please sign in to comment.