├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── pre-commit-update.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cookiecutter.json └── {{ cookiecutter.format }} ├── Dockerfile ├── briefcase.toml └── {{ cookiecutter.formal_name }}.AppDir ├── usr ├── app │ └── README ├── app_packages │ └── README ├── bin │ └── {{ cookiecutter.bundle }}.{{ cookiecutter.app_name }} └── share │ └── icons │ └── hicolor │ ├── 128x128 │ └── apps │ │ └── {{ cookiecutter.bundle_identifier }}.png │ ├── 16x16 │ └── apps │ │ └── {{ cookiecutter.bundle_identifier }}.png │ ├── 256x256 │ └── apps │ │ └── {{ cookiecutter.bundle_identifier }}.png │ ├── 32x32 │ └── apps │ │ └── {{ cookiecutter.bundle_identifier }}.png │ ├── 512x512 │ └── apps │ │ └── {{ cookiecutter.bundle_identifier }}.png │ └── 64x64 │ └── apps │ └── {{ cookiecutter.bundle_identifier }}.png └── {{ cookiecutter.bundle_identifier }}.desktop /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/.github/workflows/pre-commit-update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .python-version 3 | .vscode 4 | .idea 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/Dockerfile -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/briefcase.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/briefcase.toml -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/app/README -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/app_packages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/app_packages/README -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/bin/{{ cookiecutter.bundle }}.{{ cookiecutter.app_name }}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/bin/{{ cookiecutter.bundle }}.{{ cookiecutter.app_name }} -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/128x128/apps/{{ cookiecutter.bundle_identifier }}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/128x128/apps/{{ cookiecutter.bundle_identifier }}.png -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/16x16/apps/{{ cookiecutter.bundle_identifier }}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/16x16/apps/{{ cookiecutter.bundle_identifier }}.png -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/256x256/apps/{{ cookiecutter.bundle_identifier }}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/256x256/apps/{{ cookiecutter.bundle_identifier }}.png -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/32x32/apps/{{ cookiecutter.bundle_identifier }}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/32x32/apps/{{ cookiecutter.bundle_identifier }}.png -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/512x512/apps/{{ cookiecutter.bundle_identifier }}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/512x512/apps/{{ cookiecutter.bundle_identifier }}.png -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/64x64/apps/{{ cookiecutter.bundle_identifier }}.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/usr/share/icons/hicolor/64x64/apps/{{ cookiecutter.bundle_identifier }}.png -------------------------------------------------------------------------------- /{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/{{ cookiecutter.bundle_identifier }}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beeware/briefcase-linux-appimage-template/HEAD/{{ cookiecutter.format }}/{{ cookiecutter.formal_name }}.AppDir/{{ cookiecutter.bundle_identifier }}.desktop --------------------------------------------------------------------------------