Skip to content

Commit c90fb9b

Browse files
authored
Merge pull request #170 from OpenShot/release
Bumping version to 0.2.2 (SO: still 16)
2 parents 6c4c9cc + 082f9aa commit c90fb9b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

include/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
#define OPENSHOT_VERSION_MAJOR 0; /// Major version number is incremented when huge features are added or improved.
3838
#define OPENSHOT_VERSION_MINOR 2; /// Minor version is incremented when smaller (but still very important) improvements are added.
39-
#define OPENSHOT_VERSION_BUILD 1; /// Build number is incremented when minor bug fixes and less important improvements are added.
39+
#define OPENSHOT_VERSION_BUILD 2; /// Build number is incremented when minor bug fixes and less important improvements are added.
4040
#define OPENSHOT_VERSION_SO 16; /// Shared object version number. This increments any time the API and ABI changes (so old apps will no longer link)
4141
#define OPENSHOT_VERSION_MAJOR_MINOR STRINGIZE(OPENSHOT_VERSION_MAJOR) "." STRINGIZE(OPENSHOT_VERSION_MINOR); /// A string of the "Major.Minor" version
4242
#define OPENSHOT_VERSION_ALL STRINGIZE(OPENSHOT_VERSION_MAJOR) "." STRINGIZE(OPENSHOT_VERSION_MINOR) "." STRINGIZE(OPENSHOT_VERSION_BUILD); /// A string of the entire version "Major.Minor.Build"

src/Timeline.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ void Timeline::add_layer(std::shared_ptr<Frame> new_frame, Clip* source_clip, in
281281
/* Apply effects to the source frame (if any). If multiple clips are overlapping, only process the
282282
* effects on the top clip. */
283283
if (is_top_clip && source_frame)
284+
#pragma omp critical (T_addLayer)
284285
source_frame = apply_effects(source_frame, timeline_frame_number, source_clip->Layer());
285286

286287
// Declare an image to hold the source frame's image

0 commit comments

Comments
 (0)