Version information for the qml ui module

This commit is contained in:
Thomas Perl 2014-02-06 23:56:03 +01:00
parent 238cac1eb8
commit 51efb2e089
2 changed files with 9 additions and 8 deletions

View file

@ -40,11 +40,9 @@ Python {
signal updatedPodcast(var podcast)
Component.onCompleted: {
setHandler('hello', function (version, copyright, date, url) {
console.log('gPodder ' + version + ' (' + date + ')');
console.log(url);
console.log(copyright);
setHandler('hello', function (coreversion, uiversion) {
console.log('gPodder Core ' + coreversion);
console.log('gPodder QML UI ' + uiversion);
console.log('PyOtherSide ' + py.pluginVersion());
console.log('Python ' + py.pythonVersion());
});