summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'res/values')
-rw-r--r--res/values/colors.xml1
-rw-r--r--res/values/config.xml28
-rw-r--r--res/values/strings.xml9
3 files changed, 36 insertions, 2 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml
index a6c7746..ec487e7 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -18,4 +18,5 @@
<color name="tabletop_dark">#ff222222</color>
<color name="vignette_light">#00000000</color>
<color name="vignette_dark">#bf000000</color>
+ <color name="highlight_color">@android:color/holo_blue_bright</color>
</resources>
diff --git a/res/values/config.xml b/res/values/config.xml
index d8d745d..c3a6e65 100644
--- a/res/values/config.xml
+++ b/res/values/config.xml
@@ -18,7 +18,7 @@
<integer name="table_drop_period">45000</integer>
<!-- Milliseconds to wait before the next fast drop.-->
- <integer name="fast_drop">4000</integer>
+ <integer name="fast_drop">3000</integer>
<!-- Milliseconds between drops. -->
<integer name="carousel_drop_period">10000</integer>
@@ -33,7 +33,7 @@
<integer name="table_capacity">10</integer>
<!-- Number of images to discard at a time.-->
- <integer name="redeal_count">3</integer>
+ <integer name="redeal_count">5</integer>
<!-- Parts per million ratio between image size and screen size. -->
<integer name="image_ratio">500000</integer>
@@ -85,5 +85,29 @@
<!-- Number of images to pre-load. -->
<integer name="num_images_to_preload">5</integer>
+
+ <!-- distance from edge to start a valid edge swipe as a fraction of
+ touch area width, in parts per million from 0 to 1. -->
+ <integer name="table_edge_swipe_gutter">50000</integer>
+
+ <!-- minimum length of a valid edge swipe as a fraction of
+ touch area width, in parts per million from 0 to 1. -->
+ <integer name="table_edge_swipe_threshold">100000</integer>
+
+ <!-- Parts per million gain applied to generalized touch gestures. -->
+ <integer name="generalized_touch_gain">2000000</integer>
+
+ <!-- Enable story mode. -->
+ <bool name="enable_story_mode">true</bool>
+
+ <!-- Duration in milliseconds for the pickup animation. -->
+ <integer name="photo_pickup_duration">1000</integer>
+
+ <!-- Milliseconds that the selection will remain without user interaction. -->
+ <integer name="max_selection_time">30000</integer>
+
+ <!-- Milliseconds that the focus will remain without user interaction. -->
+ <integer name="max_focus_time">5000</integer>
+
</resources>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 858d6c1..1f64e10 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -40,4 +40,13 @@
<!-- Instruct the user to configure the screensaver in settings to see photos. -->
<string name="need_to_configure">No photos selected.</string>
+
+ <!-- Click to select all albums in the album selection activity. [CHAR LIMIT=15] -->
+ <string name="photodream_select_all">Select All</string>
+
+ <!-- Click to clear selection in the album selection activity. [CHAR LIMIT=15] -->
+ <string name="photodream_select_none">Deselect All</string>
+
+ <!-- Text shown instead of a list of albums when there are no albums with photos. [CHAR LIMIT=50] -->
+ <string name="no_photos">No photos on the device.</string>
</resources>