assets dir for clarity

This commit is contained in:
rgarcia-herrera 2020-08-28 12:34:16 -05:00
parent cd926b11c5
commit d4683f6200
20 changed files with 10 additions and 2717 deletions

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

Before

Width:  |  Height:  |  Size: 866 B

After

Width:  |  Height:  |  Size: 866 B

View File

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

@ -46,10 +46,10 @@ requirements = hostpython3, python3, kivy, plyer, android, mapview, requests, ur
#garden_requirements = mapview
# (str) Presplash of the application
presplash.filename = ./presplash.png
presplash.filename = assets/splash.png
# (str) Icon of the application
icon.filename = ./icon.png
icon.filename = assets/icon.png
# (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
orientation = portrait

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 101 KiB

View File

@ -22,13 +22,13 @@
selfmark.lon = app.gps_data.get('lon', 0)
MapMarker:
source: 'marker_self.png'
source: 'assets/marker_self.png'
id: selfmark
anchor_x: 0.5
anchor_y: 0
MapMarker:
source: 'marker.png'
source: 'assets/marker_dest.png'
id: centermark
anchor_x: 0.5
anchor_y: 0
@ -42,17 +42,17 @@
IconButton:
pos_hint: {"x":.8, "top":0.95}
size_hint: 0.2, 0.2
source: 'dark_to_compass_icon.png'
source: 'assets/dark_to_compass_icon.png'
on_press: root.manager.current = 'compass'; app.set_destination()
IconButton:
source: 'to_self.png'
source: 'assets/to_self.png'
pos_hint: {"x":0.4, "bottom":0.1}
size_hint: 0.2, 0.2
on_press: app.center_map_on_gps()
IconButton:
pos_hint: {"x":0.8, "bottom":0.1}
size_hint: 0.2, 0.2
source: 'to_settings.png'
source: 'assets/to_settings.png'
on_press: root.manager.current = 'settings';
@ -88,7 +88,7 @@
pos: 0, 0.1
font_size: '40sp'
Image:
source: 'needle.png'
source: 'assets/needle.png'
canvas.before:
PushMatrix
Rotate:
@ -99,7 +99,7 @@
PopMatrix
Image:
id: to_dest
source: 'needle_to_dest.png'
source: 'assets/needle_to_dest.png'
canvas.before:
PushMatrix
Rotate:
@ -109,4 +109,4 @@
canvas.after:
PopMatrix
Image:
source: 'pivot.png'
source: 'assets/pivot.png'