From 99689a6fe4786ea4133fdece399aeece73783570 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sat, 1 Aug 2026 22:20:15 -0400 Subject: [PATCH] Remove tools, update copyright, update .gitignore --- .gitignore | 6 ++++-- LICENSE | 2 +- tools/clangd.zsh | 18 ------------------ tools/magick.zsh | 33 --------------------------------- tools/zopfli.zsh | 7 ------- 5 files changed, 5 insertions(+), 61 deletions(-) delete mode 100755 tools/clangd.zsh delete mode 100755 tools/magick.zsh delete mode 100755 tools/zopfli.zsh diff --git a/.gitignore b/.gitignore index b41ca9b..eaf2f4b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ -/.clangd /build -/.lock* +/.clangd +/.lock-waf* +/package-lock.json +/node_modules diff --git a/LICENSE b/LICENSE index aed522d..a1b0b2c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2026 hilariouspig +Copyright (c) 2026 RandyTheSilly THIS LICENSE DOES NOT APPLY TO ANY ".png" NOR ".ttf" FILES IN THIS REPOSITORY. diff --git a/tools/clangd.zsh b/tools/clangd.zsh deleted file mode 100755 index b6fdaa7..0000000 --- a/tools/clangd.zsh +++ /dev/null @@ -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 diff --git a/tools/magick.zsh b/tools/magick.zsh deleted file mode 100755 index a7ce4a9..0000000 --- a/tools/magick.zsh +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env zsh - -# THIS IS A LEGACY TOOL THAT WAS USED FOR THE INITIAL -# ASSET EXTRACTION - ASSETS HAVE SINCE BEEN HEAVILY -# MODIFIED, MAKING THIS SCRIPT PRETTY USELESS - -if [[ $# -lt 2 ]]; then - echo "Usage: $0 " - exit 1 -fi - -if [[ $2 == "top" ]]; then - gravity="South" -elif [[ $2 == "bottom" ]]; then - gravity="North" -else - echo "Usage: $0 " - exit 1 -fi - -for file in $1/*; do - magick "$file" -gravity $gravity -chop 0x10 "$file" - magick "$file" -transparent Black PNG24:"$file" - magick "$file" -fill "rgb(0,255,0)" -opaque White "$file" - magick "$file" -gravity Center -background None -compose Copy -extent 260x $file - # Bar is commented out for an experiment with rendering in real time on the watch - #magick "$file" -gravity $gravity -background White -splice 0x15 $file - if [[ $2 == "top" ]]; then - magick "$file" -gravity North -background None -splice 0x41 $file - else - magick "$file" -gravity South -background None -splice 0x41 $file - fi -done diff --git a/tools/zopfli.zsh b/tools/zopfli.zsh deleted file mode 100755 index 9324764..0000000 --- a/tools/zopfli.zsh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env zsh - -# ALWAYS USE ZOPFLI TO CRUSH PNGS AS MUCH AS POSSIBLE BEFORE SHIPPING - -for file in **/*; do - zopflipng -y --iterations=500 --filters=01234mepb --lossy_8bit --lossy_transparent $file $file & -done