3 Commits
Author SHA1 Message Date
RandyTheSilly 089ff0ae7f Bump version to v1.2.0 2026-08-24 18:36:21 -04:00
RandyTheSilly cf32bd427a Enable touch navigation 2026-08-19 01:02:27 -04:00
RandyTheSilly a29b59b1f7 Remove clangd.zsh 2026-08-01 22:29:42 -04:00
4 changed files with 6 additions and 21 deletions
+4 -2
View File
@@ -1,3 +1,5 @@
/.clangd
/build /build
/.lock* /.clangd
/.lock-waf*
/package-lock.json
/node_modules
-18
View File
@@ -1,18 +0,0 @@
#!/usr/bin/env zsh
echo "CompileFlags:
Add:
[
-DPBL_DISPLAY_WIDTH=200,
-DPBL_DISPLAY_HEIGHT=228,
-xc,
-nostdinc,
-DPBL_COLOR,
-I${HOME}/.pebble-sdk/SDKs/current/sdk-core/pebble/emery/include,
-include$(pwd)/build/include/message_keys.auto.h,
-I$(pwd)/build/emery,
-include${HOME}/.pebble-sdk/SDKs/current/toolchain/arm-none-eabi/arm-none-eabi/include/stdint.h,
-include${HOME}/.pebble-sdk/SDKs/current/toolchain/arm-none-eabi/arm-none-eabi/include/stdlib.h,
-include${HOME}/.pebble-sdk/SDKs/current/toolchain/arm-none-eabi/arm-none-eabi/include/time.h,
-include${HOME}/.pebble-sdk/SDKs/current/toolchain/arm-none-eabi/lib/gcc/arm-none-eabi/14.2.1/include/stddef.h,
-include${HOME}/.pebble-sdk/SDKs/current/toolchain/arm-none-eabi/lib/gcc/arm-none-eabi/14.2.1/include/stdbool.h,
]" > ./.clangd
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "subnet-helper", "name": "subnet-helper",
"author": "RandyTheSilly", "author": "RandyTheSilly",
"version": "1.1.0", "version": "1.2.0",
"keywords": [ "keywords": [
"networking", "networking",
"subnet", "subnet",
+1
View File
@@ -429,6 +429,7 @@ static void result_window_unload(Window *window) {
} }
static void init(void) { static void init(void) {
app_touch_navigation_enable(true);
s_main_window = window_create(); s_main_window = window_create();
window_set_window_handlers(s_main_window, (WindowHandlers){ window_set_window_handlers(s_main_window, (WindowHandlers){
.load = main_window_load, .load = main_window_load,