diff options
author | Linnea Gräf <nea@nea.moe> | 2023-12-08 14:22:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 14:22:52 +0100 |
commit | 57acdfea63a58203cebda34ef7e16ed6fcc1bf1d (patch) | |
tree | acd9786f82a304a5ecddb36ae6f7f1cdc752a297 /src/main/resources | |
parent | 247656e0d4cd1733028009cecfab98c26953b795 (diff) | |
download | skyhanni-57acdfea63a58203cebda34ef7e16ed6fcc1bf1d.tar.gz skyhanni-57acdfea63a58203cebda34ef7e16ed6fcc1bf1d.tar.bz2 skyhanni-57acdfea63a58203cebda34ef7e16ed6fcc1bf1d.zip |
Add RepoPatterns (#715)
Added RepoPatterns. #715
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/skyhanni/gui/regexes.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/main/resources/assets/skyhanni/gui/regexes.xml b/src/main/resources/assets/skyhanni/gui/regexes.xml new file mode 100644 index 000000000..7ba1feaef --- /dev/null +++ b/src/main/resources/assets/skyhanni/gui/regexes.xml @@ -0,0 +1,25 @@ +<Root xmlns="http://notenoughupdates.org/moulconfig" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://notenoughupdates.org/moulconfig https://raw.githubusercontent.com/NotEnoughUpdates/MoulConfig/master/MoulConfig.xsd"> + <Gui> + <Column> + <Row> + <Text text="Search: "/> + <TextField value="@search"/> + <Text text="@poll"/> + </Row> + <ScrollPanel width="360" height="266"> + <Array data="@searchResults"> + <Row> + <Hover lines="@keyW"> + <Text text="@key" width="100"/> + </Hover> + <Hover lines="@hoverRegex"> + <Text text="@regex" width="200"/> + </Hover> + <Text text="@overriden" width="50"/> + </Row> + </Array> + </ScrollPanel> + </Column> + </Gui> +</Root> |