Metadata-Version: 1.1
Name: ihatemoney
Version: 4.1.2
Summary: A simple shared budget manager web application.
Home-page: https://github.com/spiral-project/ihatemoney
Author: Alexis Métaireau & contributors
Author-email: alexis@notmyidea.org
License: Custom BSD Beerware
Description: I hate money
        ############
        
        .. image:: https://travis-ci.org/spiral-project/ihatemoney.svg?branch=master
           :target: https://travis-ci.org/spiral-project/ihatemoney
           :alt: Travis CI Build Status
        
        *I hate money* is a web application made to ease shared budget management.
        It keeps track of who bought what, when, and for whom; and helps to settle the
        bills.
        
        * `Online documentation <https://ihatemoney.readthedocs.org>`_
        * `Hosted version <https://ihatemoney.org>`_
        * `Mailing list <https://mailman.alwaysdata.com/postorius/lists/info.ihatemoney.org/>`_
          (to get updates when needed).
        
        The code is distributed under a BSD *beerware* derivative: if you meet the
        people in person and you want to pay them a craft beer, you are highly
        encouraged to do so.
        
        Requirements
        ============
        
        * **Python**: 2.7, 3.5, 3.6, 3.7.
        * **Backends**: MySQL, PostgreSQL, SQLite, Memory.
        
        Contributing
        ============
        
        Do you wish to contribute to IHateMoney? Fantastic! There's a lot of very
        useful help on the official `contributing
        <https://ihatemoney.readthedocs.io/en/latest/contributing.html>`_ page.
        
        
        Changelog
        #########
        
        This document describes changes between each past release.
        
        4.1.2 (2019-09-18)
        ==================
        
        - Fix readme to upload to PyPI.
        
        
        4.1.1 (2019-09-18)
        ==================
        
        Fixed
        -----
        
        - Fix packaging. Previous (4.1) release wasn't pip-installable on all systems.
        
        Changed
        -------
        
        - Display password reminder message on a new page rather than on a flash message (#455, #469)
        
        4.1 (2019-09-08)
        ================
        
        Added
        -----
        
        - Add a ``compress_assets`` target in the makefile to compress PNG (#459)
        - Document how to use systemd (#435)
        - Add support for python 3.7
        - Add links to documentation, mobile app and git repository in the
          footer (#445)
        - Use weblate to handle translations
        - Add dutch translation
        - Add project switcher on login page if already logged (#445)
        
        Changed
        -------
        
        - Documentation has been cleaned and reorganised.
        - Display a placeholder when no entries are present in the bill
          list. (#457)
        - Disable the "add bill" action until members are present (#457)
        - Improve invitations UX (#451)
        - In the bills list, display the "added on" column as a tooltip (#443)
        - Updated bootstrap to latest stable (#440)
        - Improved "project already exists" message (#442)
        - Improve usability specially for small screen (#441)
        - Replace export forms by links (#450)
        - Rework homepage design (#445)
        - Docker now downloads IHM from Pypy or the reference git repo (#446)
        - Arrange navbar items by functions (#445)
        
        
        4.0 (2019-01-24)
        ================
        
        Added
        -----
        
        - Add CORS headers in the API (#407)
        - Document database migrations (#390)
        - Allow basic math operations in amount field (#413)
        - Add bill.creation_date field (#327)
        - Document PostgreSQL configuration (#415)
        
        Fixed
        -----
        
        - Do not allow negative weights on users (#366)
        - Fix docker image (#398)
        - minor documentation changes
        
        Changed
        -------
        
        - Update API project list (#405)
        
        
        3.0 (2018-11-25)
        ================
        
        Fixed
        -----
        
        - Fix broken install with pip ≥ 10 (#340)
        - Fix the generation of the supervisord template (#309)
        - Fix Apache conf template (#359)
        
        - Regenerate translations and improve fr translations (#338)
        - Fix the validation of the hashed password (#310)
        - Fix infinite loop that happened when accessing / (#358)
        - Fix email validation when sending invites
        - Fix double-click when deleting a bill (#349)
        - Fix error escaping (#388)
        - Fix form error on already existing participant (#370)
        - Fix documentation for create bills via api (#391)
        
        - Fix docker ADMIN_PASSWORD configuration (#384)
        - Fix docker bug where conf is duplicated at each run (#392)
        - Fix cffi installation in Dockerfile (#364)
        
        Added
        -----
        
        - Document MySQL setup (#357)
        - Add a favicon.ico  (#381)
        - Document external mail server configuration (#278)
        - Improve settings documentation styling (#251)
        - Add a ihatemoney delete-project command to delete a project (#375)
        - Add nice 404 error pages (#379)
        
        Changed
        -------
        
        - Enhance translation tooling (#360)
        - Improve Makefile (#387)
        - Sort members alphabetically in the new bill form. (#374)
        - Underline actions links on hover (#377)
        
        Removed
        -------
        
        - Remove Sentry, as it's not used anymore on prod. (#380)
        
        
        2.1 (2018-02-16)
        ================
        
        Changed
        -------
        
        - Use flask-restful instead of deprecated flask-rest for the REST API (#315)
        - Make sidebar scrollable. Usefull for large groups (#316)
        
        Fixed
        -----
        
        - Fix the "IOError" crash when running `ihatemoney generate-config` (#308)
        - Made the left-hand sidebar scrollable (#318)
        - Fix and enhanche Docker support (#320, #321)
        
        Added
        -----
        
        - Statistics API (#343)
        - Allow to disable/enable member via API (#301)
        - Enable basic Apache auth passthrough for API (#303)
        
        
        2.0 (2017-12-27)
        ================
        
        Breaking changes
        ----------------
        
        - ``ADMIN_PASSWORD`` is now stored hashed. The ``ihatemoney generate_password_hash`` command can now be used to generate a proper password HASH (#236)
        - Turn the WSGI file into a python module, renamed from budget/ihatemoney.wsgi to ihatemoney/wsgi.py. Please update your Apache/Gunicorn configuration! (#218)
        - Admin privileges are now required to access the dashboard (#262)
        - `password` field has been removed from project API GET views (#289)
        
        Changed
        -------
        
        - Logged admin can see any project (#262)
        - Simpler and safer authentication logic (#270)
        - Use token based auth to reset passwords (#269)
        - Better install doc (#275)
        - Use token based auth in invitation e-mails (#280)
        - Use hashed passwords for projects (#286)
        
        Added
        -----
        
        - ``ihatemoney generate-config`` to give working examples of config files (#275)
        - Statistics tab (#257)
        - Python3.6 support (#259)
        - ALLOW_PUBLIC_PROJECT_CREATION setting (#262)
        - Projects can be edited/deleted from the dashboard (#262)
        - ACTIVATE_ADMIN_DASHBOARD setting (#262)
        - Link to the dashboard in the navigation bar (#262)
        - Dockerfile
        - Documentation explaining the upgrade process
        
        Fixed
        -----
        
        - Fix `PUT api/project/:code/members/:id` API endpoint (#295)
        - Fix member name uniqueness validation on API (#299)
        
        Removed
        -------
        
        - Remove unused option in the setup script
        
        1.0 (2017-06-20)
        ================
        
        Added
        -----
        
        - Apache WSGI Support (#191)
        - Brush up the Makefile (#207, #201)
        - Externalize the settings from source folder (#193)
        - Makefile: Add new rule to compile translations (#207)
        - Project creation can be restricted to admin (#210)
        - More responsive layout (#213)
        
        Changed
        -------
        
        - Some README enhancements
        - Move tests to budget.tests (#205)
        - The demo project can be disabled (#209)
        
        Fixed
        -----
        
        - Fix sphinx integration (#208)
        
        0.9 (2017-04-04)
        ================
        
        - First release of the project.
        
Keywords: web budget
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
