Skip to content

Commit

Permalink
- Base structure for VAF.
Browse files Browse the repository at this point in the history
- Renamed the folder.
- Additional params for .reapack-index.conf
  • Loading branch information
Zly-u committed Feb 11, 2024
1 parent dc7de39 commit c570fb7
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 9 deletions.
6 changes: 6 additions & 0 deletions .reapack-index.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
--name "NAGASHIZAR ReaPack Repository"
--link "https://www.youtube.com/@NAGASHIZARr"
--about README.md

--check
--warnings
--rebuild
--commit-template "index: $changelog

[ci skip]"
Empty file removed AutoFlipper/CORE_VAF.lua
Empty file.
Empty file removed AutoFlipper/GUI_VAF.lua
Empty file.
9 changes: 0 additions & 9 deletions AutoFlipper/Zly_VideoAutoFlipper.lua

This file was deleted.

8 changes: 8 additions & 0 deletions VideoAutoFlipper/CORE_VAF.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-- @version 1.0

local core = {}

function core:Apply()
end

return core
8 changes: 8 additions & 0 deletions VideoAutoFlipper/GUI_VAF.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
-- @version 1.0

local gui = {}

function gui:StartGUI()
end

return gui
15 changes: 15 additions & 0 deletions VideoAutoFlipper/Zly_VideoAutoFlipper.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
-- @version 1.0

local core = require("CORE_VAF")
local gui = require("GUI_VAF")


reaper.ShowConsoleMsg("Test")


function main()

end


main()
14 changes: 14 additions & 0 deletions VideoAutoFlipper/meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@metapackage

@description Video Auto-Flipper
@author Zly
@version 1.0
@provides
[main] Zly_VideoAutoFlipper.lua
GUI_VAF.lua
CORE_VAF.lua
@about
# Video Auto-Flipper

- Flips selected items.
- Has a handy GUI and other featues for ease of simple YTPMV making.

0 comments on commit c570fb7

Please sign in to comment.