diff options
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 |