diff options
author | garret <garret@airmail.cc> | 2022-11-20 02:59:17 +0000 |
---|---|---|
committer | garret <garret@airmail.cc> | 2022-11-20 02:59:17 +0000 |
commit | b93fe9c798b96d5d2ca25d293fdb080942d45623 (patch) | |
tree | 4a7a4b96504fdcdefda6452946d50a6080be4cdc /conf.lua | |
parent | 275347b862bec89f1733fbde3f516e4de6ce3eba (diff) | |
download | depctrl-feedmaker-b93fe9c798b96d5d2ca25d293fdb080942d45623.tar.gz depctrl-feedmaker-b93fe9c798b96d5d2ca25d293fdb080942d45623.tar.bz2 depctrl-feedmaker-b93fe9c798b96d5d2ca25d293fdb080942d45623.zip |
add sample config file (untested)
Diffstat (limited to 'conf.lua')
-rwxr-xr-x | conf.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/conf.lua b/conf.lua new file mode 100755 index 0000000..f6dac77 --- /dev/null +++ b/conf.lua @@ -0,0 +1,20 @@ +-- untested, may or may not work + +local function ignore() + return feedmaker_feed ~= "main" +end + +local conf = { + name = "garret's aegisub scripts", + description = "Little utilities for aegisub that make my life easier", + maintainer = "garret", + knownFeeds = {}, + url = "https://github.com/garret1317/aegisub-scripts/", + baseUrl = "https://github.com/garret1317/aegisub-scripts/", + fileBaseUrl = "https://raw.githubusercontent.com/garret1317/aegisub-scripts/@{channel}/@{namespace}", + scriptUrl = "@{baseUrl}", + fileUrl = "@{fileBaseUrl}@{fileName}", + includeCondition = ignore +} + +return conf |