Skip to content

Commit

Permalink
v0.6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chchwy committed Apr 16, 2018
2 parents a3ced78 + 10bf64e commit a2b5cdd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 3 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## Pencil2D 0.6.1 - (WIP)
## Pencil2D 0.6.2 - (WIP)

## Pencil2D 0.6.1 - 15 April 2018

* #821 Brand new tool icons.
* #849 Allowing nested dock panels.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@

## Download ###

### Pencil2D 0.6 (1 December 2017)
### Pencil2D 0.6.1 (15 April 2018)

[What's new?](https://www.pencil2d.org/2017/12/introducing-pencil2d-0.6.html)

| Windows 64 bit | Windows 32 bit | Mac | Linux |
| :--------------: | :---------------: | :-------------: | :---------------: |
| [Download][0] | [Download][1] | [Download][2] | [Download][3] |

[0]: https://github.com/pencil2d/pencil/releases/download/0.6.0/pencil2d-win64-0.6.0-ffmpeg341.zip
[1]: https://github.com/pencil2d/pencil/releases/download/0.6.0/pencil2d-win32-0.6.0.zip
[2]: https://github.com/pencil2d/pencil/releases/download/0.6.0/pencil2d-mac-0.6.0.zip
[3]: https://github.com/pencil2d/pencil/releases/download/0.6.0/pencil2d-linux-amd64-0.6.0.AppImage
[0]: https://github.com/pencil2d/pencil/releases/download/v0.6.1/pencil2d-win64-0.6.1.zip
[1]: https://github.com/pencil2d/pencil/releases/download/v0.6.1/pencil2d-win32-0.6.1.zip
[2]: https://github.com/pencil2d/pencil/releases/download/v0.6.1/pencil2d-mac-0.6.1.zip
[3]: https://github.com/pencil2d/pencil/releases/download/v0.6.1/pencil2d-linux-amd64-0.6.1.AppImage

### Debian & Ubuntu

Expand Down
2 changes: 1 addition & 1 deletion app/app.pro
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ linux {
desktopentry.path = $${PREFIX}/share/applications

icon.files = data/pencil2d.png
icon.path = $${PREFIX}/share/icons/hicolor/128x128/apps
icon.path = $${PREFIX}/share/icons/hicolor/256x256/apps

INSTALLS += target mimepackage desktopentry icon
}
Expand Down
2 changes: 1 addition & 1 deletion common.pri
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

VERSION = 0.6.1
VERSION = 0.6.1.1
DEFINES += APP_VERSION=\\\"$$VERSION\\\"

NIGHTLY {
Expand Down
2 changes: 2 additions & 0 deletions core_lib/src/graphics/bitmap/bitmapimage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ GNU General Public License for more details.
BitmapImage::BitmapImage()
{
mImage = std::make_shared<QImage>(1, 1, QImage::Format_ARGB32_Premultiplied); // don't create null image
mImage->fill(QColor(0,0,0,0));
mBounds = QRect(0, 0, 1, 1);
}

Expand Down Expand Up @@ -485,6 +486,7 @@ void BitmapImage::clear()
{
mImage = std::make_shared<QImage>(1, 1, QImage::Format_ARGB32_Premultiplied); // null image
mBounds = QRect(0, 0, 1, 1);
mImage->fill(QColor(0,0,0,0));
modification();
}

Expand Down

0 comments on commit a2b5cdd

Please sign in to comment.