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 Vineet Naik
Walter Scheper Walter Scheper
Brant Young (https://github.com/brantyoung) Yang Yubo (https://github.com/yangyubo)
Matthew Schinckel (https://github.com/schinckel) Matthew Schinckel (https://github.com/schinckel)
Mirat Can Bayrak (https://github.com/miratcan) Mirat Can Bayrak (https://github.com/miratcan)
Konrad Hałas (https://github.com/konradhalas) Konrad Hałas (https://github.com/konradhalas)

View file

@ -1,6 +1,14 @@
Changelog 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 0.6.2
------ ------

View file

@ -1,5 +1,5 @@
Copyright (c) 2011, Justin Quick Copyright (c) 2011, Justin Quick
Copyright (c) 2012, Brant Young Copyright (c) 2015, django-notifications team
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without 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| |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. 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 $ cd django-notifications
$ python setup.py install $ 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. You have <strong>{{ unread_count }}</strong> unread notifications.
{% endif %} {% 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 .. |build-status| image:: https://travis-ci.org/django-notifications/django-notifications.svg
:target: https://travis-ci.org/django-notifications/django-notifications :target: https://travis-ci.org/django-notifications/django-notifications

View file

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