blob: f6dac77dfbea2138bc3d63a33f555ec0bc81d21c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|