Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
davidstoneham committed Dec 11, 2019
1 parent 0a07830 commit 2c6b8e7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
3 changes: 1 addition & 2 deletions doc/release-notes/release-notes-2.1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ Please report bugs using the issue tracker at github: https://github.com/thelind
Shutdown Altitude if it is already running and then run the installer.

## About this Release

This release contains command updates to accomodate changes made by the Metrix 3.4 update
- This release contains command updates to accomodate changes made by the Metrix 3.4 update
11 changes: 11 additions & 0 deletions doc/release-notes/release-notes-2.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Altitude 2.1.1

This is a patch release.

Please report bugs using the issue tracker at github: https://github.com/thelindaprojectinc/altitude/issues

## How to Upgrade
Shutdown Altitude if it is already running and then run the installer.

## About this Release
- Fix Altitude not detecting new core update
5 changes: 3 additions & 2 deletions lib/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,9 @@ export default class Client {
try {
const res: any = await helpers.getRequest("https://raw.githubusercontent.com/thelindaprojectinc/altitude/master/clientBinaries.json");
let remoteClientBinaries = JSON.parse(res.body);
if (compareVersions(clientBinaries[this.clientName].version, remoteClientBinaries[this.clientName].version) >= 0) {
clientBinaries = remoteClientBinaries
if (compareVersions(remoteClientBinaries[this.clientName].version, clientBinaries[this.clientName].version) >= 0) {
clientBinaries = remoteClientBinaries;
log.info("Client", "Using remote client binaries");
}
} catch (ex) {
log.info("Client", "Failed to get remote client binaries, using local");
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": "altitude",
"version": "2.1.0",
"version": "2.1.1",
"description": "The Altitude wallet by Linda Project Inc.",
"homepage": "https://github.com/thelindaprojectinc/altitude",
"author": {
Expand Down

0 comments on commit 2c6b8e7

Please sign in to comment.