From: Matheus Afonso Martins Moreira Date: Sat, 7 Sep 2024 20:21:10 +0000 (-0300) Subject: Merge PR #266 - add deadline tracking watch face X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=c805cdc7dff08aec018f68830fce207b3865fe81;p=sensor-watch.git Merge PR #266 - add deadline tracking watch face Adds a timing watch face that focuses on keeping track of specific deadlines. Dates and times can be set on the watch face and it will display the time remaining at ever decreasing levels of granularity for the sake of brevity and ease of understanding. For example, it will display years and months if over a year is left, months and days if less than one year is left, days and hours if less than one month is left and the full remaining time if less than a day is left. It also notifies the user when a deadline has passed recently. Reviewed-by: Matheus Afonso Martins Moreira Tested-on-hardware-by: Konrad Rieck GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/266 --- c805cdc7dff08aec018f68830fce207b3865fe81 diff --cc movement/make/Makefile index 53adba9,74c630b..d8cc032 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@@ -121,17 -118,7 +121,18 @@@ SRCS += ../watch_faces/complication/flashlight_face.c \ ../watch_faces/clock/decimal_time_face.c \ ../watch_faces/clock/wyoscan_face.c \ + ../watch_faces/settings/save_load_face.c \ + ../watch_faces/clock/day_night_percentage_face.c \ + ../watch_faces/complication/simple_coin_flip_face.c \ + ../watch_faces/complication/solstice_face.c \ + ../watch_faces/complication/couch_to_5k_face.c \ + ../watch_faces/clock/minute_repeater_decimal_face.c \ + ../watch_faces/complication/tuning_tones_face.c \ + ../watch_faces/complication/kitchen_conversions_face.c \ + ../watch_faces/complication/wordle_face.c \ + ../watch_faces/complication/endless_runner_face.c \ + ../watch_faces/complication/periodic_face.c \ + ../watch_faces/complication/deadline_face.c # New watch faces go above this line. # Leave this line at the bottom of the file; it has all the targets for making your project. diff --cc movement/movement_faces.h index 52eacf5,b96bfbb..6216770 --- a/movement/movement_faces.h +++ b/movement/movement_faces.h @@@ -96,17 -95,7 +96,18 @@@ #include "flashlight_face.h" #include "decimal_time_face.h" #include "wyoscan_face.h" +#include "save_load_face.h" +#include "day_night_percentage_face.h" +#include "simple_coin_flip_face.h" +#include "solstice_face.h" +#include "couch_to_5k_face.h" +#include "minute_repeater_decimal_face.h" +#include "tuning_tones_face.h" +#include "kitchen_conversions_face.h" +#include "wordle_face.h" +#include "endless_runner_face.h" +#include "periodic_face.h" + #include "deadline_face.h" // New includes go above this line. #endif // MOVEMENT_FACES_H_