Fixed issues with paths

This commit is contained in:
Devine Lu Linvega 2017-01-13 12:04:20 -07:00
parent b87ccb5b73
commit 41f3337c47
3 changed files with 3 additions and 4 deletions

View File

@ -115,5 +115,5 @@ rate=10 ; variable: rate = 10
## Templates ## Templates
### Watermark ### Watermark
``` ```
1280x800 ; / assets/photo.jpg 1280x 0,0 ; / assets/logo.png 60x60 20,720 # 1280x800 ; / ../assets/photo.jpg 1280x 0,0 ; / assets/logo.png 60x60 20,720
``` ```

View File

@ -1,8 +1,7 @@
#!/bin/bash #!/bin/bash
cd `dirname "$BASH_SOURCE"` cd `dirname "$BASH_SOURCE"`
cd sources
{ {
sleep 1 sleep 1
open http://localhost:8022/ronin.html open http://localhost:8022/sources/ronin.html
}& }&
python -m SimpleHTTPServer 8022 python -m SimpleHTTPServer 8022

View File

@ -63,7 +63,7 @@ function Help(rune)
html += "```\n# Light\n> 1,1;> 2,2;> 3,3;> 4,4\n# Hard\n> 2,2;> 4,4;> 6,6;> 8,8\n# Symmetric Light\n> 1,1 600x;> 2,2 600x;> 3,3 600x;> 4,4 600x\n```\n"; html += "```\n# Light\n> 1,1;> 2,2;> 3,3;> 4,4\n# Hard\n> 2,2;> 4,4;> 6,6;> 8,8\n# Symmetric Light\n> 1,1 600x;> 2,2 600x;> 3,3 600x;> 4,4 600x\n```\n";
html += "## Templates\n"; html += "## Templates\n";
html += "### Watermark\n"; html += "### Watermark\n";
html += "```\n1280x800 ; / assets/photo.jpg 1280x 0,0 ; / assets/logo.png 60x60 20,720\n```\n"; html += "```\n# 1280x800 ; / ../assets/photo.jpg 1280x 0,0 ; / assets/logo.png 60x60 20,720\n```\n";
return html; return html;
} }