-
-
Notifications
You must be signed in to change notification settings - Fork 961
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add terminal watchface #932
Conversation
that's how it looks on my unfinished simulator https://github.com/NeroBurner/InfiniTime/tree/lv_simulation_watchface_terminal if you want to flesh it out on your PC first :) |
I will be grateful if you tell me how to check this on the simulator |
sure thing :) First to get the information onto your local repository, add mine as new remote git remote add neroburner https://github.com/NeroBurner/InfiniTime.git
git fetch neroburner Then you can switch branches to mine git checkout lv_simulation_watchface_terminal Then to build and run the simulator cd lv_sim
cmake -S . -B build
cmake --build build -j4
./build/main Then press |
@13werwolf13 please cherry-pick 91cf64a for relative include fixups needed for the simulator to work, and it's now recommended to use includes relative to the git cherry-pick 91cf64abf663b6cf0200353424d9eefa256331a6 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please cleanup the mixed spaces and tabs
Furthermore please try to fix the sprintf
related warnings
|
||
auto batteryValue = static_cast<uint8_t>(batteryController.PercentRemaining()); | ||
/* | ||
char batteryGauge[12]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this commented block still here? plan to implement it for this PR?
if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) { | ||
|
||
char dateStr[38]; | ||
sprintf(dateStr, "[DATE]#007fff %04d.%02d.%02d#", short(year), char(month), char(day)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
suggesting to use -
instead of .
for the iso-date-string. That would be the ISO 8601 format that pythons date.isoformat() returns
sprintf(dateStr, "[DATE]#007fff %04d.%02d.%02d#", short(year), char(month), char(day)); | |
sprintf(dateStr, "[DATE]#007fff %04d-%02d-%02d#", short(year), char(month), char(day)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, please, no...
it will not look so aesthetically pleasing and authentic
@NeroBurner sorry for so many mistakes, I'm not a programmer. I have fixed those issues. |
@13werwolf13 no worries, we all had to start somewhere :) I really like the looks of the Terminal Watchface. Thanks to making the effort to do this PR and update and cleanup this Watchface :) The last fix I'd like to see are the relative include fixes as I've done in 91cf64a . Please cherry-pick as described earlier, or just copy the changes ;) |
|
@NeroBurner I still did not understand how this feature works, so I transferred the changes manually. I hope I haven't missed anything. |
@NeroBurner done |
This looks great! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The following warnings are fixed by the current review, and I think we now found all the tabs
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp: In member function 'virtual void Pinetime::Applications::Screens::WatchFaceTerminal::Refresh()':
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp:161:32: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long long int' [-Wformat=]
[build] 161 | sprintf(hoursChar, "%02d", hour);
[build] | ~~~^ ~~~~
[build] | | |
[build] | int long long int
[build] | %02lld
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp:175:32: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long long int' [-Wformat=]
[build] 175 | sprintf(hoursChar, "%02d", hour);
[build] | ~~~^ ~~~~
[build] | | |
[build] | int long long int
[build] | %02lld
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp: In member function 'virtual void Pinetime::Applications::Screens::WatchFaceTerminal::Refresh()':
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp:161:32: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long long int' [-Wformat=]
[build] 161 | sprintf(hoursChar, "%02d", hour);
[build] | ~~~^ ~~~~
[build] | | |
[build] | int long long int
[build] | %02lld
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp:175:32: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long long int' [-Wformat=]
[build] 175 | sprintf(hoursChar, "%02d", hour);
[build] | ~~~^ ~~~~
[build] | | |
[build] | int long long int
[build] | %02lld
[build] Consolidate compiler generated dependencies of target pinetime-mcuboot-recovery-loader
The modified files should be reformatted with clang-format. No need to review and fix indentation and format manually. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
Co-authored-by: NeroBurner <[email protected]>
I don't see the mentioned problem. Can you describe it?
On February 2, 2022 5:25:59 AM GMT+01:00, "Марков Дмитрий" ***@***.***> wrote:
So, it really works.
But on my device I noticed another problem (I will attach a photo). I hope that I can solve this problem myself.
![IMG_20220202_092215.jpg](https://user-images.githubusercontent.com/3271641/152092967-636d40c6-bb8e-4846-8ded-71859588f4ab.jpg)
--
Reply to this email directly or view it on GitHub:
#932 (comment)
You are receiving this because you were mentioned.
Message ID: ***@***.***>
--
Sent from my Android device with K-9 Mail. Please excuse my brevity.
|
unfortunately, I am now busy with very important things at work (and also do not have a charger at hand) so I will do this later in the evening. P.S.: the problem of which I wrote earlier as it turned out was visible only to me alone, because it seems time to change my eye lenses. |
Maybe use CONN or NET for Connected/Disconnected and STAT for Charging/Discharging? |
I like the "CONN" option, but "STAT" doesn't seem very appropriate. |
I really like this watch face for it's verbosity. I hope it gets merged in time for the next release. |
@@ -0,0 +1,252 @@ | |||
#include "WatchFaceTerminal.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please use includes relative to the src directory, helps me greatly with the simulator
#include "WatchFaceTerminal.h" | |
#include "displayapp/screens/WatchFaceTerminal.h" |
…b.com/13werwolf13). This PR adds a new Terminal watchface to InfiniTime! Squashed commit of the following: commit 23ea840b059c69667c8711265cecaf992791acb6 Author: Jean-François Milants <[email protected]> Date: Sun Feb 20 13:14:27 2022 +0100 Terminal watch face : fix includes and a few code cleaning. commit 3c244def25e3ad8e1f56d708fb0864c122059948 Merge: 4079086 138a655 Author: Jean-François Milants <[email protected]> Date: Sun Feb 20 12:45:54 2022 +0100 Merge branch 'develop' of https://github.com/13werwolf13/InfiniTime into 13werwolf13-develop commit 138a655 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:13:00 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.h Co-authored-by: NeroBurner <[email protected]> commit 3515616 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:12:43 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 757ca2d Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:12:30 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 60b6b4e Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:12:20 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 6959d8c Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:11:46 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 4d85028 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:11:17 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit af483be Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:10:57 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 6bc6c1a Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:10:40 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.h Co-authored-by: NeroBurner <[email protected]> commit 25fdafc Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:06:10 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 12e1b0f Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:05:44 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit e6c0f32 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:05:22 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.h Co-authored-by: NeroBurner <[email protected]> commit 342ce8c Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:05:06 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 265fec5 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:04:06 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit b4669be Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:03:29 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 471a843 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:03:10 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 6853166 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:02:51 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit bba34f6 Author: Дмитрий Марков <[email protected]> Date: Sat Jan 22 12:32:41 2022 +0500 some fixes commit 74eea9f Author: Дмитрий Марков <[email protected]> Date: Sat Jan 22 12:32:17 2022 +0500 some fixes commit 1e4a676 Author: Дмитрий Марков <[email protected]> Date: Fri Jan 21 08:59:44 2022 +0500 no errors, no warnings, no work.. commit eb8bd4d Author: Дмитрий Марков <[email protected]> Date: Thu Jan 20 23:50:04 2022 +0500 add ble state text output commit fda1c08 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 20 22:25:35 2022 +0500 add ble state text output commit 68d3d9b Author: Дмитрий Марков <[email protected]> Date: Thu Jan 20 22:22:20 2022 +0500 add ble state text output commit 0ed45a9 Author: Дмитрий Марков <[email protected]> Date: Tue Jan 18 15:48:15 2022 +0500 typo fix commit 477a3a7 Author: Марков Дмитрий <[email protected]> Date: Tue Jan 18 10:36:19 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit d684988 Author: Марков Дмитрий <[email protected]> Date: Tue Jan 18 10:36:09 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit e2f7e31 Author: Дмитрий Марков <[email protected]> Date: Mon Jan 17 13:34:05 2022 +0500 typo fix commit fc246be Author: Дмитрий Марков <[email protected]> Date: Sat Jan 15 15:26:25 2022 +0500 typo fix commit ebbb31a Author: Дмитрий Марков <[email protected]> Date: Fri Jan 14 10:08:29 2022 +0500 typo fix commit 3afedca Author: Дмитрий Марков <[email protected]> Date: Thu Jan 13 12:34:39 2022 +0500 time format commit 471a4c9 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 13 12:27:10 2022 +0500 time format commit d3fd348 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 13 12:26:49 2022 +0500 time format commit e540d10 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 13 11:28:31 2022 +0500 add patch commit 7288301 Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 22:08:07 2022 +0500 add menue item commit 4c58476 Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 21:42:22 2022 +0500 typo fix commit 79273fe Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 20:48:06 2022 +0500 typo fix commit 1808a78 Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 20:17:15 2022 +0500 typo fix commit 6dfa141 Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 20:12:09 2022 +0500 typo fix commit 88f0190 Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 14:50:54 2022 +0500 add terminal watchface
I manually squash-merged this branch in commit 69e4ab6. |
I'm glad I was helpful to the community! Thank you to everyone who helped! |
…werwolf13 (https://github.com/13werwolf13). This PR adds a new Terminal watchface to InfiniTime! Squashed commit of the following: commit 23ea840b059c69667c8711265cecaf992791acb6 Author: Jean-François Milants <[email protected]> Date: Sun Feb 20 13:14:27 2022 +0100 Terminal watch face : fix includes and a few code cleaning. commit 3c244def25e3ad8e1f56d708fb0864c122059948 Merge: 4079086 138a6552 Author: Jean-François Milants <[email protected]> Date: Sun Feb 20 12:45:54 2022 +0100 Merge branch 'develop' of https://github.com/13werwolf13/InfiniTime into 13werwolf13-develop commit 138a65528a86799fd5c37f065023a92f222fe044 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:13:00 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.h Co-authored-by: NeroBurner <[email protected]> commit 35156166b2f7589bf005ec7c7192a4226578f6d9 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:12:43 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 757ca2dd438f1f314267a8b81a6034c576f1d6be Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:12:30 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 60b6b4e5824d04faa3efa45173358d04fa68a368 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:12:20 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 6959d8c043013550a7a3e4e6588b234d3bb942b5 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:11:46 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 4d850281bedf342d0856da5eafc22e46d0767c56 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:11:17 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit af483bee33c225fcb03432db1eb14c0453df0ae7 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:10:57 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 6bc6c1a637be4e514ecd0097d1dc9e4aacdba1db Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:10:40 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.h Co-authored-by: NeroBurner <[email protected]> commit 25fdafc6aba0d9e0173103501de3802af261e2ae Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:06:10 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 12e1b0f8c0202a7f62e3e1c297af850ce3526d13 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:05:44 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit e6c0f32056e9fea878d270d761607ac5ddc263b0 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:05:22 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.h Co-authored-by: NeroBurner <[email protected]> commit 342ce8cd114f4af265078bc0cfa6b2d8831706d7 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:05:06 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 265fec5eeca27fcc1152a18e4af0273bcf119c46 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:04:06 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit b4669be38be0df2b6a3505d5f7a770c71636be60 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:03:29 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 471a84390957ded2ac23ebfe1cb99408e3783b0f Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:03:10 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit 6853166cf546a4ce561195eba01f1b1fd6d56420 Author: Марков Дмитрий <[email protected]> Date: Wed Feb 2 09:02:51 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit bba34f69bfdd6b44f142c93644f71c9eda007290 Author: Дмитрий Марков <[email protected]> Date: Sat Jan 22 12:32:41 2022 +0500 some fixes commit 74eea9f5800f273249846e6e1c887d15ba6eb10b Author: Дмитрий Марков <[email protected]> Date: Sat Jan 22 12:32:17 2022 +0500 some fixes commit 1e4a6763d73c3ba39c680ad25f90813e6a6a36d1 Author: Дмитрий Марков <[email protected]> Date: Fri Jan 21 08:59:44 2022 +0500 no errors, no warnings, no work.. commit eb8bd4dc4ecbbf61f1e0f725fd2116ee25319fd6 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 20 23:50:04 2022 +0500 add ble state text output commit fda1c088becb4a7f9ced451a0291694abe2249dc Author: Дмитрий Марков <[email protected]> Date: Thu Jan 20 22:25:35 2022 +0500 add ble state text output commit 68d3d9b343c0f37830bb640fab10b186faf73067 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 20 22:22:20 2022 +0500 add ble state text output commit 0ed45a9916787f68c0aa6bab9c97b090f2eebdd5 Author: Дмитрий Марков <[email protected]> Date: Tue Jan 18 15:48:15 2022 +0500 typo fix commit 477a3a7f27c7486be2c8f985afab1f1739608fed Author: Марков Дмитрий <[email protected]> Date: Tue Jan 18 10:36:19 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit d6849888ea5cc152f04c5bf6fe2631e66296c357 Author: Марков Дмитрий <[email protected]> Date: Tue Jan 18 10:36:09 2022 +0500 Update src/displayapp/screens/WatchFaceTerminal.cpp Co-authored-by: NeroBurner <[email protected]> commit e2f7e318298b8a6f4d436cbbb1b92a738dacab7f Author: Дмитрий Марков <[email protected]> Date: Mon Jan 17 13:34:05 2022 +0500 typo fix commit fc246beb01d3feac4fd0b2fc9c45b38847e1d950 Author: Дмитрий Марков <[email protected]> Date: Sat Jan 15 15:26:25 2022 +0500 typo fix commit ebbb31abf10ad9f61a8a7ecfdf29c2aaeaf33c19 Author: Дмитрий Марков <[email protected]> Date: Fri Jan 14 10:08:29 2022 +0500 typo fix commit 3afedcaa28009f59e6960730e9349097ef455ea8 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 13 12:34:39 2022 +0500 time format commit 471a4c942f7e3cfd5c52bd61152ede770da5e026 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 13 12:27:10 2022 +0500 time format commit d3fd348de4b4a89c216a717de84fcc923cc099fe Author: Дмитрий Марков <[email protected]> Date: Thu Jan 13 12:26:49 2022 +0500 time format commit e540d103e3204649ff585742f8834d16136372d5 Author: Дмитрий Марков <[email protected]> Date: Thu Jan 13 11:28:31 2022 +0500 add patch commit 728830178f31f71785c49cdc6b83daea4e0a7df6 Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 22:08:07 2022 +0500 add menue item commit 4c5847669fa083f15ee3fdb404dadfdaef0f82aa Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 21:42:22 2022 +0500 typo fix commit 79273fe24f9162aca5508f07b17896149ad19839 Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 20:48:06 2022 +0500 typo fix commit 1808a78ad94d0dfe97b6410a93ba30560de22f4b Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 20:17:15 2022 +0500 typo fix commit 6dfa141dca176789da4e978f008eb842d9ec515a Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 20:12:09 2022 +0500 typo fix commit 88f01902325505a9206ced4504aae0762042535d Author: Дмитрий Марков <[email protected]> Date: Wed Jan 12 14:50:54 2022 +0500 add terminal watchface
I tried to add watchface found here https://zephyrlabs.github.io/Watchfaces/Terminal/, I asked the developer and he doesn't mind. but now I am not able to check its work.