SLADE: update to 3.2.7.

This commit is contained in:
John 2025-03-09 14:17:37 +01:00
parent ee909c6ad3
commit 7bec0b00e0
2 changed files with 6 additions and 6 deletions

View File

@ -6,10 +6,10 @@
ColRGBA() = default; ColRGBA() = default;
- ColRGBA(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 255, char blend = -1, short index = -1) : - ColRGBA(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 255, char blend = -1, short index = -1) :
+ ColRGBA(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 255, signed char blend = -1, short index = -1) : + ColRGBA(uint8_t r, uint8_t g, uint8_t b, uint8_t a = 255, signed char blend = -1, short index = -1) :
r{ r }, g{ g }, b{ b }, a{ a }, index{ index } r{ r },
{ g{ g },
} b{ b },
@@ -21,7 +21,7 @@ @@ -25,7 +25,7 @@
explicit ColRGBA(const wxColour& c) : r{ c.Red() }, g{ c.Green() }, b{ c.Blue() }, a{ c.Alpha() } {} explicit ColRGBA(const wxColour& c) : r{ c.Red() }, g{ c.Green() }, b{ c.Blue() }, a{ c.Alpha() } {}
// Functions // Functions

View File

@ -1,6 +1,6 @@
# Template file for 'SLADE' # Template file for 'SLADE'
pkgname=SLADE pkgname=SLADE
version=3.2.6 version=3.2.7
revision=1 revision=1
build_style=cmake build_style=cmake
build_helper=cmake-wxWidgets-gtk3 build_helper=cmake-wxWidgets-gtk3
@ -14,6 +14,6 @@ license="GPL-2.0-or-later"
homepage="https://github.com/sirjuddington/SLADE" homepage="https://github.com/sirjuddington/SLADE"
changelog="https://github.com/sirjuddington/SLADE/releases/tag/${version}" changelog="https://github.com/sirjuddington/SLADE/releases/tag/${version}"
distfiles="https://github.com/sirjuddington/SLADE/archive/${version}.tar.gz" distfiles="https://github.com/sirjuddington/SLADE/archive/${version}.tar.gz"
checksum=0412de60517f4301881b048aee271bd45bacc1374b1955284647e9bd6732d2ff checksum=842aa562dc0aa39627866babe0ea3bb033aac3a2be2c2aaa71d8be3664f617ad
CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" CXXFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"