From b7edd8a2238cf438dfbf0ba7eac1e0672cfcb947 Mon Sep 17 00:00:00 2001 From: ArsenArsen Date: Sat, 19 Aug 2017 00:29:08 +0200 Subject: [PATCH] Full screen fix, some site edits and fixes --- cropeditor/cropscene.cpp | 4 +--- docs/README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/cropeditor/cropscene.cpp b/cropeditor/cropscene.cpp index 6125ebe..f24aa40 100644 --- a/cropeditor/cropscene.cpp +++ b/cropeditor/cropscene.cpp @@ -61,7 +61,7 @@ CropScene::CropScene(QObject *parent, QPixmap pixmap) } }); - addDrawingAction(menu, tr("Crop"), ":/icons/crop.png", [] { return nullptr; }); + addDrawingAction(menu, tr("None"), ":/icons/crop.png", [] { return nullptr; }); menu->addSeparator(); QAction *settings = menu->addAction(""); @@ -217,8 +217,6 @@ void CropScene::setVisible(bool visible) { view->setVisible(visible); if (visible) { if (QApplication::screens().size() == 1) view->showFullScreen(); - view->resize(_pixmap.width(), _pixmap.height()); - view->setMinimumSize(_pixmap.size()); QPoint p = screenshotutil::smallestScreenCoordinate() + QPoint(settings::settings().value("cropx", 0).toInt(), settings::settings().value("cropy", 0).toInt()); view->move(p.x(), p.y()); diff --git a/docs/README.md b/docs/README.md index 2980699..c39b6ce 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,5 @@ # **KShare** ## The free open source and cross platform screen sharing software -###### Inspired by [ShareX](https://getsharex.com) KShare is a screenshotting utility built using Qt and written in C++. It has many features, including: @@ -17,28 +16,29 @@ It has many features, including: * Custom upload destinations ## Enough talking, show us how it looks -The main window is rather simple, with only a log, and a button in it: +The main window is rather simple, with only a log, and a button in it: ![image1](http://i.imgur.com/QOebwEM.png) -The settings have quite a bit more going on: +The settings have quite a bit more going on: ![image2](http://i.imgur.com/kZzQzGr.png) -The area selection editor is simple: +The area selection editor is simple: ![image3](http://i.imgur.com/kyWZk3p.jpg) -And the color picker is the simplest thing ever: +And the color picker is the simplest thing ever: ![image4](http://i.imgur.com/VIeGbdQ.jpg) -The way you select the area to record is by resizing this simple widget: +The way you select the area to record is by resizing this simple widget: ![image5](http://i.imgur.com/0iXFHnm.png) -And when you start recording there is a simple preview shown: +And when you start recording there is a simple preview shown: ![image6](http://i.imgur.com/6fu33TR.png) ## Download Currently, the only good download I provide is for Arch Linux and Ubuntu 17.04 The Arch download is on the AUR as `kshare` and `kshare-git`, -and the Ubuntu build is a .deb found on my CI: [kshare.deb](https://nativeci.arsenarsen.com/job/KShare/73/artifact/packages/simpleName.deb) +The OS X and Debian/Ubuntu builds can be found here: [CI](https://nativeci.arsenarsen.com/job/KShare%20(master\)) +There is a windows build on [AppVeyor]() ## Wait.. how do I actually use this?