Browse Source

Issue #56: Added main.py and fixed changelog to include issues

main
Lakshmi Vyasarajan 14 years ago
parent
commit
4f34285c06
2 changed files with 45 additions and 18 deletions
  1. +32
    -18
      CHANGELOG.rst
  2. +13
    -0
      hyde/main.py

+ 32
- 18
CHANGELOG.rst View File

@@ -1,10 +1,19 @@
Version 0.8.3c6
===============

Thanks to Joe Steeve.

* Changed deploy location for main.py and fixed entry point in
`setup.py`. (Issue #56)


Version 0.8.3c5 Version 0.8.3c5
=============== ===============


Thanks to @stiell Thanks to @stiell


* Bug Fix: Better mime type support in hyde server * Bug Fix: Better mime type support in hyde server (Issue #50)
* Bug Fix: Support empty extension in tagger archives * Bug Fix: Support empty extension in tagger archives (Issue #50)


Version 0.8.3c4 Version 0.8.3c4
=============== ===============
@@ -12,6 +21,7 @@ Version 0.8.3c4
Thanks to @gfuchedzhy Thanks to @gfuchedzhy


* Bug Fix: Hyde server now takes the url cleaner plugin into account. * Bug Fix: Hyde server now takes the url cleaner plugin into account.
(Issue #54)


Version 0.8.3c3 Version 0.8.3c3
=============== ===============
@@ -19,45 +29,48 @@ Version 0.8.3c3
Thanks to @vincentbernat Thanks to @vincentbernat


* Bug Fix: Ensure image sizer plugin handles external urls properly. * Bug Fix: Ensure image sizer plugin handles external urls properly.
(Issue #52)


Version 0.8.3c2 Version 0.8.3c2
================ ================


Thanks to @rfk Thanks to @rfk


* Added PyPI publisher * Added PyPI publisher (Issue #49)
* Bug Fix: Made `site.full_url` ignore fully qualified paths * Bug Fix: Made `site.full_url` ignore fully qualified paths (Issue #49)


Version 0.8.3c1 Version 0.8.3c1
================ ================


Thanks to @vincentbernat Thanks to @vincentbernat


* Added JPEG Optim plugin * Added JPEG Optim plugin (Issue #47)
* Fixes to CLTransformer * Fixes to CLTransformer (Issue #47)


Version 0.8.2 Version 0.8.2
============= =============


Thanks to @merlinrebrovic Thanks to @merlinrebrovic


* Added hyde starter kit * Added hyde starter kit (Issue #43)


Thanks to @vincentbernat Thanks to @vincentbernat


* Added git dates plugin * Added git dates plugin (Issue #42)
* Added Image size plugin * Added Image size plugin (Issue #44)
* Added silent, compress and optimization parameter support for less css plugin * Added silent, compress and optimization parameter support for less css
* Fixed plugin chaining issues plugin (Issue #40)
* Added Language(translation) plugin * Fixed plugin chaining issues (Issue #38)
* Bug Fix: Made sorting tests more predictable * Added Language(translation) plugin (Issue #37)
* Bug Fix: Added more standard paths for executables * Bug Fix: Made sorting tests more predictable (Issue #41)
* Added Combine files plugin * Bug Fix: Added more standard paths for executables (Issue #41)
* Added Combine files plugin (Issue #39)
* Added ignore option in site configuration to igore based on wildcards * Added ignore option in site configuration to igore based on wildcards
(Issue #32)


Thanks to @pestaa Thanks to @pestaa


* Added support `UTF8` keys in `metadata` and `config` * Added support `UTF8` keys in `metadata` and `config` (Issue #33)




Version 0.8.1 Version 0.8.1
@@ -65,9 +78,10 @@ Version 0.8.1


Thanks to @rfk. Thanks to @rfk.


* Updated to use nose 1.0 * Updated to use nose 1.0 (Issue #28)
* Bug fix: LessCSSPlugin: return original text if not a .less file * Bug fix: LessCSSPlugin: return original text if not a .less file
* PyFS publisher with mtime and etags support. (Issue #28)
* PyFS publisher with mtime and etags support. (Issue #28)


Version 0.8 Version 0.8
============== ==============


+ 13
- 0
hyde/main.py View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
The hyde executable
"""
from hyde.engine import Engine

def main():
"""Main"""
Engine().run()

if __name__ == "__main__":
main()

||||||
x
 
000:0
Loading…
Cancel
Save