diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b22a23851..93e3349f77 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: Pinta-${{ matrix.platform }}.zip - path: pinta-2.0.zip + path: pinta-2.0.1.zip if-no-files-found: error build-macos: diff --git a/CHANGELOG.md b/CHANGELOG.md index e043c1237f..0f7cdf3895 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log All notable changes to this project (beginning with version 1.7) will be documented in this file. -## [Unreleased](https://github.com/PintaProject/Pinta/compare/2.0...HEAD) +## [Unreleased](https://github.com/PintaProject/Pinta/compare/2.0.1...HEAD) Thanks to the following contributors who worked on this release: - @cameronwhite @@ -9,14 +9,25 @@ Thanks to the following contributors who worked on this release: ### Added +### Changed + +### Fixed + +## [2.0.1](https://github.com/PintaProject/Pinta/releases/tag/2.0.1) - 2022/01/06 + +Thanks to the following contributors who worked on this release: +- @cameronwhite +- @jpobst + ### Changed - Some of the less frequently used items in the View menu (e.g. hiding the toolbar or status bar) are now grouped in their own submenu (#203) +- Updated translations ### Fixed +- Fixed a missing file (`installer/linux/install.proj`) from the release tarball that caused the `install` build step to fail - Fixed a bug where opening a large number of tabs could cause the window's width to expand ([#1956182](https://bugs.launchpad.net/pinta/+bug/1956182)) - Fixed a bug that could cause a border to appear around the image when zoomed in far enough to require scrolling - Fixed an issue where tool shortcuts could be affected by Num Lock being enabled ([#1093935](https://bugs.launchpad.net/pinta/+bug/1093935)) -- Fixed a missing file (`installer/linux/install.proj`) from the release tarball that caused the `install` build step to fail - Fixed an issue where the credits text in the About dialog was aligned incorrectly ([#1956168](https://bugs.launchpad.net/pinta/+bug/1956168)) ## [2.0](https://github.com/PintaProject/Pinta/releases/tag/2.0) - 2021/12/31 diff --git a/Pinta.Core/Pinta.Core.csproj b/Pinta.Core/Pinta.Core.csproj index 7b87b00f9e..d82979abf3 100644 --- a/Pinta.Core/Pinta.Core.csproj +++ b/Pinta.Core/Pinta.Core.csproj @@ -6,7 +6,7 @@ true enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Core/PintaCore.cs b/Pinta.Core/PintaCore.cs index ce95eb75c7..d68196da94 100644 --- a/Pinta.Core/PintaCore.cs +++ b/Pinta.Core/PintaCore.cs @@ -46,7 +46,7 @@ public static class PintaCore public static EffectsManager Effects { get; private set; } public static IServiceManager Services { get; } - public const string ApplicationVersion = "2.0"; + public const string ApplicationVersion = "2.0.1"; static PintaCore () { diff --git a/Pinta.Docking/Pinta.Docking.csproj b/Pinta.Docking/Pinta.Docking.csproj index 530e72c1d3..558f2d1abf 100644 --- a/Pinta.Docking/Pinta.Docking.csproj +++ b/Pinta.Docking/Pinta.Docking.csproj @@ -6,7 +6,7 @@ Pinta.Docking Pinta.Docking - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Effects/Pinta.Effects.csproj b/Pinta.Effects/Pinta.Effects.csproj index 900eae06a0..5b6b33543d 100644 --- a/Pinta.Effects/Pinta.Effects.csproj +++ b/Pinta.Effects/Pinta.Effects.csproj @@ -6,7 +6,7 @@ true enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj b/Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj index e2aa4dcacc..4bfc3a7002 100644 --- a/Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj +++ b/Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj @@ -6,7 +6,7 @@ true enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Resources/Pinta.Resources.csproj b/Pinta.Resources/Pinta.Resources.csproj index 6976fc5cce..233f874a6c 100644 --- a/Pinta.Resources/Pinta.Resources.csproj +++ b/Pinta.Resources/Pinta.Resources.csproj @@ -5,7 +5,7 @@ Pinta.Resources enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Tools/Pinta.Tools.csproj b/Pinta.Tools/Pinta.Tools.csproj index fb27992d30..96ab7c69c1 100644 --- a/Pinta.Tools/Pinta.Tools.csproj +++ b/Pinta.Tools/Pinta.Tools.csproj @@ -6,7 +6,7 @@ true enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta/Pinta.csproj b/Pinta/Pinta.csproj index d2d2b5a6cc..2889c3c058 100644 --- a/Pinta/Pinta.csproj +++ b/Pinta/Pinta.csproj @@ -10,7 +10,7 @@ ..\bin false - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/configure.ac b/configure.ac index 03e005761c..c3e244133a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([pinta], [2.0]) +AC_INIT([pinta], [2.0.1]) AM_INIT_AUTOMAKE([tar-ustar foreign]) AC_PROG_INSTALL diff --git a/installer/macos/Info.plist b/installer/macos/Info.plist index 560de7404e..cf03fec3c8 100644 --- a/installer/macos/Info.plist +++ b/installer/macos/Info.plist @@ -116,11 +116,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.0 + 2.0.1 CFBundleSignature xmmd CFBundleVersion - 2.0 + 2.0.1 NSAppleScriptEnabled NO UTImportedTypeDeclarations diff --git a/installer/windows/installer.iss b/installer/windows/installer.iss index e0d748be98..137dacbb1a 100644 --- a/installer/windows/installer.iss +++ b/installer/windows/installer.iss @@ -1,5 +1,5 @@ #define ProductName "Pinta" -#define ProductVersion "2.0" +#define ProductVersion "2.0.1" [Setup] AppId=C0BCDEDA-62E7-4A43-8435-58323E096912 diff --git a/tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj b/tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj index ccc14df464..f459b3811f 100644 --- a/tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj +++ b/tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj @@ -5,7 +5,7 @@ Pinta.Core.Tests false - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/xdg/pinta.appdata.xml.in b/xdg/pinta.appdata.xml.in index 78f9b67c59..39cffee2d9 100644 --- a/xdg/pinta.appdata.xml.in +++ b/xdg/pinta.appdata.xml.in @@ -38,6 +38,24 @@ pinta + + https://github.com/PintaProject/Pinta/releases/tag/2.0.1 + +

Changes

+
    +
  • Some of the less frequently used items in the View menu (e.g. hiding the toolbar or status bar) are now grouped in their own submenu (#203)
  • +
  • Updated translations
  • +
+

Bug Fixes

+
    +
  • Fixed a missing file (`installer/linux/install.proj`) from the release tarball that caused the `install` build step to fail
  • +
  • Fixed a bug where opening a large number of tabs could cause the window's width to expand (#1956182)
  • +
  • Fixed a bug that could cause a border to appear around the image when zoomed in far enough to require scrolling
  • +
  • Fixed an issue where tool shortcuts could be affected by Num Lock being enabled (#1093935)
  • +
  • Fixed an issue where the credits text in the About dialog was aligned incorrectly (#1956168)
  • +
+
+
https://github.com/PintaProject/Pinta/releases/tag/2.0