diff --git a/common/known-removable-phrases.js b/common/known-removable-phrases.js index 4902345e..e8712000 100644 --- a/common/known-removable-phrases.js +++ b/common/known-removable-phrases.js @@ -362,6 +362,7 @@ const knownRemovablePhrases = [ " x Flower Workshop", " x Free Vocafest Screening", " x FIST CLUB for IWD", + " x Film House: Pride Edition", " x Gala Screening", " X Migrants' Rights Network", " x SCRT", diff --git a/common/normalize-title.js b/common/normalize-title.js index 4d5d74a8..92c7a1c2 100644 --- a/common/normalize-title.js +++ b/common/normalize-title.js @@ -720,7 +720,7 @@ function normalizeTitle(title, options) { ["Andre Rieu - ", "Andre Rieu: "], ["Andre Rieu: Summer 2026:", "Andre Rieu's 2026 Summer Concert:"], [" + UK Premiere: Replikka", " + Replikka"], - [" + Iggy Pop – Lust for life", " & Lust for life"], + [/ \+ Iggy Pop [–�] Lust for life/i, " & Lust for life"], [ /Bluey At The Cinema - Playdates$/i, "Bluey At The Cinema: Playdates with Friends", diff --git a/common/tests/test-titles.json b/common/tests/test-titles.json index d7d86b29..4962fcc6 100644 --- a/common/tests/test-titles.json +++ b/common/tests/test-titles.json @@ -72338,5 +72338,129 @@ { "input": "Land & Freedom", "output": "land freedom" + }, + { + "input": "All Of Us Strangers x Film House: Pride Edition", + "output": "all of us strangers" + }, + { + "input": "Outdoor Cinema: Ghidorah, The Three-Headed Monster", + "output": "ghidorah the threeheaded monster" + }, + { + "input": "DocHouse: Disciples", + "output": "disciples" + }, + { + "input": "DocHouse: Killing Anna", + "output": "killing anna" + }, + { + "input": "DocHouse: Life Support", + "output": "life support" + }, + { + "input": "DocHouse: Loving Karma", + "output": "loving karma" + }, + { + "input": "Family Film Club: K-Pop Demon Hunters: Singalong", + "output": "kpop demon hunters" + }, + { + "input": "Royal Ballet and Opera: Alice’s Adventures in Wonderland ENCORE", + "output": "royal ballet opera 2025 adventures in wonderland" + }, + { + "input": "Royal Ballet and Opera: Così fan tutte", + "output": "royal ballet opera 2025 cosi fan tutte" + }, + { + "input": "Royal Ballet and Opera: Götterdämmerung", + "output": "royal ballet opera 2025 gotterdammerung" + }, + { + "input": "Scary Movie ", + "output": "scary movie" + }, + { + "input": "Secret Film Screenings Summer Series", + "output": "mystery movie summer series" + }, + { + "input": "ANGEL'S EGG", + "output": "angels egg" + }, + { + "input": "Loja e fundit", + "output": "loja e fundit" + }, + { + "input": "Toy Story 5", + "output": "toy story 5" + }, + { + "input": "We're Nothing at All", + "output": "were nothing at all" + }, + { + "input": "Camera As Gun: Anti-Colonial Film Units As Counter-Archives [Asia]", + "output": "camera as gun anticolonial film units as counterarchives" + }, + { + "input": "Refugee Week Screening: Everybody to Kenmure Street", + "output": "everybody to kenmure street" + }, + { + "input": "Hunt For The Wilderpeople - 10th Anniversary", + "output": "hunt for the wilderpeople" + }, + { + "input": "Man with a Movie Camera with Live Score", + "output": "man with a movie camera" + }, + { + "input": "ThE ToYMaKeR’s KeY + Q&A with Andy Turner, Drew Casson, Harry Shotta & Desmond Lambert", + "output": "toymakers key" + }, + { + "input": "All Out of Bubblegum Film Club: Speed Racer", + "output": "speed racer" + }, + { + "input": "Divine Hammer (UK Premiere)", + "output": "divine hammer" + }, + { + "input": "TV Party, Tonight presents: ENO (1973) + Iggy Pop � Lust for life (1986)", + "output": "eno (1973) lust for life (1986)" + }, + { + "input": "TV PARTY, TONIGHT! Saul Bass: The Art of The Title + Shorts", + "output": "tv party tonight saul bass the art of the title" + }, + { + "input": "Pride (Opening Pride Month)", + "output": "pride" + }, + { + "input": "Scary Movie + Drag Intro", + "output": "scary movie" + }, + { + "input": "Hedwig and the Angry Inch Singalong!", + "output": "hedwig the angry inch" + }, + { + "input": "Kiki", + "output": "kiki" + }, + { + "input": "My Man Godfrey", + "output": "my man godfrey" + }, + { + "input": "BA Media Degree Show — Screening: Saturday, 30 May - 12:00 PM", + "output": "ba media degree show" } ]