summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/automatic-actions.markdown9
-rw-r--r--docs/centos-installation.markdown6
-rw-r--r--docs/debian-installation.markdown12
-rw-r--r--docs/ubuntu-installation.markdown6
4 files changed, 17 insertions, 16 deletions
diff --git a/docs/automatic-actions.markdown b/docs/automatic-actions.markdown
index 9526e9af..e903e0b1 100644
--- a/docs/automatic-actions.markdown
+++ b/docs/automatic-actions.markdown
@@ -34,7 +34,8 @@ List of available actions
- Assign the task to the person who does the action
- Duplicate the task to another project
- Assign a color to a specific user
-- Assign a color to a specific category
+- Assign automatically a color based on a category
+- Assign automatically a category based on a color
Examples
--------
@@ -67,14 +68,14 @@ Let's say we have two projects "Customer orders" and "Production", once the orde
- Choose the action: **Duplicate the task to another project**
- Define the action parameters: **Column = Validated** and **Project = Production**
-### I want to assign a specific color to the user Bob
+### I want to assign automatically a color to the user Bob
- Choose the event: **Task creation**
- Choose the action: **Assign a color to a specific user**
- Define the action parameters: **Color = Green** and **Assignee = Bob**
-### I want to assign a specific color to the category "Feature Request"
+### I want to assign automatically a color to the defined category "Feature Request"
- Choose the event: **Task creation or modification**
-- Choose the action: **Assign a color to a specific category**
+- Choose the action: **Assign automatically a color based on a category**
- Define the action parameters: **Color = Blue** and **Category = Feature Request**
diff --git a/docs/centos-installation.markdown b/docs/centos-installation.markdown
index 8f8c4d3e..f8963ecd 100644
--- a/docs/centos-installation.markdown
+++ b/docs/centos-installation.markdown
@@ -25,10 +25,10 @@ Install Kanboard:
```bash
cd /var/www/html
-wget http://kanboard.net/kanboard-VERSION.zip
-unzip kanboard-VERSION.zip
+wget http://kanboard.net/kanboard-latest.zip
+unzip kanboard-latest.zip
chown -R apache:apache kanboard/data
-rm kanboard-VERSION.zip
+rm kanboard-latest.zip
```
Go to `http://your_server/kanboard/`. \ No newline at end of file
diff --git a/docs/debian-installation.markdown b/docs/debian-installation.markdown
index 8a6067f1..10cab44a 100644
--- a/docs/debian-installation.markdown
+++ b/docs/debian-installation.markdown
@@ -15,10 +15,10 @@ Install Kanboard:
```bash
cd /var/www
-wget http://kanboard.net/kanboard-VERSION.zip
-unzip kanboard-VERSION.zip
+wget http://kanboard.net/kanboard-latest.zip
+unzip kanboard-latest.zip
chown -R www-data:www-data kanboard/data
-rm kanboard-VERSION.zip
+rm kanboard-latest.zip
```
Debian 6 (Squeeze)
@@ -35,8 +35,8 @@ Install Kanboard:
```bash
cd /var/www
-wget http://kanboard.net/kanboard-VERSION.zip
-unzip kanboard-VERSION.zip
+wget http://kanboard.net/kanboard-latest.zip
+unzip kanboard-latest.zip
chown -R www-data:www-data kanboard/data
-rm kanboard-VERSION.zip
+rm kanboard-latest.zip
``` \ No newline at end of file
diff --git a/docs/ubuntu-installation.markdown b/docs/ubuntu-installation.markdown
index 38fa3e8d..f5670758 100644
--- a/docs/ubuntu-installation.markdown
+++ b/docs/ubuntu-installation.markdown
@@ -15,8 +15,8 @@ Install Kanboard:
```bash
cd /var/www/html
-sudo wget http://kanboard.net/kanboard-VERSION.zip
-sudo unzip kanboard-VERSION.zip
+sudo wget http://kanboard.net/kanboard-latest.zip
+sudo unzip kanboard-latest.zip
sudo chown -R www-data:www-data kanboard/data
-sudo rm kanboard-VERSION.zip
+sudo rm kanboard-latest.zip
```