Browse Source

Add skeleton files for new web UI plugin.

pull/434/head
Chris Smith 8 years ago
parent
commit
b1e5c13703
2 changed files with 34 additions and 0 deletions
  1. 3
    0
      ui_web2/build.gradle
  2. 31
    0
      ui_web2/plugin.config

+ 3
- 0
ui_web2/build.gradle View File

@@ -0,0 +1,3 @@
1
+dependencies {
2
+  bundle group: 'com.sparkcore', name: 'spark-core', version: '4.2'
3
+}

+ 31
- 0
ui_web2/plugin.config View File

@@ -0,0 +1,31 @@
1
+# This is a DMDirc configuration file.
2
+
3
+# This section indicates which sections below take key/value
4
+# pairs, rather than a simple list. It should be placed above
5
+# any sections that take key/values.
6
+keysections:
7
+  metadata
8
+  updates
9
+  version
10
+  defaults
11
+
12
+metadata:
13
+  author=Chris <chris@dmdirc.com>
14
+  mainclass=com.dmdirc.addons.ui_web2.WebController
15
+  description=Web-based DMDirc user interface
16
+  name=ui_web2
17
+  nicename=Web UI
18
+
19
+updates:
20
+  id=81
21
+
22
+version:
23
+  friendly=0.0
24
+
25
+provides:
26
+  web ui
27
+
28
+defaults:
29
+
30
+exports:
31
+

Loading…
Cancel
Save