blob: b1a3699a877d3d9ae3e94dcaa42f9f5500527db4 (
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}",
ignoreCondition = ignore
}
return conf
|