Skip to content

Commit fc5a9c5

Browse files
committed
Merge pull request #27 from DroidPlanner/update_name
Update name
2 parents 6a4c2af + f8a852b commit fc5a9c5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Android/src/main/assets/Tower.pbw

-11 Bytes
Binary file not shown.

Android/src/main/java/org/droidplanner/pebble/PebbleCommunicatorService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public void connect3DRServices() {
9494
controlTower.connect(this);
9595

9696
final Notification.Builder notificationBuilder = new Notification.Builder(applicationContext).
97-
setContentTitle("DP-Pebble Running").
97+
setContentTitle("Tower-Pebble Running").
9898
setSmallIcon(R.drawable.ic_stat_notification);
9999
final Notification notification = Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN
100100
? notificationBuilder.build()
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
33

4-
<string name="app_name">dp-pebble</string>
5-
<string name="intro_text">This app handles communication between 3DR-Services and the dp-pebble
4+
<string name="app_name">Tower-Pebble</string>
5+
<string name="intro_text">This app handles communication between 3DR-Services and the Tower
66
watchapp. No need to start this app, it works in the background.</string>
7-
<string name="install_button_title">Install DP watchapp</string>
7+
<string name="install_button_title">Install Tower watchapp</string>
88
<string name="issue_button_title">Report an Issue</string>string>
99

1010
</resources>

Pebble/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ static void window_load(Window *window) {
182182
Layer *window_layer = window_get_root_layer(window);
183183
GRect bounds = layer_get_bounds(window_layer);
184184

185-
mode_layer = text_layer_create((GRect) { .origin = { 10, 0 }, .size = { bounds.size.w-50, 35 } });
185+
mode_layer = text_layer_create((GRect) { .origin = { 5, 0 }, .size = { bounds.size.w-45, 35 } });
186186
text_layer_set_text(mode_layer, "No Conn.");
187187
text_layer_set_text_alignment(mode_layer, GTextAlignmentLeft);
188188
text_layer_set_font(mode_layer, fonts_get_system_font(FONT_KEY_GOTHIC_28_BOLD));

0 commit comments

Comments
 (0)