Skip to content

Commit

Permalink
[VERSION] 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lolamtisch committed Sep 30, 2020
1 parent 3a756dc commit f37d5f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ chrome.runtime.onInstalled.addListener(function(details){
});

function clientIsUpToDate() {
if(!serverVersion || serverVersion === '0.1.0') return true;
if(!serverVersion || serverVersion === '0.1.1') return true;
return false;
}

Expand Down
2 changes: 1 addition & 1 deletion Extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Discord Rich Presence",
"version": "0.1.0",
"version": "0.1.1",
"description": "Discord rich presence extension with open API.",
"background": {
"scripts": ["background.js"],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discord-rpc",
"version": "0.1.0",
"version": "0.1.1",
"description": "",
"dependencies": {
"discord-rich-presence": "0.0.8",
Expand Down
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const version = "0.1.0";
const version = "0.1.1";
const discord = require('./Server/presence');
const WebSocket = require('ws');

Expand Down

0 comments on commit f37d5f7

Please sign in to comment.