├── .github └── workflows │ └── figmaqml.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── OpenSSL_ubuntu ├── libqcertonlybackend.so └── libqopensslbackend.so ├── OpenSSL_win ├── libcrypto-1_1-x64.dll └── libssl-1_1-x64.dll ├── README.md ├── app_figma ├── CMakeLists.txt ├── FigmaQmlInterface │ ├── CMakeLists.txt │ ├── FigmaQmlInterface.hpp │ └── FigmaQmlUi.qml ├── app.qrc ├── build.sh ├── qml.qrc ├── qml │ └── main.qml └── src │ └── main.cpp ├── aspell └── spell_words.txt ├── doc └── qtformcu.png ├── find_types.py ├── include ├── appwrite.h ├── clipboard.h ├── common.h ├── downloads.h ├── execute_utils.h ├── figmaQmlSingleton.h ├── figmaconvert.h ├── figmadata.h ├── figmadocument.h ├── figmaget.h ├── figmaparser.h ├── figmaprovider.h ├── figmaqml.h ├── fontcache.h ├── fontinfo.h ├── functorslot.h ├── orderedmap.h ├── providers.h ├── qulInfo.h └── utils.h ├── linux_build.sh ├── mcu_figma ├── CMakeLists.txt ├── FigmaQmlInterface │ ├── CMakeLists.txt │ ├── FigmaQmlInterface.cmake │ ├── FigmaQmlInterface.hpp │ ├── FigmaQmlInterface.qmlproject.in │ └── FigmaQmlUi.qml ├── build.sh ├── fonts │ ├── DejaVuSansMono.ttf │ └── LICENSE ├── images │ └── icon.png ├── mcu.qrc ├── mcu_figma.qml ├── mcu_figma.qmlproject ├── readme.txt └── run_STM32.sh ├── msvc_build.bat ├── osx_build.sh ├── qml ├── BigText.qml ├── FigmaQmlSingleton.qml ├── FontMap.qml ├── ImportEditor.qml ├── IncludeList.qml ├── Input.qml ├── LoaderPlaceHolder.qml ├── Logo.qml ├── QtCheckBox.qml ├── QtDropShadow.qml ├── QtForDesktopPopup.qml ├── QtForMCUPopup.qml ├── RowButton.qml ├── TokensPopup.qml ├── deprecated │ ├── Q5FontDialog.qml │ ├── Qt5DropShadow.qml │ ├── Qt5FileDialog.qml │ ├── Qt5FolderDialog.qml │ ├── Qt5MessageDialog.qml │ └── Qt5StandardPaths.qml ├── main.qml └── qml.qrc ├── res ├── broken_image.jpg ├── favicon.ico └── icon.qrc ├── setup └── auto-setup.cmake ├── src ├── appwrite.cpp ├── downloads.cpp ├── executeApp.cpp ├── executeQul.cpp ├── execute_utils.cpp ├── figmaget.cpp ├── figmaparser.cpp ├── figmaqml.cpp ├── fontinfo.cpp ├── main.cpp ├── qulwrite.cpp └── wasmdialogs.cpp ├── test ├── imagecomp.py ├── runtest.sh ├── runtest_export.sh └── runtest_image.sh ├── todo.txt └── wasm_build.sh /.github/workflows/figmaqml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/.github/workflows/figmaqml.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenSSL_ubuntu/libqcertonlybackend.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/OpenSSL_ubuntu/libqcertonlybackend.so -------------------------------------------------------------------------------- /OpenSSL_ubuntu/libqopensslbackend.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/OpenSSL_ubuntu/libqopensslbackend.so -------------------------------------------------------------------------------- /OpenSSL_win/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/OpenSSL_win/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /OpenSSL_win/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/OpenSSL_win/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/README.md -------------------------------------------------------------------------------- /app_figma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/CMakeLists.txt -------------------------------------------------------------------------------- /app_figma/FigmaQmlInterface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/FigmaQmlInterface/CMakeLists.txt -------------------------------------------------------------------------------- /app_figma/FigmaQmlInterface/FigmaQmlInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/FigmaQmlInterface/FigmaQmlInterface.hpp -------------------------------------------------------------------------------- /app_figma/FigmaQmlInterface/FigmaQmlUi.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/FigmaQmlInterface/FigmaQmlUi.qml -------------------------------------------------------------------------------- /app_figma/app.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/app.qrc -------------------------------------------------------------------------------- /app_figma/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/build.sh -------------------------------------------------------------------------------- /app_figma/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/qml.qrc -------------------------------------------------------------------------------- /app_figma/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/qml/main.qml -------------------------------------------------------------------------------- /app_figma/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/app_figma/src/main.cpp -------------------------------------------------------------------------------- /aspell/spell_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/aspell/spell_words.txt -------------------------------------------------------------------------------- /doc/qtformcu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/doc/qtformcu.png -------------------------------------------------------------------------------- /find_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/find_types.py -------------------------------------------------------------------------------- /include/appwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/appwrite.h -------------------------------------------------------------------------------- /include/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/clipboard.h -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/common.h -------------------------------------------------------------------------------- /include/downloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/downloads.h -------------------------------------------------------------------------------- /include/execute_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/execute_utils.h -------------------------------------------------------------------------------- /include/figmaQmlSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/figmaQmlSingleton.h -------------------------------------------------------------------------------- /include/figmaconvert.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/figmadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/figmadata.h -------------------------------------------------------------------------------- /include/figmadocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/figmadocument.h -------------------------------------------------------------------------------- /include/figmaget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/figmaget.h -------------------------------------------------------------------------------- /include/figmaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/figmaparser.h -------------------------------------------------------------------------------- /include/figmaprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/figmaprovider.h -------------------------------------------------------------------------------- /include/figmaqml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/figmaqml.h -------------------------------------------------------------------------------- /include/fontcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/fontcache.h -------------------------------------------------------------------------------- /include/fontinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/fontinfo.h -------------------------------------------------------------------------------- /include/functorslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/functorslot.h -------------------------------------------------------------------------------- /include/orderedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/orderedmap.h -------------------------------------------------------------------------------- /include/providers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/providers.h -------------------------------------------------------------------------------- /include/qulInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/qulInfo.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/include/utils.h -------------------------------------------------------------------------------- /linux_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/linux_build.sh -------------------------------------------------------------------------------- /mcu_figma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/CMakeLists.txt -------------------------------------------------------------------------------- /mcu_figma/FigmaQmlInterface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/FigmaQmlInterface/CMakeLists.txt -------------------------------------------------------------------------------- /mcu_figma/FigmaQmlInterface/FigmaQmlInterface.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/FigmaQmlInterface/FigmaQmlInterface.cmake -------------------------------------------------------------------------------- /mcu_figma/FigmaQmlInterface/FigmaQmlInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/FigmaQmlInterface/FigmaQmlInterface.hpp -------------------------------------------------------------------------------- /mcu_figma/FigmaQmlInterface/FigmaQmlInterface.qmlproject.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/FigmaQmlInterface/FigmaQmlInterface.qmlproject.in -------------------------------------------------------------------------------- /mcu_figma/FigmaQmlInterface/FigmaQmlUi.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/FigmaQmlInterface/FigmaQmlUi.qml -------------------------------------------------------------------------------- /mcu_figma/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/build.sh -------------------------------------------------------------------------------- /mcu_figma/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /mcu_figma/fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/fonts/LICENSE -------------------------------------------------------------------------------- /mcu_figma/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/images/icon.png -------------------------------------------------------------------------------- /mcu_figma/mcu.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/mcu.qrc -------------------------------------------------------------------------------- /mcu_figma/mcu_figma.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/mcu_figma.qml -------------------------------------------------------------------------------- /mcu_figma/mcu_figma.qmlproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/mcu_figma.qmlproject -------------------------------------------------------------------------------- /mcu_figma/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/mcu_figma/readme.txt -------------------------------------------------------------------------------- /mcu_figma/run_STM32.sh: -------------------------------------------------------------------------------- 1 | $1 -c port=SWD reset=HWrst -el $2 -w $3 -g 2 | echo "Executing on board" 3 | -------------------------------------------------------------------------------- /msvc_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/msvc_build.bat -------------------------------------------------------------------------------- /osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/osx_build.sh -------------------------------------------------------------------------------- /qml/BigText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/BigText.qml -------------------------------------------------------------------------------- /qml/FigmaQmlSingleton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/FigmaQmlSingleton.qml -------------------------------------------------------------------------------- /qml/FontMap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/FontMap.qml -------------------------------------------------------------------------------- /qml/ImportEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/ImportEditor.qml -------------------------------------------------------------------------------- /qml/IncludeList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/IncludeList.qml -------------------------------------------------------------------------------- /qml/Input.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/Input.qml -------------------------------------------------------------------------------- /qml/LoaderPlaceHolder.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/LoaderPlaceHolder.qml -------------------------------------------------------------------------------- /qml/Logo.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/Logo.qml -------------------------------------------------------------------------------- /qml/QtCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/QtCheckBox.qml -------------------------------------------------------------------------------- /qml/QtDropShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/QtDropShadow.qml -------------------------------------------------------------------------------- /qml/QtForDesktopPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/QtForDesktopPopup.qml -------------------------------------------------------------------------------- /qml/QtForMCUPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/QtForMCUPopup.qml -------------------------------------------------------------------------------- /qml/RowButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/RowButton.qml -------------------------------------------------------------------------------- /qml/TokensPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/TokensPopup.qml -------------------------------------------------------------------------------- /qml/deprecated/Q5FontDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/deprecated/Q5FontDialog.qml -------------------------------------------------------------------------------- /qml/deprecated/Qt5DropShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/deprecated/Qt5DropShadow.qml -------------------------------------------------------------------------------- /qml/deprecated/Qt5FileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/deprecated/Qt5FileDialog.qml -------------------------------------------------------------------------------- /qml/deprecated/Qt5FolderDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/deprecated/Qt5FolderDialog.qml -------------------------------------------------------------------------------- /qml/deprecated/Qt5MessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/deprecated/Qt5MessageDialog.qml -------------------------------------------------------------------------------- /qml/deprecated/Qt5StandardPaths.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/deprecated/Qt5StandardPaths.qml -------------------------------------------------------------------------------- /qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/main.qml -------------------------------------------------------------------------------- /qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/qml/qml.qrc -------------------------------------------------------------------------------- /res/broken_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/res/broken_image.jpg -------------------------------------------------------------------------------- /res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/res/favicon.ico -------------------------------------------------------------------------------- /res/icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/res/icon.qrc -------------------------------------------------------------------------------- /setup/auto-setup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/setup/auto-setup.cmake -------------------------------------------------------------------------------- /src/appwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/appwrite.cpp -------------------------------------------------------------------------------- /src/downloads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/downloads.cpp -------------------------------------------------------------------------------- /src/executeApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/executeApp.cpp -------------------------------------------------------------------------------- /src/executeQul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/executeQul.cpp -------------------------------------------------------------------------------- /src/execute_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/execute_utils.cpp -------------------------------------------------------------------------------- /src/figmaget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/figmaget.cpp -------------------------------------------------------------------------------- /src/figmaparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/figmaparser.cpp -------------------------------------------------------------------------------- /src/figmaqml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/figmaqml.cpp -------------------------------------------------------------------------------- /src/fontinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/fontinfo.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/qulwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/qulwrite.cpp -------------------------------------------------------------------------------- /src/wasmdialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/src/wasmdialogs.cpp -------------------------------------------------------------------------------- /test/imagecomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/test/imagecomp.py -------------------------------------------------------------------------------- /test/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/test/runtest.sh -------------------------------------------------------------------------------- /test/runtest_export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/test/runtest_export.sh -------------------------------------------------------------------------------- /test/runtest_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/test/runtest_image.sh -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/todo.txt -------------------------------------------------------------------------------- /wasm_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmertama/FigmaQML/HEAD/wasm_build.sh --------------------------------------------------------------------------------