Skip to content

Commit 5a3d0bd

Browse files
committed
Updated versions and dates
1 parent 3292631 commit 5a3d0bd

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ else()
88
endif()
99
endif()
1010

11-
project (sfizz VERSION 1.2.0 LANGUAGES CXX C)
11+
project (sfizz VERSION 1.2.1 LANGUAGES CXX C)
1212
set (PROJECT_DESCRIPTION "A library to load SFZ description files and use them to render music.")
1313

1414
# External configuration CMake scripts

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 2-Clause License
22

3-
Copyright (c) 2021, sfizz contributors (detailed in AUTHORS.md)
3+
Copyright (c) 2021-2023, sfizz contributors (detailed in AUTHORS.md)
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

cmake/LV2Config.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ option(SFIZZ_LV2_PSA "Enable plugin-side MIDI automations" ON)
44
# Configuration for this plugin
55
# TODO: generate version from git
66
set(LV2PLUGIN_VERSION_MINOR 10)
7-
set(LV2PLUGIN_VERSION_MICRO 0)
7+
set(LV2PLUGIN_VERSION_MICRO 2)
88
set(LV2PLUGIN_NAME "sfizz")
99
set(LV2PLUGIN_COMMENT "SFZ sampler")
1010
set(LV2PLUGIN_URI "http://sfztools.github.io/sfizz")

plugins/editor/src/editor/DlgAbout.cpp

+11-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
#include "utility/vstgui_after.h"
1616

1717
#include <absl/strings/str_cat.h>
18-
18+
#if 0
19+
#include <absl/time/clock.h>
20+
#include <absl/time/time.h>
21+
#endif
1922
using namespace gui;
2023

2124
SAboutDialog::SAboutDialog(const CRect& bounds)
@@ -54,9 +57,15 @@ SAboutDialog::SAboutDialog(const CRect& bounds)
5457
versionBuf = absl::StrCat(SFIZZ_VERSION ".", GitBuildId);
5558
version = versionBuf.c_str();
5659
}
60+
#if 0
61+
absl::TimeZone utc = absl::UTCTimeZone();
62+
absl::Time time = absl::Now();
63+
absl::CivilYear date = absl::ToCivilYear(time, utc);
64+
// u8"Copyright 2019-", date.year(), u8" by SFZTools Team,\n"
65+
#endif
5766
lbl->setText(absl::StrCat(
5867
u8"Version ", version, u8"\n"
59-
u8"Copyright 2019-2021 by SFZTools Team,\n"
68+
u8"Copyright 2019-2023 by SFZTools Team,\n"
6069
u8"licensed under BSD 2-clause license."));
6170
return lbl;
6271
};

0 commit comments

Comments
 (0)