├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGES.md ├── CMakeLists.txt ├── EPub-Inkplate.cppcheck ├── README.md ├── SDCard ├── books │ ├── Austen, Jane - Orgueil et préjugés.epub │ └── Austen, Jane - Pride and Prejudice.epub ├── config.txt ├── config_distrib.txt ├── fonts │ ├── Asap-Bold.otf │ ├── Asap-BoldItalic.otf │ ├── Asap-Italic.otf │ ├── Asap-Regular.otf │ ├── AsapCondensed-Bold.otf │ ├── AsapCondensed-BoldItalic.otf │ ├── AsapCondensed-Italic.otf │ ├── AsapCondensed-Regular.otf │ ├── Bitter-Bold.otf │ ├── Bitter-BoldItalic.otf │ ├── Bitter-Italic.otf │ ├── Bitter-Medium.otf │ ├── Bitter-MediumItalic.otf │ ├── Bitter-Regular.otf │ ├── Caladea-Bold.otf │ ├── Caladea-BoldItalic.otf │ ├── Caladea-Italic.otf │ ├── Caladea-Regular.otf │ ├── CrimsonPro-Bold.otf │ ├── CrimsonPro-BoldItalic.otf │ ├── CrimsonPro-Italic.otf │ ├── CrimsonPro-Medium.otf │ ├── CrimsonPro-MediumItalic.otf │ ├── CrimsonPro-Regular.otf │ ├── Cuprum-Bold.otf │ ├── Cuprum-BoldItalic.otf │ ├── Cuprum-Italic.otf │ ├── Cuprum-Medium.otf │ ├── Cuprum-MediumItalic.otf │ ├── Cuprum-Regular.otf │ ├── DejaVuSans-Bold.otf │ ├── DejaVuSans-BoldItalic.otf │ ├── DejaVuSans-Italic.otf │ ├── DejaVuSans-Regular.otf │ ├── DejaVuSansCondensed-Bold.otf │ ├── DejaVuSansCondensed-BoldItalic.otf │ ├── DejaVuSansCondensed-Italic.otf │ ├── DejaVuSansCondensed-Regular.otf │ ├── DejaVuSerif-Bold.otf │ ├── DejaVuSerif-BoldItalic.otf │ ├── DejaVuSerif-Italic.otf │ ├── DejaVuSerif-Regular.otf │ ├── DejaVuSerifCondensed-Bold.otf │ ├── DejaVuSerifCondensed-BoldItalic.otf │ ├── DejaVuSerifCondensed-Italic.otf │ ├── DejaVuSerifCondensed-Regular.otf │ ├── EC-BoldItalic_150.ibmf │ ├── EC-BoldItalic_166.ibmf │ ├── EC-BoldItalic_212.ibmf │ ├── EC-Bold_150.ibmf │ ├── EC-Bold_166.ibmf │ ├── EC-Bold_212.ibmf │ ├── EC-Italic_150.ibmf │ ├── EC-Italic_166.ibmf │ ├── EC-Italic_212.ibmf │ ├── EC-Regular_150.ibmf │ ├── EC-Regular_166.ibmf │ ├── EC-Regular_212.ibmf │ ├── ECSans-BoldItalic_150.ibmf │ ├── ECSans-BoldItalic_166.ibmf │ ├── ECSans-BoldItalic_212.ibmf │ ├── ECSans-Bold_150.ibmf │ ├── ECSans-Bold_166.ibmf │ ├── ECSans-Bold_212.ibmf │ ├── ECSans-Italic_150.ibmf │ ├── ECSans-Italic_166.ibmf │ ├── ECSans-Italic_212.ibmf │ ├── ECSans-Regular_150.ibmf │ ├── ECSans-Regular_166.ibmf │ ├── ECSans-Regular_212.ibmf │ ├── ECTypewriter-Italic_150.ibmf │ ├── ECTypewriter-Italic_166.ibmf │ ├── ECTypewriter-Italic_212.ibmf │ ├── ECTypewriter-Regular_150.ibmf │ ├── ECTypewriter-Regular_166.ibmf │ ├── ECTypewriter-Regular_212.ibmf │ ├── IbarraRealNova-Bold.otf │ ├── IbarraRealNova-BoldItalic.otf │ ├── IbarraRealNova-Italic.otf │ ├── IbarraRealNova-Medium.otf │ ├── IbarraRealNova-MediumItalic.otf │ ├── IbarraRealNova-Regular.otf │ ├── License - Asap.txt │ ├── License - Caladea.txt │ ├── License - CrimsonPro.txt │ ├── License - DejaVu.txt │ ├── License - RedHat.txt │ ├── OpenSans-Bold.otf │ ├── OpenSans-BoldItalic.otf │ ├── OpenSans-Italic.otf │ ├── OpenSans-Medium.otf │ ├── OpenSans-MediumItalic.otf │ ├── OpenSans-Regular.otf │ ├── OpenSans_Condensed-Bold.otf │ ├── OpenSans_Condensed-BoldItalic.otf │ ├── OpenSans_Condensed-Italic.otf │ ├── OpenSans_Condensed-Medium.otf │ ├── OpenSans_Condensed-MediumItalic.otf │ ├── OpenSans_Condensed-Regular.otf │ ├── RedHatDisplay-Bold.otf │ ├── RedHatDisplay-BoldItalic.otf │ ├── RedHatDisplay-Italic.otf │ ├── RedHatDisplay-Regular.otf │ ├── Roboto-Bold.otf │ ├── Roboto-BoldItalic.otf │ ├── Roboto-Italic.otf │ ├── Roboto-Medium.otf │ ├── Roboto-MediumItalic.otf │ ├── Roboto-Regular.otf │ ├── RobotoCondensed-Bold.otf │ ├── RobotoCondensed-BoldItalic.otf │ ├── RobotoCondensed-Italic.otf │ ├── RobotoCondensed-Regular.otf │ └── drawings.otf ├── fonts_list.xml └── fonts_list_orig.xml ├── adjust_size.sh ├── backtrace ├── bin ├── upload.bat └── upload.sh ├── bld_all.sh ├── bld_release.sh ├── bld_release.sh.old ├── doc ├── INSTALL.md ├── INSTALL.pdf ├── USER GUIDE 6PLUS.md ├── USER GUIDE 6PLUS.pdf ├── USER GUIDE for Extended Case.md ├── USER GUIDE for Extended Case.pdf ├── USER GUIDE.md ├── USER GUIDE.pdf ├── gener.sh ├── gener2.sh ├── pictures │ ├── IMG_1377.JPG │ ├── IMG_1378.JPG │ ├── IMG_1381.JPG │ ├── book_page.png │ ├── books_select.png │ ├── both font types example.png │ ├── chess.png │ ├── current-parameters-6PLUS.png │ ├── current-parameters.png │ ├── default cover.png │ ├── default cover2.png │ ├── default-parameters-6PLUS.png │ ├── default-parameters.png │ ├── dir-menu-options-1-6PLUS.png │ ├── dir-menu-options-2-6PLUS.png │ ├── dir-menu-options-6.png │ ├── drawings font.png │ ├── ebook-reader-options-menu-6PLUS.png │ ├── ebook-reader-options-menu.png │ ├── font-parameters.png │ ├── ibmf example.png │ ├── icon-book.png │ ├── icon-calib.png │ ├── icon-clr-history.png │ ├── icon-content.png │ ├── icon-delete.png │ ├── icon-dir.png │ ├── icon-font.png │ ├── icon-info.png │ ├── icon-next.png │ ├── icon-ntp.png │ ├── icon-params.png │ ├── icon-pinch.png │ ├── icon-poweroff.png │ ├── icon-prev.png │ ├── icon-refresh.png │ ├── icon-refurb.png │ ├── icon-return.png │ ├── icon-revert.png │ ├── icon-swipe.png │ ├── icon-tap.png │ ├── icon-time.png │ ├── icon-touch-and-hold.png │ ├── icon-wifi.png │ ├── linear-view-6PLUS.png │ ├── linear_view_6.png │ ├── matrix-view-6PLUS.png │ ├── matrix_view_6.png │ ├── parameters-after-selection.png │ ├── parameters-before-selection-6PLUS.png │ ├── parameters-before-selection.png │ ├── ttf example.png │ └── web_server.png ├── resources │ ├── Adobe font obfuscating algorithm.pdf │ ├── ED060SC7-2.0.pdf │ ├── Inkplate6 Schematics.pdf │ ├── Inkplate6+.pdf │ ├── MCP23017.pdf │ ├── MCP73831.pdf │ ├── PCF85063A.pdf │ ├── TTP223-BA6_C80757.pdf │ ├── metafont │ │ ├── Character Table.png │ │ ├── PKfonts.pdf │ │ ├── font metrics.png │ │ ├── metafont-for-beginners.pdf │ │ ├── pk.pdf │ │ └── tfm.pdf │ └── tps65186.pdf ├── timezones.csv └── uml │ ├── page_locs V1.pu │ └── page_locs V2.pu ├── fonts ├── orig │ ├── Asap-Bold.otf │ ├── Asap-BoldItalic.otf │ ├── Asap-Italic.otf │ ├── Asap-Regular.otf │ ├── AsapCondensed-Bold.ttf │ ├── AsapCondensed-BoldItalic.ttf │ ├── AsapCondensed-Italic.ttf │ ├── AsapCondensed-Regular.ttf │ ├── Bitter-Black.ttf │ ├── Bitter-BlackItalic.ttf │ ├── Bitter-Bold.ttf │ ├── Bitter-BoldItalic.ttf │ ├── Bitter-ExtraBold.ttf │ ├── Bitter-ExtraBoldItalic.ttf │ ├── Bitter-ExtraLight.ttf │ ├── Bitter-ExtraLightItalic.ttf │ ├── Bitter-Italic.ttf │ ├── Bitter-Light.ttf │ ├── Bitter-LightItalic.ttf │ ├── Bitter-Medium.ttf │ ├── Bitter-MediumItalic.ttf │ ├── Bitter-Regular.ttf │ ├── Bitter-SemiBold.ttf │ ├── Bitter-SemiBoldItalic.ttf │ ├── Bitter-Thin.ttf │ ├── Bitter-ThinItalic.ttf │ ├── Caladea-Bold.ttf │ ├── Caladea-BoldItalic.ttf │ ├── Caladea-Italic.ttf │ ├── Caladea-Regular.ttf │ ├── CrimsonPro-Black.ttf │ ├── CrimsonPro-BlackItalic.ttf │ ├── CrimsonPro-Bold.ttf │ ├── CrimsonPro-BoldItalic.ttf │ ├── CrimsonPro-ExtraBold.ttf │ ├── CrimsonPro-ExtraBoldItalic.ttf │ ├── CrimsonPro-ExtraLight.ttf │ ├── CrimsonPro-ExtraLightItalic.ttf │ ├── CrimsonPro-Italic.ttf │ ├── CrimsonPro-Light.ttf │ ├── CrimsonPro-LightItalic.ttf │ ├── CrimsonPro-Medium.ttf │ ├── CrimsonPro-MediumItalic.ttf │ ├── CrimsonPro-Regular.ttf │ ├── CrimsonPro-SemiBold.ttf │ ├── CrimsonPro-SemiBoldItalic.ttf │ ├── Cuprum-Bold.ttf │ ├── Cuprum-BoldItalic.ttf │ ├── Cuprum-Italic.ttf │ ├── Cuprum-Medium.ttf │ ├── Cuprum-MediumItalic.ttf │ ├── Cuprum-Regular.ttf │ ├── Cuprum-SemiBold.ttf │ ├── Cuprum-SemiBoldItalic.ttf │ ├── DejaVuSans-Bold.ttf │ ├── DejaVuSans-BoldItalic.ttf │ ├── DejaVuSans-Italic.ttf │ ├── DejaVuSans-Regular.ttf │ ├── DejaVuSansCondensed-Bold.ttf │ ├── DejaVuSansCondensed-BoldItalic.ttf │ ├── DejaVuSansCondensed-Italic.ttf │ ├── DejaVuSansCondensed-Regular.ttf │ ├── DejaVuSerif-Bold.ttf │ ├── DejaVuSerif-BoldItalic.ttf │ ├── DejaVuSerif-Italic.ttf │ ├── DejaVuSerif-Regular.ttf │ ├── DejaVuSerifCondensed-Bold.ttf │ ├── DejaVuSerifCondensed-BoldItalic.ttf │ ├── DejaVuSerifCondensed-Italic.ttf │ ├── DejaVuSerifCondensed-Regular.ttf │ ├── IbarraRealNova-Bold.ttf │ ├── IbarraRealNova-BoldItalic.ttf │ ├── IbarraRealNova-Italic.ttf │ ├── IbarraRealNova-Medium.ttf │ ├── IbarraRealNova-MediumItalic.ttf │ ├── IbarraRealNova-Regular.ttf │ ├── IbarraRealNova-SemiBold.ttf │ ├── IbarraRealNova-SemiBoldItalic.ttf │ ├── License - Asap.txt │ ├── License - Caladea.txt │ ├── License - CrimsonPro.txt │ ├── License - DejaVu.txt │ ├── License - RedHat.txt │ ├── OpenSans-Bold.ttf │ ├── OpenSans-BoldItalic.ttf │ ├── OpenSans-ExtraBold.ttf │ ├── OpenSans-ExtraBoldItalic.ttf │ ├── OpenSans-Italic.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-LightItalic.ttf │ ├── OpenSans-Medium.ttf │ ├── OpenSans-MediumItalic.ttf │ ├── OpenSans-Regular.ttf │ ├── OpenSans-SemiBold.ttf │ ├── OpenSans-SemiBoldItalic.ttf │ ├── OpenSans_Condensed-Bold.ttf │ ├── OpenSans_Condensed-BoldItalic.ttf │ ├── OpenSans_Condensed-ExtraBold.ttf │ ├── OpenSans_Condensed-ExtraBoldItalic.ttf │ ├── OpenSans_Condensed-Italic.ttf │ ├── OpenSans_Condensed-Light.ttf │ ├── OpenSans_Condensed-LightItalic.ttf │ ├── OpenSans_Condensed-Medium.ttf │ ├── OpenSans_Condensed-MediumItalic.ttf │ ├── OpenSans_Condensed-Regular.ttf │ ├── OpenSans_Condensed-SemiBold.ttf │ ├── OpenSans_Condensed-SemiBoldItalic.ttf │ ├── RedHatDisplay-Bold.otf │ ├── RedHatDisplay-BoldItalic.otf │ ├── RedHatDisplay-Italic.otf │ ├── RedHatDisplay-Regular.otf │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── RobotoCondensed-BoldItalic.ttf │ ├── RobotoCondensed-Italic.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-LightItalic.ttf │ ├── RobotoCondensed-Regular.ttf │ ├── drawings.ttf │ └── drawings_old.ttf ├── subset-latin1 │ ├── otf │ │ ├── Asap-Bold.otf │ │ ├── Asap-BoldItalic.otf │ │ ├── Asap-Italic.otf │ │ ├── Asap-Regular.otf │ │ ├── AsapCondensed-Bold.otf │ │ ├── AsapCondensed-BoldItalic.otf │ │ ├── AsapCondensed-Italic.otf │ │ ├── AsapCondensed-Regular.otf │ │ ├── Bitter-Bold.otf │ │ ├── Bitter-BoldItalic.otf │ │ ├── Bitter-Italic.otf │ │ ├── Bitter-Medium.otf │ │ ├── Bitter-MediumItalic.otf │ │ ├── Bitter-Regular.otf │ │ ├── Caladea-Bold.otf │ │ ├── Caladea-BoldItalic.otf │ │ ├── Caladea-Italic.otf │ │ ├── Caladea-Regular.otf │ │ ├── CrimsonPro-Bold.otf │ │ ├── CrimsonPro-BoldItalic.otf │ │ ├── CrimsonPro-Italic.otf │ │ ├── CrimsonPro-Medium.otf │ │ ├── CrimsonPro-MediumItalic.otf │ │ ├── CrimsonPro-Regular.otf │ │ ├── Cuprum-Bold.otf │ │ ├── Cuprum-BoldItalic.otf │ │ ├── Cuprum-Italic.otf │ │ ├── Cuprum-Medium.otf │ │ ├── Cuprum-MediumItalic.otf │ │ ├── Cuprum-Regular.otf │ │ ├── DejaVuSans-Bold.otf │ │ ├── DejaVuSans-BoldItalic.otf │ │ ├── DejaVuSans-Italic.otf │ │ ├── DejaVuSans-Regular.otf │ │ ├── DejaVuSansCondensed-Bold.otf │ │ ├── DejaVuSansCondensed-BoldItalic.otf │ │ ├── DejaVuSansCondensed-Italic.otf │ │ ├── DejaVuSansCondensed-Regular.otf │ │ ├── DejaVuSerif-Bold.otf │ │ ├── DejaVuSerif-BoldItalic.otf │ │ ├── DejaVuSerif-Italic.otf │ │ ├── DejaVuSerif-Regular.otf │ │ ├── DejaVuSerifCondensed-Bold.otf │ │ ├── DejaVuSerifCondensed-BoldItalic.otf │ │ ├── DejaVuSerifCondensed-Italic.otf │ │ ├── DejaVuSerifCondensed-Regular.otf │ │ ├── IbarraRealNova-Bold.otf │ │ ├── IbarraRealNova-BoldItalic.otf │ │ ├── IbarraRealNova-Italic.otf │ │ ├── IbarraRealNova-Medium.otf │ │ ├── IbarraRealNova-MediumItalic.otf │ │ ├── IbarraRealNova-Regular.otf │ │ ├── OpenSans-Bold.otf │ │ ├── OpenSans-BoldItalic.otf │ │ ├── OpenSans-Italic.otf │ │ ├── OpenSans-Medium.otf │ │ ├── OpenSans-MediumItalic.otf │ │ ├── OpenSans-Regular.otf │ │ ├── OpenSans_Condensed-Bold.otf │ │ ├── OpenSans_Condensed-BoldItalic.otf │ │ ├── OpenSans_Condensed-Italic.otf │ │ ├── OpenSans_Condensed-Medium.otf │ │ ├── OpenSans_Condensed-MediumItalic.otf │ │ ├── OpenSans_Condensed-Regular.otf │ │ ├── RedHatDisplay-Bold.otf │ │ ├── RedHatDisplay-BoldItalic.otf │ │ ├── RedHatDisplay-Italic.otf │ │ ├── RedHatDisplay-Regular.otf │ │ ├── Roboto-Bold.otf │ │ ├── Roboto-BoldItalic.otf │ │ ├── Roboto-Italic.otf │ │ ├── Roboto-Medium.otf │ │ ├── Roboto-MediumItalic.otf │ │ ├── Roboto-Regular.otf │ │ ├── RobotoCondensed-Bold.otf │ │ ├── RobotoCondensed-BoldItalic.otf │ │ ├── RobotoCondensed-Italic.otf │ │ ├── RobotoCondensed-Regular.otf │ │ └── drawings.otf │ └── woff │ │ ├── Bitter-Bold.woff │ │ ├── Bitter-BoldItalic.woff │ │ ├── Bitter-Italic.woff │ │ ├── Bitter-Medium.woff │ │ ├── Bitter-MediumItalic.woff │ │ ├── Bitter-Regular.woff │ │ ├── CrimsonPro-Bold.woff │ │ ├── CrimsonPro-BoldItalic.woff │ │ ├── CrimsonPro-Italic.woff │ │ ├── CrimsonPro-Medium.woff │ │ ├── CrimsonPro-MediumItalic.woff │ │ ├── CrimsonPro-Regular.woff │ │ ├── Cuprum-Bold.woff │ │ ├── Cuprum-BoldItalic.woff │ │ ├── Cuprum-Italic.woff │ │ ├── Cuprum-Medium.woff │ │ ├── Cuprum-MediumItalic.woff │ │ ├── Cuprum-Regular.woff │ │ ├── IbarraRealNova-Bold.woff │ │ ├── IbarraRealNova-BoldItalic.woff │ │ ├── IbarraRealNova-Italic.woff │ │ ├── IbarraRealNova-Medium.woff │ │ ├── IbarraRealNova-MediumItalic.woff │ │ ├── IbarraRealNova-Regular.woff │ │ ├── OpenSans-Bold.woff │ │ ├── OpenSans-BoldItalic.woff │ │ ├── OpenSans-Italic.woff │ │ ├── OpenSans-Medium.woff │ │ ├── OpenSans-MediumItalic.woff │ │ ├── OpenSans-Regular.woff │ │ ├── OpenSans_Condensed-Bold.woff │ │ ├── OpenSans_Condensed-BoldItalic.woff │ │ ├── OpenSans_Condensed-Italic.woff │ │ ├── OpenSans_Condensed-Medium.woff │ │ ├── OpenSans_Condensed-MediumItalic.woff │ │ ├── OpenSans_Condensed-Regular.woff │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-BoldItalic.woff │ │ ├── Roboto-Italic.woff │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-MediumItalic.woff │ │ ├── Roboto-Regular.woff │ │ ├── RobotoCondensed-Bold.woff │ │ ├── RobotoCondensed-BoldItalic.woff │ │ ├── RobotoCondensed-Italic.woff │ │ ├── RobotoCondensed-Regular.woff │ │ └── drawings.woff ├── subsetter.sh └── woff2otf.py ├── freetype-2.10.4 ├── .clang-format ├── CMakeLists.txt ├── ChangeLog ├── ChangeLog.20 ├── ChangeLog.21 ├── ChangeLog.22 ├── ChangeLog.23 ├── ChangeLog.24 ├── ChangeLog.25 ├── ChangeLog.26 ├── ChangeLog.27 ├── ChangeLog.28 ├── ChangeLog.29 ├── Makefile ├── README ├── README.git ├── autogen.sh ├── builds │ ├── amiga │ │ ├── README │ │ ├── include │ │ │ └── config │ │ │ │ ├── ftconfig.h │ │ │ │ └── ftmodule.h │ │ ├── makefile │ │ ├── makefile.os4 │ │ ├── smakefile │ │ └── src │ │ │ └── base │ │ │ ├── ftdebug.c │ │ │ └── ftsystem.c │ ├── ansi │ │ ├── ansi-def.mk │ │ └── ansi.mk │ ├── atari │ │ ├── ATARI.H │ │ ├── FNames.SIC │ │ ├── FREETYPE.PRJ │ │ ├── README.TXT │ │ ├── deflinejoiner.awk │ │ └── gen-purec-patch.sh │ ├── beos │ │ ├── beos-def.mk │ │ ├── beos.mk │ │ └── detect.mk │ ├── cmake │ │ ├── FindBrotliDec.cmake │ │ ├── FindHarfBuzz.cmake │ │ ├── iOS.cmake │ │ └── testbuild.sh │ ├── compiler │ │ ├── ansi-cc.mk │ │ ├── bcc-dev.mk │ │ ├── bcc.mk │ │ ├── emx.mk │ │ ├── gcc-dev.mk │ │ ├── gcc.mk │ │ ├── intelc.mk │ │ ├── unix-lcc.mk │ │ ├── visualage.mk │ │ ├── visualc.mk │ │ ├── watcom.mk │ │ └── win-lcc.mk │ ├── detect.mk │ ├── dos │ │ ├── detect.mk │ │ ├── dos-def.mk │ │ ├── dos-emx.mk │ │ ├── dos-gcc.mk │ │ └── dos-wat.mk │ ├── exports.mk │ ├── freetype.mk │ ├── link_dos.mk │ ├── link_std.mk │ ├── mac │ │ ├── FreeType.m68k_cfm.make.txt │ │ ├── FreeType.m68k_far.make.txt │ │ ├── FreeType.ppc_carbon.make.txt │ │ ├── FreeType.ppc_classic.make.txt │ │ ├── README │ │ ├── ascii2mpw.py │ │ ├── freetype-Info.plist │ │ ├── ftlib.prj.xml │ │ └── ftmac.c │ ├── meson │ │ ├── extract_freetype_version.py │ │ ├── extract_libtool_version.py │ │ ├── generate_reference_docs.py │ │ ├── parse_modules_cfg.py │ │ └── process_ftoption_h.py │ ├── modules.mk │ ├── os2 │ │ ├── detect.mk │ │ ├── os2-def.mk │ │ ├── os2-dev.mk │ │ └── os2-gcc.mk │ ├── symbian │ │ ├── bld.inf │ │ └── freetype.mmp │ ├── toplevel.mk │ ├── unix │ │ ├── aclocal.m4 │ │ ├── autom4te.cache │ │ │ ├── output.0 │ │ │ ├── output.1 │ │ │ ├── requests │ │ │ ├── traces.0 │ │ │ └── traces.1 │ │ ├── ax_compare_version.m4 │ │ ├── ax_prog_python_version.m4 │ │ ├── config.guess │ │ ├── config.log │ │ ├── config.status │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── configure.raw │ │ ├── detect.mk │ │ ├── freetype-config │ │ ├── freetype-config.in │ │ ├── freetype2.in │ │ ├── freetype2.m4 │ │ ├── freetype2.pc │ │ ├── ft-munmap.m4 │ │ ├── ftconfig.h │ │ ├── ftconfig.h.in │ │ ├── ftoption.h │ │ ├── ftsystem.c │ │ ├── install-sh │ │ ├── install.mk │ │ ├── libtool │ │ ├── ltmain.sh │ │ ├── pkg.m4 │ │ ├── unix-cc.in │ │ ├── unix-cc.mk │ │ ├── unix-def.in │ │ ├── unix-def.mk │ │ ├── unix-dev.mk │ │ ├── unix-lcc.mk │ │ ├── unix.mk │ │ └── unixddef.mk │ ├── vms │ │ ├── LIBS.OPT_IA64 │ │ ├── _LINK.OPT_IA64 │ │ ├── ftconfig.h │ │ ├── ftsystem.c │ │ └── vmslib.dat │ ├── wince │ │ ├── ftdebug.c │ │ ├── vc2005-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ │ └── vc2008-ce │ │ │ ├── freetype.sln │ │ │ ├── freetype.vcproj │ │ │ └── index.html │ └── windows │ │ ├── detect.mk │ │ ├── ftdebug.c │ │ ├── vc2010 │ │ ├── freetype.sln │ │ ├── freetype.user.props │ │ ├── freetype.vcxproj │ │ ├── freetype.vcxproj.filters │ │ └── index.html │ │ ├── visualc │ │ ├── freetype.dsp │ │ ├── freetype.dsw │ │ ├── freetype.sln │ │ ├── freetype.vcproj │ │ └── index.html │ │ ├── visualce │ │ ├── freetype.dsp │ │ ├── freetype.dsw │ │ ├── freetype.vcproj │ │ └── index.html │ │ ├── w32-bcc.mk │ │ ├── w32-bccd.mk │ │ ├── w32-dev.mk │ │ ├── w32-gcc.mk │ │ ├── w32-icc.mk │ │ ├── w32-intl.mk │ │ ├── w32-lcc.mk │ │ ├── w32-mingw32.mk │ │ ├── w32-vcc.mk │ │ ├── w32-wat.mk │ │ └── win32-def.mk ├── config.mk ├── configure ├── devel │ ├── ft2build.h │ └── ftoption.h ├── docs │ ├── CHANGES │ ├── CMAKE │ ├── CUSTOMIZE │ ├── DEBUG │ ├── DOCGUIDE │ ├── FTL.TXT │ ├── GPLv2.TXT │ ├── INSTALL │ ├── INSTALL.ANY │ ├── INSTALL.CROSS │ ├── INSTALL.GNU │ ├── INSTALL.MAC │ ├── INSTALL.UNIX │ ├── INSTALL.VMS │ ├── LICENSE.TXT │ ├── MAKEPP │ ├── PROBLEMS │ ├── README │ ├── TODO │ ├── VERSIONS.TXT │ ├── formats.txt │ ├── freetype-config.1 │ ├── raster.txt │ ├── reference │ │ ├── 404.html │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── font-awesome.css │ │ │ │ ├── material-icons.css │ │ │ │ └── specimen │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ ├── FontAwesome.woff │ │ │ │ │ ├── FontAwesome.woff2 │ │ │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ │ │ ├── MaterialIcons-Regular.woff │ │ │ │ │ └── MaterialIcons-Regular.woff2 │ │ │ ├── images │ │ │ │ ├── favicon.png │ │ │ │ └── icons │ │ │ │ │ ├── bitbucket.1b09e088.svg │ │ │ │ │ ├── github.f0b8504a.svg │ │ │ │ │ └── gitlab.6dd19c00.svg │ │ │ ├── javascripts │ │ │ │ ├── application.c33a9706.js │ │ │ │ ├── lunr │ │ │ │ │ ├── lunr.ar.js │ │ │ │ │ ├── lunr.da.js │ │ │ │ │ ├── lunr.de.js │ │ │ │ │ ├── lunr.du.js │ │ │ │ │ ├── lunr.es.js │ │ │ │ │ ├── lunr.fi.js │ │ │ │ │ ├── lunr.fr.js │ │ │ │ │ ├── lunr.hu.js │ │ │ │ │ ├── lunr.it.js │ │ │ │ │ ├── lunr.ja.js │ │ │ │ │ ├── lunr.jp.js │ │ │ │ │ ├── lunr.multi.js │ │ │ │ │ ├── lunr.nl.js │ │ │ │ │ ├── lunr.no.js │ │ │ │ │ ├── lunr.pt.js │ │ │ │ │ ├── lunr.ro.js │ │ │ │ │ ├── lunr.ru.js │ │ │ │ │ ├── lunr.stemmer.support.js │ │ │ │ │ ├── lunr.sv.js │ │ │ │ │ ├── lunr.th.js │ │ │ │ │ ├── lunr.tr.js │ │ │ │ │ ├── lunr.vi.js │ │ │ │ │ ├── tinyseg.js │ │ │ │ │ └── wordcut.js │ │ │ │ └── modernizr.86422ebf.js │ │ │ └── stylesheets │ │ │ │ ├── application-palette.a8b3c06d.css │ │ │ │ └── application.adb8469c.css │ │ ├── ft2-auto_hinter.html │ │ ├── ft2-base_interface.html │ │ ├── ft2-basic_types.html │ │ ├── ft2-bdf_fonts.html │ │ ├── ft2-bitmap_handling.html │ │ ├── ft2-bzip2.html │ │ ├── ft2-cache_subsystem.html │ │ ├── ft2-cff_driver.html │ │ ├── ft2-cid_fonts.html │ │ ├── ft2-color_management.html │ │ ├── ft2-computations.html │ │ ├── ft2-error_code_values.html │ │ ├── ft2-error_enumerations.html │ │ ├── ft2-font_formats.html │ │ ├── ft2-gasp_table.html │ │ ├── ft2-glyph_management.html │ │ ├── ft2-glyph_stroker.html │ │ ├── ft2-glyph_variants.html │ │ ├── ft2-gx_validation.html │ │ ├── ft2-gzip.html │ │ ├── ft2-header_file_macros.html │ │ ├── ft2-header_inclusion.html │ │ ├── ft2-incremental.html │ │ ├── ft2-index.html │ │ ├── ft2-layer_management.html │ │ ├── ft2-lcd_rendering.html │ │ ├── ft2-list_processing.html │ │ ├── ft2-lzw.html │ │ ├── ft2-mac_specific.html │ │ ├── ft2-module_management.html │ │ ├── ft2-multiple_masters.html │ │ ├── ft2-ot_validation.html │ │ ├── ft2-outline_processing.html │ │ ├── ft2-parameter_tags.html │ │ ├── ft2-pcf_driver.html │ │ ├── ft2-pfr_fonts.html │ │ ├── ft2-properties.html │ │ ├── ft2-quick_advance.html │ │ ├── ft2-raster.html │ │ ├── ft2-sfnt_names.html │ │ ├── ft2-sizes_management.html │ │ ├── ft2-system_interface.html │ │ ├── ft2-t1_cid_driver.html │ │ ├── ft2-truetype_engine.html │ │ ├── ft2-truetype_tables.html │ │ ├── ft2-tt_driver.html │ │ ├── ft2-type1_tables.html │ │ ├── ft2-user_allocation.html │ │ ├── ft2-version.html │ │ ├── ft2-winfnt_fonts.html │ │ ├── images │ │ │ └── favico.ico │ │ ├── index.html │ │ ├── javascripts │ │ │ └── extra.js │ │ ├── search │ │ │ └── search_index.json │ │ ├── sitemap.xml │ │ ├── sitemap.xml.gz │ │ └── stylesheets │ │ │ └── extra.css │ └── release ├── include │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ ├── ftoption.h.orig │ │ │ ├── ftstdlib.h │ │ │ ├── integer-types.h │ │ │ ├── mac-support.h │ │ │ └── public-macros.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── internal │ │ │ ├── autohint.h │ │ │ ├── cffotypes.h │ │ │ ├── cfftypes.h │ │ │ ├── compiler-macros.h │ │ │ ├── ftcalc.h │ │ │ ├── ftdebug.h │ │ │ ├── ftdrv.h │ │ │ ├── ftgloadr.h │ │ │ ├── fthash.h │ │ │ ├── ftmemory.h │ │ │ ├── ftobjs.h │ │ │ ├── ftpsprop.h │ │ │ ├── ftrfork.h │ │ │ ├── ftserv.h │ │ │ ├── ftstream.h │ │ │ ├── fttrace.h │ │ │ ├── ftvalid.h │ │ │ ├── psaux.h │ │ │ ├── pshints.h │ │ │ ├── services │ │ │ │ ├── svbdf.h │ │ │ │ ├── svcfftl.h │ │ │ │ ├── svcid.h │ │ │ │ ├── svfntfmt.h │ │ │ │ ├── svgldict.h │ │ │ │ ├── svgxval.h │ │ │ │ ├── svkern.h │ │ │ │ ├── svmetric.h │ │ │ │ ├── svmm.h │ │ │ │ ├── svotval.h │ │ │ │ ├── svpfr.h │ │ │ │ ├── svpostnm.h │ │ │ │ ├── svprop.h │ │ │ │ ├── svpscmap.h │ │ │ │ ├── svpsinfo.h │ │ │ │ ├── svsfnt.h │ │ │ │ ├── svttcmap.h │ │ │ │ ├── svtteng.h │ │ │ │ ├── svttglyf.h │ │ │ │ └── svwinfnt.h │ │ │ ├── sfnt.h │ │ │ ├── t1types.h │ │ │ ├── tttypes.h │ │ │ └── wofftypes.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ └── ft2build.h ├── meson.build ├── meson_options.txt ├── modules.cfg ├── modules.cfg.orig ├── myconf.sh ├── objs │ ├── .libs │ │ ├── libfreetype.a │ │ ├── libfreetype.la │ │ └── libfreetype.lai │ ├── apinames │ ├── autofit.lo │ ├── autofit.o │ ├── cff.lo │ ├── cff.o │ ├── ftbase.lo │ ├── ftbase.o │ ├── ftbbox.lo │ ├── ftbbox.o │ ├── ftbdf.lo │ ├── ftbdf.o │ ├── ftbitmap.lo │ ├── ftbitmap.o │ ├── ftcid.lo │ ├── ftcid.o │ ├── ftdebug.lo │ ├── ftdebug.o │ ├── ftexport.sym │ ├── ftfstype.lo │ ├── ftfstype.o │ ├── ftgasp.lo │ ├── ftgasp.o │ ├── ftglyph.lo │ ├── ftglyph.o │ ├── ftgxval.lo │ ├── ftgxval.o │ ├── ftinit.lo │ ├── ftinit.o │ ├── ftmm.lo │ ├── ftmm.o │ ├── ftmodule.h │ ├── ftotval.lo │ ├── ftotval.o │ ├── ftpatent.lo │ ├── ftpatent.o │ ├── ftpfr.lo │ ├── ftpfr.o │ ├── ftstroke.lo │ ├── ftstroke.o │ ├── ftsynth.lo │ ├── ftsynth.o │ ├── ftsystem.lo │ ├── ftsystem.o │ ├── fttype1.lo │ ├── fttype1.o │ ├── ftwinfnt.lo │ ├── ftwinfnt.o │ ├── libfreetype.la │ ├── psaux.lo │ ├── psaux.o │ ├── pshinter.lo │ ├── pshinter.o │ ├── psnames.lo │ ├── psnames.o │ ├── raster.lo │ ├── raster.o │ ├── sfnt.lo │ ├── sfnt.o │ ├── smooth.lo │ ├── smooth.o │ ├── truetype.lo │ └── truetype.o ├── src │ ├── autofit │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afblue.c │ │ ├── afblue.cin │ │ ├── afblue.dat │ │ ├── afblue.h │ │ ├── afblue.hin │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afcover.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afranges.c │ │ ├── afranges.h │ │ ├── afscript.h │ │ ├── afshaper.c │ │ ├── afshaper.h │ │ ├── afstyles.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ ├── afwrtsys.h │ │ ├── autofit.c │ │ ├── module.mk │ │ └── rules.mk │ ├── base │ │ ├── ftadvanc.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbdf.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftcid.c │ │ ├── ftcolor.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── fterrors.c │ │ ├── ftfntfmt.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftgxval.c │ │ ├── fthash.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmac.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftotval.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpfr.c │ │ ├── ftpsprop.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftver.rc │ │ ├── ftwinfnt.c │ │ ├── md5.c │ │ ├── md5.h │ │ └── rules.mk │ ├── bdf │ │ ├── README │ │ ├── bdf.c │ │ ├── bdf.h │ │ ├── bdfdrivr.c │ │ ├── bdfdrivr.h │ │ ├── bdferror.h │ │ ├── bdflib.c │ │ ├── module.mk │ │ └── rules.mk │ ├── bzip2 │ │ ├── ftbzip2.c │ │ └── rules.mk │ ├── cache │ │ ├── ftcache.c │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcerror.h │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcimage.c │ │ ├── ftcimage.h │ │ ├── ftcmanag.c │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcmru.h │ │ ├── ftcsbits.c │ │ ├── ftcsbits.h │ │ └── rules.mk │ ├── cff │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cfftoken.h │ │ ├── module.mk │ │ └── rules.mk │ ├── cid │ │ ├── ciderrs.h │ │ ├── cidgload.c │ │ ├── cidgload.h │ │ ├── cidload.c │ │ ├── cidload.h │ │ ├── cidobjs.c │ │ ├── cidobjs.h │ │ ├── cidparse.c │ │ ├── cidparse.h │ │ ├── cidriver.c │ │ ├── cidriver.h │ │ ├── cidtoken.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── type1cid.c │ ├── gxvalid │ │ ├── README │ │ ├── gxvalid.c │ │ ├── gxvalid.h │ │ ├── gxvbsln.c │ │ ├── gxvcommn.c │ │ ├── gxvcommn.h │ │ ├── gxverror.h │ │ ├── gxvfeat.c │ │ ├── gxvfeat.h │ │ ├── gxvfgen.c │ │ ├── gxvjust.c │ │ ├── gxvkern.c │ │ ├── gxvlcar.c │ │ ├── gxvmod.c │ │ ├── gxvmod.h │ │ ├── gxvmort.c │ │ ├── gxvmort.h │ │ ├── gxvmort0.c │ │ ├── gxvmort1.c │ │ ├── gxvmort2.c │ │ ├── gxvmort4.c │ │ ├── gxvmort5.c │ │ ├── gxvmorx.c │ │ ├── gxvmorx.h │ │ ├── gxvmorx0.c │ │ ├── gxvmorx1.c │ │ ├── gxvmorx2.c │ │ ├── gxvmorx4.c │ │ ├── gxvmorx5.c │ │ ├── gxvopbd.c │ │ ├── gxvprop.c │ │ ├── gxvtrak.c │ │ ├── module.mk │ │ └── rules.mk │ ├── gzip │ │ ├── adler32.c │ │ ├── ftgzip.c │ │ ├── ftzconf.h │ │ ├── infblock.c │ │ ├── infblock.h │ │ ├── infcodes.c │ │ ├── infcodes.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── infutil.c │ │ ├── infutil.h │ │ ├── rules.mk │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── lzw │ │ ├── ftlzw.c │ │ ├── ftzopen.c │ │ ├── ftzopen.h │ │ └── rules.mk │ ├── otvalid │ │ ├── module.mk │ │ ├── otvalid.c │ │ ├── otvalid.h │ │ ├── otvbase.c │ │ ├── otvcommn.c │ │ ├── otvcommn.h │ │ ├── otverror.h │ │ ├── otvgdef.c │ │ ├── otvgpos.c │ │ ├── otvgpos.h │ │ ├── otvgsub.c │ │ ├── otvjstf.c │ │ ├── otvmath.c │ │ ├── otvmod.c │ │ ├── otvmod.h │ │ └── rules.mk │ ├── pcf │ │ ├── README │ │ ├── module.mk │ │ ├── pcf.c │ │ ├── pcf.h │ │ ├── pcfdrivr.c │ │ ├── pcfdrivr.h │ │ ├── pcferror.h │ │ ├── pcfread.c │ │ ├── pcfread.h │ │ ├── pcfutil.c │ │ ├── pcfutil.h │ │ └── rules.mk │ ├── pfr │ │ ├── module.mk │ │ ├── pfr.c │ │ ├── pfrcmap.c │ │ ├── pfrcmap.h │ │ ├── pfrdrivr.c │ │ ├── pfrdrivr.h │ │ ├── pfrerror.h │ │ ├── pfrgload.c │ │ ├── pfrgload.h │ │ ├── pfrload.c │ │ ├── pfrload.h │ │ ├── pfrobjs.c │ │ ├── pfrobjs.h │ │ ├── pfrsbit.c │ │ ├── pfrsbit.h │ │ ├── pfrtypes.h │ │ └── rules.mk │ ├── psaux │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── cffdecode.c │ │ ├── cffdecode.h │ │ ├── module.mk │ │ ├── psarrst.c │ │ ├── psarrst.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psblues.c │ │ ├── psblues.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── pserror.c │ │ ├── pserror.h │ │ ├── psfixed.h │ │ ├── psfont.c │ │ ├── psfont.h │ │ ├── psft.c │ │ ├── psft.h │ │ ├── psglue.h │ │ ├── pshints.c │ │ ├── pshints.h │ │ ├── psintrp.c │ │ ├── psintrp.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── psread.c │ │ ├── psread.h │ │ ├── psstack.c │ │ ├── psstack.h │ │ ├── pstypes.h │ │ ├── rules.mk │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ ├── pshinter │ │ ├── module.mk │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshrec.c │ │ ├── pshrec.h │ │ └── rules.mk │ ├── psnames │ │ ├── module.mk │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pstables.h │ │ └── rules.mk │ ├── raster │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── module.mk │ │ ├── raster.c │ │ ├── rasterrs.h │ │ └── rules.mk │ ├── sfnt │ │ ├── module.mk │ │ ├── pngshim.c │ │ ├── pngshim.h │ │ ├── rules.mk │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── sfwoff.c │ │ ├── sfwoff.h │ │ ├── sfwoff2.c │ │ ├── sfwoff2.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttcolr.c │ │ ├── ttcolr.h │ │ ├── ttcpal.c │ │ ├── ttcpal.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ ├── ttsbit.h │ │ ├── woff2tags.c │ │ └── woff2tags.h │ ├── smooth │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── module.mk │ │ ├── rules.mk │ │ └── smooth.c │ ├── tools │ │ ├── afblue.pl │ │ ├── apinames.c │ │ ├── chktrcmp.py │ │ ├── cordic.py │ │ ├── ftrandom │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── ftrandom.c │ │ ├── glnames.py │ │ ├── make_distribution_archives.py │ │ ├── no-copyright │ │ ├── test_afm.c │ │ ├── test_bbox.c │ │ ├── test_trig.c │ │ ├── update-copyright │ │ └── update-copyright-year │ ├── truetype │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpload.c │ │ ├── ttpload.h │ │ ├── ttsubpix.c │ │ └── ttsubpix.h │ ├── type1 │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t1afm.c │ │ ├── t1afm.h │ │ ├── t1driver.c │ │ ├── t1driver.h │ │ ├── t1errors.h │ │ ├── t1gload.c │ │ ├── t1gload.h │ │ ├── t1load.c │ │ ├── t1load.h │ │ ├── t1objs.c │ │ ├── t1objs.h │ │ ├── t1parse.c │ │ ├── t1parse.h │ │ ├── t1tokens.h │ │ └── type1.c │ ├── type42 │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── t42drivr.c │ │ ├── t42drivr.h │ │ ├── t42error.h │ │ ├── t42objs.c │ │ ├── t42objs.h │ │ ├── t42parse.c │ │ ├── t42parse.h │ │ ├── t42types.h │ │ └── type42.c │ └── winfonts │ │ ├── fnterrs.h │ │ ├── module.mk │ │ ├── rules.mk │ │ ├── winfnt.c │ │ └── winfnt.h ├── version.sed └── vms_make.com ├── include ├── README ├── controllers │ ├── app_controller.hpp │ ├── back_lit.hpp │ ├── book_controller.hpp │ ├── book_param_controller.hpp │ ├── books_dir_controller.hpp │ ├── clock.hpp │ ├── common_actions.hpp │ ├── event_mgr.hpp │ ├── ntp.hpp │ ├── option_controller.hpp │ ├── toc_controller.hpp │ └── wifi.hpp ├── helpers │ ├── char_pool.hpp │ ├── simple_db.hpp │ └── unzip.hpp ├── models │ ├── book_params.hpp │ ├── books_dir.hpp │ ├── config.hpp │ ├── config_template.hpp │ ├── css.hpp │ ├── css_parser.hpp │ ├── default_cover.hpp │ ├── dom.hpp │ ├── epub.hpp │ ├── font.hpp │ ├── font_factory.hpp │ ├── fonts.hpp │ ├── ibmf.hpp │ ├── ibmf_font.hpp │ ├── ibmf_font_old.hpp │ ├── image.hpp │ ├── image_factory.hpp │ ├── jpeg_image.hpp │ ├── nvs_mgr.hpp │ ├── page_locs.hpp │ ├── png_image.hpp │ ├── toc.hpp │ └── ttf2.hpp └── viewers │ ├── battery_viewer.hpp │ ├── book_viewer.hpp │ ├── books_dir_viewer.hpp │ ├── form_viewer.hpp │ ├── html_interpreter.hpp │ ├── keyboard_viewer.hpp │ ├── keypad_viewer.hpp │ ├── linear_books_dir_viewer.hpp │ ├── matrix_books_dir_viewer.hpp │ ├── menu_viewer.hpp │ ├── msg_viewer.hpp │ ├── page.hpp │ ├── screen_bottom.hpp │ └── toc_viewer.hpp ├── include_global └── global.hpp ├── lib ├── README └── externals │ ├── README │ ├── int_to_str.cpp │ ├── int_to_str.hpp │ ├── memory_pool.hpp │ ├── memory_pool.tcc │ ├── miniz.c │ ├── miniz.h │ ├── mypngle.cpp │ ├── mypngle.hpp │ ├── pugiconfig.hpp │ ├── pugixml.cpp │ ├── pugixml.hpp │ ├── stb_image_resize.h │ ├── strlcpy.cpp │ ├── strlcpy.hpp │ ├── tjpgdec.cpp │ ├── tjpgdec.hpp │ └── tjpgdeccnf.hpp ├── lib_esp32 └── EPub_InkPlate │ └── src │ ├── alloc.hpp │ ├── screen.cpp │ └── screen.hpp ├── lib_freetype ├── include │ └── freetype2 │ │ ├── freetype │ │ ├── config │ │ │ ├── ftconfig.h │ │ │ ├── ftheader.h │ │ │ ├── ftmodule.h │ │ │ ├── ftoption.h │ │ │ ├── ftstdlib.h │ │ │ ├── integer-types.h │ │ │ ├── mac-support.h │ │ │ └── public-macros.h │ │ ├── freetype.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h │ │ └── ft2build.h ├── lib │ ├── libfreetype.a │ ├── libfreetype.la │ └── pkgconfig │ │ └── freetype2.pc └── share │ └── aclocal │ └── freetype2.m4 ├── lib_linux └── EPub_InkPlate │ └── src │ ├── alloc.hpp │ ├── logging.cpp │ ├── logging.hpp │ ├── non_copyable.hpp │ ├── screen.cpp │ └── screen.hpp ├── licenses.txt ├── merge.py ├── partitions copy.csv ├── partitions.csv ├── platformio.ini ├── sdkconfig.defaults ├── sdkconfig.inkplate_10_debug ├── sdkconfig.inkplate_10_extended_case_release ├── sdkconfig.inkplate_10_release ├── sdkconfig.inkplate_10_tests ├── sdkconfig.inkplate_6_debug ├── sdkconfig.inkplate_6_extended_case_debug ├── sdkconfig.inkplate_6_extended_case_release ├── sdkconfig.inkplate_6_release ├── sdkconfig.inkplate_6plus_debug ├── sdkconfig.inkplate_6plus_release ├── src ├── CMakeLists.txt ├── controllers │ ├── app_controller.cpp │ ├── back_lit.cpp │ ├── book_controller.cpp │ ├── book_param_controller.cpp │ ├── books_dir_controller.cpp │ ├── common_actions.cpp │ ├── event_mgr.cpp │ ├── ntp.cpp │ ├── option_controller.cpp │ ├── toc_controller.cpp │ ├── touch_event_mgr.cpp │ ├── web_server.cpp │ ├── web_server.cpp.old │ └── wifi.cpp ├── embed │ ├── favicon.ico │ └── upload_script.html ├── helpers │ ├── simple_db.cpp │ └── unzip.cpp ├── main.cpp ├── models │ ├── book_params.cpp │ ├── books_dir.cpp │ ├── config.cpp │ ├── css.cpp │ ├── dom.cpp │ ├── epub.cpp │ ├── epub_tests.cpp │ ├── font.cpp │ ├── fonts.cpp │ ├── ibmf.cpp │ ├── image.cpp │ ├── jpeg_image.cpp │ ├── nvs_mgr.cpp │ ├── nvs_mgr_tests.cpp │ ├── page_locs.cpp │ ├── png_image.cpp │ ├── toc.cpp │ └── ttf2.cpp └── viewers │ ├── battery_viewer.cpp │ ├── book_viewer.cpp │ ├── form_viewer.cpp │ ├── html_interpreter.cpp │ ├── keyboard_viewer.cpp │ ├── keypad_viewer.cpp │ ├── linear_books_dir_viewer.cpp │ ├── matrix_books_dir_viewer.cpp │ ├── menu_viewer.cpp │ ├── msg_viewer.cpp │ ├── page.cpp │ ├── screen_bottom.cpp │ └── toc_viewer.cpp └── uml └── doc └── uml └── page_locs V2 └── page_locs V2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /EPub-Inkplate.cppcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/EPub-Inkplate.cppcheck -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/README.md -------------------------------------------------------------------------------- /SDCard/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/config.txt -------------------------------------------------------------------------------- /SDCard/config_distrib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/config_distrib.txt -------------------------------------------------------------------------------- /SDCard/fonts/Asap-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Asap-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/Asap-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Asap-BoldItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Asap-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Asap-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Asap-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Asap-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/AsapCondensed-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/AsapCondensed-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/AsapCondensed-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/AsapCondensed-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/AsapCondensed-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/AsapCondensed-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/Bitter-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Bitter-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/Bitter-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Bitter-BoldItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Bitter-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Bitter-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Bitter-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Bitter-Medium.otf -------------------------------------------------------------------------------- /SDCard/fonts/Bitter-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Bitter-MediumItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Bitter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Bitter-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/Caladea-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Caladea-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/Caladea-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Caladea-BoldItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Caladea-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Caladea-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Caladea-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Caladea-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/CrimsonPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/CrimsonPro-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/CrimsonPro-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/CrimsonPro-BoldItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/CrimsonPro-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/CrimsonPro-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/CrimsonPro-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/CrimsonPro-Medium.otf -------------------------------------------------------------------------------- /SDCard/fonts/CrimsonPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/CrimsonPro-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/Cuprum-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Cuprum-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/Cuprum-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Cuprum-BoldItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Cuprum-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Cuprum-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Cuprum-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Cuprum-Medium.otf -------------------------------------------------------------------------------- /SDCard/fonts/Cuprum-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Cuprum-MediumItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Cuprum-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Cuprum-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/DejaVuSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/DejaVuSans-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/DejaVuSans-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/DejaVuSans-BoldItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/DejaVuSans-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/DejaVuSans-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/DejaVuSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/DejaVuSans-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/DejaVuSerif-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/DejaVuSerif-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/DejaVuSerif-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/DejaVuSerif-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/DejaVuSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/DejaVuSerif-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/EC-BoldItalic_150.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-BoldItalic_150.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-BoldItalic_166.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-BoldItalic_166.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-BoldItalic_212.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-BoldItalic_212.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Bold_150.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Bold_150.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Bold_166.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Bold_166.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Bold_212.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Bold_212.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Italic_150.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Italic_150.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Italic_166.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Italic_166.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Italic_212.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Italic_212.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Regular_150.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Regular_150.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Regular_166.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Regular_166.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/EC-Regular_212.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/EC-Regular_212.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Bold_150.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Bold_150.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Bold_166.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Bold_166.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Bold_212.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Bold_212.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Italic_150.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Italic_150.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Italic_166.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Italic_166.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Italic_212.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Italic_212.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Regular_150.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Regular_150.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Regular_166.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Regular_166.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/ECSans-Regular_212.ibmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/ECSans-Regular_212.ibmf -------------------------------------------------------------------------------- /SDCard/fonts/IbarraRealNova-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/IbarraRealNova-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/IbarraRealNova-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/IbarraRealNova-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/IbarraRealNova-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/IbarraRealNova-Medium.otf -------------------------------------------------------------------------------- /SDCard/fonts/License - Asap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/License - Asap.txt -------------------------------------------------------------------------------- /SDCard/fonts/License - Caladea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/License - Caladea.txt -------------------------------------------------------------------------------- /SDCard/fonts/License - CrimsonPro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/License - CrimsonPro.txt -------------------------------------------------------------------------------- /SDCard/fonts/License - DejaVu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/License - DejaVu.txt -------------------------------------------------------------------------------- /SDCard/fonts/License - RedHat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/License - RedHat.txt -------------------------------------------------------------------------------- /SDCard/fonts/OpenSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/OpenSans-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/OpenSans-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/OpenSans-BoldItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/OpenSans-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/OpenSans-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/OpenSans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/OpenSans-Medium.otf -------------------------------------------------------------------------------- /SDCard/fonts/OpenSans-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/OpenSans-MediumItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/OpenSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/OpenSans-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/RedHatDisplay-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/RedHatDisplay-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/RedHatDisplay-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/RedHatDisplay-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/RedHatDisplay-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/RedHatDisplay-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/Roboto-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Roboto-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/Roboto-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Roboto-BoldItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Roboto-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Roboto-Italic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Roboto-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Roboto-Medium.otf -------------------------------------------------------------------------------- /SDCard/fonts/Roboto-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Roboto-MediumItalic.otf -------------------------------------------------------------------------------- /SDCard/fonts/Roboto-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/Roboto-Regular.otf -------------------------------------------------------------------------------- /SDCard/fonts/RobotoCondensed-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/RobotoCondensed-Bold.otf -------------------------------------------------------------------------------- /SDCard/fonts/drawings.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts/drawings.otf -------------------------------------------------------------------------------- /SDCard/fonts_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts_list.xml -------------------------------------------------------------------------------- /SDCard/fonts_list_orig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/SDCard/fonts_list_orig.xml -------------------------------------------------------------------------------- /adjust_size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/adjust_size.sh -------------------------------------------------------------------------------- /backtrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/backtrace -------------------------------------------------------------------------------- /bin/upload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/bin/upload.bat -------------------------------------------------------------------------------- /bin/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/bin/upload.sh -------------------------------------------------------------------------------- /bld_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/bld_all.sh -------------------------------------------------------------------------------- /bld_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/bld_release.sh -------------------------------------------------------------------------------- /bld_release.sh.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/bld_release.sh.old -------------------------------------------------------------------------------- /doc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/INSTALL.md -------------------------------------------------------------------------------- /doc/INSTALL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/INSTALL.pdf -------------------------------------------------------------------------------- /doc/USER GUIDE 6PLUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/USER GUIDE 6PLUS.md -------------------------------------------------------------------------------- /doc/USER GUIDE 6PLUS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/USER GUIDE 6PLUS.pdf -------------------------------------------------------------------------------- /doc/USER GUIDE for Extended Case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/USER GUIDE for Extended Case.md -------------------------------------------------------------------------------- /doc/USER GUIDE for Extended Case.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/USER GUIDE for Extended Case.pdf -------------------------------------------------------------------------------- /doc/USER GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/USER GUIDE.md -------------------------------------------------------------------------------- /doc/USER GUIDE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/USER GUIDE.pdf -------------------------------------------------------------------------------- /doc/gener.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/gener.sh -------------------------------------------------------------------------------- /doc/gener2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/gener2.sh -------------------------------------------------------------------------------- /doc/pictures/IMG_1377.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/IMG_1377.JPG -------------------------------------------------------------------------------- /doc/pictures/IMG_1378.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/IMG_1378.JPG -------------------------------------------------------------------------------- /doc/pictures/IMG_1381.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/IMG_1381.JPG -------------------------------------------------------------------------------- /doc/pictures/book_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/book_page.png -------------------------------------------------------------------------------- /doc/pictures/books_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/books_select.png -------------------------------------------------------------------------------- /doc/pictures/chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/chess.png -------------------------------------------------------------------------------- /doc/pictures/current-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/current-parameters.png -------------------------------------------------------------------------------- /doc/pictures/default cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/default cover.png -------------------------------------------------------------------------------- /doc/pictures/default cover2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/default cover2.png -------------------------------------------------------------------------------- /doc/pictures/default-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/default-parameters.png -------------------------------------------------------------------------------- /doc/pictures/dir-menu-options-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/dir-menu-options-6.png -------------------------------------------------------------------------------- /doc/pictures/drawings font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/drawings font.png -------------------------------------------------------------------------------- /doc/pictures/font-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/font-parameters.png -------------------------------------------------------------------------------- /doc/pictures/ibmf example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/ibmf example.png -------------------------------------------------------------------------------- /doc/pictures/icon-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-book.png -------------------------------------------------------------------------------- /doc/pictures/icon-calib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-calib.png -------------------------------------------------------------------------------- /doc/pictures/icon-clr-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-clr-history.png -------------------------------------------------------------------------------- /doc/pictures/icon-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-content.png -------------------------------------------------------------------------------- /doc/pictures/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-delete.png -------------------------------------------------------------------------------- /doc/pictures/icon-dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-dir.png -------------------------------------------------------------------------------- /doc/pictures/icon-font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-font.png -------------------------------------------------------------------------------- /doc/pictures/icon-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-info.png -------------------------------------------------------------------------------- /doc/pictures/icon-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-next.png -------------------------------------------------------------------------------- /doc/pictures/icon-ntp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-ntp.png -------------------------------------------------------------------------------- /doc/pictures/icon-params.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-params.png -------------------------------------------------------------------------------- /doc/pictures/icon-pinch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-pinch.png -------------------------------------------------------------------------------- /doc/pictures/icon-poweroff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-poweroff.png -------------------------------------------------------------------------------- /doc/pictures/icon-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-prev.png -------------------------------------------------------------------------------- /doc/pictures/icon-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-refresh.png -------------------------------------------------------------------------------- /doc/pictures/icon-refurb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-refurb.png -------------------------------------------------------------------------------- /doc/pictures/icon-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-return.png -------------------------------------------------------------------------------- /doc/pictures/icon-revert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-revert.png -------------------------------------------------------------------------------- /doc/pictures/icon-swipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-swipe.png -------------------------------------------------------------------------------- /doc/pictures/icon-tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-tap.png -------------------------------------------------------------------------------- /doc/pictures/icon-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-time.png -------------------------------------------------------------------------------- /doc/pictures/icon-touch-and-hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-touch-and-hold.png -------------------------------------------------------------------------------- /doc/pictures/icon-wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/icon-wifi.png -------------------------------------------------------------------------------- /doc/pictures/linear-view-6PLUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/linear-view-6PLUS.png -------------------------------------------------------------------------------- /doc/pictures/linear_view_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/linear_view_6.png -------------------------------------------------------------------------------- /doc/pictures/matrix-view-6PLUS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/matrix-view-6PLUS.png -------------------------------------------------------------------------------- /doc/pictures/matrix_view_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/matrix_view_6.png -------------------------------------------------------------------------------- /doc/pictures/ttf example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/ttf example.png -------------------------------------------------------------------------------- /doc/pictures/web_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/pictures/web_server.png -------------------------------------------------------------------------------- /doc/resources/ED060SC7-2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/ED060SC7-2.0.pdf -------------------------------------------------------------------------------- /doc/resources/Inkplate6 Schematics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/Inkplate6 Schematics.pdf -------------------------------------------------------------------------------- /doc/resources/Inkplate6+.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/Inkplate6+.pdf -------------------------------------------------------------------------------- /doc/resources/MCP23017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/MCP23017.pdf -------------------------------------------------------------------------------- /doc/resources/MCP73831.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/MCP73831.pdf -------------------------------------------------------------------------------- /doc/resources/PCF85063A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/PCF85063A.pdf -------------------------------------------------------------------------------- /doc/resources/TTP223-BA6_C80757.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/TTP223-BA6_C80757.pdf -------------------------------------------------------------------------------- /doc/resources/metafont/PKfonts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/metafont/PKfonts.pdf -------------------------------------------------------------------------------- /doc/resources/metafont/pk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/metafont/pk.pdf -------------------------------------------------------------------------------- /doc/resources/metafont/tfm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/metafont/tfm.pdf -------------------------------------------------------------------------------- /doc/resources/tps65186.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/resources/tps65186.pdf -------------------------------------------------------------------------------- /doc/timezones.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/timezones.csv -------------------------------------------------------------------------------- /doc/uml/page_locs V1.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/uml/page_locs V1.pu -------------------------------------------------------------------------------- /doc/uml/page_locs V2.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/doc/uml/page_locs V2.pu -------------------------------------------------------------------------------- /fonts/orig/Asap-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Asap-Bold.otf -------------------------------------------------------------------------------- /fonts/orig/Asap-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Asap-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/orig/Asap-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Asap-Italic.otf -------------------------------------------------------------------------------- /fonts/orig/Asap-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Asap-Regular.otf -------------------------------------------------------------------------------- /fonts/orig/AsapCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/AsapCondensed-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/AsapCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/AsapCondensed-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/AsapCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/AsapCondensed-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-Black.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-Light.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-Medium.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-Thin.ttf -------------------------------------------------------------------------------- /fonts/orig/Bitter-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Bitter-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Caladea-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Caladea-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/Caladea-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Caladea-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Caladea-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Caladea-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/Caladea-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Caladea-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-Black.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-Light.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-Medium.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/CrimsonPro-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/CrimsonPro-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/orig/Cuprum-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Cuprum-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/Cuprum-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Cuprum-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Cuprum-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Cuprum-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/Cuprum-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Cuprum-Medium.ttf -------------------------------------------------------------------------------- /fonts/orig/Cuprum-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Cuprum-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Cuprum-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Cuprum-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/Cuprum-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Cuprum-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/orig/Cuprum-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Cuprum-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/DejaVuSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/DejaVuSans-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/DejaVuSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/DejaVuSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/DejaVuSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/DejaVuSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/DejaVuSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/DejaVuSerif-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/DejaVuSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/DejaVuSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/DejaVuSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/DejaVuSerif-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/DejaVuSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/DejaVuSerif-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/IbarraRealNova-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/IbarraRealNova-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/IbarraRealNova-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/IbarraRealNova-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/IbarraRealNova-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/IbarraRealNova-Medium.ttf -------------------------------------------------------------------------------- /fonts/orig/IbarraRealNova-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/IbarraRealNova-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/IbarraRealNova-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/IbarraRealNova-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/orig/License - Asap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/License - Asap.txt -------------------------------------------------------------------------------- /fonts/orig/License - Caladea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/License - Caladea.txt -------------------------------------------------------------------------------- /fonts/orig/License - CrimsonPro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/License - CrimsonPro.txt -------------------------------------------------------------------------------- /fonts/orig/License - DejaVu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/License - DejaVu.txt -------------------------------------------------------------------------------- /fonts/orig/License - RedHat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/License - RedHat.txt -------------------------------------------------------------------------------- /fonts/orig/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-Light.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-Medium.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/OpenSans_Condensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/OpenSans_Condensed-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/RedHatDisplay-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/RedHatDisplay-Bold.otf -------------------------------------------------------------------------------- /fonts/orig/RedHatDisplay-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/RedHatDisplay-Italic.otf -------------------------------------------------------------------------------- /fonts/orig/RedHatDisplay-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/RedHatDisplay-Regular.otf -------------------------------------------------------------------------------- /fonts/orig/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-Black.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-Light.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-Medium.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-Thin.ttf -------------------------------------------------------------------------------- /fonts/orig/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /fonts/orig/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /fonts/orig/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /fonts/orig/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /fonts/orig/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /fonts/orig/drawings.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/drawings.ttf -------------------------------------------------------------------------------- /fonts/orig/drawings_old.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/orig/drawings_old.ttf -------------------------------------------------------------------------------- /fonts/subset-latin1/otf/Asap-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/subset-latin1/otf/Asap-Bold.otf -------------------------------------------------------------------------------- /fonts/subset-latin1/otf/drawings.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/subset-latin1/otf/drawings.otf -------------------------------------------------------------------------------- /fonts/subset-latin1/woff/drawings.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/subset-latin1/woff/drawings.woff -------------------------------------------------------------------------------- /fonts/subsetter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/subsetter.sh -------------------------------------------------------------------------------- /fonts/woff2otf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/fonts/woff2otf.py -------------------------------------------------------------------------------- /freetype-2.10.4/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/.clang-format -------------------------------------------------------------------------------- /freetype-2.10.4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/CMakeLists.txt -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.20 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.21 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.22 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.23 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.24 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.25 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.26 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.27 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.28 -------------------------------------------------------------------------------- /freetype-2.10.4/ChangeLog.29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/ChangeLog.29 -------------------------------------------------------------------------------- /freetype-2.10.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/Makefile -------------------------------------------------------------------------------- /freetype-2.10.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/README -------------------------------------------------------------------------------- /freetype-2.10.4/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/README.git -------------------------------------------------------------------------------- /freetype-2.10.4/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/autogen.sh -------------------------------------------------------------------------------- /freetype-2.10.4/builds/amiga/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/amiga/README -------------------------------------------------------------------------------- /freetype-2.10.4/builds/amiga/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/amiga/makefile -------------------------------------------------------------------------------- /freetype-2.10.4/builds/amiga/smakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/amiga/smakefile -------------------------------------------------------------------------------- /freetype-2.10.4/builds/ansi/ansi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/ansi/ansi.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/atari/ATARI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/atari/ATARI.H -------------------------------------------------------------------------------- /freetype-2.10.4/builds/beos/beos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/beos/beos.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/beos/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/beos/detect.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/cmake/iOS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/cmake/iOS.cmake -------------------------------------------------------------------------------- /freetype-2.10.4/builds/compiler/bcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/compiler/bcc.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/compiler/emx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/compiler/emx.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/compiler/gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/compiler/gcc.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/detect.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/dos/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/dos/detect.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/dos/dos-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/dos/dos-def.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/dos/dos-emx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/dos/dos-emx.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/dos/dos-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/dos/dos-gcc.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/dos/dos-wat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/dos/dos-wat.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/exports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/exports.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/freetype.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/freetype.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/link_dos.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/link_dos.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/link_std.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/link_std.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/mac/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/mac/README -------------------------------------------------------------------------------- /freetype-2.10.4/builds/mac/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/mac/ftmac.c -------------------------------------------------------------------------------- /freetype-2.10.4/builds/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/modules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/os2/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/os2/detect.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/os2/os2-def.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/os2/os2-def.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/os2/os2-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/os2/os2-dev.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/os2/os2-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/os2/os2-gcc.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/symbian/bld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/symbian/bld.inf -------------------------------------------------------------------------------- /freetype-2.10.4/builds/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/toplevel.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/aclocal.m4 -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/config.log -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/config.sub -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/configure -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/detect.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/detect.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/ftconfig.h -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/ftoption.h -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/ftsystem.c -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/install-sh -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/install.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/install.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/libtool -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/ltmain.sh -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/pkg.m4 -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/unix-cc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/unix-cc.in -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/unix-cc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/unix-cc.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/unix/unix.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/unix/unix.mk -------------------------------------------------------------------------------- /freetype-2.10.4/builds/vms/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/vms/ftconfig.h -------------------------------------------------------------------------------- /freetype-2.10.4/builds/vms/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/vms/ftsystem.c -------------------------------------------------------------------------------- /freetype-2.10.4/builds/vms/vmslib.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/vms/vmslib.dat -------------------------------------------------------------------------------- /freetype-2.10.4/builds/wince/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/builds/wince/ftdebug.c -------------------------------------------------------------------------------- /freetype-2.10.4/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/config.mk -------------------------------------------------------------------------------- /freetype-2.10.4/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/configure -------------------------------------------------------------------------------- /freetype-2.10.4/devel/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/devel/ft2build.h -------------------------------------------------------------------------------- /freetype-2.10.4/devel/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/devel/ftoption.h -------------------------------------------------------------------------------- /freetype-2.10.4/docs/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/CHANGES -------------------------------------------------------------------------------- /freetype-2.10.4/docs/CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/CMAKE -------------------------------------------------------------------------------- /freetype-2.10.4/docs/CUSTOMIZE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/CUSTOMIZE -------------------------------------------------------------------------------- /freetype-2.10.4/docs/DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/DEBUG -------------------------------------------------------------------------------- /freetype-2.10.4/docs/DOCGUIDE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/DOCGUIDE -------------------------------------------------------------------------------- /freetype-2.10.4/docs/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/FTL.TXT -------------------------------------------------------------------------------- /freetype-2.10.4/docs/GPLv2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/GPLv2.TXT -------------------------------------------------------------------------------- /freetype-2.10.4/docs/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/INSTALL -------------------------------------------------------------------------------- /freetype-2.10.4/docs/INSTALL.ANY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/INSTALL.ANY -------------------------------------------------------------------------------- /freetype-2.10.4/docs/INSTALL.CROSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/INSTALL.CROSS -------------------------------------------------------------------------------- /freetype-2.10.4/docs/INSTALL.GNU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/INSTALL.GNU -------------------------------------------------------------------------------- /freetype-2.10.4/docs/INSTALL.MAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/INSTALL.MAC -------------------------------------------------------------------------------- /freetype-2.10.4/docs/INSTALL.UNIX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/INSTALL.UNIX -------------------------------------------------------------------------------- /freetype-2.10.4/docs/INSTALL.VMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/INSTALL.VMS -------------------------------------------------------------------------------- /freetype-2.10.4/docs/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/LICENSE.TXT -------------------------------------------------------------------------------- /freetype-2.10.4/docs/MAKEPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/MAKEPP -------------------------------------------------------------------------------- /freetype-2.10.4/docs/PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/PROBLEMS -------------------------------------------------------------------------------- /freetype-2.10.4/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/README -------------------------------------------------------------------------------- /freetype-2.10.4/docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/TODO -------------------------------------------------------------------------------- /freetype-2.10.4/docs/VERSIONS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/VERSIONS.TXT -------------------------------------------------------------------------------- /freetype-2.10.4/docs/formats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/formats.txt -------------------------------------------------------------------------------- /freetype-2.10.4/docs/freetype-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/freetype-config.1 -------------------------------------------------------------------------------- /freetype-2.10.4/docs/raster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/raster.txt -------------------------------------------------------------------------------- /freetype-2.10.4/docs/reference/assets/javascripts/lunr/lunr.jp.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /freetype-2.10.4/docs/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/docs/release -------------------------------------------------------------------------------- /freetype-2.10.4/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/include/ft2build.h -------------------------------------------------------------------------------- /freetype-2.10.4/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/meson.build -------------------------------------------------------------------------------- /freetype-2.10.4/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/meson_options.txt -------------------------------------------------------------------------------- /freetype-2.10.4/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/modules.cfg -------------------------------------------------------------------------------- /freetype-2.10.4/modules.cfg.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/modules.cfg.orig -------------------------------------------------------------------------------- /freetype-2.10.4/myconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/myconf.sh -------------------------------------------------------------------------------- /freetype-2.10.4/objs/.libs/libfreetype.la: -------------------------------------------------------------------------------- 1 | ../libfreetype.la -------------------------------------------------------------------------------- /freetype-2.10.4/objs/apinames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/apinames -------------------------------------------------------------------------------- /freetype-2.10.4/objs/autofit.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/autofit.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/autofit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/autofit.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/cff.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/cff.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/cff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/cff.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftbase.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftbase.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftbase.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftbase.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftbbox.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftbbox.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftbbox.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftbbox.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftbdf.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftbdf.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftbdf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftbdf.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftbitmap.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftbitmap.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftbitmap.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftbitmap.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftcid.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftcid.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftcid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftcid.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftdebug.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftdebug.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftdebug.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftdebug.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftexport.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftexport.sym -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftfstype.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftfstype.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftfstype.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftfstype.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftgasp.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftgasp.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftgasp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftgasp.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftglyph.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftglyph.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftglyph.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftglyph.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftgxval.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftgxval.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftgxval.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftgxval.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftinit.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftinit.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftinit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftinit.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftmm.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftmm.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftmm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftmm.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftmodule.h -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftotval.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftotval.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftotval.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftotval.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftpatent.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftpatent.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftpatent.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftpatent.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftpfr.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftpfr.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftpfr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftpfr.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftstroke.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftstroke.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftstroke.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftstroke.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftsynth.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftsynth.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftsynth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftsynth.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftsystem.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftsystem.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftsystem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftsystem.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/fttype1.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/fttype1.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/fttype1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/fttype1.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftwinfnt.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftwinfnt.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/ftwinfnt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/ftwinfnt.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/libfreetype.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/libfreetype.la -------------------------------------------------------------------------------- /freetype-2.10.4/objs/psaux.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/psaux.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/psaux.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/psaux.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/pshinter.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/pshinter.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/pshinter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/pshinter.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/psnames.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/psnames.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/psnames.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/psnames.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/raster.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/raster.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/raster.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/raster.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/sfnt.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/sfnt.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/sfnt.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/sfnt.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/smooth.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/smooth.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/smooth.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/smooth.o -------------------------------------------------------------------------------- /freetype-2.10.4/objs/truetype.lo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/truetype.lo -------------------------------------------------------------------------------- /freetype-2.10.4/objs/truetype.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/objs/truetype.o -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afangles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afangles.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afangles.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afblue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afblue.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afblue.cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afblue.cin -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afblue.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afblue.dat -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afblue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afblue.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afblue.hin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afblue.hin -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afcjk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afcjk.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afcjk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afcjk.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afcover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afcover.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afdummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afdummy.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afdummy.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/aferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/aferrors.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afglobal.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afglobal.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afhints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afhints.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afhints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afhints.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afwarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afwarp.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/afwarp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/afwarp.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/autofit/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/autofit/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftadvanc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftadvanc.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftbase.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftbase.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftbbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftbbox.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftbdf.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftbitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftbitmap.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftcalc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftcalc.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftcid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftcid.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftcolor.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftdbgmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftdbgmem.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftdebug.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/fterrors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/fterrors.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftfntfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftfntfmt.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftfstype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftfstype.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftgasp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftgasp.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftgloadr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftgloadr.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftglyph.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftgxval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftgxval.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/fthash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/fthash.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftinit.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftlcdfil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftlcdfil.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftmac.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftmm.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftobjs.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftotval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftotval.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftoutln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftoutln.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftpatent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftpatent.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftpfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftpfr.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftpsprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftpsprop.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftrfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftrfork.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftsnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftsnames.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftstream.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftstroke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftstroke.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftsynth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftsynth.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftsystem.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/fttrigon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/fttrigon.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/fttype1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/fttype1.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftutil.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftver.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftver.rc -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/ftwinfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/ftwinfnt.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/md5.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/md5.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/base/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/base/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/README -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/bdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/bdf.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/bdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/bdf.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/bdfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/bdfdrivr.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/bdfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/bdfdrivr.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/bdferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/bdferror.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/bdflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/bdflib.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/bdf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bdf/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/bzip2/ftbzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bzip2/ftbzip2.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/bzip2/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/bzip2/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcache.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcbasic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcbasic.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftccache.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftccache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftccache.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftccback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftccback.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftccmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftccmap.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcerror.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcglyph.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcglyph.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcimage.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcimage.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcmanag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcmanag.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcmanag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcmanag.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcmru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcmru.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcmru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcmru.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcsbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcsbits.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/ftcsbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/ftcsbits.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cache/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cff.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffcmap.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffcmap.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffdrivr.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffdrivr.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cfferrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cfferrs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffgload.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffgload.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffload.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffload.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffobjs.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffobjs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffparse.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cffparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cffparse.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/cfftoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/cfftoken.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/cff/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cff/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/ciderrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/ciderrs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidgload.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidgload.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidload.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidload.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidobjs.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidobjs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidparse.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidparse.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidriver.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidriver.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/cidtoken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/cidtoken.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/cid/type1cid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/cid/type1cid.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gxvalid/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gxvalid/README -------------------------------------------------------------------------------- /freetype-2.10.4/src/gxvalid/gxvmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gxvalid/gxvmod.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gxvalid/gxvmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gxvalid/gxvmod.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/gxvalid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gxvalid/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/adler32.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/ftgzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/ftgzip.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/ftzconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/ftzconf.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/infblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/infblock.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/infblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/infblock.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/infcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/infcodes.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/infcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/infcodes.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/inffixed.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/inflate.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/inftrees.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/inftrees.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/infutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/infutil.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/infutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/infutil.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/zlib.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/zutil.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/gzip/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/gzip/zutil.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/lzw/ftlzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/lzw/ftlzw.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/lzw/ftzopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/lzw/ftzopen.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/lzw/ftzopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/lzw/ftzopen.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/lzw/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/lzw/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/otvalid/otvmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/otvalid/otvmod.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/otvalid/otvmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/otvalid/otvmod.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/otvalid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/otvalid/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/README -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcf.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcf.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcfdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcfdrivr.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcfdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcfdrivr.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcferror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcferror.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcfread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcfread.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcfread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcfread.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcfutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcfutil.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/pcfutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/pcfutil.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pcf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pcf/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfr.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrcmap.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrcmap.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrdrivr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrdrivr.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrdrivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrdrivr.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrerror.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrgload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrgload.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrgload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrgload.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrload.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrload.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrobjs.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrobjs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrsbit.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrsbit.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/pfrtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/pfrtypes.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/pfr/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/pfr/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/afmparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/afmparse.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/afmparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/afmparse.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psarrst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psarrst.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psarrst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psarrst.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psaux.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psauxerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psauxerr.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psauxmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psauxmod.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psauxmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psauxmod.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psblues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psblues.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psblues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psblues.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psconv.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psconv.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/pserror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/pserror.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/pserror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/pserror.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psfixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psfixed.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psfont.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psfont.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psft.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psft.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psglue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psglue.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/pshints.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/pshints.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/pshints.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psintrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psintrp.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psintrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psintrp.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psobjs.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psobjs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psread.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psread.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psstack.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/psstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/psstack.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/pstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/pstypes.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/t1cmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/t1cmap.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/t1cmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/t1cmap.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/t1decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/t1decode.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/psaux/t1decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psaux/t1decode.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/psnames/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/psnames/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/raster/ftmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/raster/ftmisc.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/raster/ftrend1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/raster/ftrend1.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/raster/ftrend1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/raster/ftrend1.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/raster/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/raster/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/raster/raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/raster/raster.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/raster/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/raster/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/pngshim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/pngshim.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/pngshim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/pngshim.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfdriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfdriver.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfdriver.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sferrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sferrors.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfnt.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfobjs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfobjs.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfobjs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfwoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfwoff.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfwoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfwoff.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfwoff2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfwoff2.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/sfwoff2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/sfwoff2.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttbdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttbdf.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttbdf.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttcmap.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttcmap.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttcmapc.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttcolr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttcolr.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttcolr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttcolr.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttcpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttcpal.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttcpal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttcpal.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttkern.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttkern.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttload.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttload.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttmtx.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttmtx.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttpost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttpost.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttpost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttpost.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttsbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttsbit.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/ttsbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/ttsbit.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/woff2tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/woff2tags.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/sfnt/woff2tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/sfnt/woff2tags.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/smooth/ftgrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/smooth/ftgrays.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/smooth/ftgrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/smooth/ftgrays.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/smooth/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/smooth/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/smooth/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/smooth/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/smooth/smooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/smooth/smooth.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/tools/afblue.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/tools/afblue.pl -------------------------------------------------------------------------------- /freetype-2.10.4/src/tools/apinames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/tools/apinames.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/tools/cordic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/tools/cordic.py -------------------------------------------------------------------------------- /freetype-2.10.4/src/tools/glnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/tools/glnames.py -------------------------------------------------------------------------------- /freetype-2.10.4/src/tools/test_afm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/tools/test_afm.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1afm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1afm.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1afm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1afm.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1driver.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1driver.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1errors.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1gload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1gload.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1gload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1gload.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1load.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1load.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1objs.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1objs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1objs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1parse.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1parse.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/t1tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/t1tokens.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type1/type1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type1/type1.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type42/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type42/module.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/type42/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type42/rules.mk -------------------------------------------------------------------------------- /freetype-2.10.4/src/type42/t42objs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type42/t42objs.c -------------------------------------------------------------------------------- /freetype-2.10.4/src/type42/t42objs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type42/t42objs.h -------------------------------------------------------------------------------- /freetype-2.10.4/src/type42/type42.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/src/type42/type42.c -------------------------------------------------------------------------------- /freetype-2.10.4/version.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/version.sed -------------------------------------------------------------------------------- /freetype-2.10.4/vms_make.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/freetype-2.10.4/vms_make.com -------------------------------------------------------------------------------- /include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/README -------------------------------------------------------------------------------- /include/controllers/back_lit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/controllers/back_lit.hpp -------------------------------------------------------------------------------- /include/controllers/clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/controllers/clock.hpp -------------------------------------------------------------------------------- /include/controllers/event_mgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/controllers/event_mgr.hpp -------------------------------------------------------------------------------- /include/controllers/ntp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/controllers/ntp.hpp -------------------------------------------------------------------------------- /include/controllers/wifi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/controllers/wifi.hpp -------------------------------------------------------------------------------- /include/helpers/char_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/helpers/char_pool.hpp -------------------------------------------------------------------------------- /include/helpers/simple_db.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/helpers/simple_db.hpp -------------------------------------------------------------------------------- /include/helpers/unzip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/helpers/unzip.hpp -------------------------------------------------------------------------------- /include/models/book_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/book_params.hpp -------------------------------------------------------------------------------- /include/models/books_dir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/books_dir.hpp -------------------------------------------------------------------------------- /include/models/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/config.hpp -------------------------------------------------------------------------------- /include/models/config_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/config_template.hpp -------------------------------------------------------------------------------- /include/models/css.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/css.hpp -------------------------------------------------------------------------------- /include/models/css_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/css_parser.hpp -------------------------------------------------------------------------------- /include/models/default_cover.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/default_cover.hpp -------------------------------------------------------------------------------- /include/models/dom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/dom.hpp -------------------------------------------------------------------------------- /include/models/epub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/epub.hpp -------------------------------------------------------------------------------- /include/models/font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/font.hpp -------------------------------------------------------------------------------- /include/models/font_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/font_factory.hpp -------------------------------------------------------------------------------- /include/models/fonts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/fonts.hpp -------------------------------------------------------------------------------- /include/models/ibmf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/ibmf.hpp -------------------------------------------------------------------------------- /include/models/ibmf_font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/ibmf_font.hpp -------------------------------------------------------------------------------- /include/models/ibmf_font_old.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/ibmf_font_old.hpp -------------------------------------------------------------------------------- /include/models/image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/image.hpp -------------------------------------------------------------------------------- /include/models/image_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/image_factory.hpp -------------------------------------------------------------------------------- /include/models/jpeg_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/jpeg_image.hpp -------------------------------------------------------------------------------- /include/models/nvs_mgr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/nvs_mgr.hpp -------------------------------------------------------------------------------- /include/models/page_locs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/page_locs.hpp -------------------------------------------------------------------------------- /include/models/png_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/png_image.hpp -------------------------------------------------------------------------------- /include/models/toc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/toc.hpp -------------------------------------------------------------------------------- /include/models/ttf2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/models/ttf2.hpp -------------------------------------------------------------------------------- /include/viewers/battery_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/battery_viewer.hpp -------------------------------------------------------------------------------- /include/viewers/book_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/book_viewer.hpp -------------------------------------------------------------------------------- /include/viewers/books_dir_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/books_dir_viewer.hpp -------------------------------------------------------------------------------- /include/viewers/form_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/form_viewer.hpp -------------------------------------------------------------------------------- /include/viewers/html_interpreter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/html_interpreter.hpp -------------------------------------------------------------------------------- /include/viewers/keyboard_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/keyboard_viewer.hpp -------------------------------------------------------------------------------- /include/viewers/keypad_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/keypad_viewer.hpp -------------------------------------------------------------------------------- /include/viewers/menu_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/menu_viewer.hpp -------------------------------------------------------------------------------- /include/viewers/msg_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/msg_viewer.hpp -------------------------------------------------------------------------------- /include/viewers/page.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/page.hpp -------------------------------------------------------------------------------- /include/viewers/screen_bottom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/screen_bottom.hpp -------------------------------------------------------------------------------- /include/viewers/toc_viewer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include/viewers/toc_viewer.hpp -------------------------------------------------------------------------------- /include_global/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/include_global/global.hpp -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/README -------------------------------------------------------------------------------- /lib/externals/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/README -------------------------------------------------------------------------------- /lib/externals/int_to_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/int_to_str.cpp -------------------------------------------------------------------------------- /lib/externals/int_to_str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/int_to_str.hpp -------------------------------------------------------------------------------- /lib/externals/memory_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/memory_pool.hpp -------------------------------------------------------------------------------- /lib/externals/memory_pool.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/memory_pool.tcc -------------------------------------------------------------------------------- /lib/externals/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/miniz.c -------------------------------------------------------------------------------- /lib/externals/miniz.h: -------------------------------------------------------------------------------- 1 | #define MINIZ_HEADER_FILE_ONLY 2 | #include "miniz.c" 3 | -------------------------------------------------------------------------------- /lib/externals/mypngle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/mypngle.cpp -------------------------------------------------------------------------------- /lib/externals/mypngle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/mypngle.hpp -------------------------------------------------------------------------------- /lib/externals/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/pugiconfig.hpp -------------------------------------------------------------------------------- /lib/externals/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/pugixml.cpp -------------------------------------------------------------------------------- /lib/externals/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/pugixml.hpp -------------------------------------------------------------------------------- /lib/externals/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/stb_image_resize.h -------------------------------------------------------------------------------- /lib/externals/strlcpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/strlcpy.cpp -------------------------------------------------------------------------------- /lib/externals/strlcpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/strlcpy.hpp -------------------------------------------------------------------------------- /lib/externals/tjpgdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/tjpgdec.cpp -------------------------------------------------------------------------------- /lib/externals/tjpgdec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/tjpgdec.hpp -------------------------------------------------------------------------------- /lib/externals/tjpgdeccnf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib/externals/tjpgdeccnf.hpp -------------------------------------------------------------------------------- /lib_freetype/lib/libfreetype.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib_freetype/lib/libfreetype.a -------------------------------------------------------------------------------- /lib_freetype/lib/libfreetype.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/lib_freetype/lib/libfreetype.la -------------------------------------------------------------------------------- /licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/licenses.txt -------------------------------------------------------------------------------- /merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/merge.py -------------------------------------------------------------------------------- /partitions copy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/partitions copy.csv -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/partitions.csv -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/platformio.ini -------------------------------------------------------------------------------- /sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/sdkconfig.defaults -------------------------------------------------------------------------------- /sdkconfig.inkplate_10_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/sdkconfig.inkplate_10_debug -------------------------------------------------------------------------------- /sdkconfig.inkplate_10_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/sdkconfig.inkplate_10_release -------------------------------------------------------------------------------- /sdkconfig.inkplate_10_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/sdkconfig.inkplate_10_tests -------------------------------------------------------------------------------- /sdkconfig.inkplate_6_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/sdkconfig.inkplate_6_debug -------------------------------------------------------------------------------- /sdkconfig.inkplate_6_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/sdkconfig.inkplate_6_release -------------------------------------------------------------------------------- /sdkconfig.inkplate_6plus_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/sdkconfig.inkplate_6plus_debug -------------------------------------------------------------------------------- /sdkconfig.inkplate_6plus_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/sdkconfig.inkplate_6plus_release -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/controllers/app_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/app_controller.cpp -------------------------------------------------------------------------------- /src/controllers/book_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/book_controller.cpp -------------------------------------------------------------------------------- /src/controllers/common_actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/common_actions.cpp -------------------------------------------------------------------------------- /src/controllers/event_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/event_mgr.cpp -------------------------------------------------------------------------------- /src/controllers/ntp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/ntp.cpp -------------------------------------------------------------------------------- /src/controllers/toc_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/toc_controller.cpp -------------------------------------------------------------------------------- /src/controllers/touch_event_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/touch_event_mgr.cpp -------------------------------------------------------------------------------- /src/controllers/web_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/web_server.cpp -------------------------------------------------------------------------------- /src/controllers/web_server.cpp.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/web_server.cpp.old -------------------------------------------------------------------------------- /src/controllers/wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/controllers/wifi.cpp -------------------------------------------------------------------------------- /src/embed/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/embed/favicon.ico -------------------------------------------------------------------------------- /src/embed/upload_script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/embed/upload_script.html -------------------------------------------------------------------------------- /src/helpers/simple_db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/helpers/simple_db.cpp -------------------------------------------------------------------------------- /src/helpers/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/helpers/unzip.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/models/book_params.cpp: -------------------------------------------------------------------------------- 1 | #define __BOOK_PARAMS__ 1 2 | #include "models/book_params.hpp" 3 | -------------------------------------------------------------------------------- /src/models/books_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/books_dir.cpp -------------------------------------------------------------------------------- /src/models/config.cpp: -------------------------------------------------------------------------------- 1 | #define __CONFIG__ 1 2 | #include "models/config.hpp" -------------------------------------------------------------------------------- /src/models/css.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/css.cpp -------------------------------------------------------------------------------- /src/models/dom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/dom.cpp -------------------------------------------------------------------------------- /src/models/epub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/epub.cpp -------------------------------------------------------------------------------- /src/models/epub_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/epub_tests.cpp -------------------------------------------------------------------------------- /src/models/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/font.cpp -------------------------------------------------------------------------------- /src/models/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/fonts.cpp -------------------------------------------------------------------------------- /src/models/ibmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/ibmf.cpp -------------------------------------------------------------------------------- /src/models/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/image.cpp -------------------------------------------------------------------------------- /src/models/jpeg_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/jpeg_image.cpp -------------------------------------------------------------------------------- /src/models/nvs_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/nvs_mgr.cpp -------------------------------------------------------------------------------- /src/models/nvs_mgr_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/nvs_mgr_tests.cpp -------------------------------------------------------------------------------- /src/models/page_locs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/page_locs.cpp -------------------------------------------------------------------------------- /src/models/png_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/png_image.cpp -------------------------------------------------------------------------------- /src/models/toc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/toc.cpp -------------------------------------------------------------------------------- /src/models/ttf2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/models/ttf2.cpp -------------------------------------------------------------------------------- /src/viewers/battery_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/battery_viewer.cpp -------------------------------------------------------------------------------- /src/viewers/book_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/book_viewer.cpp -------------------------------------------------------------------------------- /src/viewers/form_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/form_viewer.cpp -------------------------------------------------------------------------------- /src/viewers/html_interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/html_interpreter.cpp -------------------------------------------------------------------------------- /src/viewers/keyboard_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/keyboard_viewer.cpp -------------------------------------------------------------------------------- /src/viewers/keypad_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/keypad_viewer.cpp -------------------------------------------------------------------------------- /src/viewers/menu_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/menu_viewer.cpp -------------------------------------------------------------------------------- /src/viewers/msg_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/msg_viewer.cpp -------------------------------------------------------------------------------- /src/viewers/page.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/page.cpp -------------------------------------------------------------------------------- /src/viewers/screen_bottom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/screen_bottom.cpp -------------------------------------------------------------------------------- /src/viewers/toc_viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turgu1/EPub-InkPlate/HEAD/src/viewers/toc_viewer.cpp --------------------------------------------------------------------------------