Skip to content

Commit

Permalink
Version link fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslansalikhov committed Oct 22, 2017
1 parent 71eda75 commit 2221029
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/assets/locales/locale-ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"locked_tip":"<br/>Нажмите, чтобы войти, открыв кошелек.<br/><br/>Закрыв окно браузера Вы также выйдете из аккаунта.",
"unlocked_tip":"<br/>Нажмите, чтобы выйти, закрыв кошелек.<br/><br/>Закрыв окно браузера Вы также выйдете из аккаунта.",
"account_notify":"Активный аккаунт в настоящее время %(account)s",
"account_value":"Cтоимость счета"
"account_value":"Оценка"
},
"tooltip":{
"call_limit":"Это цена досрочного погашения наименее обеспеченной залогом позиции с гарантийным взносом на рынке.",
Expand Down
4 changes: 2 additions & 2 deletions app/components/Layout/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Footer extends React.Component {
componentDidMount() {
this.checkNewVersionAvailable.call(this);

this.downloadLink = "https://bitshares.org/download";
this.downloadLink = "https://github.com/blckchnd/rudex-ui/releases/latest";
}

shouldComponentUpdate(nextProps) {
Expand All @@ -47,7 +47,7 @@ class Footer extends React.Component {

checkNewVersionAvailable(){
if (__ELECTRON__) {
fetch("https://api.github.com/repos/bitshares/bitshares-ui/releases/latest").then((res)=>{
fetch("https://api.github.com/repos/blckchnd/rudex-ui/releases/latest").then((res)=>{
return res.json();
}).then(function(json){
let oldVersion = String(json.tag_name);
Expand Down
2 changes: 1 addition & 1 deletion app/components/Wallet/WalletUnlockModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import SettingsActions from "actions/SettingsActions";
import {Apis} from "bitsharesjs-ws";
import utils from "common/utils";
import AccountSelector from "../Account/AccountSelector";
var logo = require("assets/logo-ico-blue.png");
var logo = require("assets/logo-rudex-big.png");

class WalletUnlockModal extends React.Component {

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": "RuDEX-light",
"version": "2.0.171015",
"version": "2.0.171021",
"description": "Advanced wallet interface for the BitShares financial blockchain.",
"homepage": "https://github.com/blckchnd/rudex-ui",
"author": "RuDEX Team <[email protected]>",
Expand Down

0 comments on commit 2221029

Please sign in to comment.