Skip to content

Commit

Permalink
Current version as of 10/3/18
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinLeath committed Oct 3, 2018
1 parent 1f90a84 commit 8c6400d
Show file tree
Hide file tree
Showing 5 changed files with 178 additions and 85 deletions.
10 changes: 10 additions & 0 deletions home/assets/js/externalopener.js
Expand Up @@ -29,3 +29,13 @@ document.getElementById("discordclick").addEventListener("auxclick", function (e
var remoteLink = this.getAttribute('href');
shell.openExternal( remoteLink );
});
document.getElementById("githubclick").addEventListener("click", function (e) {
e.preventDefault();
var remoteLink = this.getAttribute('href');
shell.openExternal( remoteLink );
});
document.getElementById("githubclick").addEventListener("auxclick", function (e) {
e.preventDefault();
var remoteLink = this.getAttribute('href');
shell.openExternal( remoteLink );
});
13 changes: 11 additions & 2 deletions index.html
Expand Up @@ -178,7 +178,7 @@
text-align: left;
margin: auto;
display: block;
flex:
padding-top: 20px;
}
</style>
</head>
Expand Down Expand Up @@ -330,12 +330,21 @@ <h1 style="text-align: center;">Rainbow Six Siege | Rank Calculator (Custom Rank
<div id="page2">
<button class="button small btnalign" id="changebtn2" type="button" onclick="changetopage1();">Return to R6RC</button>
<div class="changelog">
<table>
<tbody>
<tr>
<td>R6RC | R6 Rank Calculator</td>
<td><a id="githubclick" class="button icon fa-download" href="https://github.com/AustinLeath/r6rc/releases/latest/" target="_blank">Releases</a></td>
</tr>
</tbody>
</table>
<h1><strong>R6RC | Changelog</strong></h2>
<h1>VERSION 0.4.2 CHANGE NOTES</h1>
<ul>
<strong>CHANGES</strong>
<li><b>Updated</b> all dependencies to the latest version</li>
<li><b>Improved</b> R6RC start up time!</li>
<li><b>Added</b> Google analytics</li>
<li><b>Improved</b> R6RC start up time</li>
</ul>
<ul>
<strong>COMING SOON</strong>
Expand Down
4 changes: 4 additions & 0 deletions main.js
@@ -1,3 +1,7 @@
var ua = require('universal-analytics');
var visitor = ua('UA-111374271-3');
visitor.pageview("index.html").send();

const {app, BrowserWindow, Menu, protocol, ipcMain, shell} = require('electron');
const log = require('electron-log');
const {autoUpdater} = require("electron-updater");
Expand Down

0 comments on commit 8c6400d

Please sign in to comment.