Update README, CHANGELOG and AUTHORS

This commit is contained in:
Yang.Y 2015-04-21 09:53:28 +08:00
parent 2e8fbe44ce
commit 56298d508e
5 changed files with 27 additions and 9 deletions

View file

@ -24,7 +24,7 @@ Chris Beaven
Vineet Naik
Walter Scheper
Brant Young (https://github.com/brantyoung)
Yang Yubo (https://github.com/yangyubo)
Matthew Schinckel (https://github.com/schinckel)
Mirat Can Bayrak (https://github.com/miratcan)
Konrad Hałas (https://github.com/konradhalas)

View file

@ -1,6 +1,14 @@
Changelog
==========
0.7.0
------
- Add filters and displays to Django model Admin
- Support Django 1.8, compatible with both django-south (django < 1.7) and built-in schema migration (django >= 1.7)
- Compatible with Python 3
- Test fixtures, and integrated with travis-ci
0.6.2
------

View file

@ -1,5 +1,5 @@
Copyright (c) 2011, Justin Quick
Copyright (c) 2012, Brant Young
Copyright (c) 2015, django-notifications team
All rights reserved.
Redistribution and use in source and binary forms, with or without

View file

@ -1,9 +1,9 @@
Django Notifications Documentation
===================================
``django-notifications`` Documentation
=======================================
|build-status| |coveralls|
`django-notifications <https://github.com/brantyoung/django-notifications>`_ is a GitHub notification alike app for Django, it was derived from `django-activity-stream <https://github.com/justquick/django-activity-stream>`_
`django-notifications <https://github.com/django-notifications/django-notifications>`_ is a GitHub notification alike app for Django, it was derived from `django-activity-stream <https://github.com/justquick/django-activity-stream>`_
Notifications are actually actions events, which are categorized by four main components.
@ -32,7 +32,7 @@ or get it from source
::
$ git clone https://github.com/brantyoung/django-notifications
$ git clone https://github.com/django-notifications/django-notifications
$ cd django-notifications
$ python setup.py install
@ -235,6 +235,16 @@ Storing the count in a variable for further processing is advised, such as::
You have <strong>{{ unread_count }}</strong> unread notifications.
{% endif %}
``django-notifications`` Team
==============================
Core contributors (in alphabetical order):
- `Samuel Spencer <https://github.com/LegoStormtroopr>`_
- `Yang Yubo <https://github.com/yangyubo>`_
- `zhang-z <https://github.com/zhang-z>`_
.. |build-status| image:: https://travis-ci.org/django-notifications/django-notifications.svg
:target: https://travis-ci.org/django-notifications/django-notifications

View file

@ -5,9 +5,9 @@ setup(name='django-notifications-hq',
version=__version__,
description='GitHub notifications alike app for Django.',
long_description=open('README.rst').read(),
author='Brant Young',
author_email='brant.young@gmail.com',
url='http://github.com/brantyoung/django-notifications',
author='django-notifications team',
author_email='yang@yangyubo.com',
url='http://github.com/django-notifications/django-notifications',
install_requires=[
'django>=1.4',
'django-model-utils>=2.0.3',