diff --git a/CREDITS b/CREDITS new file mode 100644 index 00000000..6e2901bc --- /dev/null +++ b/CREDITS @@ -0,0 +1,45 @@ +openScale uses open source components. You can find the source code of their open source projects along with license information below. +I acknowledge and I am grateful to these developers for their contributions to open source. + +Project: HelloCharts +Copyright 2014 Leszek Wach +Apache License, Version 2.0 +License: https://www.apache.org/licenses/LICENSE-2.0 +Website: https://github.com/lecho/hellocharts-android + +Project: Low-Power +Copyright 2016 Lim Phang Moh +Creative Commons Attribution-ShareAlike 3.0 +Licnese: https://creativecommons.org/licenses/by-sa/3.0 +Website: https://github.com/rocketscream/Low-Power + +Project: DS3232RTC +Copyright 2013 Jack Christensen +Attribution-ShareAlike 4.0 International +License: https://creativecommons.org/licenses/by-sa/4.0/ +Website: https://github.com/JChristensen/DS3232RTC + +Project: I2C_EEPROM & RunningMedian +Copyright 2015 Rob Tillaart +License: Released to the public domain +Website: https://github.com/RobTillaart/Arduino + +Project: Arduino Time Library +Copyright 2009-2014 Michael Margolis +GNU Lesser General Public License 2.1 or any later version +License: https://www.gnu.org/licenses/ +Website: https://github.com/PaulStoffregen/Time + +Used icons are by flaticon.com (http://www.flaticon.com) +Attribution 3.0 Unported (CC BY 3.0) +License: http://creativecommons.org/licenses/by/3.0/ +* Icomoon (https://www.flaticon.com/authors/icomoon) +* Google (https://www.flaticon.com/authors/google) +* Robin Kylander (https://www.flaticon.com/authors/robin-kylander) +* Freepik (http://www.freepik.com) +* Scott de Jonge (https://www.flaticon.com/authors/scott-de-jonge) +* Cursor Creative (https://www.flaticon.com/authors/cursor-creative) +* Madebyoliver (https://www.flaticon.com/authors/madebyoliver) + +Contributors to openScale are listed on: +https://github.com/oliexdev/openScale/graphs/contributors diff --git a/android_app/app/src/main/AndroidManifest.xml b/android_app/app/src/main/AndroidManifest.xml index c63c7166..76d58a74 100644 --- a/android_app/app/src/main/AndroidManifest.xml +++ b/android_app/app/src/main/AndroidManifest.xml @@ -12,7 +12,7 @@ @@ -29,7 +29,7 @@ android:layout_height="wrap_content" android:layout_marginRight="10dp" android:clickable="true" - android:src="@drawable/expand" + android:src="@drawable/ic_expand" app:backgroundTint="#D3D3D3" app:fabSize="mini" /> @@ -39,7 +39,7 @@ android:layout_height="wrap_content" android:layout_marginRight="10dp" android:clickable="true" - android:src="@drawable/delete" + android:src="@drawable/ic_delete" app:backgroundTint="#FF4444" app:fabSize="mini" /> diff --git a/android_app/app/src/main/res/layout/fragment_graph.xml b/android_app/app/src/main/res/layout/fragment_graph.xml index ebd1bb88..4e57f6d2 100644 --- a/android_app/app/src/main/res/layout/fragment_graph.xml +++ b/android_app/app/src/main/res/layout/fragment_graph.xml @@ -25,7 +25,7 @@ android:layout_height="wrap_content" android:layout_marginRight="10dp" android:clickable="true" - android:src="@drawable/weight" + android:src="@drawable/ic_weight" app:backgroundTint="#AA66CC" app:fabSize="mini" app:rippleColor="#AA66CC" /> @@ -36,7 +36,7 @@ android:layout_height="wrap_content" android:layout_marginRight="10dp" android:clickable="true" - android:src="@drawable/fat" + android:src="@drawable/ic_fat" app:backgroundTint="#FFBB33" app:fabSize="mini" app:rippleColor="#FFBB33" /> @@ -47,7 +47,7 @@ android:layout_height="wrap_content" android:layout_marginRight="10dp" android:clickable="true" - android:src="@drawable/water" + android:src="@drawable/ic_water" app:backgroundTint="#33B5E5" app:fabSize="mini" app:rippleColor="#33B5E5" /> @@ -58,7 +58,7 @@ android:layout_height="wrap_content" android:layout_marginRight="10dp" android:clickable="true" - android:src="@drawable/muscle" + android:src="@drawable/ic_muscle" app:backgroundTint="#99CC00" app:fabSize="mini" app:rippleColor="#99CC00" /> @@ -69,7 +69,7 @@ android:layout_height="wrap_content" android:layout_marginRight="10dp" android:clickable="true" - android:src="@drawable/waist" + android:src="@drawable/ic_waist" app:backgroundTint="#FF00FF" app:fabSize="mini" app:rippleColor="#FF00FF" /> @@ -80,7 +80,7 @@ android:layout_height="wrap_content" android:layout_marginRight="10dp" android:clickable="true" - android:src="@drawable/hip" + android:src="@drawable/ic_hip" app:backgroundTint="#FFFF00" app:fabSize="mini" app:rippleColor="#FFFF00" /> @@ -151,7 +151,7 @@ android:layout_height="wrap_content" android:layout_margin="16dp" android:clickable="true" - android:src="@drawable/lastmonth" + android:src="@drawable/ic_lastmonth" app:backgroundTint="#33B5E5" app:layout_anchor="@id/chart_bottom" app:layout_anchorGravity="bottom|right|end" diff --git a/android_app/app/src/main/res/layout/fragment_statistics.xml b/android_app/app/src/main/res/layout/fragment_statistics.xml index 99352833..52838ca9 100644 --- a/android_app/app/src/main/res/layout/fragment_statistics.xml +++ b/android_app/app/src/main/res/layout/fragment_statistics.xml @@ -45,7 +45,7 @@ android:layout_width="match_parent" android:layout_height="25dp" android:layout_gravity="center" - android:src="@drawable/target" /> + android:src="@drawable/ic_target" /> + android:src="@drawable/ic_difference" /> + android:src="@drawable/ic_daysleft" /> + android:src="@drawable/ic_lastweek" /> + android:src="@drawable/ic_lastmonth" /> diff --git a/android_app/app/src/main/res/xml/header_preferences.xml b/android_app/app/src/main/res/xml/header_preferences.xml index 775b25ac..45601994 100644 --- a/android_app/app/src/main/res/xml/header_preferences.xml +++ b/android_app/app/src/main/res/xml/header_preferences.xml @@ -3,25 +3,25 @@
+ android:icon="@drawable/ic_preferences_users"/>
+ android:icon="@drawable/ic_preferences_bluetooth"/>
+ android:icon="@drawable/ic_preferences_measurement"/>
+ android:icon="@drawable/ic_preferences_graph"/>
+ android:icon="@drawable/ic_preferences_reminder"/>
+ android:icon="@drawable/ic_preferences_backup"/> \ No newline at end of file diff --git a/doc/raw_icons/openScale_icons.zip b/doc/raw_icons/openScale_icons.zip new file mode 100644 index 00000000..04ba4efa Binary files /dev/null and b/doc/raw_icons/openScale_icons.zip differ