├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── branding └── ticalc-showcase.png ├── config.h ├── eval.c ├── eval.h ├── logo ├── 1024x1024 │ └── appicon.png ├── 128x128 │ └── appicon.png ├── 256x256 │ └── appicon.png ├── 512x512 │ └── appicon.png └── 64x64 │ └── appicon.png ├── ticalc ├── ticalc.c ├── ticalc.desktop └── vendor └── leif ├── .gitignore ├── .leif ├── .config │ └── pulse │ │ └── cookie ├── .leif │ ├── .config │ │ └── pulse │ │ │ └── cookie │ └── .leif │ │ └── .config │ │ └── pulse │ │ └── cookie └── assets │ ├── fonts │ └── inter.ttf │ └── textures │ ├── .config │ └── pulse │ │ └── cookie │ ├── arrow-down.png │ └── tick.png ├── Makefile ├── README.md ├── branding ├── div-showcase.gif ├── styling-elements.png └── ui-elements.png ├── include └── leif │ └── leif.h ├── leif.c └── vendor ├── glad ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── glad.h └── src │ └── glad.c ├── stb_image └── stb_image.h ├── stb_image_resize └── stb_image_resize2.h └── stb_truetype └── stb_truetype.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/README.md -------------------------------------------------------------------------------- /branding/ticalc-showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/branding/ticalc-showcase.png -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/config.h -------------------------------------------------------------------------------- /eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/eval.c -------------------------------------------------------------------------------- /eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/eval.h -------------------------------------------------------------------------------- /logo/1024x1024/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/logo/1024x1024/appicon.png -------------------------------------------------------------------------------- /logo/128x128/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/logo/128x128/appicon.png -------------------------------------------------------------------------------- /logo/256x256/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/logo/256x256/appicon.png -------------------------------------------------------------------------------- /logo/512x512/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/logo/512x512/appicon.png -------------------------------------------------------------------------------- /logo/64x64/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/logo/64x64/appicon.png -------------------------------------------------------------------------------- /ticalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/ticalc -------------------------------------------------------------------------------- /ticalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/ticalc.c -------------------------------------------------------------------------------- /ticalc.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/ticalc.desktop -------------------------------------------------------------------------------- /vendor/leif/.gitignore: -------------------------------------------------------------------------------- 1 | .cache/ 2 | bin/ 3 | lib/ 4 | -------------------------------------------------------------------------------- /vendor/leif/.leif/.config/pulse/cookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/.leif/.config/pulse/cookie -------------------------------------------------------------------------------- /vendor/leif/.leif/.leif/.config/pulse/cookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/.leif/.leif/.config/pulse/cookie -------------------------------------------------------------------------------- /vendor/leif/.leif/.leif/.leif/.config/pulse/cookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/.leif/.leif/.leif/.config/pulse/cookie -------------------------------------------------------------------------------- /vendor/leif/.leif/assets/fonts/inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/.leif/assets/fonts/inter.ttf -------------------------------------------------------------------------------- /vendor/leif/.leif/assets/textures/.config/pulse/cookie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/.leif/assets/textures/.config/pulse/cookie -------------------------------------------------------------------------------- /vendor/leif/.leif/assets/textures/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/.leif/assets/textures/arrow-down.png -------------------------------------------------------------------------------- /vendor/leif/.leif/assets/textures/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/.leif/assets/textures/tick.png -------------------------------------------------------------------------------- /vendor/leif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/Makefile -------------------------------------------------------------------------------- /vendor/leif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/README.md -------------------------------------------------------------------------------- /vendor/leif/branding/div-showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/branding/div-showcase.gif -------------------------------------------------------------------------------- /vendor/leif/branding/styling-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/branding/styling-elements.png -------------------------------------------------------------------------------- /vendor/leif/branding/ui-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/branding/ui-elements.png -------------------------------------------------------------------------------- /vendor/leif/include/leif/leif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/include/leif/leif.h -------------------------------------------------------------------------------- /vendor/leif/leif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/leif.c -------------------------------------------------------------------------------- /vendor/leif/vendor/glad/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/vendor/glad/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /vendor/leif/vendor/glad/include/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/vendor/glad/include/glad/glad.h -------------------------------------------------------------------------------- /vendor/leif/vendor/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/vendor/glad/src/glad.c -------------------------------------------------------------------------------- /vendor/leif/vendor/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/vendor/stb_image/stb_image.h -------------------------------------------------------------------------------- /vendor/leif/vendor/stb_image_resize/stb_image_resize2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/vendor/stb_image_resize/stb_image_resize2.h -------------------------------------------------------------------------------- /vendor/leif/vendor/stb_truetype/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cococry/ticalc/HEAD/vendor/leif/vendor/stb_truetype/stb_truetype.h --------------------------------------------------------------------------------