├── .gitignore ├── LICENSE ├── MainWindow.py ├── README.md ├── Start.bat ├── Worker.py ├── WorkerSignals.py ├── icons ├── arrowleft.png ├── arrowright.png ├── blue-folder-open-image.png ├── border-weight.png ├── cake.png ├── disk.png ├── document-image.png ├── edit-bold.png ├── edit-italic.png ├── edit-underline.png ├── edit.png ├── eraser.png ├── layer-shape-ellipse.png ├── layer-shape-line.png ├── layer-shape-polygon.png ├── layer-shape-polyline.png ├── layer-shape-round.png ├── layer-shape.png ├── magnifier-zoom.png ├── paint-brush.png ├── paint-can-color.png ├── paint-can.png ├── pencil.png ├── piecasso.ico ├── piecasso.png ├── pipette.png ├── printer.png ├── selection-poly.png ├── selection.png ├── spray.png ├── stamp.png ├── symmetry.png └── unstable_journey_logo.ico ├── mainwindow.ui ├── requirements.txt ├── resources.qrc ├── resources_rc.py ├── showcase.png ├── stamps ├── .DS_Store ├── pie-apple.png ├── pie-cherry.png ├── pie-cherry2.png ├── pie-lemon.png ├── pie-moon.png ├── pie-pork.png ├── pie-pumpkin.png ├── pie-walnut.png └── unstable_journey_logo.ico ├── unstable_journey.py └── unstable_journey_logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/LICENSE -------------------------------------------------------------------------------- /MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/MainWindow.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/README.md -------------------------------------------------------------------------------- /Start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/Start.bat -------------------------------------------------------------------------------- /Worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/Worker.py -------------------------------------------------------------------------------- /WorkerSignals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/WorkerSignals.py -------------------------------------------------------------------------------- /icons/arrowleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/arrowleft.png -------------------------------------------------------------------------------- /icons/arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/arrowright.png -------------------------------------------------------------------------------- /icons/blue-folder-open-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/blue-folder-open-image.png -------------------------------------------------------------------------------- /icons/border-weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/border-weight.png -------------------------------------------------------------------------------- /icons/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/cake.png -------------------------------------------------------------------------------- /icons/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/disk.png -------------------------------------------------------------------------------- /icons/document-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/document-image.png -------------------------------------------------------------------------------- /icons/edit-bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/edit-bold.png -------------------------------------------------------------------------------- /icons/edit-italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/edit-italic.png -------------------------------------------------------------------------------- /icons/edit-underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/edit-underline.png -------------------------------------------------------------------------------- /icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/edit.png -------------------------------------------------------------------------------- /icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/eraser.png -------------------------------------------------------------------------------- /icons/layer-shape-ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/layer-shape-ellipse.png -------------------------------------------------------------------------------- /icons/layer-shape-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/layer-shape-line.png -------------------------------------------------------------------------------- /icons/layer-shape-polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/layer-shape-polygon.png -------------------------------------------------------------------------------- /icons/layer-shape-polyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/layer-shape-polyline.png -------------------------------------------------------------------------------- /icons/layer-shape-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/layer-shape-round.png -------------------------------------------------------------------------------- /icons/layer-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/layer-shape.png -------------------------------------------------------------------------------- /icons/magnifier-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/magnifier-zoom.png -------------------------------------------------------------------------------- /icons/paint-brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/paint-brush.png -------------------------------------------------------------------------------- /icons/paint-can-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/paint-can-color.png -------------------------------------------------------------------------------- /icons/paint-can.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/paint-can.png -------------------------------------------------------------------------------- /icons/pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/pencil.png -------------------------------------------------------------------------------- /icons/piecasso.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/piecasso.ico -------------------------------------------------------------------------------- /icons/piecasso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/piecasso.png -------------------------------------------------------------------------------- /icons/pipette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/pipette.png -------------------------------------------------------------------------------- /icons/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/printer.png -------------------------------------------------------------------------------- /icons/selection-poly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/selection-poly.png -------------------------------------------------------------------------------- /icons/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/selection.png -------------------------------------------------------------------------------- /icons/spray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/spray.png -------------------------------------------------------------------------------- /icons/stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/stamp.png -------------------------------------------------------------------------------- /icons/symmetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/symmetry.png -------------------------------------------------------------------------------- /icons/unstable_journey_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/icons/unstable_journey_logo.ico -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/mainwindow.ui -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/resources_rc.py -------------------------------------------------------------------------------- /showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/showcase.png -------------------------------------------------------------------------------- /stamps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/.DS_Store -------------------------------------------------------------------------------- /stamps/pie-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/pie-apple.png -------------------------------------------------------------------------------- /stamps/pie-cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/pie-cherry.png -------------------------------------------------------------------------------- /stamps/pie-cherry2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/pie-cherry2.png -------------------------------------------------------------------------------- /stamps/pie-lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/pie-lemon.png -------------------------------------------------------------------------------- /stamps/pie-moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/pie-moon.png -------------------------------------------------------------------------------- /stamps/pie-pork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/pie-pork.png -------------------------------------------------------------------------------- /stamps/pie-pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/pie-pumpkin.png -------------------------------------------------------------------------------- /stamps/pie-walnut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/pie-walnut.png -------------------------------------------------------------------------------- /stamps/unstable_journey_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/stamps/unstable_journey_logo.ico -------------------------------------------------------------------------------- /unstable_journey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/unstable_journey.py -------------------------------------------------------------------------------- /unstable_journey_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rulyone/unstable_journey/HEAD/unstable_journey_logo.png --------------------------------------------------------------------------------