summaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/lockclock/misc/Constants.java
diff options
context:
space:
mode:
authorDanny Baumann <dannybaumann@web.de>2014-01-05 14:13:16 +0100
committerDanny Baumann <dannybaumann@web.de>2014-01-07 12:06:59 +0100
commitf1487b06a4671ddc79f713aaac4f9a425a3937e1 (patch)
tree9445aadafaccf7a6f5ec9593238b8c6f323197ec /src/com/cyanogenmod/lockclock/misc/Constants.java
parentc547e3dce2216eb2879a03f07266d3845da11c01 (diff)
downloadpackages_apps_LockClock-f1487b06a4671ddc79f713aaac4f9a425a3937e1.zip
packages_apps_LockClock-f1487b06a4671ddc79f713aaac4f9a425a3937e1.tar.gz
packages_apps_LockClock-f1487b06a4671ddc79f713aaac4f9a425a3937e1.tar.bz2
Port over improvements from Chronus
- new weather source: OpenWeatherMap - weather icon pack support - weather forecast activity and popup - updated weather and in-app icons - some new translations (AR, TR, SL) Change-Id: I2bcc2042bf83d0e0bb4a00200de1310042303e9c
Diffstat (limited to 'src/com/cyanogenmod/lockclock/misc/Constants.java')
-rwxr-xr-xsrc/com/cyanogenmod/lockclock/misc/Constants.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/com/cyanogenmod/lockclock/misc/Constants.java b/src/com/cyanogenmod/lockclock/misc/Constants.java
index db1b89f..751de2d 100755
--- a/src/com/cyanogenmod/lockclock/misc/Constants.java
+++ b/src/com/cyanogenmod/lockclock/misc/Constants.java
@@ -34,6 +34,7 @@ public class Constants {
public static final String CLOCK_AM_PM_INDICATOR = "clock_am_pm_indicator";
public static final String SHOW_WEATHER = "show_weather";
+ public static final String WEATHER_SOURCE = "weather_source";
public static final String WEATHER_USE_CUSTOM_LOCATION = "weather_use_custom_location";
public static final String WEATHER_CUSTOM_LOCATION_ID = "weather_custom_location_id";
public static final String WEATHER_CUSTOM_LOCATION_CITY = "weather_custom_location_city";
@@ -42,12 +43,13 @@ public class Constants {
public static final String WEATHER_USE_METRIC = "weather_use_metric";
public static final String WEATHER_INVERT_LOWHIGH = "weather_invert_lowhigh";
public static final String WEATHER_REFRESH_INTERVAL = "weather_refresh_interval";
- public static final String WEATHER_USE_ALTERNATE_ICONS = "weather_use_alternate_icons";
public static final String WEATHER_LOCATION_ID = "weather_woeid";
public static final String WEATHER_SHOW_WHEN_MINIMIZED = "weather_show_when_minimized";
public static final String WEATHER_FONT_COLOR = "weather_font_color";
public static final String WEATHER_TIMESTAMP_FONT_COLOR = "weather_timestamp_font_color";
-
+ public static final String WEATHER_ICONS = "weather_icons";
+ public static final String MONOCHROME = "mono";
+ public static final String COLOR_STD = "color";
public static final String SHOW_CALENDAR = "show_calendar";
public static final String CALENDAR_LIST = "calendar_list";
public static final String CALENDAR_LOOKAHEAD = "calendar_lookahead";
@@ -89,5 +91,8 @@ public class Constants {
public static final String DEFAULT_LIGHT_COLOR = "#ffffffff";
public static final String DEFAULT_DARK_COLOR = "#80ffffff";
+
+ // Intent actions
+ public static final String ACTION_SHOW_FORECAST = "com.cyanogenmod.lockclock.action.SHOW_FORECAST";
}