summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/livebox.h1
-rw-r--r--packaging/liblivebox.spec2
-rw-r--r--src/livebox.c1
3 files changed, 3 insertions, 1 deletions
diff --git a/include/livebox.h b/include/livebox.h
index d815dec..0d3b24a 100644
--- a/include/livebox.h
+++ b/include/livebox.h
@@ -40,6 +40,7 @@ extern const int USE_NET; /*!< Using network */
extern const int LB_SYS_EVENT_FONT_CHANGED; /*!< System font is changed */
extern const int LB_SYS_EVENT_LANG_CHANGED; /*!< System language is changed */
extern const int LB_SYS_EVENT_TIME_CHANGED; /*!< System time is changed */
+extern const int LB_SYS_EVENT_REGION_CHANGED; /*!< Region changed */
extern const int LB_SYS_EVENT_PAUSED;
extern const int LB_SYS_EVENT_RESUMED;
diff --git a/packaging/liblivebox.spec b/packaging/liblivebox.spec
index 1a69865..6102f9a 100644
--- a/packaging/liblivebox.spec
+++ b/packaging/liblivebox.spec
@@ -1,6 +1,6 @@
Name: liblivebox
Summary: Library for the development of a livebox
-Version: 0.1.15
+Version: 0.1.16
Release: 1
Group: main/app
License: Flora License
diff --git a/src/livebox.c b/src/livebox.c
index 487011d..228780d 100644
--- a/src/livebox.c
+++ b/src/livebox.c
@@ -78,6 +78,7 @@ EAPI const int NEED_TO_UPDATE = 0x01;
EAPI const int LB_SYS_EVENT_FONT_CHANGED = 0x01;
EAPI const int LB_SYS_EVENT_LANG_CHANGED = 0x02;
EAPI const int LB_SYS_EVENT_TIME_CHANGED = 0x04;
+EAPI const int LB_SYS_EVENT_REGION_CHANGED = 0x08;
EAPI const int LB_SYS_EVENT_PAUSED = 0x0100;
EAPI const int LB_SYS_EVENT_RESUMED = 0x0200;