Re-gen package.json to fix sideload error

This commit is contained in:
2026-04-11 23:32:24 -04:00
parent fab03edcb1
commit bd9c484ff6
2 changed files with 13 additions and 8 deletions

View File

@@ -1,16 +1,20 @@
{ {
"name": "subnet-helper",
"author": "RandyTheSilly", "author": "RandyTheSilly",
"version": "1.0.0",
"keywords": [ "keywords": [
"networking", "networking",
"subnet", "subnet",
"converter" "mask",
"cidr"
], ],
"name": "subnet-helper", "private": true,
"dependencies": {},
"pebble": { "pebble": {
"displayName": "Subnet Helper", "displayName": "Subnet Helper",
"enableMultiJS": false, "uuid": "09853807-57bd-47e5-8684-e8f2bb3eecad",
"projectType": "native",
"sdkVersion": "3", "sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [ "targetPlatforms": [
"aplite", "aplite",
"basalt", "basalt",
@@ -20,10 +24,11 @@
"emery", "emery",
"gabbro" "gabbro"
], ],
"uuid": "09853807-57bd-47e5-8684-e8f2bb3eecad",
"watchapp": { "watchapp": {
"watchface": false "watchface": false
},
"resources": {
"media": []
} }
}, }
"version": "1.0.0"
} }

View File

@@ -107,7 +107,7 @@ static void update_result_text(void) {
snprintf( snprintf(
s_result_text, s_result_text,
sizeof(s_result_text), sizeof(s_result_text),
"CIDR: /%d\nMask: %s\nUsable hosts: %llu", "CIDR: /%d\nMask: %s\nUsable Hosts: %llu",
s_current_prefix, s_current_prefix,
mask_text, mask_text,
usable_hosts); usable_hosts);