├── .bumpversion.cfg ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── app ├── _version.py └── menuping.py ├── doc ├── Universal-Python.md └── misc.md ├── images ├── screenshot0.png └── screenshot1.png ├── requirements.txt ├── resources ├── .gitignore ├── background.tiff ├── com.zejames.MenuPing-model.plist ├── entitlements.plist └── icon.icns ├── setup.cfg ├── setup.py └── utils ├── build.sh ├── create_img.sh └── sign.sh /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/README.md -------------------------------------------------------------------------------- /app/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.4.4' 2 | -------------------------------------------------------------------------------- /app/menuping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/app/menuping.py -------------------------------------------------------------------------------- /doc/Universal-Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/doc/Universal-Python.md -------------------------------------------------------------------------------- /doc/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/doc/misc.md -------------------------------------------------------------------------------- /images/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/images/screenshot0.png -------------------------------------------------------------------------------- /images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/images/screenshot1.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- 1 | com.zejames.MenuPing.plist 2 | -------------------------------------------------------------------------------- /resources/background.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/resources/background.tiff -------------------------------------------------------------------------------- /resources/com.zejames.MenuPing-model.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/resources/com.zejames.MenuPing-model.plist -------------------------------------------------------------------------------- /resources/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/resources/entitlements.plist -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/setup.py -------------------------------------------------------------------------------- /utils/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/utils/build.sh -------------------------------------------------------------------------------- /utils/create_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/utils/create_img.sh -------------------------------------------------------------------------------- /utils/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julienbordet/MenuPing/HEAD/utils/sign.sh --------------------------------------------------------------------------------