├── .gitignore ├── .pylintrc ├── .vscode └── settings.json ├── README.md ├── comepress.py ├── comepress.spec ├── dist └── res │ ├── checked.svg │ ├── folder.png │ ├── inbox_tray_3d.ico │ ├── logo.png │ └── unchecked.svg ├── requirements.txt └── res ├── checked.svg ├── comepress.ui ├── folder.png ├── inbox_tray_3d.ico ├── logo.png └── unchecked.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | extension-pkg-whitelist=PyQt5 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/README.md -------------------------------------------------------------------------------- /comepress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/comepress.py -------------------------------------------------------------------------------- /comepress.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/comepress.spec -------------------------------------------------------------------------------- /dist/res/checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/dist/res/checked.svg -------------------------------------------------------------------------------- /dist/res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/dist/res/folder.png -------------------------------------------------------------------------------- /dist/res/inbox_tray_3d.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/dist/res/inbox_tray_3d.ico -------------------------------------------------------------------------------- /dist/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/dist/res/logo.png -------------------------------------------------------------------------------- /dist/res/unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/dist/res/unchecked.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/res/checked.svg -------------------------------------------------------------------------------- /res/comepress.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/res/comepress.ui -------------------------------------------------------------------------------- /res/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/res/folder.png -------------------------------------------------------------------------------- /res/inbox_tray_3d.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/res/inbox_tray_3d.ico -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NayamAmarshe/comepress/HEAD/res/unchecked.svg --------------------------------------------------------------------------------