Browse Source

Added logo with new slogan

pull/1638/head
Armin Ronacher 15 years ago
parent
commit
b0ab127015
  1. 6
      CHANGES
  2. 3
      Makefile
  3. 221
      artwork/logo-full.svg
  4. BIN
      docs/_static/logo-full.png
  5. 6
      setup.cfg
  6. 2
      setup.py

6
CHANGES

@ -6,18 +6,22 @@ Here you can see the full list of changes between each Flask release.
Version 0.2 Version 0.2
----------- -----------
[unreleased; current development version] Released on May 12th, codename Jägermeister
- various bugfixes - various bugfixes
- integrated JSON support - integrated JSON support
- added :func:`~flask.get_template_attribute` helper function. - added :func:`~flask.get_template_attribute` helper function.
- :meth:`~flask.Flask.add_url_rule` can now also register a - :meth:`~flask.Flask.add_url_rule` can now also register a
view function. view function.
- refactored internal request dispatching.
- server listens on 127.0.0.1 by default now to fix issues with chrome. - server listens on 127.0.0.1 by default now to fix issues with chrome.
- added external URL support. - added external URL support.
- added support for :func:`~flask.send_file` - added support for :func:`~flask.send_file`
- module support and internal request handling refactoring - module support and internal request handling refactoring
to better support pluggable applications. 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 Version 0.1
----------- -----------

3
Makefile

@ -5,6 +5,9 @@ all: clean-pyc test
test: test:
python tests/flask_tests.py python tests/flask_tests.py
release:
python setup.py release sdist upload
clean-pyc: clean-pyc:
find . -name '*.pyc' -exec rm -f {} + find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} + find . -name '*.pyo' -exec rm -f {} +

221
artwork/logo-full.svg

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 20 KiB

6
setup.cfg

@ -0,0 +1,6 @@
[egg_info]
tag_build = dev
tag_date = true
[aliases]
release = egg_info -RDb ''

2
setup.py

@ -59,7 +59,7 @@ setup(
'Jinja2>=2.4' 'Jinja2>=2.4'
], ],
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 4 - Beta',
'Environment :: Web Environment', 'Environment :: Web Environment',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',

Loading…
Cancel
Save