Skip to content

Commit

Permalink
Outage notice
Browse files Browse the repository at this point in the history
  • Loading branch information
mchristopher committed Aug 4, 2016
1 parent 93b195a commit f015355
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
11 changes: 11 additions & 0 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ <h1>Login to Pokémon GO</h1>
Update available, click here to install
</a>
</span>
<span>
<h2 style="color: #f00">
App currently blocked by Niantic.
</h2>
<h4>
A new version will be released once the new API changes are reverse engineered.
</h4>
<h4>
Follow <a href="https://twitter.com/icer5k" class="new-window">@icer5k</a> for updates.
</h4>
</span>
<br>
<div class="row">
<div class="col-xs-3 col-xs-offset-3">
Expand Down
10 changes: 9 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,15 @@ app.on('ready', function() {
function setupMainWindow() {
restarting = false;

mainWindow = new BrowserWindow({width: 800, height: 600, minWidth: 700, minHeight: 500});
mainWindow = new BrowserWindow({
width: 800,
height: 600,
minWidth: 700,
minHeight: 500,
webPreferences: {
partition: 'persist:pogolivemap'
}
});
mainWindow.loadURL('file://' + __dirname + '/login.html');

mainWindow.on('closed', function() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Mike Christopher",
"repository": "https://github.com/mchristopher/PokemonGo-DesktopMap",
"license": "MIT",
"version" : "0.1.6",
"version" : "0.1.7",
"main" : "main.js",
"scripts": {
"postinstall": "cd ./map/ && pip install -r requirements.txt",
Expand Down

0 comments on commit f015355

Please sign in to comment.