diff --git a/README.md b/README.md index babd9f2..d0f0ff0 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,5 @@ TODO - Add broadcast titles (maybe optional, like in android version) - Rework pulley menu on stream page - Colorful nicknames in chat +- Joins and parts processing +- Move settings to QSettings usage diff --git a/qml/pages/StreamPage.qml b/qml/pages/StreamPage.qml index f2079f5..fdc7516 100644 --- a/qml/pages/StreamPage.qml +++ b/qml/pages/StreamPage.qml @@ -21,7 +21,7 @@ import QtQuick 2.0 import Sailfish.Silica 1.0 import QtMultimedia 5.0 import org.nemomobile.configuration 1.0 -import irc.chat.twitch 1.0 +import harbour.twitchtube.ircchat 1.0 import "scripts/httphelper.js" as HTTP Page { diff --git a/src/harbour-twitchtube.cpp b/src/harbour-twitchtube.cpp index 392cfe2..16027e0 100644 --- a/src/harbour-twitchtube.cpp +++ b/src/harbour-twitchtube.cpp @@ -39,7 +39,7 @@ int main(int argc, char *argv[]) // To display the view, call "show()" (will show fullscreen on device). QScopedPointer app(SailfishApp::application(argc, argv)); - qmlRegisterType("irc.chat.twitch", 1, 0, "IrcChat"); + qmlRegisterType("harbour.twitchtube.ircchat", 1, 0, "IrcChat"); QScopedPointer view(SailfishApp::createView()); view->setSource(SailfishApp::pathTo("qml/harbour-twitchtube.qml")); view->show();