diff --git a/draft_pictures/cat.xcf b/draft_pictures/cat.xcf index f1df51f8..6bd6671c 100644 Binary files a/draft_pictures/cat.xcf and b/draft_pictures/cat.xcf differ diff --git a/draft_pictures/cat_clean.xcf b/draft_pictures/cat_clean.xcf new file mode 100644 index 00000000..b554ef17 Binary files /dev/null and b/draft_pictures/cat_clean.xcf differ diff --git a/draft_pictures/cat_small.xcf b/draft_pictures/cat_small.xcf new file mode 100644 index 00000000..76c7751d Binary files /dev/null and b/draft_pictures/cat_small.xcf differ diff --git a/src/displayapp/screens/WatchFaceMeow.cpp b/src/displayapp/screens/WatchFaceMeow.cpp index a4abadaa..b6fb030b 100644 --- a/src/displayapp/screens/WatchFaceMeow.cpp +++ b/src/displayapp/screens/WatchFaceMeow.cpp @@ -193,7 +193,7 @@ WatchFaceMeow::WatchFaceMeow(Controllers::DateTime& dateTimeController, //Battery indicator logoPine = lv_img_create(lv_scr_act(), nullptr); - lv_img_set_src(logoPine, "F:/images/pine_small.bin"); + lv_img_set_src(logoPine, "F:/images/cat_small.bin"); lv_obj_set_pos(logoPine, 15, 106); lineBattery = lv_line_create(lv_scr_act(), nullptr); @@ -565,7 +565,7 @@ bool WatchFaceMeow::IsAvailable(Pinetime::Controllers::FS& filesystem) { } filesystem.FileClose(&file); - if (filesystem.FileOpen(&file, "/images/pine_small.bin", LFS_O_RDONLY) < 0) { + if (filesystem.FileOpen(&file, "/images/cat_small.bin", LFS_O_RDONLY) < 0) { return false; } diff --git a/src/resources/images.json b/src/resources/images.json index e4247188..2591bcbb 100644 --- a/src/resources/images.json +++ b/src/resources/images.json @@ -1,11 +1,18 @@ { - "pine_small" : { + "pine_small" : { "sources": "images/pine_logo.png", "color_format": "CF_TRUE_COLOR_ALPHA", "output_format": "bin", "binary_format": "ARGB8565_RBSWAP", "target_path": "/images/" }, + "cat_small" : { + "sources": "images/cat_clean.png", + "color_format": "CF_TRUE_COLOR_ALPHA", + "output_format": "bin", + "binary_format": "ARGB8565_RBSWAP", + "target_path": "/images/" + }, "navigation0" : { "sources": "images/navigation0.png", "color_format": "CF_INDEXED_1_BIT", diff --git a/src/resources/images/cat_clean.png b/src/resources/images/cat_clean.png new file mode 100644 index 00000000..6f8da93a Binary files /dev/null and b/src/resources/images/cat_clean.png differ