Skip to content

Commit 2d5e0be

Browse files
committed
Version 0.9.0
1 parent 6617d49 commit 2d5e0be

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+133
-71
lines changed

ChangeLog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-05-18 Markus Gans <[email protected]>
2+
* Version 0.9.0
3+
14
2023-04-15 Markus Gans <[email protected]>
25
* Terminal focus-in and focus-out events can be disabled with
36
the --no-terminal-focus-events parameter
@@ -235,7 +238,7 @@
235238
* Move the border label methods from FButtonGroup to FScrollView
236239

237240
2021-12-13 Markus Gans <[email protected]>
238-
* Faster string comparison between FString, char* std::string,
241+
* Faster string comparison between FString, char*, std::string,
239242
wchar_t and std:wstring
240243

241244
2021-12-11 Markus Gans <[email protected]>

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.8.1])
7+
AC_INIT([finalcut], [0.9.0])
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, ["8:1:8"])
78+
AC_SUBST(SO_VERSION, ["9:0: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.8.1"
6+
VERSION = "0.9.0"
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.8.1"
6+
VERSION = "0.9.0"
77
MAJOR := $(shell echo ${VERSION} | cut -d. -f1)
88
LIBDIR = /usr/local/lib
99
INCLUDEDIR1 = .

final/dialog/fdialog.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
***********************************************************************/
2222

2323
#include <memory>
24+
#include <utility>
2425

2526
#include "final/dialog/fdialog.h"
2627
#include "final/fapplication.h"
@@ -776,7 +777,7 @@ void FDialog::init()
776777
ignorePadding();
777778
setDialogWidget();
778779
// Initialize geometry values
779-
setGeometry (FPoint{1, 1}, FSize{10, 10}, false);
780+
FWindow::setGeometry (FPoint{1, 1}, FSize{10, 10}, false);
780781
setMinimumSize (FSize{15, 4});
781782
mapKeyFunctions();
782783
addDialog(this);

final/dialog/ffiledialog.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* *
44
* This file is part of the FINAL CUT widget toolkit *
55
* *
6-
* Copyright 2014-2022 Markus Gans *
6+
* Copyright 2014-2023 Markus Gans *
77
* *
88
* FINAL CUT is free software; you can redistribute it and/or modify *
99
* it under the terms of the GNU Lesser General Public License as *
@@ -21,6 +21,7 @@
2121
***********************************************************************/
2222

2323
#include <array>
24+
#include <utility>
2425
#include <vector>
2526

2627
#if defined(__CYGWIN__)
@@ -278,7 +279,7 @@ void FFileDialog::init()
278279
int x{};
279280
int y{};
280281

281-
setGeometry(FPoint{1, 1}, FSize{w, h}, false);
282+
FWindow::setGeometry(FPoint{1, 1}, FSize{w, h}, false);
282283
const auto& parent_widget = getParentWidget();
283284

284285
if ( parent_widget )

final/dialog/fmessagebox.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* *
44
* This file is part of the FINAL CUT widget toolkit *
55
* *
6-
* Copyright 2014-2022 Markus Gans *
6+
* Copyright 2014-2023 Markus Gans *
77
* *
88
* FINAL CUT is free software; you can redistribute it and/or modify *
99
* it under the terms of the GNU Lesser General Public License as *
@@ -57,10 +57,10 @@
5757
#error "Only <final/final.h> can be included directly."
5858
#endif
5959

60-
#include <cstring>
61-
6260
#include <array>
61+
#include <cstring>
6362
#include <memory>
63+
#include <utility>
6464

6565
#include "final/dialog/fdialog.h"
6666
#include "final/fwidgetcolors.h"

final/fapplication.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,10 +1327,9 @@ auto FApplication::processNextEvent() -> bool
13271327
flush();
13281328
processLogger();
13291329
}
1330-
else
1330+
else if ( isKeyPressed(next_event_wait) )
13311331
{
1332-
if ( isKeyPressed(next_event_wait) )
1333-
time_last_event = TimeValue{};
1332+
time_last_event = TimeValue{};
13341333
}
13351334

13361335
processExternalUserEvent();

final/fconfig.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193

194194
/* Define to the full name and version of this package. */
195195
#ifndef F_PACKAGE_STRING
196-
#define F_PACKAGE_STRING "finalcut 0.8.1"
196+
#define F_PACKAGE_STRING "finalcut 0.9.0"
197197
#endif
198198

199199
/* Define to the one symbol short name of this package. */
@@ -208,7 +208,7 @@
208208

209209
/* Define to the version of this package. */
210210
#ifndef F_PACKAGE_VERSION
211-
#define F_PACKAGE_VERSION "0.8.1"
211+
#define F_PACKAGE_VERSION "0.9.0"
212212
#endif
213213

214214
/* Define to 1 if you have the ANSI C header files. */
@@ -240,7 +240,7 @@
240240

241241
/* Version number of package */
242242
#ifndef F_VERSION
243-
#define F_VERSION "0.8.1"
243+
#define F_VERSION "0.9.0"
244244
#endif
245245

246246
/* Define to 1 if on MINIX. */

final/fstartoptions.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* <http://www.gnu.org/licenses/>. *
2121
***********************************************************************/
2222

23+
#include <memory>
24+
2325
#include "final/fapplication.h"
2426
#include "final/fstartoptions.h"
2527
#include "final/util/flog.h"

0 commit comments

Comments
 (0)