├── .github ├── ISSUE_TEMPLATES │ ├── bug_report.yml │ └── feature_request.yml ├── copilot-instructions.md └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── EZpanso-arm64.spec ├── Icon ├── LICENSE ├── README.md ├── docs ├── BUG_FIX_SUMMARY.md ├── BUILD_SEPARATION_SUMMARY.md ├── CROSS_PLATFORM_BUILD_TESTING.md ├── GITHUB_RELEASE_INSTRUCTIONS_v1.2.1.md ├── MACOS_DISTRIBUTION_FIX.md ├── RELEASE_PREPARATION_v1.2.1.md ├── RELEASE_SUMMARY_v1.2.1.md ├── YAML_COMMENT_PRESERVATION_IMPLEMENTATION.md ├── dev.md └── releases │ ├── release_notes_v1.2.0.md │ └── release_notes_v1.2.1.md ├── file_version_info.txt ├── icon.icns ├── icon.iconset ├── Icon ├── icon_128x128.png ├── icon_128x128@2x.png ├── icon_16x16.png ├── icon_16x16@2x.png ├── icon_256x256.png ├── icon_256x256@2x.png ├── icon_32x32.png ├── icon_32x32@2x.png ├── icon_512x512.png └── icon_512x512@2x.png ├── main.py ├── main.spec ├── poetry.lock ├── pyproject.toml ├── release_notes_temp.md ├── requirements.txt ├── scripts ├── analyze_build.py ├── cleanup.py ├── demo_comment_preservation.py └── entitlements.plist ├── styles.py ├── temp_release_notes.md ├── tests ├── README.md ├── README_test.md ├── __init__.py ├── bug_fixes_test.py ├── build_test.py ├── cleanup.py ├── core_tests.py ├── cross_platform_test.py ├── debug │ ├── __init__.py │ ├── escape_debug.py │ ├── integration_debug.py │ └── yaml_debug.py ├── pytest.ini ├── ruamel_install_test.py ├── save_refresh_test.py ├── yaml_handler_test.py └── yaml_simple_test.py └── yaml_handler.py /.github/ISSUE_TEMPLATES/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/.github/ISSUE_TEMPLATES/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATES/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/.github/ISSUE_TEMPLATES/feature_request.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EZpanso-arm64.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/EZpanso-arm64.spec -------------------------------------------------------------------------------- /Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/README.md -------------------------------------------------------------------------------- /docs/BUG_FIX_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/BUG_FIX_SUMMARY.md -------------------------------------------------------------------------------- /docs/BUILD_SEPARATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/BUILD_SEPARATION_SUMMARY.md -------------------------------------------------------------------------------- /docs/CROSS_PLATFORM_BUILD_TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/CROSS_PLATFORM_BUILD_TESTING.md -------------------------------------------------------------------------------- /docs/GITHUB_RELEASE_INSTRUCTIONS_v1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/GITHUB_RELEASE_INSTRUCTIONS_v1.2.1.md -------------------------------------------------------------------------------- /docs/MACOS_DISTRIBUTION_FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/MACOS_DISTRIBUTION_FIX.md -------------------------------------------------------------------------------- /docs/RELEASE_PREPARATION_v1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/RELEASE_PREPARATION_v1.2.1.md -------------------------------------------------------------------------------- /docs/RELEASE_SUMMARY_v1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/RELEASE_SUMMARY_v1.2.1.md -------------------------------------------------------------------------------- /docs/YAML_COMMENT_PRESERVATION_IMPLEMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/YAML_COMMENT_PRESERVATION_IMPLEMENTATION.md -------------------------------------------------------------------------------- /docs/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/dev.md -------------------------------------------------------------------------------- /docs/releases/release_notes_v1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/releases/release_notes_v1.2.0.md -------------------------------------------------------------------------------- /docs/releases/release_notes_v1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/docs/releases/release_notes_v1.2.1.md -------------------------------------------------------------------------------- /file_version_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/file_version_info.txt -------------------------------------------------------------------------------- /icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.icns -------------------------------------------------------------------------------- /icon.iconset/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icon.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_128x128.png -------------------------------------------------------------------------------- /icon.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /icon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /icon.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /icon.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_256x256.png -------------------------------------------------------------------------------- /icon.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /icon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /icon.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /icon.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_512x512.png -------------------------------------------------------------------------------- /icon.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/icon.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/main.py -------------------------------------------------------------------------------- /main.spec: -------------------------------------------------------------------------------- 1 | EZpanso-arm64.spec -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release_notes_temp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/release_notes_temp.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/analyze_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/scripts/analyze_build.py -------------------------------------------------------------------------------- /scripts/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/scripts/cleanup.py -------------------------------------------------------------------------------- /scripts/demo_comment_preservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/scripts/demo_comment_preservation.py -------------------------------------------------------------------------------- /scripts/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/scripts/entitlements.plist -------------------------------------------------------------------------------- /styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/styles.py -------------------------------------------------------------------------------- /temp_release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/temp_release_notes.md -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/README_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/README_test.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/bug_fixes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/bug_fixes_test.py -------------------------------------------------------------------------------- /tests/build_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/build_test.py -------------------------------------------------------------------------------- /tests/cleanup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/core_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/core_tests.py -------------------------------------------------------------------------------- /tests/cross_platform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/cross_platform_test.py -------------------------------------------------------------------------------- /tests/debug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/debug/__init__.py -------------------------------------------------------------------------------- /tests/debug/escape_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/debug/escape_debug.py -------------------------------------------------------------------------------- /tests/debug/integration_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/debug/integration_debug.py -------------------------------------------------------------------------------- /tests/debug/yaml_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/debug/yaml_debug.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/ruamel_install_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/ruamel_install_test.py -------------------------------------------------------------------------------- /tests/save_refresh_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/save_refresh_test.py -------------------------------------------------------------------------------- /tests/yaml_handler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/yaml_handler_test.py -------------------------------------------------------------------------------- /tests/yaml_simple_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/tests/yaml_simple_test.py -------------------------------------------------------------------------------- /yaml_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luklongman/EZpanso/HEAD/yaml_handler.py --------------------------------------------------------------------------------