Skip to content

Commit

Permalink
Release v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xsacha committed Sep 9, 2014
1 parent f2decff commit 0ce9de6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Sachesi.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TARGET="Sachesi"
win32: RC_ICONS += assets/sachesi-114.ico
else:mac: ICON = assets/sachesi-114.icns
else: ICON = assets/sachesi-114.png
VERSION = 1.7.0
VERSION = 1.8.0

# Global specific
CONFIG += c++11
Expand Down
4 changes: 2 additions & 2 deletions qml/generic/Search.qml
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ Item {
type: "Device"
selectedItem: 0

property int familyType: (selectedItem == 0) ? i.knownHWFamily : selectedItem
property string familyName: familyType == 0 ? "Unknown" : listModel.get(familyType).text
//property int familyType: (selectedItem == 0) ? i.knownHWFamily : selectedItem
property string familyName: i.knownHWFamily == 0 ? "Unknown" : listModel.get(i.knownHWFamily).text
subtext: i.knownHW != "" ? i.knownHW + " (" + familyName + ")" : ""
onSubtextChanged: {
var newText = (i.knownHW != "Unknown" && i.knownHW != "") ? "Connected" : "As Above"
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Q_DECL_EXPORT int main(int argc, char *argv[])
app.setOrganizationName("Qtness");
app.setOrganizationDomain("qtness.com");
app.setApplicationName("Sachesi");
app.setApplicationVersion("1.7.0");
app.setApplicationVersion("1.8.0");
QNetworkProxyFactory::setUseSystemConfiguration(true);

QQmlApplicationEngine engine;
Expand Down

0 comments on commit 0ce9de6

Please sign in to comment.