~ubuntu-branches/ubuntu/utopic/unity-lens-shopping/utopic

« back to all changes in this revision

Viewing changes to src/config.vala

  • Committer: Łukasz 'sil2100' Zemczak
  • Date: 2012-10-04 14:04:28 UTC
  • mfrom: (14.2.4)
  • Revision ID: lukasz.zemczak@canonical.com-20121004140428-wdj89o0arrinea4n
* New upstream release.
  - Use music lens details page for music store results (LP: #1055684)
  - No easy way to disable online-fetched results in lenses (LP: #1054746)
  - Display category emblems on results (LP: #1056901)
  - Descriptions are missing all html tags (LP: #1058197)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
namespace Config {
2
2
 
3
 
  const string PREFIX = "/usr/local";
4
 
  
5
 
  const string DATADIR = "/usr/local/share";
6
 
  
7
 
  const string PKGDATADIR = "/usr/local/share/unity";
8
 
  
9
 
  const string BINDIR = "/usr/local/bin";
10
 
  
11
 
  const string LOCALEDIR = "/usr/local/share/locale";
 
3
  const string PREFIX = "/usr";
 
4
  
 
5
  const string DATADIR = "/usr/share";
 
6
  
 
7
  const string PKGDATADIR = "/usr/share/unity";
 
8
  
 
9
  const string BINDIR = "/usr/bin";
 
10
  
 
11
  const string LOCALEDIR = "/usr/share/locale";
12
12
  
13
13
  const string PACKAGE = "unity-lens-shopping";
14
14
  
15
 
  const string VERSION = "6.0.0";
 
15
  const string VERSION = "6.8.0";
16
16
}