File tree Expand file tree Collapse file tree 8 files changed +16
-12
lines changed Expand file tree Collapse file tree 8 files changed +16
-12
lines changed Original file line number Diff line number Diff line change
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
+
1
5
2023-05-18 Markus Gans <guru.mail@muenster.de>
2
6
* Version 0.9.0
3
7
Original file line number Diff line number Diff line change 4
4
5
5
# Process this file with autoconf to produce a configure script.
6
6
7
- AC_INIT ( [ finalcut] , [ 0.9.0 ] )
7
+ AC_INIT ( [ finalcut] , [ 0.9.1 ] )
8
8
AC_CONFIG_HEADERS ( [ config.h] )
9
9
AX_PREFIX_CONFIG_H ( [ final/fconfig.h] , [ F] )
10
10
AC_CONFIG_SRCDIR ( [ final/fobject.cpp] )
@@ -75,7 +75,7 @@ LT_OUTPUT
75
75
# ## This defines the version number of the installed .so files
76
76
# ## Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
77
77
# ## using libtool's versioning system.
78
- AC_SUBST ( SO_VERSION , [ "9:0 :9"] )
78
+ AC_SUBST ( SO_VERSION , [ "9:1 :9"] )
79
79
80
80
AC_SUBST ( [ LIBTOOL_DEPS] )
81
81
Original file line number Diff line number Diff line change 3
3
#-----------------------------------------------------------------------------
4
4
5
5
# This is where make install will install the library
6
- VERSION = "0.9.0 "
6
+ VERSION = "0.9.1 "
7
7
MAJOR := $(shell echo ${VERSION} | cut -d. -f1)
8
8
LIBDIR = /usr/local/lib
9
9
INCLUDEDIR1 = .
Original file line number Diff line number Diff line change 3
3
#-----------------------------------------------------------------------------
4
4
5
5
# This is where make install will install the library
6
- VERSION = "0.9.0 "
6
+ VERSION = "0.9.1 "
7
7
MAJOR := $(shell echo ${VERSION} | cut -d. -f1)
8
8
LIBDIR = /usr/local/lib
9
9
INCLUDEDIR1 = .
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ class FOutput : public std::enable_shared_from_this<FOutput>
127
127
virtual auto getFSetPaletteRef () const & -> const FSetPalette& = 0;
128
128
129
129
// Methods
130
- virtual auto isDefaultPaletteTheme () -> bool = 0;
130
+ virtual auto isDefaultPaletteTheme () const -> bool = 0;
131
131
virtual void redefineColorPalette () = 0;
132
132
virtual void restoreColorPalette () = 0;
133
133
Original file line number Diff line number Diff line change @@ -509,18 +509,18 @@ inline auto FTermOutput::isInputCursorInsideTerminal() const -> bool
509
509
}
510
510
511
511
// ----------------------------------------------------------------------
512
- inline auto FTermOutput::isDefaultPaletteTheme () -> bool
512
+ inline auto FTermOutput::isDefaultPaletteTheme () const -> bool
513
513
{
514
- FStringList default_themes
514
+ const FStringList default_themes
515
515
{
516
516
" default8ColorPalette" ,
517
517
" default16ColorPalette" ,
518
518
" default16DarkColorPalette"
519
519
};
520
520
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 () );
524
524
return iter != default_themes.cend (); // Default theme found
525
525
}
526
526
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ class FTermOutput final : public FOutput
171
171
// Methods
172
172
auto getStartOptions () & -> FStartOptions&;
173
173
auto isInputCursorInsideTerminal () const -> bool;
174
- auto isDefaultPaletteTheme () -> bool override ;
174
+ auto isDefaultPaletteTheme () const -> bool override ;
175
175
void redefineColorPalette () override ;
176
176
void restoreColorPalette () override ;
177
177
void init_characterLengths ();
Original file line number Diff line number Diff line change 1
1
sonar.organization =gansm
2
2
sonar.projectKey =gansm_finalcut
3
3
sonar.projectName =finalcut
4
- sonar.projectVersion =0.9.0
4
+ sonar.projectVersion =0.9.1
5
5
sonar.projectDescription =A text-based widget toolkit
6
6
7
7
# ----------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments