Skip to content

Commit

Permalink
updated readme and fixed tasks.json for mac/linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ole1986 committed May 20, 2017
1 parent 885550f commit 3311c22
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .vscode/tasks.json
@@ -1,23 +1,23 @@
{
// This task will start php in background (WINDOWS)
"version": "0.1.0",
"command": "cmd",
"isShellCommand": true,
"args": ["/c"],
"showOutput": "always",
"tasks": [
{
"taskName": "Run PHP5 Server (Port 5000)",
"suppressTaskName": true,
"command": "php",
"args": [
"php", "-S", "localhost:5000"
"-S", "localhost:5000"
]
},
{
"taskName": "Run PHP7 Server (Port 5000)",
"suppressTaskName": true,
"command": "php7",
"args": [
"php7", "-S", "localhost:5000"
"-S", "localhost:5000"
]
}
]
Expand Down
3 changes: 3 additions & 0 deletions data.txt
Expand Up @@ -29,6 +29,9 @@ Note that this document was generated using the demo script 'readme.php' which c

1<Changelog>

3<0.12.33>

- applied PR #67 and #68

3<0.12.32>

Expand Down
Binary file modified readme.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion readme.php
Expand Up @@ -69,7 +69,7 @@ function dots($info){
// this code has been modified to use ezpdf.

$project_url = "https://github.com/rospdf/";
$project_version = "0.12.32";
$project_version = "0.12.33";

$pdf = new Creport('a4','portrait', 'none', null);
// to test on windows xampp
Expand Down

0 comments on commit 3311c22

Please sign in to comment.