Jean-François Milants 
							
						 
					 
					
						
						
						
						
							
						
						
							df61907073 
							
						 
					 
					
						
						
							
							Limit the size of the track and album name received by MusicService. This should work around this bug :  https://github.com/InfiniTimeOrg/InfiniTime/issues/825  and prevent heap over-allocation.  
						
						 
						
						
						
						
					 
					
						2022-03-21 20:53:15 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								JF 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1c4a56b05b 
							
						 
					 
					
						
						
							
							Merge pull request  #1038  from NeroBurner/analog_local_variables  
						
						 
						
						... 
						
						
						
						WatchFaceAnalog: local date/time variables 
						
						
					 
					
						2022-03-14 21:25:46 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								JF 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5f2ce53877 
							
						 
					 
					
						
						
							
							Merge pull request  #1033  from NeroBurner/music_override_warning  
						
						 
						
						... 
						
						
						
						Music: fix warning about overridden function 
						
						
					 
					
						2022-03-14 21:21:33 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								JF 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fc374562dd 
							
						 
					 
					
						
						
							
							Merge pull request  #1034  from NeroBurner/twos_comparison_warning  
						
						 
						
						... 
						
						
						
						Twos: fix warning about extra paranthesis 
						
						
					 
					
						2022-03-14 21:21:11 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								JF 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							76b7436dfb 
							
						 
					 
					
						
						
							
							Merge pull request  #1039  from NeroBurner/datetime_const_and_analog_const_ref  
						
						 
						
						... 
						
						
						
						Datetime const and analog const ref 
						
						
					 
					
						2022-03-14 21:13:56 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							1379b7902f 
							
						 
					 
					
						
						
							
							WatchFaceAnalog: local date/time variables  
						
						 
						
						... 
						
						
						
						Use local date and time variables. No need to store them in the object. 
						
						
					 
					
						2022-03-14 21:00:07 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							bebc072e78 
							
						 
					 
					
						
						
							
							WatchFaceAnalog: const ref to dateTimeController  
						
						 
						
						... 
						
						
						
						The clock app only reads from the dateTimeController, never modifies it. 
						
						
					 
					
						2022-03-14 20:59:44 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							db41d9081a 
							
						 
					 
					
						
						
							
							DateTimeController: make possible functions const  
						
						 
						
						... 
						
						
						
						MonthShortToString and DayOfWeekShortToString don't change the
underlying object. Those are just getters and can be declared `const`. 
						
						
					 
					
						2022-03-14 20:59:44 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							51716898aa 
							
						 
					 
					
						
						
							
							Twos: fix warning about extra paranthesis  
						
						 
						
						... 
						
						
						
						We have a comparison like `if (( a == b ))`, which is a parenthesis too
much, which generates the following warning
```
InfiniTime/src/displayapp/screens/Twos.cpp:133:35: warning: equality comparison with extraneous parentheses [-Wparentheses-equality]
  if ((grid[newRow][newCol].value == grid[oldRow][oldCol].value)) {
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
InfiniTime/src/displayapp/screens/Twos.cpp:133:35: note: remove extraneous parentheses around the comparison to silence this warning
  if ((grid[newRow][newCol].value == grid[oldRow][oldCol].value)) {
      ~                           ^                            ~
``` 
						
						
					 
					
						2022-03-13 22:05:25 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							0933d60b16 
							
						 
					 
					
						
						
							
							Music: fix warning about overridden function  
						
						 
						
						... 
						
						
						
						Clang warns on `OnTouchEvent()` function, which is overridden, but is
missing the `override` keyword
```
In file included from InfiniTime/src/displayapp/screens/Music.cpp:18:
InfiniTime/src/displayapp/screens/Music.h:43:14: warning: 'OnTouchEvent' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
        bool OnTouchEvent(TouchEvents event);
             ^
``` 
						
						
					 
					
						2022-03-13 21:58:53 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								mabuch 
							
						 
					 
					
						
						
						
						
							
						
						
							ea14c580ca 
							
						 
					 
					
						
						
							
							Rename PineTimeStyle to WatchFacePineTimeStyle  
						
						 
						
						
						
						
					 
					
						2022-03-12 18:16:09 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								JF 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							21da5869c5 
							
						 
					 
					
						
						
							
							Merge pull request  #1026  from NeroBurner/fix_settings_chimes  
						
						 
						
						... 
						
						
						
						Fix SettingChimes cbOption array size 
						
						
					 
					
						2022-03-09 21:59:30 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								JF 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							dbfcb455fe 
							
						 
					 
					
						
						
							
							Merge pull request  #1005  from aveeryy/notifications-as-text  
						
						 
						
						... 
						
						
						
						Terminal watchface: replace notifications icon with a text entry 
						
						
					 
					
						2022-03-09 21:33:46 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							f47b04ffd0 
							
						 
					 
					
						
						
							
							Fix SettingChimes cbOption array size  
						
						 
						
						... 
						
						
						
						There are 3 options, but the array-size is set to 2. This leads to
memory corruption in the initialization of the SettingChimes screen when
assigning the third option object pointer.
Found in https://github.com/InfiniTimeOrg/InfiniSim/issues/11  
						
						
					 
					
						2022-03-08 23:12:34 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							7e0b053b38 
							
						 
					 
					
						
						
							
							CI: lv_sim: initialize libpng submodule for WITH_PNG=ON screenshot  
						
						 
						
						... 
						
						
						
						InfiniSim PR https://github.com/InfiniTimeOrg/InfiniSim/pull/10  adds
support for screenshots in png/bmp format using `libpng` submodule.
This new submodule must be added to the lv_sim workflow as well. 
						
						
					 
					
						2022-03-08 21:57:20 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Riku Isokoski 
							
						 
					 
					
						
						
						
						
							
						
						
							61a9a97e26 
							
						 
					 
					
						
						
							
							Update navigation font readme section  
						
						 
						
						
						
						
					 
					
						2022-03-08 21:34:20 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Riku Isokoski 
							
						 
					 
					
						
						
						
						
							
						
						
							04d21dcd93 
							
						 
					 
					
						
						
							
							Add ExtraBold font ttf  
						
						 
						
						
						
						
					 
					
						2022-03-08 21:34:20 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Riku Isokoski 
							
						 
					 
					
						
						
						
						
							
						
						
							13c66dd54b 
							
						 
					 
					
						
						
							
							Further updates to font readme.  
						
						 
						
						
						
						
					 
					
						2022-03-08 21:34:20 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Riku Isokoski 
							
						 
					 
					
						
						
						
						
							
						
						
							204ad7ca2a 
							
						 
					 
					
						
						
							
							Update font readme, update fonts, add missing files  
						
						 
						
						
						
						
					 
					
						2022-03-08 21:34:20 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							4c92ed410f 
							
						 
					 
					
						
						
							
							CI: add lv_sim workflow and upload 'infinisim' executable  
						
						 
						
						... 
						
						
						
						use InfiniSim repo to build simulator in CI 
						
						
					 
					
						2022-03-08 21:21:41 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							187d99c0f7 
							
						 
					 
					
						
						
							
							SystemMonitor: implement FreeRtosMonitor only if trace facility is set  
						
						 
						
						... 
						
						
						
						Split SystemMonitor into h and cpp file and move the logging code of the
`Process` function into the cpp file.
Depending of the `configUSE_TRACE_FACILITY` define from
`src/FreeRTOSConfig.h` create either a "FreeRtosMonitor" or a
"DummyMonitor".
Make the `Process()` function non-const, as the FreeRtosMonitor changes
the member variable `lastTick`.
In `SystemTask.h` we then only need to use `SystemMonitor`, without
knowledge of the `configUSE_TRACE_FACILITY` define. 
						
						
					 
					
						2022-03-08 20:28:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							5fe5cee9ef 
							
						 
					 
					
						
						
							
							Add missing nrf_log.h includes shadowed by SystemMonitor.h  
						
						 
						
						... 
						
						
						
						Some components were missing a `nrf_log.h` include. This missing
include was accidentally provided by the SystemMonitor.h header, which
was included by Systemtask.h 
						
						
					 
					
						2022-03-08 20:28:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								avery 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8844ea60b1 
							
						 
					 
					
						
						
							
							Remove unnecessary line  
						
						 
						
						
						
						
					 
					
						2022-03-06 14:01:20 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								avery 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							452dd12eff 
							
						 
					 
					
						
						
							
							Merge branch 'develop' into notifications-as-text  
						
						 
						
						
						
						
					 
					
						2022-03-06 13:11:26 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								avery 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5d974434ef 
							
						 
					 
					
						
						
							
							Replace notif entry with "You have mail." text  
						
						 
						
						
						
						
					 
					
						2022-03-05 13:01:50 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Yehoshua Pesach Wallach 
							
						 
					 
					
						
						
						
						
							
						
						
							30797b37bc 
							
						 
					 
					
						
						
							
							removed SetClockFace from watchface Constructors  
						
						 
						
						
						
						
					 
					
						2022-03-03 21:20:22 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							5613449bfb 
							
						 
					 
					
						
						
							
							Settings: more specific read and write mode  
						
						 
						
						... 
						
						
						
						For each filesystem interaction be more specific if we want to read from
the file or write to it.
Doing a non-creating read on the loading of the settings file, otherwise
an empty file could be created, and when reading that empty file for the
initial settings I would expect an error (or random data) when reading. 
						
						
					 
					
						2022-03-03 21:15:57 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								medeyko 
							
						 
					 
					
						
						
						
						
							
						
						
							dd47ba9782 
							
						 
					 
					
						
						
							
							Update README.md  
						
						 
						
						... 
						
						
						
						More imperative tone 
						
						
					 
					
						2022-03-03 21:13:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								medeyko 
							
						 
					 
					
						
						
						
						
							
						
						
							dd28359571 
							
						 
					 
					
						
						
							
							Update README.md  
						
						 
						
						... 
						
						
						
						remove unnecessary ) 
						
						
					 
					
						2022-03-03 21:13:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								medeyko 
							
						 
					 
					
						
						
						
						
							
						
						
							43399b3832 
							
						 
					 
					
						
						
							
							Update README.md  
						
						 
						
						
						
						
					 
					
						2022-03-03 21:13:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								medeyko 
							
						 
					 
					
						
						
						
						
							
						
						
							1eaf258a63 
							
						 
					 
					
						
						
							
							Update jetbrains_mono_bold_20.c  
						
						 
						
						... 
						
						
						
						Fix 0 (zero) symbol. For more details, #988  
						
						
					 
					
						2022-03-03 21:13:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Riku Isokoski 
							
						 
					 
					
						
						
						
						
							
						
						
							f1c91e1ce0 
							
						 
					 
					
						
						
							
							terminal watchface: remove icons and other fixes  
						
						 
						
						
						
						
					 
					
						2022-03-03 21:10:39 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								avery 
							
						 
					 
					
						
						
						
						
							
						
						
							1bfee61ef9 
							
						 
					 
					
						
						
							
							Replace Airplane mode icon  
						
						 
						
						
						
						
					 
					
						2022-03-03 21:09:05 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							a29e30c187 
							
						 
					 
					
						
						
							
							Notifications: replace newlines in label-copy because of const char* title  
						
						 
						
						... 
						
						
						
						The variable `title` is defined as `const char*`, which means, that
`strchr()` returns a `const char*` as well according to
https://www.cplusplus.com/reference/cstring/strchr/ 
But in the same line the return value is assigned to a non-const
`char*`, which shouldn't be allowed (error with `-pedantic`).
Because the `lv_label` creates an internal copy of the title sting, just
modify that one instead and replace newline in the copied string. 
						
						
					 
					
						2022-03-03 21:08:45 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							29f0bce46b 
							
						 
					 
					
						
						
							
							Remove unused includes in HearRate and Motion.h  
						
						 
						
						... 
						
						
						
						The include `bits/unique_ptr.h` isn't used, so remove it. 
						
						
					 
					
						2022-03-03 21:07:11 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Arsen6331 
							
						 
					 
					
						
						
						
						
							
						
						
							51640c7248 
							
						 
					 
					
						
						
							
							Add ITD as a companion app  
						
						 
						
						
						
						
					 
					
						2022-03-03 21:04:38 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								avery 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8dae4c8299 
							
						 
					 
					
						
						
							
							terminal: Replace notification icon with a text entry  
						
						 
						
						
						
						
					 
					
						2022-02-22 18:42:54 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								avery 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2803dd667f 
							
						 
					 
					
						
						
							
							Use Bluetooth brand color for status text  
						
						 
						
						
						
						
					 
					
						2022-02-22 18:23:26 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jean-François Milants 
							
						 
					 
					
						
						
						
						
							
						
						
							0e2b27d792 
							
						 
					 
					
						
						
							
							Merge branch 'evergreen22-airplane-mode' into develop  
						
						 
						
						
						
						
					 
					
						2022-02-20 15:41:06 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jean-François Milants 
							
						 
					 
					
						
						
						
						
							
						
						
							ef44b763d9 
							
						 
					 
					
						
						
							
							Merge branch 'airplane-mode' of  https://github.com/evergreen22/InfiniTime  into evergreen22-airplane-mode  
						
						 
						
						... 
						
						
						
						Apply a few changes that were requested in the PR during the review.
# Conflicts:
#	src/CMakeLists.txt
#	src/displayapp/Apps.h
#	src/displayapp/DisplayApp.cpp
#	src/displayapp/Messages.h
#	src/displayapp/screens/settings/Settings.cpp 
						
						
					 
					
						2022-02-20 15:40:49 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jean-François Milants 
							
						 
					 
					
						
						
						
						
							
						
						
							40cdb54772 
							
						 
					 
					
						
						
							
							Merge branch 'airplane-mode' of  https://github.com/evergreen22/InfiniTime  into evergreen22-airplane-mode  
						
						 
						
						... 
						
						
						
						# Conflicts:
#	src/CMakeLists.txt
#	src/displayapp/Apps.h
#	src/displayapp/DisplayApp.cpp
#	src/displayapp/Messages.h
#	src/displayapp/screens/settings/Settings.cpp 
						
						
					 
					
						2022-02-20 15:25:24 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jean-François Milants 
							
						 
					 
					
						
						
						
						
							
						
						
							69e4ab6be1 
							
						 
					 
					
						
						
							
							Manual squash merge of PR  #932  ( https://github.com/InfiniTimeOrg/InfiniTime/pull/932 ) from 13werwolf13  ( 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 <jf@codingfield.com>
Date:   Sun Feb 20 13:14:27 2022 +0100
    Terminal watch face : fix includes and a few code cleaning.
commit 3c244def25e3ad8e1f56d708fb0864c122059948
Merge: 40790868 138a6552
Author: Jean-François Milants <jf@codingfield.com>
Date:   Sun Feb 20 12:45:54 2022 +0100
    Merge branch 'develop' of https://github.com/13werwolf13/InfiniTime  into 13werwolf13-develop
commit 138a65528a86799fd5c37f065023a92f222fe044
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:13:00 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.h
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 35156166b2f7589bf005ec7c7192a4226578f6d9
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:43 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 757ca2dd438f1f314267a8b81a6034c576f1d6be
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:30 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 60b6b4e5824d04faa3efa45173358d04fa68a368
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:20 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 6959d8c043013550a7a3e4e6588b234d3bb942b5
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:11:46 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 4d850281bedf342d0856da5eafc22e46d0767c56
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:11:17 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit af483bee33c225fcb03432db1eb14c0453df0ae7
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:10:57 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 6bc6c1a637be4e514ecd0097d1dc9e4aacdba1db
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:10:40 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.h
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 25fdafc6aba0d9e0173103501de3802af261e2ae
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:06:10 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 12e1b0f8c0202a7f62e3e1c297af850ce3526d13
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:44 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit e6c0f32056e9fea878d270d761607ac5ddc263b0
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:22 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.h
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 342ce8cd114f4af265078bc0cfa6b2d8831706d7
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:06 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 265fec5eeca27fcc1152a18e4af0273bcf119c46
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:04:06 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit b4669be38be0df2b6a3505d5f7a770c71636be60
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:03:29 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 471a84390957ded2ac23ebfe1cb99408e3783b0f
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:03:10 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit 6853166cf546a4ce561195eba01f1b1fd6d56420
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:02:51 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit bba34f69bfdd6b44f142c93644f71c9eda007290
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 22 12:32:41 2022 +0500
    some fixes
commit 74eea9f5800f273249846e6e1c887d15ba6eb10b
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 22 12:32:17 2022 +0500
    some fixes
commit 1e4a6763d73c3ba39c680ad25f90813e6a6a36d1
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Fri Jan 21 08:59:44 2022 +0500
    no errors, no warnings, no work..
commit eb8bd4dc4ecbbf61f1e0f725fd2116ee25319fd6
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 23:50:04 2022 +0500
    add ble state text output
commit fda1c088becb4a7f9ced451a0291694abe2249dc
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 22:25:35 2022 +0500
    add ble state text output
commit 68d3d9b343c0f37830bb640fab10b186faf73067
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 22:22:20 2022 +0500
    add ble state text output
commit 0ed45a9916787f68c0aa6bab9c97b090f2eebdd5
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Tue Jan 18 15:48:15 2022 +0500
    typo fix
commit 477a3a7f27c7486be2c8f985afab1f1739608fed
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Tue Jan 18 10:36:19 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit d6849888ea5cc152f04c5bf6fe2631e66296c357
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Tue Jan 18 10:36:09 2022 +0500
    Update src/displayapp/screens/WatchFaceTerminal.cpp
    Co-authored-by: NeroBurner <pyro4hell@gmail.com>
commit e2f7e318298b8a6f4d436cbbb1b92a738dacab7f
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Mon Jan 17 13:34:05 2022 +0500
    typo fix
commit fc246beb01d3feac4fd0b2fc9c45b38847e1d950
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 15 15:26:25 2022 +0500
    typo fix
commit ebbb31abf10ad9f61a8a7ecfdf29c2aaeaf33c19
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Fri Jan 14 10:08:29 2022 +0500
    typo fix
commit 3afedcaa28009f59e6960730e9349097ef455ea8
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:34:39 2022 +0500
    time format
commit 471a4c942f7e3cfd5c52bd61152ede770da5e026
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:27:10 2022 +0500
    time format
commit d3fd348de4b4a89c216a717de84fcc923cc099fe
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:26:49 2022 +0500
    time format
commit e540d103e3204649ff585742f8834d16136372d5
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 11:28:31 2022 +0500
    add patch
commit 728830178f31f71785c49cdc6b83daea4e0a7df6
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 22:08:07 2022 +0500
    add menue item
commit 4c5847669fa083f15ee3fdb404dadfdaef0f82aa
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 21:42:22 2022 +0500
    typo fix
commit 79273fe24f9162aca5508f07b17896149ad19839
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 20:48:06 2022 +0500
    typo fix
commit 1808a78ad94d0dfe97b6410a93ba30560de22f4b
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 20:17:15 2022 +0500
    typo fix
commit 6dfa141dca176789da4e978f008eb842d9ec515a
Author: Дмитрий Марков <markov@promobit.ru>
Date:   Wed Jan 12 20:12:09 2022 +0500
    typo fix
commit 88f01902325505a9206ced4504aae0762042535d
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 14:50:54 2022 +0500
    add terminal watchface 
						
						
					 
					
						2022-02-20 13:20:43 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							407908686a 
							
						 
					 
					
						
						
							
							Provide reference to BrightnessController in DisplayApp  
						
						 
						
						... 
						
						
						
						For the simulator I need a way to get to the brightnessController object
and handle the set brightness-levels accoringly.
This is done by the constructor expecting a brightnessController object
instead of initializing one itself 
						
						
					 
					
						2022-02-19 20:46:45 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							f829427c41 
							
						 
					 
					
						
						
							
							Remove unused and not compiling DropDownDemo  
						
						 
						
						... 
						
						
						
						For ease of use the simulator uses a globbing expression to get all
screens source files. This one was picked up as well and lead to a
compilation error. 
						
						
					 
					
						2022-02-19 13:17:45 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							b857fdb9f4 
							
						 
					 
					
						
						
							
							SystemTask: forward declare BatteryController to fix of cyclic dependency  
						
						 
						
						... 
						
						
						
						SystemTask.h included BatteryController.h, and BatteryController.h
included SystemTask.h. If unlucky the class SystemTask isn't created yet
when BatteryController wants to use it.
Fix that cyclic dependency by forward declaring the BatteryController
class and including it in the SystemTask.cpp file, where it is needed. 
						
						
					 
					
						2022-02-19 13:17:00 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							4aaa3a3b49 
							
						 
					 
					
						
						
							
							SettingShakeThreshold: add missing SystemTask.h, relative include  
						
						 
						
						... 
						
						
						
						SettingShakeThreshold.h uses SystemTask, but doesn't include the header.
Fixing that for the simulator.
For consistency make the header include a relative to src include. 
						
						
					 
					
						2022-02-19 13:16:15 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							a2a70f8eda 
							
						 
					 
					
						
						
							
							MotorController: no need to make this function a class function  
						
						 
						
						... 
						
						
						
						The `StopRinging()` function was used just in `Notifications.h` screen.
That screen already has access to a `motorController` object. 
						
						
					 
					
						2022-02-19 13:13:36 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							04eca81a95 
							
						 
					 
					
						
						
							
							Notifications: use motorController object instead of class function  
						
						 
						
						... 
						
						
						
						We get the motoroController object, so store and use it. 
						
						
					 
					
						2022-02-19 13:13:36 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Reinhold Gschweicher 
							
						 
					 
					
						
						
						
						
							
						
						
							d5b78ecd66 
							
						 
					 
					
						
						
							
							SystemTask: remove unused ble includes  
						
						 
						
						... 
						
						
						
						Remove unused includes. The firmware still compiles fine without the
includes. 
						
						
					 
					
						2022-02-19 13:00:50 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								minacode 
							
						 
					 
					
						
						
						
						
							
						
						
							a1db9fca13 
							
						 
					 
					
						
						
							
							remove unused reference  
						
						 
						
						
						
						
					 
					
						2022-02-16 13:34:14 +01:00