Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: deploy
on: [push]
jobs:
reapack-index:
runs-on: ubuntu-latest
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
steps:
- name: Fetch repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure git
run: |-
git config user.name 'ReaTeam Bot'
git config user.email 'reateam-bot@cfillion.ca'
- name: Install Pandoc
run: sudo apt-get install -yy pandoc
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
- name: Install reapack-index
run: gem install reapack-index
- name: Update index.xml
run: reapack-index --commit
- name: Push changes
run: git push origin HEAD:${{ env.BRANCH_NAME }}
38 changes: 38 additions & 0 deletions Various/fitzgeraldkd_Export effect config.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
--[[
ReaScript Name: Export effect config
Author: fitzgeraldkd
Version: 0.01
Link: https://github.com/fitzgeraldkd/reascripts
About:
TODO: Populate
Changelog:
# v1.00 (2025-05-05)
- Initial release
]]

function get_fx_config(fx)

end

function get_track_config(track)

end

function get_project_config(project)
local config = ''

config = config .. "test\n"
config = config .. "foo\n"

return config
end

function run_script()
local project = reaper.EnumProjects(-1)
local config = get_project_config(project)
file = io.open("fx_config.yaml", "w")
file:write(config)
file:close()
end

run_script()
24 changes: 23 additions & 1 deletion index.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<index version="1" name="fitzgeraldkd Scripts" commit="d63f05b33e16b2d638b2ea08fd489fb3e1d5209d">
<index version="1" name="fitzgeraldkd Scripts" commit="2bc65ddfd761ff14ddd8498d6a5860c02782b0af">
<category name="Various">
<reapack name="fitzgeraldkd_Export effect config.lua" type="script" desc="Export effect config">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 \fmodern Courier;}}
{\colortbl;\red255\green0\blue0;\red0\green0\blue255;}
\widowctrl\hyphauto

{\pard \ql \f0 \sa180 \li0 \fi0 TODO: Populate\par}
}
]]></description>
<link rel="website">https://github.com/fitzgeraldkd/reascripts</link>
</metadata>
<version name="1.00" author="fitzgeraldkd" time="2025-05-05T00:16:04Z">
<changelog><![CDATA[# v1.00 (2025-05-05)
- Initial release]]></changelog>
<source main="main">https://github.com/fitzgeraldkd/reascripts/raw/6966c119cf40648cb2574c039829be8b340ef315/Various/fitzgeraldkd_Export%20effect%20config.lua</source>
</version>
<version name="0.01" author="fitzgeraldkd" time="2025-05-05T00:26:42Z">
<changelog><![CDATA[# v1.00 (2025-05-05)
- Initial release]]></changelog>
<source main="main">https://github.com/fitzgeraldkd/reascripts/raw/2bc65ddfd761ff14ddd8498d6a5860c02782b0af/Various/fitzgeraldkd_Export%20effect%20config.lua</source>
</version>
</reapack>
<reapack name="fitzgeraldkd_Generate MIDI from Morse code.lua" type="script" desc="Generate MIDI from Morse code">
<metadata>
<description><![CDATA[{\rtf1\ansi\deff0{\fonttbl{\f0 \fswiss Helvetica;}{\f1 Courier;}}
Expand Down