blob: 51d8e7b7706b56695b061463b8ae9727aa5c3d06 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
-- untested, may or may not work
local function ignore()
return script_namespace == "garret.restyler"
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,
channel = "release"
}
return conf
|