├── .ci └── arkuix │ ├── LICENSE │ └── LICENSE.sha256 ├── .github └── workflows │ ├── hnp.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── AppScope ├── app.json5 └── resources │ └── base │ ├── element │ └── string.json │ └── media │ ├── background.png │ ├── foreground.png │ └── layered_image.json ├── Dockerfile ├── LICENSE ├── README.md ├── README_CN.md ├── code-linter.json5 ├── create-hnp.sh ├── entry ├── .gitignore ├── build-profile.json5 ├── hnp │ ├── arm64-v8a │ │ ├── .gitignore │ │ └── .gitkeep │ └── x86_64 │ │ ├── .gitignore │ │ └── .gitkeep ├── hvigorfile.ts ├── obfuscation-rules.txt ├── oh-package-lock.json5 ├── oh-package.json5 └── src │ ├── main │ ├── cpp │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── napi_init.cpp │ │ ├── terminal.cpp │ │ ├── terminal.h │ │ ├── test.cpp │ │ └── types │ │ │ └── libentry │ │ │ ├── Index.d.ts │ │ │ └── oh-package.json5 │ ├── ets │ │ ├── entryability │ │ │ └── EntryAbility.ets │ │ └── pages │ │ │ └── Index.ets │ ├── module.json5 │ └── resources │ │ └── base │ │ ├── element │ │ ├── color.json │ │ ├── float.json │ │ └── string.json │ │ ├── media │ │ ├── background.png │ │ ├── foreground.png │ │ ├── layered_image.json │ │ └── startIcon.png │ │ └── profile │ │ └── main_pages.json │ ├── mock │ └── mock-config.json5 │ ├── ohosTest │ ├── ets │ │ └── test │ │ │ ├── Ability.test.ets │ │ │ └── List.test.ets │ └── module.json5 │ └── test │ ├── List.test.ets │ └── LocalUnit.test.ets ├── hvigor └── hvigor-config.json5 ├── hvigorfile.ts ├── oh-package-lock.json5 ├── oh-package.json5 ├── push.sh ├── screenshot.jpg ├── screenshot_gcc.jpg ├── screenshot_hishell.jpg ├── sign.js └── sign.py /.ci/arkuix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/.ci/arkuix/LICENSE -------------------------------------------------------------------------------- /.ci/arkuix/LICENSE.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/.ci/arkuix/LICENSE.sha256 -------------------------------------------------------------------------------- /.github/workflows/hnp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/.github/workflows/hnp.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/.gitmodules -------------------------------------------------------------------------------- /AppScope/app.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/AppScope/app.json5 -------------------------------------------------------------------------------- /AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/AppScope/resources/base/element/string.json -------------------------------------------------------------------------------- /AppScope/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/AppScope/resources/base/media/background.png -------------------------------------------------------------------------------- /AppScope/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/AppScope/resources/base/media/foreground.png -------------------------------------------------------------------------------- /AppScope/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/AppScope/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/README_CN.md -------------------------------------------------------------------------------- /code-linter.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/code-linter.json5 -------------------------------------------------------------------------------- /create-hnp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/create-hnp.sh -------------------------------------------------------------------------------- /entry/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/.gitignore -------------------------------------------------------------------------------- /entry/build-profile.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/build-profile.json5 -------------------------------------------------------------------------------- /entry/hnp/arm64-v8a/.gitignore: -------------------------------------------------------------------------------- 1 | *.hnp 2 | -------------------------------------------------------------------------------- /entry/hnp/arm64-v8a/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entry/hnp/x86_64/.gitignore: -------------------------------------------------------------------------------- 1 | *.hnp 2 | -------------------------------------------------------------------------------- /entry/hnp/x86_64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entry/hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/hvigorfile.ts -------------------------------------------------------------------------------- /entry/obfuscation-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/obfuscation-rules.txt -------------------------------------------------------------------------------- /entry/oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/oh-package-lock.json5 -------------------------------------------------------------------------------- /entry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/cpp/.gitignore: -------------------------------------------------------------------------------- 1 | terminal 2 | test 3 | -------------------------------------------------------------------------------- /entry/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /entry/src/main/cpp/napi_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/cpp/napi_init.cpp -------------------------------------------------------------------------------- /entry/src/main/cpp/terminal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/cpp/terminal.cpp -------------------------------------------------------------------------------- /entry/src/main/cpp/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/cpp/terminal.h -------------------------------------------------------------------------------- /entry/src/main/cpp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/cpp/test.cpp -------------------------------------------------------------------------------- /entry/src/main/cpp/types/libentry/Index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/cpp/types/libentry/Index.d.ts -------------------------------------------------------------------------------- /entry/src/main/cpp/types/libentry/oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/cpp/types/libentry/oh-package.json5 -------------------------------------------------------------------------------- /entry/src/main/ets/entryability/EntryAbility.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/ets/entryability/EntryAbility.ets -------------------------------------------------------------------------------- /entry/src/main/ets/pages/Index.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/ets/pages/Index.ets -------------------------------------------------------------------------------- /entry/src/main/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/module.json5 -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/resources/base/element/color.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/resources/base/element/float.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/element/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/resources/base/element/string.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/resources/base/media/background.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/resources/base/media/foreground.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/layered_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/resources/base/media/layered_image.json -------------------------------------------------------------------------------- /entry/src/main/resources/base/media/startIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/resources/base/media/startIcon.png -------------------------------------------------------------------------------- /entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/main/resources/base/profile/main_pages.json -------------------------------------------------------------------------------- /entry/src/mock/mock-config.json5: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/Ability.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/ohosTest/ets/test/Ability.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/ets/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/ohosTest/ets/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/ohosTest/module.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/ohosTest/module.json5 -------------------------------------------------------------------------------- /entry/src/test/List.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/test/List.test.ets -------------------------------------------------------------------------------- /entry/src/test/LocalUnit.test.ets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/entry/src/test/LocalUnit.test.ets -------------------------------------------------------------------------------- /hvigor/hvigor-config.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/hvigor/hvigor-config.json5 -------------------------------------------------------------------------------- /hvigorfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/hvigorfile.ts -------------------------------------------------------------------------------- /oh-package-lock.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/oh-package-lock.json5 -------------------------------------------------------------------------------- /oh-package.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/oh-package.json5 -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/push.sh -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /screenshot_gcc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/screenshot_gcc.jpg -------------------------------------------------------------------------------- /screenshot_hishell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/screenshot_hishell.jpg -------------------------------------------------------------------------------- /sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/sign.js -------------------------------------------------------------------------------- /sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermonyHQ/Termony/HEAD/sign.py --------------------------------------------------------------------------------