summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS29
-rw-r--r--src/libtracker-db/tracker-db-manager.c5
2 files changed, 32 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 04ce3aae0..76429b52b 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,35 @@ Improvements / New:
* Build now uses AC_CONFIG_HEADERS.
* Removed all thumbnail related code. It is no longer used.
+ Ontology:
+ * Added mlo:GeoLocation, mlo:GeoSphere, mlo:GeoBoundingBox classes.
+ * Added mlo:LocationBoundingBox, mlo:Route, classes.
+ * Added mlo:LandmarkCategory, mlo:isRemovable classes.
+ * Added mlo:belongsToCategory property.
+ * Added mlo:bbNorthWest, mlo:bbSouthEast properties.
+ * Added mlo:radius, mlo:asBoundingBox, mlo:asGeoPoint properties.
+ * Added mlo:asPostalAddress property.
+ * Added mlo:predefined-landmark-category-accommodation.
+ * Added mlo:predefined-landmark-category-business.
+ * Added mlo:predefined-landmark-category-communication.
+ * Added mlo:predefined-landmark-category-educational-institute.
+ * Added mlo:predefined-landmark-category-entertainment.
+ * Added mlo:predefined-landmark-category-food-beverage.
+ * Added mlo:predefined-landmark-category-geographical-area.
+ * Added mlo:predefined-landmark-category-outdoor-activities.
+ * Added mlo:predefined-landmark-category-people.
+ * Added mlo:predefined-landmark-category-public-service.
+ * Added mlo:predefined-landmark-category-religious-places.
+ * Added mlo:predefined-landmark-category-shopping.
+ * Added mlo:predefined-landmark-category-sightseeing.
+ * Added mlo:predefined-landmark-category-sports.
+ * Added mlo:predefined-landmark-category-transport.
+ * Changed mlo:altitude to be a double not int.
+ * Deprecated mlo:boxSouthWestCorner, mlo:boxEastLimit.
+ * Deprecated mlo:boxVerticalLimit, mlo:boxNorthLimit.
+ * Deprecated mlo:city, mlo:country mlo:state, mlo:address.
+ * Deprecated mlo:poiLocation.
+
data-generators:
* Add channel/conversation to IM test data.
* Use nco ontology updates.
diff --git a/src/libtracker-db/tracker-db-manager.c b/src/libtracker-db/tracker-db-manager.c
index ec9e9f754..3a3f12766 100644
--- a/src/libtracker-db/tracker-db-manager.c
+++ b/src/libtracker-db/tracker-db-manager.c
@@ -53,7 +53,7 @@
#define TRACKER_DB_PAGE_SIZE_DONT_SET -1
/* Set current database version we are working with */
-#define TRACKER_DB_VERSION_NOW TRACKER_DB_VERSION_8
+#define TRACKER_DB_VERSION_NOW TRACKER_DB_VERSION_9
#define TRACKER_DB_VERSION_FILE "db-version.txt"
#define IN_USE_FILENAME ".meta.isrunning"
@@ -73,7 +73,8 @@ typedef enum {
TRACKER_DB_VERSION_5, /* Version 0.7 (vstore branch) */
TRACKER_DB_VERSION_6, /* Version 0.7.4 (nothing special) */
TRACKER_DB_VERSION_7, /* Version 0.7.12 (nmo ontology) */
- TRACKER_DB_VERSION_8 /* Version 0.7.13 (coalesce & writeback) */
+ TRACKER_DB_VERSION_8, /* Version 0.7.13 (coalesce & writeback) */
+ TRACKER_DB_VERSION_9 /* Version 0.7.17 (mlo ontology) */
} TrackerDBVersion;
typedef struct {