Skip to content

Commit 555fd7d

Browse files
committed
docs: ✏️ nginx docroot and image width
1 parent 91a17d5 commit 555fd7d

3 files changed

Lines changed: 29 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
author: Virgil <virgil@virgilwashere.co>
33
date: 2019-10-20
4-
version: 0.1.5
4+
version: 0.1.6
55
copyright:
66
- 2019 Virgil
77
- All rights reserved
@@ -17,6 +17,13 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
1717

1818
## 🚧 [Unreleased]
1919

20+
<a name="0.1.6"></a>
21+
## 🔖 [0.1.6] - 2019-10-20
22+
23+
### 📝 Documentation
24+
25+
- :pencil2: nginx docroot and image width
26+
2027
<a name="0.1.5"></a>
2128
## 🔖 [0.1.5] - 2019-10-20
2229

@@ -37,6 +44,10 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
3744

3845
- :memo: nginx location block
3946

47+
### 🔨 Maintenance
48+
49+
- :bookmark: release 0.1.5
50+
4051
<a name="0.1.4"></a>
4152
## 🔖 [0.1.4] - 2019-10-20
4253

@@ -89,17 +100,7 @@ chore: Changelog commit details in summary tag
89100

90101
### ✨ Features
91102

92-
- :tada: updated pretty output
93-
94-
- :bulb: document parameters
95-
- :sparkles: add email and sms channels to `mautic:campaigns:messages`
96-
- :ok_hand: add `--no-interaction` to commands that need it
97-
- :sparkles: add commands from some popular plugins
98-
- :pencil2: fix `mautic:emais:fetch`
99-
- :boom: removed duplicate commands
100-
- :bento: update base64 images
101-
- :children_crossing: moved the _dangerous_ commands to the end of the list
102-
103+
- :tada: udpated pretty output
103104

104105
<a name="0.1.1"></a>
105106
## 🔖 [0.1.1] - 2019-08-31
@@ -118,7 +119,16 @@ chore: Changelog commit details in summary tag
118119

119120
### ✨ Features
120121

121-
- :tada: commands.php
122+
- :tada: updated pretty output
123+
124+
- :bulb: document parameters
125+
- :sparkles: add email and sms channels to `mautic:campaigns:messages`
126+
- :ok_hand: add `--no-interaction` to commands that need it
127+
- :sparkles: add commands from some popular plugins
128+
- :pencil2: fix `mautic:emais:fetch`
129+
- :boom: removed duplicate commands
130+
- :bento: update base64 images
131+
- :children_crossing: moved the _dangerous_ commands to the end of the list
122132

123133
### 📝 Documentation
124134

@@ -129,7 +139,8 @@ chore: Changelog commit details in summary tag
129139

130140
- :page_facing_up: Add issue templates
131141

132-
[Unreleased]: <https://github.com/virgilwashere/mautic-cron-commands/compare/0.1.5...HEAD>
142+
[Unreleased]: <https://github.com/virgilwashere/mautic-cron-commands/compare/0.1.6...HEAD>
143+
[0.1.6]: <https://github.com/virgilwashere/mautic-cron-commands/compare/0.1.5...0.1.6>
133144
[0.1.5]: <https://github.com/virgilwashere/mautic-cron-commands/compare/0.1.4...0.1.5>
134145
[0.1.4]: <https://github.com/virgilwashere/mautic-cron-commands/compare/0.1.3...0.1.4>
135146
[0.1.3]: <https://github.com/virgilwashere/mautic-cron-commands/compare/0.1.2...0.1.3>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
author: Virgil <virgil@virgilwashere.co>
33
date: 2019-10-20
4-
version: 0.1.5
4+
version: 0.1.6
55
copyright:
66
- 2019 Virgil
77
- All rights reserved
88
license: GPL3
99
link: <https://github.com/virgilwashere/mautic-cron-commands>
1010
---
11-
<img alt="Mautic" align="right" width=72 src="assets/mautic_logo.png?raw=true">
11+
<img alt="Mautic" align="right" width=128 src="assets/mautic_logo.png?raw=true">
1212

1313
# Mautic cron commands
1414

@@ -65,7 +65,7 @@ server {
6565
```nginx
6666
location /cron/ {
6767
# URL would be https://mautic.example.com/cron/commands.php
68-
root /mnt/www/mautic/;
68+
root $mautic_root;
6969
index commands.php;
7070
7171
location ~ /(commands|import)\.php(/|$) {

commands.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* @abstract Script to run Mautic (mautic.org) commands from a web page.
99
* @copyright 2019 Virgil. All rights reserved
10-
* @version 0.1.5
10+
* @version 0.1.6
1111
* @date 2019-10-20
1212
* @author Virgil <virgil@virgilwashere.co>
1313
* @license GPL3

0 commit comments

Comments
 (0)