nodebb-theme-flawless-rp 1.0.0 → 1.0.1
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/package.json +3 -3
- package/plugin.json +15 -4
- package/screenshot.png +0 -0
- package/theme.json +10 -0
- package/theme.less +2 -0
- package/theme.scss +2 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodebb-theme-flawless-rp",
|
|
3
3
|
"type": "theme",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"description": "Flawless Roleplay — Underground Criminal Empire theme for NodeBB. Dark obsidian backgrounds, gold/amber accents, Barlow Condensed typography.",
|
|
6
6
|
"author": "Flawless Roleplay Team",
|
|
7
7
|
"license": "MIT",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"gaming"
|
|
14
14
|
],
|
|
15
15
|
"nbbpm": {
|
|
16
|
-
"compatibility": "^4.0.0"
|
|
16
|
+
"compatibility": "^1.19.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
|
|
17
17
|
},
|
|
18
18
|
"theme": {
|
|
19
19
|
"id": "nodebb-theme-flawless-rp",
|
|
20
20
|
"name": "Flawless Roleplay",
|
|
21
|
-
"baseTheme": "nodebb-theme-
|
|
21
|
+
"baseTheme": "nodebb-theme-persona",
|
|
22
22
|
"templates": "./templates",
|
|
23
23
|
"screenshot": "./screenshot.png"
|
|
24
24
|
},
|
package/plugin.json
CHANGED
|
@@ -5,12 +5,23 @@
|
|
|
5
5
|
"url": "https://github.com/omerbeqiri1989-beep/NodeBB",
|
|
6
6
|
"library": "./library.js",
|
|
7
7
|
"hooks": [
|
|
8
|
-
{
|
|
9
|
-
|
|
8
|
+
{
|
|
9
|
+
"hook": "filter:config.get",
|
|
10
|
+
"method": "onConfigGet"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"hook": "filter:header.build",
|
|
14
|
+
"method": "addCustomCSS"
|
|
15
|
+
}
|
|
10
16
|
],
|
|
11
17
|
"staticDirs": {
|
|
12
18
|
"static": "./static"
|
|
13
19
|
},
|
|
14
|
-
"css": [
|
|
15
|
-
|
|
20
|
+
"css": [
|
|
21
|
+
"static/styles/flawless.css"
|
|
22
|
+
],
|
|
23
|
+
"templates": "./templates",
|
|
24
|
+
"less": [
|
|
25
|
+
"theme.less"
|
|
26
|
+
]
|
|
16
27
|
}
|
package/screenshot.png
ADDED
|
Binary file
|
package/theme.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "nodebb-theme-flawless-rp",
|
|
3
|
+
"name": "Flawless Roleplay",
|
|
4
|
+
"description": "Dark SA-MP roleplay theme with obsidian surfaces and amber/gold accents.",
|
|
5
|
+
"url": "https://github.com/tsarchghs/213112321",
|
|
6
|
+
"screenshot": "screenshot.png",
|
|
7
|
+
"templates": "templates",
|
|
8
|
+
"staticDir": "static",
|
|
9
|
+
"baseTheme": "nodebb-theme-persona"
|
|
10
|
+
}
|
package/theme.less
ADDED
package/theme.scss
ADDED