Skip to content

Commit

Permalink
Update version to 1.3.5 (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentlb committed Mar 27, 2023
1 parent 8a69877 commit d2cd285
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,10 @@ preprocessing directives:

This is still experimental and there are some limitations:

* `#if` is not supported yet.
* Macros declared with `#define` will be kept in the file, even if they are no
longer needed.
* `#define` and `#undefine` that appear inside a `#if` region are not well
handled.

### Verbatim

Expand Down Expand Up @@ -617,10 +618,8 @@ and please report a bug.
### Aggressive inlining

Shader Minifier can optionally/experimentally inline even more aggressively.
Along with the above cases, it will inline *any* variable marked `const`, and
also when:
- the variable is never written to after initalization
- and the init value is trivial (doesn't depend on a variable).
Along with the above cases, it will inline more variables, including the
variables used many times in the code.

This is enabled with `--aggressive-inlining`.

Expand Down
2 changes: 1 addition & 1 deletion src/options.fs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
open System.IO
open Argu

let version = "1.3.4" // Shader Minifier version
let version = "1.3.5" // Shader Minifier version
let debugMode = false

type OutputFormat =
Expand Down

0 comments on commit d2cd285

Please sign in to comment.