change of the default values

Added images and change default values
pull/2685/head
pinq- 2023-04-10 22:08:28 +03:00
parent 2889a73ff5
commit ed998b8b81
6 changed files with 16 additions and 5 deletions

View File

@ -7,5 +7,16 @@ By Amos Blanton, inspired by and remixed from Rinkulainen by Jukio Kallio.
![](screenshot1.png)
View when watch is locked.
![](screenshot4.png)
View when watch is locked with numbers and bubble settings on
![](screenshot5.png)
View when watch is locked with numbers settings on
![](screenshot3.png)
Watch unlocked, without numbers
![](screenshot2.png)
Watch unlocked, showing the date.

View File

@ -10,9 +10,9 @@
const watch = {
color:"#000000",
dateRing : { size:109, weight:20, color:"#00FF00", numbers: true, range: 30 },
hourRing : { size:82, weight:20, color:"#00FFFF", numbers: true, range: 12},
minuteRing : { size:55, weight:18, color:"#FFFF00", numbers: true, range: 60},
dateRing : { size:109, weight:20, color:"#00FF00", numbers: false, range: 30 },
hourRing : { size:82, weight:20, color:"#00FFFF", numbers: false, range: 12},
minuteRing : { size:55, weight:18, color:"#FFFF00", numbers: false, range: 60},
batteryRing: { size :30, weight:10, color:"#ff3300", numbers: false, range: 100},
screen : { width:g.getWidth(), height:g.getHeight(), centerX: g.getWidth() *0.5, centerY: g.getHeight() * 0.5, cursor: 14, font:"Vector:18", bubble:false },
};
@ -232,7 +232,7 @@ function draw() {
// if the day has changed
if(watch.dateRing.range != days_month) watch.dateRing.range = days_month;
drawCircle(watch.dateRing, -unLockedOffset, date.getDate());
drawMonthCircleText( date.getDate() + " " + month[date.getMonth()] + " " +date.getFullYear(), watch.dateRing.size - 24, getDays(date.getFullYear(), date.getMonth()+1), date.getDate());
drawMonthCircleText( date.getDate() + " " + month[date.getMonth()] + " " + date.getFullYear(), watch.dateRing.size - 24, getDays(date.getFullYear(), date.getMonth()+1), date.getDate());
}
drawCircle(watch.hourRing, -unLockedOffset, date.getHours());
drawCircle(watch.minuteRing, -unLockedOffset, date.getMinutes());

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
apps/rings/screenshot3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
apps/rings/screenshot4.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
apps/rings/screenshot5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB