psa: Added send feedback button
authorYves Marcoz <yves@marcoz.org>
Thu, 2 Feb 2012 04:45:51 +0000 (20:45 -0800)
committerYves Marcoz <yves@marcoz.org>
Thu, 2 Feb 2012 04:45:51 +0000 (20:45 -0800)
FeedingIt-Sync/qml/main.qml

index 9ec9097..738bb2f 100644 (file)
@@ -85,6 +85,8 @@ PageStackWindow {
         id: myFeedsMenu
         visualParent: pageStack
         MenuLayout {
+            MenuItem { text: qsTr("Settings"); onClicked: {pageStack.push(settingsPage)}  }
+            MenuItem { text: qsTr("Manage Subscriptions"); onClicked: { pageStack.push(addFeedPage)  } }
             MenuItem { text: qsTr("Update All Feeds"); onClicked: controller.updateCategory(catid); }
             //MenuItem { text: qsTr("About FeedingIt"); onClicked: query.open(); }
         }
@@ -177,11 +179,15 @@ PageStackWindow {
         id: query
         icon: "common/images/feedingit.png"
         titleText: "Feedingit RSS Reader"
-        message: "Version: n9-0.1.0"
+        message: "Version: n9-0.2.0"
         +"<br><br>FeedingIt RSS Reader.<br>"
-        +"<br>&copy; 2011 feedingit.marcoz.org"
+        +"<br>&copy; 2012 feedingit.marcoz.org"
         +"<br>http://feedingit.marcoz.org"
-        acceptButtonText: "OK"
+        acceptButtonText: "Send feedback"
+        rejectButtonText: "OK"
+        onAccepted: {
+            Qt.openUrlExternally('mailto:feedingit@marcoz.org')
+        }
     }
 
     Component {