diff --git a/VERSION b/VERSION
index 22cfbaa2..fd46a54e 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.18.0-develop13
+1.18.0-develop14
diff --git a/docs/_static/custom.css b/docs/_static/custom.css
index 642c4653..0c41e658 100644
--- a/docs/_static/custom.css
+++ b/docs/_static/custom.css
@@ -188,6 +188,17 @@ a .logo-hover {
a:hover .logo-hover {
display: block;
}
+.tab-content {
+ box-shadow: 0 -0.1rem #0ce3ac;
+}
+.tab-set > label {
+}
+.tab-set > input:checked + label:hover {
+}
+.tab-set > input:checked + label {
+ color: #0ce3ac !important;
+ border-color: #0ce3ac !important;
+}
/* Responsive YT Video Embedding */
.responsiveYT {
position: relative;
diff --git a/docs/home/kb.md b/docs/home/kb.md
index bc827cc8..09a7c35f 100644
--- a/docs/home/kb.md
+++ b/docs/home/kb.md
@@ -13,33 +13,39 @@ This sections aims to answer the most commonly asked questions that users have.
````{tab} OS X/Linux
+
```
cd /Users/mroche/Plex-Meta-Manager
git pull
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
```
+
````
-````{tab} Windows:
+````{tab} Windows
+
```
cd C:\Users\mroche\Plex-Meta-Manager
git pull
.\pmm-venv\Scripts\activate
python -m pip install -r requirements.txt
```
+
````
-````{tab} Docker:
+````{tab} Docker
+
```
docker pull meisnate12/plex-meta-manager
```
+
````
@@ -51,6 +57,7 @@ docker pull meisnate12/plex-meta-manager
````{tab} OS X/Linux
+
```
cd /Users/mroche/Plex-Meta-Manager
git checkout develop
@@ -58,12 +65,14 @@ git pull
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
```
+
````
-````{tab} Windows:
+````{tab} Windows
+
```
cd C:\Users\mroche\Plex-Meta-Manager
git checkout develop
@@ -71,6 +80,7 @@ git pull
.\pmm-venv\Scripts\activate
python -m pip install -r requirements.txt
```
+
````
@@ -82,6 +92,7 @@ python -m pip install -r requirements.txt
````{tab} OS X/Linux
+
```
cd /Users/mroche/Plex-Meta-Manager
git checkout nightly
@@ -89,12 +100,14 @@ git pull
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
```
+
````
-````{tab} Windows:
+````{tab} Windows
+
```
cd C:\Users\mroche\Plex-Meta-Manager
git checkout nightly
@@ -102,6 +115,7 @@ git pull
.\pmm-venv\Scripts\activate
python -m pip install -r requirements.txt
```
+
````
@@ -113,6 +127,7 @@ python -m pip install -r requirements.txt
````{tab} OS X/Linux
+
```
cd /Users/mroche/Plex-Meta-Manager
git checkout master
@@ -120,12 +135,14 @@ git pull
source pmm-venv/bin/activate
python -m pip install -r requirements.txt
```
+
````
-````{tab} Windows:
+````{tab} Windows
+
```
cd C:\Users\mroche\Plex-Meta-Manager
git checkout master
@@ -133,6 +150,7 @@ git pull
.\pmm-venv\Scripts\activate
python -m pip install -r requirements.txt
```
+
````