Skip to content

Commit 41ae6f2

Browse files
committed
Merge branch 'release/0.6.7' into develop
2 parents cf999c4 + 2b8eae9 commit 41ae6f2

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Status](http://cpt-obvious.ethercasts.com:8010/buildstatusimage?builder=go-ether
77

88
Ethereum Go Client © 2014 Jeffrey Wilcke.
99

10-
Current state: Proof of Concept 0.6.6.
10+
Current state: Proof of Concept 0.6.7.
1111

1212
For the development package please see the [eth-go package](https://github.com/ethereum/eth-go).
1313

ethereum/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
const (
1515
ClientIdentifier = "Ethereum(G)"
16-
Version = "0.6.6"
16+
Version = "0.6.7"
1717
)
1818

1919
var logger = ethlog.NewLogger("CLI")

mist/assets/qml/wallet.qml renamed to mist/assets/qml/main.qml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ ApplicationWindow {
739739

740740
function addPeer(peer) {
741741
// We could just append the whole peer object but it cries if you try to alter them
742-
peerModel.append({ip: peer.ip, port: peer.port, lastResponse:timeAgo(peer.lastSend), latency: peer.latency, version: peer.version})
742+
peerModel.append({ip: peer.ip, port: peer.port, lastResponse:timeAgo(peer.lastSend), latency: peer.latency, version: peer.version, caps: peer.caps})
743743
}
744744

745745
function resetPeers(){
@@ -782,10 +782,11 @@ ApplicationWindow {
782782
id: peerTable
783783
model: peerModel
784784
TableViewColumn{width: 100; role: "ip" ; title: "IP" }
785-
TableViewColumn{width: 60; role: "port" ; title: "Port" }
785+
TableViewColumn{width: 60; role: "port" ; title: "Port" }
786786
TableViewColumn{width: 140; role: "lastResponse"; title: "Last event" }
787787
TableViewColumn{width: 100; role: "latency"; title: "Latency" }
788788
TableViewColumn{width: 260; role: "version" ; title: "Version" }
789+
TableViewColumn{width: 80; role: "caps" ; title: "Capabilities" }
789790
}
790791
}
791792
}

mist/gui.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ func (gui *Gui) Stop() {
172172
}
173173

174174
func (gui *Gui) showWallet(context *qml.Context) (*qml.Window, error) {
175-
component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/wallet.qml"))
175+
component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/main.qml"))
176176
if err != nil {
177177
return nil, err
178178
}
@@ -500,7 +500,7 @@ func (gui *Gui) setStatsPane() {
500500
runtime.ReadMemStats(&memStats)
501501

502502
statsPane := gui.getObjectByName("statsPane")
503-
statsPane.Set("text", fmt.Sprintf(`###### Mist 0.6.5 (%s) #######
503+
statsPane.Set("text", fmt.Sprintf(`###### Mist 0.6.7 (%s) #######
504504
505505
eth %d (p2p = %d)
506506

mist/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
const (
1414
ClientIdentifier = "Mist"
15-
Version = "0.6.6"
15+
Version = "0.6.7"
1616
)
1717

1818
var ethereum *eth.Ethereum

0 commit comments

Comments
 (0)