this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cleanup, readme

alice 797b4108 85b45adb

+6 -40
+3 -31
README.md
··· 3 3 4 4 # TID clock (and other watchfaces for pebble) 5 5 6 - ## Prerequisites 7 - - [rebbletool](https://github.com/richinfante/rebbletool) 8 - - Python 3 9 - - [uv](https://github.com/astral-sh/uv?tab=readme-ov-file#installation) 10 6 ## Overview 11 7 12 8 TID clock is a Pebble watchface that displays: ··· 19 15 20 16 - A Pebble watch or a compatible emulator (e.g., Basalt). 21 17 - [Rebbletool](https://github.com/richinfante/rebbletool) installed and configured. 22 - - Python 3 (for timezone data generation). 23 - 24 - 25 - ## For Python 26 - 27 - Create a virtual environment (using [`uv`](https://github.com/astral-sh/uv?tab=readme-ov-file#installation)) and install dependencies: 28 - 29 - ```bash 30 - uv venv 31 - source .venv/bin/activate 32 - uv pip install -r requirements.txt 33 - ``` 18 + - [Node.js](https://nodejs.org/) (for timezone data generation). 19 + - [Bun](https://bun.sh) (for package management). 34 20 35 21 ## Build & Installation 36 22 37 - Use the included `r` helper script to streamline common tasks: 38 - 39 - ```bash 40 - # 1) Generate timezone and airport data 41 - ./r generate 42 - 43 - # 2) Build the project 44 - ./r build 45 - 46 - # 3) Install onto the emulator (Basalt) 47 - ./r install 48 - 49 - # 4) Build and install in one step 50 - ./r debug 51 - ``` 23 + Use the included `r` helper script to streamline common tasks.
+2 -2
package-lock.json
··· 1 1 { 2 2 "name": "tidface", 3 - "version": "1.0.0", 3 + "version": "1.1.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 8 "name": "tidface", 9 - "version": "1.0.0", 9 + "version": "1.1.0", 10 10 "dependencies": { 11 11 "pebble-clay": "^1.0.4" 12 12 }
+1 -1
package.json
··· 1 1 { 2 2 "name": "tidface", 3 3 "author": "aliceisjustplaying", 4 - "version": "1.0.1", 4 + "version": "1.1.0", 5 5 "keywords": [ 6 6 "pebble-app" 7 7 ],
-6
requirements.txt
··· 1 - airportsdata 2 - beautifulsoup4 3 - pandas 4 - requests 5 - pyarrow 6 - timezonefinder