Skip to content

Commit b3f7839

Browse files
committed
Updates CHANGELOG, version bump
1 parent 1bf49b2 commit b3f7839

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog!
22

3+
## 0.2.0 (Aug 03 2012)
4+
5+
* Adds domain remapping to regions
6+
* Fixes bug with EU profile scraping due to language selection
7+
* Parses new player stats (Career Wins, Most Played Type, Games This Season)
8+
* Parses new league stats (Current/Highest Solo/Team Leagues)
9+
310
## 0.1.3 (Jul 26 2012)
411

512
* Adds checks to prevent parse issues with accounts that don't ladder

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ scraper.scrape
4141
race: 'Protoss',
4242
wins: '684',
4343
achievement_points: '3630',
44+
current_solo_league: 'Not Yet Ranked',
45+
highest_solo_league: 'Platinum',
46+
current_team_league: 'Not Yet Ranked',
47+
highest_team_league: 'Diamond',
48+
career_games: '1568',
49+
games_this_season: '0',
50+
most_played: '4v4',
4451
leagues: [
4552
{
4653
name: "1v1 Platinum Rank 95",

bnet_scraper.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
33

44
Gem::Specification.new do |s|
55
s.name = "bnet_scraper"
6-
s.version = "0.1.3"
6+
s.version = "0.2.0"
77
s.authors = ["Andrew Nordman"]
88
s.email = ["[email protected]"]
99
s.homepage = "https://github.com/agoragames/bnet_scraper/"

lib/bnet_scraper/starcraft2/profile_scraper.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ module Starcraft2
1212
# race: 'Protoss',
1313
# wins: '684',
1414
# achievement_points: '3630',
15+
# current_solo_league: 'Not Yet Ranked',
16+
# highest_solo_league: 'Platinum',
17+
# current_team_league: 'Not Yet Ranked',
18+
# highest_team_league: 'Diamond',
19+
# career_games: '1568',
20+
# games_this_season: '0',
21+
# most_played: '4v4',
1522
# leagues: [
1623
# {
1724
# name: "1v1 Platinum Rank 95",

0 commit comments

Comments
 (0)