Skip to content

Commit

Permalink
V1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Revadike committed Apr 6, 2020
1 parent 70cd47a commit a729d35
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.bat
node_modules
package-lock.json
.vscode/*
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ Also, this is a good alternative, in case you don't like using Epic's client or
To which I will say, why not? Most of these games are actually outstanding games! Even if you don't like Epic and their shenanigans, you will be pleased to know that Epic actually funds all the free copies that are given away: ["But we actually found it was more economical to pay developers [a lump sum] to distribute their game free for two weeks..."](https://arstechnica.com/gaming/2019/03/epic-ceo-youre-going-to-see-lower-prices-on-epic-games-store/)

## Changelog
### V1.1.2
* Enables `rememberLastSession` by default* (Closes #4)

*Please run `npm update` to update `epicgames-client`, required to utilize this new feature

### V1.1.1
* Ensured all search results for all namespaces are purchased

Expand Down
3 changes: 2 additions & 1 deletion gimme_free_epic_shit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ const { Launcher: EpicGames } = require(`epicgames-client`);
const { email, password } = require(`${__dirname}/config.json`);
const client = new EpicGames({
email: process.argv[2] || email,
password: process.argv[3] || password
password: process.argv[3] || password,
rememberLastSession: true
});

(async () => {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "epicgames-freebies-claimer",
"description": "Claim free game promotions from the Epic Game Store",
"version": "1.1.1",
"version": "1.1.2",
"author": "Revadike",
"homepage": "https://revadike.com",
"url": "https://github.com/revadike/epicgames-freebies-claimer",
"license": "MIT",
"main": "gimme_free_epic_shit.js",
"dependencies": {
"epicgames-client": "latest"
"epicgames-client": "^2.0.23"
}
}

0 comments on commit a729d35

Please sign in to comment.