diff --git a/Changelog b/Changelog index 39bbfb405..2308cf7b5 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-05-17 DariusIII + * Chg: Rename XBOX 360 DLC to Xbox 360 DLC to be consistent with rest of the categories * Fix: Fix XXX and Full XXX movie view * Fix: Revert to old output code with addition of exit; to prevent overwriting of sent headers * Chg: Use laravel Response class to return xml in Capabilities class output function diff --git a/database/fixtures/categories.php b/database/fixtures/categories.php index ae84550f1..d83b1fb6a 100644 --- a/database/fixtures/categories.php +++ b/database/fixtures/categories.php @@ -103,7 +103,7 @@ return [ ], 10 => [ 'id' => 1070, - 'title' => 'XBOX 360 DLC', + 'title' => 'Xbox 360 DLC', 'parentid' => 1000, 'status' => 1, 'description' => null, diff --git a/database/seeds/CategoriesTableSeeder.php b/database/seeds/CategoriesTableSeeder.php index 17dd8f4d6..ccf1863ff 100644 --- a/database/seeds/CategoriesTableSeeder.php +++ b/database/seeds/CategoriesTableSeeder.php @@ -130,7 +130,7 @@ class CategoriesTableSeeder extends Seeder 10 => array ( 'id' => 1070, - 'title' => 'XBOX 360 DLC', + 'title' => 'Xbox 360 DLC', 'parentid' => 1000, 'status' => 1, 'description' => NULL, diff --git a/docs/newznab_api_specification.txt b/docs/newznab_api_specification.txt index 02f8a320b..76b3352dc 100755 --- a/docs/newznab_api_specification.txt +++ b/docs/newznab_api_specification.txt @@ -594,8 +594,8 @@ newznab-tmux https://github.com/NNTmux/newznab-tmux 1030 Console/Wii Nintendo Wii 1040 Console/Xbox Microsoft XBox 1050 Console/Xbox 360 Microsoft XBox 360 - 1060 Console/Wiiware/VC Wii homebrew - 1070 Console/XBOX 360 DLC Microsoft XBox 360 Downloadable Content + 1060 Console/Wiiware VC Wii homebrew + 1070 Console/Xbox 360 DLC Microsoft XBox 360 Downloadable Content 1080 Console/PS3 Playstation 3 1999 Console/Other Misc Console 1110 Console/3DS Nintendo 3DS diff --git a/resources/db/patches/mysql/+1~categories.sql b/resources/db/patches/mysql/+1~categories.sql index 2539128c4..3a6040300 100644 --- a/resources/db/patches/mysql/+1~categories.sql +++ b/resources/db/patches/mysql/+1~categories.sql @@ -1,3 +1,4 @@ # Rename WiiWare/VC category into WiiWare VC -UPDATE categories SET title = 'WiiWare VC' WHERE title = 'WiiWare/VC'; \ No newline at end of file +UPDATE categories SET title = 'WiiWare VC' WHERE title = 'WiiWare/VC'; +UPDATE categories SET title = 'Xbox 360 DLC' WHERE title = 'XBOX 360 DLC'; \ No newline at end of file