From 4d2e4172a229f4d5d176f5241646291c709e333b Mon Sep 17 00:00:00 2001 From: David Volovskiy Date: Tue, 8 Jul 2025 07:44:06 -0400 Subject: [PATCH] Moved Wordle from legacy to main folder --- movement_faces.h | 1 + watch-faces.mk | 1 + {legacy/watch_faces => watch-faces}/complication/wordle_face.c | 0 {legacy/watch_faces => watch-faces}/complication/wordle_face.h | 0 .../watch_faces => watch-faces}/complication/wordle_face_dict.h | 0 5 files changed, 2 insertions(+) rename {legacy/watch_faces => watch-faces}/complication/wordle_face.c (100%) rename {legacy/watch_faces => watch-faces}/complication/wordle_face.h (100%) rename {legacy/watch_faces => watch-faces}/complication/wordle_face_dict.h (100%) diff --git a/movement_faces.h b/movement_faces.h index f5c087bc..d849636b 100644 --- a/movement_faces.h +++ b/movement_faces.h @@ -61,4 +61,5 @@ #include "totp_face.h" #include "tally_face.h" #include "probability_face.h" +#include "wordle_face.h" // New includes go above this line. diff --git a/watch-faces.mk b/watch-faces.mk index 665ec4b7..a390a3bf 100644 --- a/watch-faces.mk +++ b/watch-faces.mk @@ -16,6 +16,7 @@ SRCS += \ ./watch-faces/complication/squash_face.c \ ./watch-faces/complication/totp_face.c \ ./watch-faces/complication/tally_face.c \ + ./watch-faces/complication/wordle_face.c \ ./watch-faces/demo/all_segments_face.c \ ./watch-faces/demo/character_set_face.c \ ./watch-faces/demo/light_sensor_face.c \ diff --git a/legacy/watch_faces/complication/wordle_face.c b/watch-faces/complication/wordle_face.c similarity index 100% rename from legacy/watch_faces/complication/wordle_face.c rename to watch-faces/complication/wordle_face.c diff --git a/legacy/watch_faces/complication/wordle_face.h b/watch-faces/complication/wordle_face.h similarity index 100% rename from legacy/watch_faces/complication/wordle_face.h rename to watch-faces/complication/wordle_face.h diff --git a/legacy/watch_faces/complication/wordle_face_dict.h b/watch-faces/complication/wordle_face_dict.h similarity index 100% rename from legacy/watch_faces/complication/wordle_face_dict.h rename to watch-faces/complication/wordle_face_dict.h