Skip to content

Commit

Permalink
Merge branch 'release/0.6.7' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed Sep 26, 2014
2 parents cf999c4 + 2b8eae9 commit 41ae6f2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Status](http://cpt-obvious.ethercasts.com:8010/buildstatusimage?builder=go-ether

Ethereum Go Client © 2014 Jeffrey Wilcke.

Current state: Proof of Concept 0.6.6.
Current state: Proof of Concept 0.6.7.

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

Expand Down
2 changes: 1 addition & 1 deletion ethereum/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

const (
ClientIdentifier = "Ethereum(G)"
Version = "0.6.6"
Version = "0.6.7"
)

var logger = ethlog.NewLogger("CLI")
Expand Down
5 changes: 3 additions & 2 deletions mist/assets/qml/wallet.qml → mist/assets/qml/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ ApplicationWindow {

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

function resetPeers(){
Expand Down Expand Up @@ -782,10 +782,11 @@ ApplicationWindow {
id: peerTable
model: peerModel
TableViewColumn{width: 100; role: "ip" ; title: "IP" }
TableViewColumn{width: 60; role: "port" ; title: "Port" }
TableViewColumn{width: 60; role: "port" ; title: "Port" }
TableViewColumn{width: 140; role: "lastResponse"; title: "Last event" }
TableViewColumn{width: 100; role: "latency"; title: "Latency" }
TableViewColumn{width: 260; role: "version" ; title: "Version" }
TableViewColumn{width: 80; role: "caps" ; title: "Capabilities" }
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions mist/gui.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ func (gui *Gui) Stop() {
}

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

statsPane := gui.getObjectByName("statsPane")
statsPane.Set("text", fmt.Sprintf(`###### Mist 0.6.5 (%s) #######
statsPane.Set("text", fmt.Sprintf(`###### Mist 0.6.7 (%s) #######
eth %d (p2p = %d)
Expand Down
2 changes: 1 addition & 1 deletion mist/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

const (
ClientIdentifier = "Mist"
Version = "0.6.6"
Version = "0.6.7"
)

var ethereum *eth.Ethereum
Expand Down

0 comments on commit 41ae6f2

Please sign in to comment.