From 8a0d469c12ceb64e197edb4407fc265507170e21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20L=C3=B6pmann?= Date: Tue, 6 Dec 2016 06:28:34 +0100 Subject: [PATCH] version 2.1.3 release notes etc. --- addon.xml | 2 +- changelog.txt | 21 +++++++++++++++++++++ resources/tests/test_scrapers.py | 5 ++--- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/addon.xml b/addon.xml index 2c91f728..e77ff019 100644 --- a/addon.xml +++ b/addon.xml @@ -1,7 +1,7 @@ diff --git a/changelog.txt b/changelog.txt index bd54f642..1f602be3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,24 @@ +2.1.3 (12/2016) +~~~~~~~~~~~~~ +General: + * migrated from google code to github + * fix encodings in various places (aquiles2k) + * changed isfile to xbmcvfs.exists (jloper3) + * Modify scrapers and add test cases (bruny) + * Set column as TEXT in Publishers table (bruny) + * fix for Max folder depth bug (martyn-harris) + * remove perspective field from moby scraper (martyn-harris) + * add Mac OSX section in emu autoconfig (bruny) + * fixes and improvements to scrape and db update process (bruny) + * refactoring of config objects (bruny) + +UI: + * fix game boy advance platform config (aquiles2k) + * fix for filter headers (aquiles2k) + * fix for radio buttons (aquiles2k) + * fix gameinfo ui for non-confluence skins (aquiles2k) + + 2.1.2 (02/2015) ~~~~~~~~~~~~~ General: diff --git a/resources/tests/test_scrapers.py b/resources/tests/test_scrapers.py index 28aaf2f1..f56b4ff7 100644 --- a/resources/tests/test_scrapers.py +++ b/resources/tests/test_scrapers.py @@ -47,7 +47,6 @@ def test_GameDetails_MobyGames_Sega(self): self.assertEqual(results[0].get('Game')[0], "Metal Head") self.assertEqual(results[0].get('Developer')[0], "SEGA Enterprises Ltd.") - self.assertEqual(results[0].get('Perspective')[0], "1st-person") self.assertEqual(results[0].get('ReleaseYear')[0], "1994") self.assertEqual(results[0].get('Publisher')[0], "SEGA of America, Inc.") @@ -181,8 +180,8 @@ def test_ContentNotFound404_ArchiveVG(self): # This will throw a HTTPError which we need to handle (currently the code doesn't handle it) parser = DescriptionParserFactory().getParser(parseInstruction) - self.assertRaises(HTTPError, parser.parseDescription, descFile, 'utf-8', - "Expected 404 response from unavailable site archive.vg") + self.assertRaises(HTTPError, parser.parseDescription, descFile, 'utf-8') + #"Expected 404 response from unavailable site archive.vg") def test_ContentNotFound404_MAWS(self):