Skip to content

Commit

Permalink
2.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jmerle committed May 12, 2019
1 parent fb6c596 commit dbf7ecb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 2.7.2 - May 13th, 2019
- Fixed the USACO Training parser

# 2.7.1 - May 7th, 2019
- Fixed the HackerEarth parser

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "competitive-companion",
"productName": "Competitive Companion",
"version": "2.7.1",
"version": "2.7.2",
"description": "Parses programming problems and sends them to various tools like CHelper and Hightail.",
"repository": "https://github.com/jmerle/competitive-companion",
"author": "Jasper van Merle",
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/problem/USACOTrainingProblemParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Parser } from '../Parser';

export class USACOTrainingProblemParser extends Parser {
public getMatchPatterns(): string[] {
return ['http://train.usaco.org/usacoprob2*'];
return ['https://train.usaco.org/usacoprob2*'];
}

public async parse(url: string, html: string): Promise<Sendable> {
Expand Down

0 comments on commit dbf7ecb

Please sign in to comment.