Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
veger committed Jun 1, 2019
1 parent 5b3230a commit fdc3da9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
dist
test/analysis_errors
node_modules

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Upcoming

# 0.3.0
* Show shorthand boost information
* Keep actual investments into account when calculating 'Boost information' ([#3](https://github.com/veger/foei/issues/3))
* Hide GB information for self==owner
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ Nonetheless, I take no responsibility for lost accounts or any other loss that m
FoEI has been tested by a select few players for a couple of months running on different servers, showing it works and it is great aid.
Now it is time to present it to the public and polish it some more:

* Try on more servers / languages
* I made some quick & dirty UI...
* Lacking much experience I also made a quick & dirty Javascript implementation
* **Fix MacOS support**, for some reason intercepting the incoming traffic does not seem to work..??
* **Fix MacOS support**, for some reason intercepting the incoming traffic does not seem to work..?? (can people confirm/deny in [issue #7](https://github.com/veger/foei/issues/7)?)
* more...

## Installation
Expand All @@ -43,7 +42,7 @@ Installation instructions can be found on the [FoEI website](https://www.vegerwe

## Contributing

As stated the UI and implementation itself can use some polishing. MacOS support should be figured out and fixed. Also there are lots of other features that can be added to the extension using the readily available game information.
As stated the UI and implementation itself can use some polishing. MacOS support should be figured out and fixed ([#7](https://github.com/veger/foei/issues/7)). Also there are lots of other features that can be added to the extension using the readily available game information.

So feel free to send bug reports, pull requests and questions. But be aware to use an *anonymous* account or at least one that cannot be traced to your game account if you are afraid of getting banned.

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "FoEI",
"version": "0.2.0",
"version": "0.3.0",
"description": "Forge of Empires Inspector",
"permissions": [
"activeTab",
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "foei",
"version": "0.2.0",
"version": "0.3.0",
"description": "Browser extension that helps you playing Forge of Empires, saving your time and (thereby) giving you an advantage over other players.",
"main": "main.js",
"repository": {
Expand Down Expand Up @@ -40,6 +40,7 @@
},
"scripts": {
"lint": "eslint *.js background/*.js ui/*.js",
"release": "if [ -z \"$KEY\" ]; then echo \"\nERROR: KEY missing\n\n\"; exit 1; fi && rm -rf foei.crx dist && mkdir dist && cp -r background images ui ajax_inspect.js inject.js LICENSE manifest.json options* dist && google-chrome-unstable --pack-extension=dist --pack-extension-key=$(readlink -f $PWD/$KEY) && mv dist.crx foei.crx",
"test": "nyc --hook-run-in-this-context --reporter text --reporter lcov mocha --require test/setup.js \"test/specs/**/*.test.js\""
}
}
}

0 comments on commit fdc3da9

Please sign in to comment.