Updated readme and changelog.

This commit is contained in:
codestation
2014-04-04 12:30:46 -04:30
parent 00f1c0eee2
commit 1495154b35
2 changed files with 24 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
qcma (0.3.0) unstable; urgency=low qcma (0.3.0) unstable; urgency=low
* Headless qcma version.
* Set the default video codec to h264 is metadata skip is enabled. * Set the default video codec to h264 is metadata skip is enabled.
* Delay the progress dialog by one second so it doesn't show on quick scans. * Delay the progress dialog by one second so it doesn't show on quick scans.
* Do not show the disconnect message if no connection is established. * Do not show the disconnect message if no connection is established.

View File

@@ -26,6 +26,29 @@ official CMA and also offer some features missing in the original one.
#### Planned features #### Planned features
* **Android version**: port of Qcma to Android. * **Android version**: port of Qcma to Android.
## Headless version
There is a qcma_cli binary that doesn't need a X session running (useful for servers).
The daemon provides minimal interaction via dbus. Here are some usage examples:
#### Send a signal to refresh the database
```
dbus-send --session --type=method_call --dest=org.qcma.HeadlessManager /HeadlessManager org.qcma.HeadlessManager.refreshDatabase
```
#### Send a signal to stop the daemon
```
dbus-send --session --type=method_call --dest=org.qcma.HeadlessManager /HeadlessManager org.qcma.HeadlessManager.stop
```
#### Receive confirmation when the database finished updating
```
dbus-monitor "type='signal',sender='org.qcma.HeadlessManager',member='databaseUpdated'"
```
## Dependencies ## Dependencies
* [Qt 4.x or 5.x](http://qt-project.org/) * [Qt 4.x or 5.x](http://qt-project.org/)