Skip to content

Commit

Permalink
version 2.1.3
Browse files Browse the repository at this point in the history
release notes etc.
  • Loading branch information
maloep committed Dec 6, 2016
1 parent 2e53589 commit 8a0d469
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="script.games.rom.collection.browser"
version="2.1.2"
version="2.1.3"
name="Rom Collection Browser"
provider-name="malte">
<requires>
Expand Down
21 changes: 21 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
5 changes: 2 additions & 3 deletions resources/tests/test_scrapers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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&nbsp;Enterprises&nbsp;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&nbsp;of&nbsp;America,&nbsp;Inc.")

Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit 8a0d469

Please sign in to comment.