blob: c23153d34de30fbd63499ac03871c8302ec3134e (
plain)
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
|
<?xml version="1.0" encoding="UTF-8" ?>
<Root xmlns="http://notenoughupdates.org/moulconfig"
xmlns:firm="http://firmament.nea.moe/moulconfig"
>
<Center>
<Panel background="VANILLA">
<Column>
<Center>
<Scale scale="2">
<Text text="Firmament Licenses"/>
</Scale>
</Center>
<!-- <firm:Line/>-->
<ScrollPanel width="306" height="250">
<Panel insets="3" background="TRANSPARENT">
<Array data="@softwares">
<Center>
<firm:Fixed width="300">
<Panel background="VANILLA" insets="8">
<Column>
<Scale scale="1.2">
<Text text="@projectName"/>
</Scale>
<When condition="@hasWebPresence">
<Row>
<firm:Button onClick="@open">
<Text text="Navigate to WebSite"/>
</firm:Button>
</Row>
<Spacer/>
</When>
<Text text="@projectDescription" width="280"/>
<Array data="@developers">
<Row>
<Text text="by "/>
<Text text="@name"/>
</Row>
</Array>
<Array data="@licenses">
<When condition="@hasUrl">
<firm:Button onClick="@open">
<Center>
<Row>
<Text text="License: "/>
<Text text="@name"/>
</Row>
</Center>
</firm:Button>
<Row>
<Text text="License: "/>
<Text text="@name"/>
</Row>
</When>
</Array>
</Column>
</Panel>
</firm:Fixed>
</Center>
</Array>
</Panel>
</ScrollPanel>
</Column>
</Panel>
</Center>
</Root>
|