Skip to content

Commit fb6589c

Browse files
committed
update latest
2 parents aa47f0c + 1a66369 commit fb6589c

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

00-about.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Mainly to make it easy to learn for PHP developers.
2121
<br/>
2222

2323
<a href='/installation/' style="text-decoration: none; color: white; background-color: #21a900; padding: 10px 20px; margin-right: 30px;">Download</a>
24-
<a href='http://maurits.server.nlware.com/' style="text-decoration: none; color: white; background-color: #21a900; padding: 10px 20px; margin-right: 30px;">Demo</a>
2524
<a href='https://github.com/mintyphp/mintyphp' style="text-decoration: none; color: white; background-color: #21a900; padding: 10px 20px; margin-right: 30px;">Github</a>
2625

2726
<br/>
@@ -30,4 +29,4 @@ Mainly to make it easy to learn for PHP developers.
3029

3130
- [MindaPHP: a new PHP framework optimized for learning](https://www.leaseweb.com/labs/2013/10/mindaphp-new-php-framework-optimized-learning/)
3231
- [MintyPHP now on packagist!](https://tqdev.com/2018-mindaphp-now-on-packagist)
33-
- [Reduce the mental load for developers](https://tqdev.com/2018-web-development-made-simple)
32+
- [Reduce the mental load for developers](https://tqdev.com/2018-web-development-made-simple)

01-installation.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,24 @@ MintyPHP supports MariaDB (and other MySQL compatible databases).
2323
You can download the latest version as a zip archive by clicking the button below.
2424

2525
<br>
26+
<<<<<<< HEAD
2627
<a href='http://github.com/mintyphp/mintyphp/archive/v.zip' style="text-decoration: none; color: white; background-color: #21a900; padding: 10px 20px;">Download MintyPHP v</a>
28+
=======
29+
<a href='http://github.com/mintyphp/mintyphp/archive/v2.0.4.zip' style="text-decoration: none; color: white; background-color: #21a900; padding: 10px 20px;">Download MintyPHP v2.0.4</a>
30+
>>>>>>> 1a66369292aa0e5ac4dc25bafb572a8fbc91c7c6
2731
<br>
2832
<br>
2933
3034
Unzip the archive and run the start.sh script with the following command:
3135

3236
```
37+
<<<<<<< HEAD
3338
unzip mintyphp-.zip
3439
cd mintyphp-
40+
=======
41+
unzip mintyphp-2.0.4.zip
42+
cd mintyphp-2.0.4
43+
>>>>>>> 1a66369292aa0e5ac4dc25bafb572a8fbc91c7c6
3544
bash start.sh
3645
```
3746

04-api.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ This is a reference of the all global variables and functions.
3737

3838
| Function | Location | Purpose |
3939
| ------------------------------------------- | ------------- | --------------- |
40-
| `Loader::register($path,$namespace):bool ` | loader.php | Loading classes |
4140
| `Buffer::set($name,$string) ` | *.php | Set raw HTML |
4241
| `Buffer::get($name):bool ` | *.phtml | Get raw HTML |
4342
| `Buffer::start($name) ` | *.phtml | Nested template |

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
VERSION=$(curl -s https://github.com/mintyphp/mintyphp/releases | grep -iA 20 'label-latest' | grep -o '"v[0-9]\+\.[0-9]\+\.[0-9]\+"')
2+
VERSION=$(curl -s https://github.com/mintyphp/mintyphp/releases | grep -iA 20 'latest' | grep -o 'v[0-9]\+\.[0-9]\+\.[0-9]\+')
33
VERSION="${VERSION//\"}" # strip quote character
44
VERSION="${VERSION//v}" # strip v character
55
OLDVER=$(cat version.txt)

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1+
2.0.5

0 commit comments

Comments
 (0)