Skip to content

Commit 5d01b55

Browse files
committed
Add version 3.0.5
1 parent bcb3922 commit 5d01b55

8 files changed

Lines changed: 22 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: actions/upload-artifact@v4
6767
with:
6868
name: Pinta-linux-dotnet-${{matrix.dotnet_version}}.zip
69-
path: pinta-3.0.4.zip
69+
path: pinta-3.0.5.zip
7070
if-no-files-found: error
7171

7272
build-macos-x86_64:

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Thanks to the following contributors who worked on this release:
1212

1313
### Fixed
1414

15+
## [3.0.5](https://github.com/PintaProject/Pinta/release/tag/3.0.5) - 2025/11/24
16+
17+
### Fixed
18+
- Fixed several icons which did not display properly with GNOME 49 (#1812, #1814)
19+
1520
## [3.0.4](https://github.com/PintaProject/Pinta/release/tag/3.0.4) - 2025/10/05
1621

1722
### Fixed

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<Nullable>enable</Nullable>
66

77
<!-- Versioning and assembly info -->
8-
<Version>3.0.4.0</Version>
8+
<Version>3.0.5.0</Version>
99
<!-- User-facing version number, used for the version command line argument -->
10-
<InformationalVersion>3.0.4</InformationalVersion>
10+
<InformationalVersion>3.0.5</InformationalVersion>
1111
<Authors>PintaProject</Authors>
1212
<Company />
1313
<Product />

Pinta.Core/PintaCore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static class PintaCore
4545
public static WorkspaceManager Workspace { get; }
4646
public static CanvasGridManager CanvasGrid { get; }
4747

48-
public const string ApplicationVersion = "3.0.4";
48+
public const string ApplicationVersion = "3.0.5";
4949
/// <summary>
5050
/// The oldest version of Pinta for which add-ins built against it will still
5151
/// run in the current version.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
AC_INIT([pinta], [3.0.4])
2+
AC_INIT([pinta], [3.0.5])
33
AM_INIT_AUTOMAKE([tar-ustar foreign])
44

55
AC_PROG_INSTALL

installer/macos/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@
128128
<key>CFBundlePackageType</key>
129129
<string>APPL</string>
130130
<key>CFBundleShortVersionString</key>
131-
<string>3.0.4</string>
131+
<string>3.0.5</string>
132132
<key>CFBundleSignature</key>
133133
<string>xmmd</string>
134134
<key>CFBundleVersion</key>
135-
<string>3.0.4</string>
135+
<string>3.0.5</string>
136136
<key>NSAppleScriptEnabled</key>
137137
<string>NO</string>
138138
<key>UTImportedTypeDeclarations</key>

installer/windows/installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define ProductName "Pinta"
2-
#define ProductVersion "3.0.4"
2+
#define ProductVersion "3.0.5"
33

44
[Setup]
55
; Adds option to skip creating start menu entries

xdg/pinta.appdata.xml.in

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,15 @@
3838
<binary>pinta</binary>
3939
</provides>
4040
<releases>
41+
<release version="3.0.5" date="2025-11-24">
42+
<url>https://github.com/PintaProject/Pinta/releases/tag/3.0.5</url>
43+
<description>
44+
<p>Bug Fixes</p>
45+
<ul>
46+
<li>Fixed several icons which did not display properly with GNOME 49 (#1812, #1814)</li>
47+
</ul>
48+
</description>
49+
</release>
4150
<release version="3.0.4" date="2025-10-05">
4251
<url>https://github.com/PintaProject/Pinta/releases/tag/3.0.4</url>
4352
<description>

0 commit comments

Comments
 (0)