Skip to content

Commit

Permalink
Updates CHANGELOG, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
cadwallion committed Aug 3, 2012
1 parent 1bf49b2 commit b3f7839
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog! # Changelog!


## 0.2.0 (Aug 03 2012)

* Adds domain remapping to regions
* Fixes bug with EU profile scraping due to language selection
* Parses new player stats (Career Wins, Most Played Type, Games This Season)
* Parses new league stats (Current/Highest Solo/Team Leagues)

## 0.1.3 (Jul 26 2012) ## 0.1.3 (Jul 26 2012)


* Adds checks to prevent parse issues with accounts that don't ladder * Adds checks to prevent parse issues with accounts that don't ladder
Expand Down
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -41,6 +41,13 @@ scraper.scrape
race: 'Protoss', race: 'Protoss',
wins: '684', wins: '684',
achievement_points: '3630', achievement_points: '3630',
current_solo_league: 'Not Yet Ranked',
highest_solo_league: 'Platinum',
current_team_league: 'Not Yet Ranked',
highest_team_league: 'Diamond',
career_games: '1568',
games_this_season: '0',
most_played: '4v4',
leagues: [ leagues: [
{ {
name: "1v1 Platinum Rank 95", name: "1v1 Platinum Rank 95",
Expand Down
2 changes: 1 addition & 1 deletion bnet_scraper.gemspec
Expand Up @@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "bnet_scraper" s.name = "bnet_scraper"
s.version = "0.1.3" s.version = "0.2.0"
s.authors = ["Andrew Nordman"] s.authors = ["Andrew Nordman"]
s.email = ["anordman@majorleaguegaming.com"] s.email = ["anordman@majorleaguegaming.com"]
s.homepage = "https://github.com/agoragames/bnet_scraper/" s.homepage = "https://github.com/agoragames/bnet_scraper/"
Expand Down
7 changes: 7 additions & 0 deletions lib/bnet_scraper/starcraft2/profile_scraper.rb
Expand Up @@ -12,6 +12,13 @@ module Starcraft2
# race: 'Protoss', # race: 'Protoss',
# wins: '684', # wins: '684',
# achievement_points: '3630', # achievement_points: '3630',
# current_solo_league: 'Not Yet Ranked',
# highest_solo_league: 'Platinum',
# current_team_league: 'Not Yet Ranked',
# highest_team_league: 'Diamond',
# career_games: '1568',
# games_this_season: '0',
# most_played: '4v4',
# leagues: [ # leagues: [
# { # {
# name: "1v1 Platinum Rank 95", # name: "1v1 Platinum Rank 95",
Expand Down

0 comments on commit b3f7839

Please sign in to comment.