Skip to content

Commit 4dd5e6d

Browse files
committed
Version 0.9.1
1 parent f16d3b8 commit 4dd5e6d

File tree

8 files changed

+16
-12
lines changed

8 files changed

+16
-12
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-07-26 Markus Gans <guru.mail@muenster.de>
2+
* Version 0.9.1
3+
* Code fix to compile FINAL CUT with gcc 14
4+
15
2023-05-18 Markus Gans <guru.mail@muenster.de>
26
* Version 0.9.0
37

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Process this file with autoconf to produce a configure script.
66

7-
AC_INIT([finalcut], [0.9.0])
7+
AC_INIT([finalcut], [0.9.1])
88
AC_CONFIG_HEADERS([config.h])
99
AX_PREFIX_CONFIG_H([final/fconfig.h], [F])
1010
AC_CONFIG_SRCDIR([final/fobject.cpp])
@@ -75,7 +75,7 @@ LT_OUTPUT
7575
### This defines the version number of the installed .so files
7676
### Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
7777
### using libtool's versioning system.
78-
AC_SUBST(SO_VERSION, ["9:0:9"])
78+
AC_SUBST(SO_VERSION, ["9:1:9"])
7979

8080
AC_SUBST([LIBTOOL_DEPS])
8181

final/Makefile.clang

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#-----------------------------------------------------------------------------
44

55
# This is where make install will install the library
6-
VERSION = "0.9.0"
6+
VERSION = "0.9.1"
77
MAJOR := $(shell echo ${VERSION} | cut -d. -f1)
88
LIBDIR = /usr/local/lib
99
INCLUDEDIR1 = .

final/Makefile.gcc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#-----------------------------------------------------------------------------
44

55
# This is where make install will install the library
6-
VERSION = "0.9.0"
6+
VERSION = "0.9.1"
77
MAJOR := $(shell echo ${VERSION} | cut -d. -f1)
88
LIBDIR = /usr/local/lib
99
INCLUDEDIR1 = .

final/output/foutput.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class FOutput : public std::enable_shared_from_this<FOutput>
127127
virtual auto getFSetPaletteRef() const & -> const FSetPalette& = 0;
128128

129129
// Methods
130-
virtual auto isDefaultPaletteTheme() -> bool = 0;
130+
virtual auto isDefaultPaletteTheme() const -> bool = 0;
131131
virtual void redefineColorPalette() = 0;
132132
virtual void restoreColorPalette() = 0;
133133

final/output/tty/ftermoutput.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -509,18 +509,18 @@ inline auto FTermOutput::isInputCursorInsideTerminal() const -> bool
509509
}
510510

511511
//----------------------------------------------------------------------
512-
inline auto FTermOutput::isDefaultPaletteTheme() -> bool
512+
inline auto FTermOutput::isDefaultPaletteTheme() const -> bool
513513
{
514-
FStringList default_themes
514+
const FStringList default_themes
515515
{
516516
"default8ColorPalette",
517517
"default16ColorPalette",
518518
"default16DarkColorPalette"
519519
};
520520

521-
const auto& iter = std::find ( default_themes.cbegin()
522-
, default_themes.cend()
523-
, FColorPalette::getInstance()->getClassName() );
521+
const auto iter = std::find ( default_themes.cbegin()
522+
, default_themes.cend()
523+
, FColorPalette::getInstance()->getClassName() );
524524
return iter != default_themes.cend(); // Default theme found
525525
}
526526

final/output/tty/ftermoutput.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ class FTermOutput final : public FOutput
171171
// Methods
172172
auto getStartOptions() & -> FStartOptions&;
173173
auto isInputCursorInsideTerminal() const -> bool;
174-
auto isDefaultPaletteTheme() -> bool override;
174+
auto isDefaultPaletteTheme() const -> bool override;
175175
void redefineColorPalette() override;
176176
void restoreColorPalette() override;
177177
void init_characterLengths();

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sonar.organization=gansm
22
sonar.projectKey=gansm_finalcut
33
sonar.projectName=finalcut
4-
sonar.projectVersion=0.9.0
4+
sonar.projectVersion=0.9.1
55
sonar.projectDescription=A text-based widget toolkit
66

77
#----------------------------------------------------------------------

0 commit comments

Comments
 (0)