aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethereum/main.go2
-rw-r--r--cmd/mist/assets/qml/main.qml20
-rw-r--r--cmd/mist/main.go2
3 files changed, 14 insertions, 10 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go
index d2b3418cd..0dba462be 100644
--- a/cmd/ethereum/main.go
+++ b/cmd/ethereum/main.go
@@ -37,7 +37,7 @@ import (
const (
ClientIdentifier = "Ethereum(G)"
- Version = "0.8.2"
+ Version = "0.8.3"
)
var clilogger = logger.NewLogger("CLI")
diff --git a/cmd/mist/assets/qml/main.qml b/cmd/mist/assets/qml/main.qml
index 1d6b15ac1..ecc121407 100644
--- a/cmd/mist/assets/qml/main.qml
+++ b/cmd/mist/assets/qml/main.qml
@@ -61,11 +61,11 @@ ApplicationWindow {
function activeView(view, menuItem) {
mainSplit.setView(view, menuItem)
if (view.hideUrl) {
- urlPane.visible = false;
- mainView.anchors.top = rootView.top
+ //urlPane.visible = false;
+ //mainView.anchors.top = rootView.top
} else {
- urlPane.visible = true;
- mainView.anchors.top = divider.bottom
+ //urlPane.visible = true;
+ //mainView.anchors.top = divider.bottom
}
}
@@ -1069,8 +1069,10 @@ ApplicationWindow {
anchors.rightMargin: 10
placeholderText: "enode://<hex node id>:<IP address>:<port>"
onAccepted: {
- eth.connectToPeer(addrField.text)
- addPeerWin.visible = false
+ if(addrField.text.length != 0) {
+ eth.connectToPeer(addrField.text)
+ addPeerWin.visible = false
+ }
}
}
@@ -1081,8 +1083,10 @@ ApplicationWindow {
anchors.rightMargin: 10
text: "Connect"
onClicked: {
- eth.connectToPeer(addrField.currentText)
- addPeerWin.visible = false
+ if(addrField.text.length != 0) {
+ eth.connectToPeer(addrField.text)
+ addPeerWin.visible = false
+ }
}
}
Component.onCompleted: {
diff --git a/cmd/mist/main.go b/cmd/mist/main.go
index 52b5e4e94..32222fbef 100644
--- a/cmd/mist/main.go
+++ b/cmd/mist/main.go
@@ -36,7 +36,7 @@ import (
const (
ClientIdentifier = "Mist"
- Version = "0.8.2"
+ Version = "0.8.3"
)
var ethereum *eth.Ethereum