aboutsummaryrefslogtreecommitdiffstats
path: root/conf.lua
blob: fcdda39c4ae31e32c47b04563a7b96c1cee1f214 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
local function macro_ignore()
	return script_namespace == "garret.restyler"
end

local function module_ignore()
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://raw.githubusercontent.com/garret1317/aegisub-scripts/master",
	scriptUrl = "@{baseUrl}#@{namespace}",
	macros = {
		fileBaseUrl = "@{baseUrl}/macros/@{namespace}",
		ignoreCondition = macro_ignore,
	},
	modules = {
		fileBaseUrl = "@{baseUrl}/modules/@{namespacePath}",
		ignoreCondition = module_ignore,
	},
	fileUrl = "@{fileBaseUrl}@{fileName}",
	channel = "master"
}

return conf