Skip to content

Commit

Permalink
Version 0.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
valadaptive committed Apr 19, 2024
1 parent 2bf3c14 commit dcefeb5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions ae-plugin/calc-version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import sys

version = sys.argv[1]
version = [int(v) for v in version.split('.')]
if len(version) != 3:
print('Invalid version format')
sys.exit(1)
pipl_version = (version[0] << 19) | (version[1] << 15) | (version[2] << 11) | (3 << 9) | 1
print(pipl_version)
2 changes: 1 addition & 1 deletion ae-plugin/ntscrs-ae-PiPL.r
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ resource 'PiPL' (16000) {
},
/* [8] */
AE_Effect_Version {
624129
626177
},
/* [9] */
AE_Effect_Info_Flags {
Expand Down
2 changes: 1 addition & 1 deletion ae-plugin/ntscrs-ae.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
// BUILD_VERSION
#define MAJOR_VERSION 1
#define MINOR_VERSION 3
#define BUG_VERSION 0
#define BUG_VERSION 1
#define STAGE_VERSION PF_Stage_RELEASE
#define BUILD_VERSION 1

Expand Down
2 changes: 1 addition & 1 deletion crates/gui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gui"
version = "0.5.8"
version = "0.5.9"
edition = "2021"
default-run = "ntsc-rs-standalone"
license = "GPL-2.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion crates/openfx-plugin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1605,7 +1605,7 @@ pub extern "C" fn OfxGetPlugin(nth: c_int) -> *const OfxPlugin {
apiVersion: 1,
pluginIdentifier: static_cstr!("wtf.vala:NtscRs").as_ptr(),
pluginVersionMajor: 1,
pluginVersionMinor: 3,
pluginVersionMinor: 4,
setHost: Some(set_host_info),
mainEntry: Some(main_entry),
}
Expand Down

0 comments on commit dcefeb5

Please sign in to comment.