Skip to content
This repository has been archived by the owner on Nov 2, 2018. It is now read-only.

Commit

Permalink
Merge pull request #95 from NebulousLabs/version
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
DavidVorick committed Oct 18, 2015
2 parents 1a2c139 + 7570865 commit bb972c2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# New Sia UI - 0.4.3
# New Sia UI - 0.4.4

This is the user interface for [Sia](https://github.com/NebulousLabs/Sia), it
is a desktop application based off the
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Sia-UI",
"version": "v0.4.3-beta",
"version": "v0.4.4-beta",
"main": "index.js",
"author": "NebulousLabs",
"description": "A UI for Sia, The Collaborative Cloud",
Expand Down
2 changes: 1 addition & 1 deletion app/plugins/About/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<div class='about'>
Sia UI version:
<div class='version'>
0.4.3
0.4.4
</div>
</div>
<div class='about'>
Expand Down
2 changes: 1 addition & 1 deletion app/plugins/Wallet/js/buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function filterAddressList(searchstr) {
NodeList.prototype.forEach = Array.prototype.forEach
var entries = eID('address-list').childNodes;
entries.forEach( function(entry) {
if (entry.querySelector('.address').innerHTML.indexOf(searchstr) || searchstr.length == 0) {
if (entry.querySelector('.address').innerHTML.indexOf(searchstr)) {
hide(entry);
} else {
show(entry);
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": "Sia-UI-beta",
"version": "0.4.3",
"version": "0.4.4",
"main": "app/index.js",
"author": "NebulousLabs",
"description": "A UI application for interfacing with Sia",
Expand Down
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# constants
readonly RELEASE_DIR="release"
readonly ELECTRON_URL="https://github.com/atom/electron/releases/download"
readonly ELECTRON_VERSION="v0.33.4"
readonly ELECTRON_VERSION="v0.33.9"
readonly SIA_UI_NAME="Sia-UI"
readonly SIA_VERSION="v0.4.3-beta"
readonly SIA_VERSION="v0.4.4-beta"
readonly SIA_RELEASE_DIR="$GOPATH/src/github.com/NebulousLabs/Sia/release/$SIA_VERSION"

# generic packaging function
Expand Down

0 comments on commit bb972c2

Please sign in to comment.