-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
474098b
commit ec700d8
Showing
22 changed files
with
234 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Lua Scripting | ||
|
||
An incredible powerful feature of Metaburner Pro is the ability to code your own Lua scripts. | ||
|
||
Simply use the **Lua** Content Source, then use the **Custom Field** to type your code. | ||
|
||
Anything you write to the `result` global variable will be displayed in Metaburner Pro. | ||
|
||
For example: | ||
|
||
![](/static/lua-scripting.png) | ||
|
||
You have access to the full FCPXML via the `fcpxmlData` global variable, which is stored as a `string`: | ||
|
||
![](/static/lua-fcpxml.png) | ||
|
||
You have access to Metaburner Pro's processed data via the `processedData` global variable, which is stored as a `table`: | ||
|
||
![](/static/lua-processed-data.png) | ||
|
||
You can manipulate this data any way you want. | ||
|
||
You can learn more about Lua Scripting on the [CommandPost website](https://commandpost.io/developer/lua-overview/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
label: Lua Scripting | ||
icon: terminal | ||
order: 7890 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,181 @@ | ||
# Release Notes | ||
|
||
During the **TestFlight** testing period, we'll be documenting any changes to the beta builds on the [How To Use page](/how-to-use/). | ||
### 1.0.0 (14) | ||
|
||
**🎉 Released:** | ||
- 24th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Cleaned up Project Logic. | ||
- Exposed `processedData` and `fcpxmlData` in Lua Environment. | ||
|
||
🐞 **Bug Fix:** | ||
- Fixed bug if text layer was disabled. | ||
|
||
--- | ||
|
||
### 1.0.0 (13) | ||
|
||
**🎉 Released:** | ||
- 24th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Added Filename Metadata for Inside Video Container. | ||
- Added Basic Lua Support. | ||
|
||
--- | ||
|
||
### 1.0.0 (12) | ||
|
||
**🎉 Released:** | ||
- 23rd December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Added **Primary Storyline - Inside Container - 1st Video Clip** and **Primary Storyline - Inside Container - 1st Audio Clip** Content Sources. | ||
- Added **Filename** and **Note** Content Fields. | ||
- Added **Project Note**. | ||
- Updated Motion Template. | ||
|
||
--- | ||
|
||
### 1.0.0 (11) | ||
|
||
**🎉 Released:** | ||
- 23rd December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Added full error message to tooltip. | ||
- Improved error messaging. | ||
|
||
--- | ||
|
||
### 1.0.0 (10) | ||
|
||
**🎉 Released:** | ||
- 21st December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Added a "Welcome" image when no FCPXML is loaded. | ||
- Removed all alerts/popups when importing a FCPXML. It now just updates the text in the Inspector. | ||
- Added "Import Project via FCPXML". | ||
- Added **Background Padding** & **Background Offset**. | ||
- Update Motion Template. | ||
|
||
🐞 **Bug Fix:** | ||
- We now ensure all text is over the top of the background. | ||
|
||
--- | ||
|
||
### 1.0.0 (9) | ||
|
||
**🎉 Released:** | ||
- 20th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Added internal tests. | ||
|
||
--- | ||
|
||
### 1.0.0 (8) | ||
|
||
**🎉 Released:** | ||
- 20th December 2023 | ||
|
||
🐞 **Bug Fix:** | ||
- Fixed Opacity Bugs. | ||
|
||
--- | ||
|
||
### 1.0.0 (7) | ||
|
||
**🎉 Released:** | ||
- 20th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Added Project Loaded Status. | ||
- Attempted to solve some UI glitches with dragging and dropping. Not sure I made it any better. | ||
- Tweaked error handling. | ||
- Updated Motion Template. | ||
|
||
--- | ||
|
||
### 1.0.0 (6) | ||
|
||
**🎉 Released:** | ||
- 19th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Disabled **Lane 1**, **Lane 2**, etc. from menu for now. | ||
- We now write "-" instead of "TBC". | ||
- We now write log files to disk. | ||
- We now display `-` when metadata fails. | ||
- Updated Motion Template. | ||
|
||
🐞 **Bug Fixes:** | ||
- Fixed **Project > Start Timecode** typo. | ||
- Added missing Text Layer. | ||
|
||
--- | ||
|
||
### 1.0.0 (5) | ||
|
||
**🎉 Released:** | ||
- 19th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Under-the-hood improvements to our FCPXML Processing Engine. | ||
- Added a "Cancel" button to the Progress Alert incase it stalls for some reason. | ||
- Hooked up **Project Duration**, **Timecode Format** and **Start Timecode**. | ||
- Added **Primary Storyline > HH:MM:SS:FF**. | ||
|
||
🐞 **Bug Fix:** | ||
- Fixed bug in Right Alignment. | ||
|
||
--- | ||
|
||
### 1.0.0 (4) | ||
|
||
**🎉 Released:** | ||
- 18th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Tweaked parameter defaults. | ||
- Started building the FCPXML Processing Engine. | ||
- Updated Motion Template. | ||
|
||
--- | ||
|
||
### 1.0.0 (3) | ||
|
||
**🎉 Released:** | ||
- 18th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- Added **Alignment**, **Background Colour**, **Background Opacity** and **All Caps**. | ||
- We now use an XY parameter for position. | ||
- Improved how we draw text. | ||
- Changed Default Font & Size. | ||
- Changed the internal ID numbering to avoid a weird Final Cut Pro bug with ID `300`. | ||
- Added ability to install the Motion Template from the Wrapper Application. | ||
- Updated Motion Template. | ||
|
||
--- | ||
|
||
### 1.0.0 (2) | ||
|
||
**🎉 Released:** | ||
- 17th December 2023 | ||
|
||
🔨 **Improvements:** | ||
- The FCPXML drop zone is now working. | ||
- Added placeholder **Preset** buttons. | ||
- Updated the Motion Template. | ||
|
||
--- | ||
|
||
<!-- | ||
### 1.0.0 (1) | ||
|
||
**🎉 Released:** | ||
- COMING SOON! | ||
- 16th December 2023 | ||
|
||
This is the first release of Metaburner Pro. Woohoo! | ||
--> | ||
This is the first release of Metaburner Pro Beta on TestFlight. Woohoo! |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ If you run into any bugs, crashes, or you have a feature request, you can post a | |
|
||
If you have any general questions or feedback, you can discuss [here](https://github.com/latenitefilms/metaburnerpro/discussions). | ||
|
||
GitHub registration is free, and this GitHub repository is actively monitored by [LateNite Films](https://github.com/latenitefilms). | ||
GitHub registration is free, and this GitHub repository is actively monitored by the developer, [Chris Hocking](https://github.com/latenitefilms). | ||
|
||
You can also email us: [[email protected]](mailto:[email protected]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters