From 422ff627e7fbaa8f012f6f07775433c209c45fe9 Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Wed, 4 Jul 2018 22:20:58 +0200 Subject: [PATCH 1/2] Disable PDF printer that was enabled for debugging purposes --- photobooth/gui/GuiPostprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photobooth/gui/GuiPostprocess.py b/photobooth/gui/GuiPostprocess.py index f3e44bd..e6409b2 100644 --- a/photobooth/gui/GuiPostprocess.py +++ b/photobooth/gui/GuiPostprocess.py @@ -46,7 +46,7 @@ class PrintPostprocess(GuiPostprocess): super().__init__(**kwargs) Printer = lookup_and_import(printer.modules, printer_module, 'printer') - self._printer = Printer(page_size, True) + self._printer = Printer(page_size) def get(self, picture): From 2ba7682ff1b17702c8ddcc80a3b554caf227a911 Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Thu, 5 Jul 2018 14:05:19 +0200 Subject: [PATCH 2/2] Theming support mentioned and donate button added --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index b28358e..4446ca5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,11 @@ # photobooth + +[![Buy me a coffee](https://www.buymeacoffee.com/assets/img/custom_images/black_img.png)](https://www.buymeacoffee.com/reuterbal) + A flexible Photobooth software. +It supports many different camera models, the appearance can be adapted to your likings, and it runs on many different hardware setups. + ## Description This is a Python application to build your own photobooth. @@ -10,6 +15,7 @@ This is a Python application to build your own photobooth. * Printing of captured pictures * Highly customizable via settings menu inside the graphical user interface * Support for external buttons and lamps via GPIO interface +* Theming support using [Qt stylesheets](https://doc.qt.io/qt-5/stylesheet-syntax.html) ### Technical specifications * Many camera models supported, thanks to interfaces to [gPhoto2](http://www.gphoto.org/), [OpenCV](https://opencv.org/), [Raspberry Pi camera module](https://projects.raspberrypi.org/en/projects/getting-started-with-picamera) @@ -48,5 +54,8 @@ Please submit them via the [Issue tracker](https://github.com/reuterbal/photoboo I am also happy to hear any success stories! Feel free to [submit them here](https://github.com/reuterbal/photobooth/issues/new?template=success-story.md) +If you find this application useful, please consider [buying me a coffee](https://www.buymeacoffee.com/reuterbal). + + ## License I provide this code under AGPL v3. See [LICENSE](https://github.com/reuterbal/photobooth/blob/master/LICENSE.txt).