thelounge-uimproved 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ ## thelounge-uimproved
2
+
3
+ Basic plugin for thelounge to hide possibly misleading fields in the Network
4
+ Form when clients connect to a private server and no password is required.
5
+
6
+ Works with thelounge v4.4.3.
@@ -1,9 +1,19 @@
1
1
  /*
2
- * Hide fields: user,pass,auth
2
+ * Hide:
3
+ * Password (2)
4
+ * Username (4)
5
+ * Realname (5)
3
6
  */
4
7
  #connect .connect-row:nth-of-type(2),
5
8
  #connect .connect-row:nth-of-type(4),
9
+ #connect .connect-row:nth-of-type(5) {
10
+ display: none !important;
11
+ }
12
+
13
+ /*
14
+ * Hide Authentication section
15
+ */
6
16
  #connect .connect-row:nth-of-type(8),
7
17
  #connect #label-auth {
8
- display: none !important;
18
+ display: none !important;
9
19
  }
package/package.json CHANGED
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "thelounge-uimproved",
3
- "version": "1.0.0",
4
- "description": "Hide some fields in thelounge NetworkForm",
3
+ "version": "1.1.0",
4
+ "description": "Hides some fields in thelounge NetworkForm",
5
5
  "main": "index.js",
6
+ "license": "ISC",
7
+ "keywords": [ "thelounge" ],
6
8
  "thelounge": {
7
9
  "name": "UImproved",
8
10
  "type": "plugin",