Added logo with new slogan
This commit is contained in:
parent
9fa4f94ad8
commit
b0ab127015
6 changed files with 136 additions and 162 deletions
6
CHANGES
6
CHANGES
|
|
@ -6,18 +6,22 @@ Here you can see the full list of changes between each Flask release.
|
|||
Version 0.2
|
||||
-----------
|
||||
|
||||
[unreleased; current development version]
|
||||
Released on May 12th, codename Jägermeister
|
||||
|
||||
- various bugfixes
|
||||
- integrated JSON support
|
||||
- added :func:`~flask.get_template_attribute` helper function.
|
||||
- :meth:`~flask.Flask.add_url_rule` can now also register a
|
||||
view function.
|
||||
- refactored internal request dispatching.
|
||||
- server listens on 127.0.0.1 by default now to fix issues with chrome.
|
||||
- added external URL support.
|
||||
- added support for :func:`~flask.send_file`
|
||||
- module support and internal request handling refactoring
|
||||
to better support pluggable applications.
|
||||
- sessions can be set to be permanent now on a per-session basis.
|
||||
- better error reporting on missing secret keys.
|
||||
- added support for Google Appengine.
|
||||
|
||||
Version 0.1
|
||||
-----------
|
||||
|
|
|
|||
3
Makefile
3
Makefile
|
|
@ -5,6 +5,9 @@ all: clean-pyc test
|
|||
test:
|
||||
python tests/flask_tests.py
|
||||
|
||||
release:
|
||||
python setup.py release sdist upload
|
||||
|
||||
clean-pyc:
|
||||
find . -name '*.pyc' -exec rm -f {} +
|
||||
find . -name '*.pyo' -exec rm -f {} +
|
||||
|
|
|
|||
281
artwork/logo-full.svg
Executable file → Normal file
281
artwork/logo-full.svg
Executable file → Normal file
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 77 KiB |
BIN
docs/_static/logo-full.png
vendored
BIN
docs/_static/logo-full.png
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 20 KiB |
6
setup.cfg
Normal file
6
setup.cfg
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[egg_info]
|
||||
tag_build = dev
|
||||
tag_date = true
|
||||
|
||||
[aliases]
|
||||
release = egg_info -RDb ''
|
||||
2
setup.py
2
setup.py
|
|
@ -59,7 +59,7 @@ setup(
|
|||
'Jinja2>=2.4'
|
||||
],
|
||||
classifiers=[
|
||||
'Development Status :: 3 - Alpha',
|
||||
'Development Status :: 4 - Beta',
|
||||
'Environment :: Web Environment',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: BSD License',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue