Skip to content

Commit 5736311

Browse files
committed
bumped version number
1 parent 6be83de commit 5736311

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# lessphp v0.3.0
1+
# lessphp v0.3.1
22
### <http://leafo.net/lessphp>
33

44
`lessphp` is a compiler for LESS written in PHP. The documentation is great,
5-
so check it out: <http://leafo.net/lessphp/docs/>. Here's a quick tutorial:
5+
so check it out: <http://leafo.net/lessphp/docs/>.
66

7-
### How to use in your php project
7+
Here's a quick tutorial:
8+
9+
### How to use in your PHP project
810

911
Copy `lessc.inc.php` to your include directory and include it into your project.
1012

@@ -19,6 +21,9 @@ is newer than the output file.
1921
exit($ex->getMessage());
2022
}
2123

24+
`lessc::ccompile` is not aware of imported files that change. Read [about
25+
`lessc::cexecute`](http://leafo.net/lessphp/docs/#compiling_automatically).
26+
2227
Note that all failures with lessc are reported through exceptions.
2328
If you need more control you can make your own instance of lessc.
2429

@@ -42,17 +47,17 @@ An additional script has been included to use the compiler from the command
4247
line. In the simplest invocation, you specify an input file and the compiled
4348
css is written to standard out:
4449

45-
~> plessc input.less > output.css
50+
$ plessc input.less > output.css
4651

4752
Using the -r flag, you can specify LESS code directly as an argument or, if
4853
the argument is left off, from standard in:
4954

50-
~> plessc -r "my less code here"
55+
$ plessc -r "my less code here"
5156

5257
Finally, by using the -w flag you can watch a specified input file and have it
5358
compile as needed to the output file
5459

55-
~> plessc -w input-file output-file
60+
$ plessc -w input-file output-file
5661

5762
Errors from watch mode are written to standard out.
5863

docs/docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
title: v0.3.0 documentation
1+
title: v0.3.1 documentation
22
link_to_home: true
33
--
44

lessc.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* lessphp v0.3.0
4+
* lessphp v0.3.1
55
* http://leafo.net/lessphp
66
*
77
* LESS css compiler, adapted from http://lesscss.org

0 commit comments

Comments
 (0)