Skip to content

Commit

Permalink
Merge branch 'release/0.9.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Nov 24, 2014
2 parents 36688c9 + 614b126 commit 96e8ab4
Show file tree
Hide file tree
Showing 8 changed files with 442 additions and 364 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# v0.9.7 beta
## 11/24/2014

1. [](#improved)
* Nginx configuration updated
* Added gitter.im badge to README
* Removed `set_time_limit()` and put checks around `ignore_user_abort`
* More PSR code fixes
2. [](#bugfix)
* Fix issue with non-valid asset path showing up when they shouldn't
* Fix for JS asset pipeline and scripts that don't end in `;`
* Fix for schema-based markdown URLs broken routes (eg `mailto:`)

# v0.9.6 beta
## 11/17/2014

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# ![](https://avatars1.githubusercontent.com/u/8237355?v=2&s=50) Grav
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/getgrav/grav?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Grav is a **Fast**, **Simple**, and **Flexible**, file-based Web-platform. There is **Zero** installation required. Just extract the ZIP archive, and you are already up and running. It follows similar principals to other flat-file CMS platforms, but has a different design philosophy than most. Grav comes with a powerful **Package Management System** to allow for simple installation and upgrading of plugins and themes, as well as simple updating of Grav itself.

Expand Down
40 changes: 20 additions & 20 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@ http {
}

location /user {
rewrite ^/user/accounts/(.*)$ /error redirect;
rewrite ^/user/config/(.*)$ /error redirect;
rewrite ^/user/(.*)\.(txt|md|html|php|yaml|json|twig|sh|bat)$ /error redirect;
}

location /cache {
rewrite ^/cache/(.*) /error redirect;
}

location /bin {
rewrite ^/bin/(.*)$ /error redirect;
}

location /system {
rewrite ^/system/(.*)$ /error redirect;
}

location /vendor {
rewrite ^/vendor/(.*)$ /error redirect;
}
rewrite ^/user/accounts/(.*)$ /error redirect;
rewrite ^/user/config/(.*)$ /error redirect;
rewrite ^/user/(.*)\.(txt|md|html|php|yaml|json|twig|sh|bat)$ /error redirect;
}

location /cache {
rewrite ^/cache/(.*) /error redirect;
}

location /bin {
rewrite ^/bin/(.*)$ /error redirect;
}

location /system {
rewrite ^/system/(.*)\.(txt|md|html|php|yaml|json|twig|sh|bat)$ /error redirect;
}

location /vendor {
rewrite ^/vendor/(.*)\.(txt|md|html|php|yaml|json|twig|sh|bat)$ /error redirect;
}

# Remember to change 127.0.0.1:9000 to the Ip/port
# you configured php-cgi.exe to run from
Expand Down
2 changes: 1 addition & 1 deletion system/config/system.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
absolute_urls: false # Whether to use absolute URLs.
absolute_urls: false # Absolute or relative URLs for `base_url`

home:
alias: '/home' # Default path for home, ie /
Expand Down
2 changes: 1 addition & 1 deletion system/defines.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// Some standard defines
define('GRAV', true);
define('GRAV_VERSION', '0.9.6');
define('GRAV_VERSION', '0.9.7');
define('DS', '/');

// Directories and Paths
Expand Down
Loading

0 comments on commit 96e8ab4

Please sign in to comment.