├── .gitattributes ├── .gitignore ├── BayeuxClient.qml ├── Dev.md ├── Gitteraqt.icns ├── Gitteraqt.pro ├── LICENSE ├── README.md ├── ScrollSwitch.qml ├── gitterapi.js ├── main.cpp ├── main.qml ├── qml.qrc └── screenshots ├── chat.jpeg ├── rooms.jpeg └── token.jpeg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/.gitignore -------------------------------------------------------------------------------- /BayeuxClient.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/BayeuxClient.qml -------------------------------------------------------------------------------- /Dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/Dev.md -------------------------------------------------------------------------------- /Gitteraqt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/Gitteraqt.icns -------------------------------------------------------------------------------- /Gitteraqt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/Gitteraqt.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/README.md -------------------------------------------------------------------------------- /ScrollSwitch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/ScrollSwitch.qml -------------------------------------------------------------------------------- /gitterapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/gitterapi.js -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/main.cpp -------------------------------------------------------------------------------- /main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/main.qml -------------------------------------------------------------------------------- /qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/qml.qrc -------------------------------------------------------------------------------- /screenshots/chat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/screenshots/chat.jpeg -------------------------------------------------------------------------------- /screenshots/rooms.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/screenshots/rooms.jpeg -------------------------------------------------------------------------------- /screenshots/token.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eklavya/Gitteraqt/HEAD/screenshots/token.jpeg --------------------------------------------------------------------------------