-
Notifications
You must be signed in to change notification settings - Fork 46
/
beeld.config
108 lines (84 loc) · 2.77 KB
/
beeld.config
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
###################################################
#
# The buildtools repository is at:
# https://github.com/foo123/Beeld
#
###################################################
settings ={}
Xpresion = "Xpresion::"
RegExp = "RegExp::"
@
plugins =[{}]
# include 'minify' plugin from plugins folder
"minify" = "!plg:minify"
@
tasks =[{}]
build =[{}]
src =[]
./src/header.js
# dependency
./src/deps/asynchronous.js
# core classes (should be included always)
./src/FILTER.js
./src/util/core.js
./src/util/glsl.js # include to support GLSL filters
./src/util/wasm.js # include to support WASM filters
./src/core/Filter.js
./src/core/Color.js
./src/core/Image.js
# main filters (choose what you want included)
./src/filters/CompositeFilter.js
./src/filters/BlendFilter.js
./src/filters/DimensionFilter.js
./src/filters/ColorTableFilter.js
./src/filters/ColorMatrixFilter.js
./src/filters/ColorMapFilter.js
./src/filters/AffineMatrixFilter.js
./src/filters/DisplacementMapFilter.js
./src/filters/GeometricMapFilter.js
./src/filters/ConvolutionMatrixFilter.js
./src/filters/MorphologicalFilter.js
./src/filters/StatisticalFilter.js
./src/filters/InlineFilter.js
./src/filters/FrequencyFilter.js
# extra filters (choose what you want included)
./src/plugins/Noise.js
./src/plugins/PerlinNoise.js
./src/plugins/ChannelCopy.js
./src/plugins/Pixelate.js
./src/plugins/Halftone.js
./src/plugins/Bokeh.js
./src/plugins/DropShadow.js
./src/plugins/SeamlessTile.js
./src/plugins/FloodFill.js
./src/plugins/ConnectedComponents.js
./src/plugins/HistogramMatch.js
./src/plugins/OtsuThreshold.js
./src/plugins/CannyEdges.js
./src/plugins/HaarDetector.js
./src/plugins/TemplateMatcher.js
#./src/plugins/HoughDetector.js
./src/footer.js
@
# extract header from this file
header = ./src/header.js
# Text replacements
replace =[{}]
"@@VERSION@@" = "1.12.0"
"@@DATE@@" = Xpresion::date("Y-m-d H:i:s")
@
out = ./build/filter.js
@
minify =[{}]
src =[]
./build/filter.js
@
# extract header from this file
header = ./build/filter.js
minify ={}
uglifyjs =[]
-m -c
@@
out = ./build/filter.min.js
@
@