Skip to content

Commit

Permalink
Merge pull request #588 from FreeTrade/master
Browse files Browse the repository at this point in the history
v5.0.8
  • Loading branch information
FreeTrade authored Nov 12, 2020
2 parents bcc8133 + 575b215 commit c4c2d89
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
31 changes: 31 additions & 0 deletions configlocal.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

var mutedwords = new Array();
var defaulttip = 1000;
var oneclicktip = 0;
var maxfee = 2;
var pathpermalinks = 'https://member.cash/';
var profilepicbase = 'img/profilepics/';
mapTileProvider = 'https://tile.openstreetmap.org/{z}/{x}/{y}.png';
var siteTitle = 'Ember';
var theStyle = 'feels compact';

//These should probably all go in a single config object
var settings = {
"showyoutube": "true",
"showimgur": "true",
"showtwitter": "true"
};
var dropdowns = {
"contentserver": "http://localhost:3123/v2/member.js",
"txbroadcastserver": "http://localhost:3123/v2/",
"utxoserver": "http://localhost:3123/v2/",
"currencydisplay": "USD",
"languageselector": "en"
};
var numbers = {
"defaulttip": 1000,
"oneclicktip": 0,
"maxfee": 2,
"results": 25,
"usdrate": 0
}
2 changes: 1 addition & 1 deletion js/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

//Preferable to grab this from sw.js, but don't know how.
//So must be entered in two places
var version = "5.0.7";
var version = "5.0.8";

var pubkey = ""; //Public Key (Legacy)
var mnemonic = ""; //Mnemonic BIP39
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const PRECACHE_URLS = [
];

//If updating version here, also update version in login.js
const version = '5.0.7';
const version = '5.0.8';

const RUNTIME = 'runtime-' + version;
const INSTALL = 'install-' + version;
Expand Down

0 comments on commit c4c2d89

Please sign in to comment.