{"id":23097082,"url":"https://github.com/alexcoder04/sol-lib","last_synced_at":"2026-02-16T18:35:00.888Z","repository":{"id":62156472,"uuid":"544122910","full_name":"alexcoder04/sol-lib","owner":"alexcoder04","description":"GUI application framework for TI-nspire calculators","archived":false,"fork":false,"pushed_at":"2022-11-29T17:51:02.000Z","size":119,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-05T16:56:15.630Z","etag":null,"topics":["framework","gui","gui-application","gui-framework","gui-library","library","lua","nspire","nspired-lua","python","ti-nspire","ti-nspire-calculators"],"latest_commit_sha":null,"homepage":"https://alexcoder04.github.io/sol-docs/","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexcoder04.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-10-01T17:53:17.000Z","updated_at":"2024-07-27T21:27:58.000Z","dependencies_parsed_at":"2023-01-22T19:31:22.156Z","dependency_job_id":null,"html_url":"https://github.com/alexcoder04/sol-lib","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/alexcoder04/sol-lib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexcoder04%2Fsol-lib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexcoder04%2Fsol-lib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexcoder04%2Fsol-lib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexcoder04%2Fsol-lib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexcoder04","download_url":"https://codeload.github.com/alexcoder04/sol-lib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexcoder04%2Fsol-lib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29514727,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T17:46:34.542Z","status":"ssl_error","status_checked_at":"2026-02-16T17:46:30.907Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["framework","gui","gui-application","gui-framework","gui-library","library","lua","nspire","nspired-lua","python","ti-nspire","ti-nspire-calculators"],"created_at":"2024-12-16T22:51:04.810Z","updated_at":"2026-02-16T18:35:00.866Z","avatar_url":"https://github.com/alexcoder04.png","language":"Lua","readme":"\n# Sol\n\nGUI application framework for the TI-nspire. This repository is the \"home\" of the project\nand contains all the Lua library code.\n\n[Here](https://alexcoder04.github.io/sol-docs/) you can find the docs.\n\n[Here](https://github.com/alexcoder04/sol-helloworld) you can find an example application.\nAnd [here](https://github.com/alexcoder04/nclock22) is another one.\n\n[These](https://github.com/alexcoder04/sol-tools) are the tools needed for developing applications with Sol.\n\n## Why?\n\nBuilding GUI applications for TI-nspire using the stock Lua library from TI\nis a pain, this is an attempt to make it easier and more comfortable.\n\n### Organized\n\nYour code has to be organized, no \"throwing everything into one Lua file\" anymore!\nAll the parts are then assembled and built into one `.tns` file by [sol-tools](https://github.com/alexcoder04/sol-tools).\nThese tools are also downloading the required sol-lib Lua library version for you.\n\n - `init.lua` runs at start\n - `app.lua` is your main file where you define the app logic\n - `solproj.yml` is where app metadata goes\n - `components` are re-usable blocks of your GUI which can inherit from base components, written in YAML\n - `res` contains any non-code resources, e. g. images and data.\n - and so on...\n\n## How to Use\n\nCheck out the [Quickstart guide](https://alexcoder04.github.io/sol-docs/quickstart.html).\n\n## Roadmap / TODOs\n\n - [ ] more base components\n   - [x] input field\n   - [ ] canvas\n   - [ ] list\n   - [ ] sublayouts/containers\n   - [ ] tabs\n   - [ ] console\n   - [ ] game canvas using physics api\n   - [ ] 2D-editor using nspire's built-in editor\n - [x] colorful components\n - [x] click events\n - [x] component focus (tabbing, highlighting selected)\n - [x] menu api\n - [x] paint hook, use raw `gc` functions\n - [x] persistent data storage\n - [ ] message box components imitating nspireOS's UI\n   - [x] basic support\n   - [ ] theming\n   - [ ] global theming through `MyLib`\n - [x] redraw on timer only if one of update functions returns true\n - [ ] schedule to do something at next redraw/update / imitating sleep function\n   - [x] do at next update\n   - [ ] do in specific time interval\n - [x] light/dark mode switching\n - [x] improve `InputField` component\n   - [x] data types (e. g. int)\n   - [x] labels\n\n## Naming\n\n*Lua* (portuguese for \"moon\") -\u003e *Sol* (portuguese for \"sun\")\n\n## Credits\n\n - The dialog library module is based on the nSpaint GUI engine written by Loïc Pujet.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexcoder04%2Fsol-lib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexcoder04%2Fsol-lib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexcoder04%2Fsol-lib/lists"}