~ubuntu-branches/ubuntu/trusty/content-hub/trusty-proposed

« back to all changes in this revision

Viewing changes to README

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Loïc Minier, Ken VanDine, Javier Collado, Dimitri John Ledkov, Michael Sheldon
  • Date: 2014-04-02 14:46:54 UTC
  • mfrom: (1.1.20)
  • Revision ID: package-import@ubuntu.com-20140402144654-8ilsrlzz6bx5p3ox
Tags: 0.0+14.04.20140402-0ubuntu1
[ Loïc Minier ]
* Downgrade content-hub Recommends to a Suggests as we don't want
  content-hub pulled via ubuntu-sdk on developer desktops.

[ Ken VanDine ]
* protect against queries for Type::unknown (LP: #1293463)
* Replace a couple missed qDebug lines for logging
* Don't unref the g_icon, the value belongs to app
* Ensure m_defaultSources is a StringList before attempting to use it
  as a list
* ContentPeerPicker: Make headers translatable and use a
  ResponsiveGridView for the devices grid to match the apps grid.
  ContentPeerPicker: hide the devices section until we have a way to
  populate it

[ Javier Collado ]
* Added README file (LP: #1274899)

[ Dimitri John Ledkov ]
* Exit quicker, if there is nothing to do. (LP: #1287674) (LP:
  #1287674)

[ Michael Sheldon ]
* Fixes updating of the ContentPeerModel when using Loader and
  changing ContentType or ContentHandler dynamically and ensures that
  ContentPeerModel Loader doesn't begin loading the model until the
  peer picker becomes visible (avoiding delaying app start-up time).
* Make qdoc based documentation compatible with the Qt 5.2 version of
  qdoc.
* Fixes version number of import statements in QML documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
What is content-hub?
 
2
--------------------
 
3
 
 
4
content-hub is a mediation service to let applications share content between
 
5
them even if they are not running at the same time.
 
6
 
 
7
For a more detailed description, please have a look at:
 
8
doc/Mainpage.md
 
9
 
 
10
 
 
11
How do I get all building dependencies?
 
12
---------------------------------------
 
13
 
 
14
Build dependencies are already listed in the debian/control file. To get them
 
15
use the following command:
 
16
sudo apt-get build-dep content-hub
 
17
 
 
18
 
 
19
How do I compile the code?
 
20
--------------------------
 
21
 
 
22
To compile the code run the following command from the branch directory:
 
23
mkdir build
 
24
cd build
 
25
cmake ..
 
26
make
 
27
 
 
28
 
 
29
How do I run the test cases?
 
30
----------------------------
 
31
 
 
32
To run the test cases use the following command:
 
33
cd build/tests
 
34
dbus-test-runner -t make -p test
 
35
 
 
36
 
 
37
How do I build the packages?
 
38
----------------------------
 
39
 
 
40
To build the pacakges run the following command:
 
41
bzr builddeb
 
42
 
 
43
 
 
44
How do I install the code?
 
45
--------------------------
 
46
 
 
47
One way to do it one the code is compiled is:
 
48
make install
 
49
 
 
50
However, the recommended way to do it is by installing the packages built
 
51
manually.
 
52