| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2017-06-28 | Make all imports relative (#229) | Alexis Metaireau | 1 | -2/+3 | |
| * Make all imports relative * Change the way the application runs in the Makefile * Import the default settings relatively * Fix manage.py imports | |||||
| 2017-05-18 | Public project creation and admin permissions (#210) | 0livd | 1 | -0/+5 | |
| * Add a @requires_admin decorator It can be used to protect specific endpoints with ADMIN_PASSWORD (a password that is stored unencrypted in the settings) The decorator has no effect if ADMIN_PASSWORD is an empty string (default value) * Require admin permissions to access create project endpoint When ADMIN_PASSWORD is not empty, project creation form on the home page will be replaced by a link to the create project endpoint so one is able to enter the admin password before filling the form | |||||
| 2017-03-29 | Remove deprecated wtforms TextField | Jocelyn Delalande | 1 | -9/+9 | |
| It is a bare alias of StringField (thus, no alembic migration is required), deprecated since wtforms v2.0 (2013). Removes the following warning: > DeprecationWarning: The TextField alias for StringField has been deprecated and will be removed in WTForms 3.0 Ref https://github.com/wtforms/wtforms/commit/f07729dd45c0f5191f131d37adb0456104dc7c44 | |||||
| 2017-03-19 | Remove unused archive feature | 0livd | 1 | -6/+0 | |
| The archive table is not removed from the database model because it would involve a tricky migration fixes #170 | |||||
| 2017-03-17 | Make ihatemoney Py2/3 compatible | 0livd | 1 | -11/+13 | |
| Flask-wtf>=0.13 is now required and Form is replaced by FlaskForm Py2/3 compatibility is assured by six | |||||
| 2017-03-09 | Add export feature | 0livd | 1 | -0/+13 | |
| Bills and transactions can now be exported to json or csv ref #28 | |||||
| 2017-02-16 | Remove obsolete code | Alexandre Avenel | 1 | -22/+0 | |
| 2017-02-16 | Fix xss (#173) | Alexandre Avenel | 1 | -1/+1 | |
| Fix #173 Rewrite multi select widget as a template in order to have all values properly escaped. | |||||
| 2017-02-04 | Adapt to bootstrap 4 forms | Jocelyn Delalande | 1 | -2/+2 | |
| - Adapt to BS4 class names and hierarchy - Redesign some forms to have the label above the input (mobile-friendly) - For the remaining inline form (add bill), use the grid, as BS no longer provides inline form alignment helpers | |||||
| 2017-01-21 | Fix deprecation issues (ExtDeprecationWarning) | Alexandre Avenel | 1 | -2/+2 | |
| 2016-09-12 | Allow negative bill amounts | fredericsureau | 1 | -3/+1 | |
| 2016-06-16 | Added member edit form | Jocelyn Delande | 1 | -4/+10 | |
| 2016-06-15 | Add members weight in models and budget backend refs #94 | Jocelyn Delande | 1 | -0/+2 | |
| 2015-04-12 | Fix #118 : Create a new project with the name "dashboard" should raise an ↵ | Alexandre Avenel | 1 | -1/+1 | |
| exception | |||||
| 2013-02-18 | update for flask 0.9 | A.Avenel | 1 | -2/+2 | |
| 2012-11-26 | update for "create archive" interface | A.Avenel | 1 | -3/+3 | |
| 2012-11-25 | Cosmetic changes for "add a bill" panel | A.Avenel | 1 | -4/+2 | |
| 2012-04-05 | Update to Boostrap v2. | Frédéric Sureau | 1 | -2/+1 | |
| Remove unused libs (QTip, JQueryUI) and add bootstrap-datepicker which is much lighter. | |||||
| 2012-03-06 | pep8 <3 and '*' imports removal | Feth AREZKI | 1 | -20/+34 | |
| 2011-11-28 | Add a 'sumbit and add a new one' button for new bills. Fix #53 | Alexis Metaireau | 1 | -1/+2 | |
| 2011-11-28 | Fix #59. Edit now works properly | Alexis Metaireau | 1 | -3/+2 | |
| 2011-11-20 | Addition of an auto hiding user information message in the add user text ↵ | Tinmn | 1 | -1/+3 | |
| field (with translation). | |||||
| 2011-11-03 | Small fix in CommaDecimalField class | A.Avenel | 1 | -1/+2 | |
| 2011-11-02 | Merge remote branches 'upstream/master' and 'origin/master' | A.Avenel | 1 | -1/+0 | |
| 2011-11-02 | Part of a fix to #62 : french numbers should use commas rather than dots | A.Avenel | 1 | -2/+9 | |
| 2011-11-02 | Add a way to delete a project. Fix #63 | Arnaud Bos | 1 | -1/+0 | |
| 2011-11-01 | Correct "payed" --> "paid" typo. Fix #60. See #48 for spelling mistakes and ↵ | Arnaud Bos | 1 | -1/+1 | |
| typos | |||||
| 2011-11-01 | Improvement of the sidebar look. Related to #34. Fix #52. | Arnaud Bos | 1 | -1/+1 | |
| 2011-10-20 | Last selected payer and translations. Fix #47. | Arnaud Bos | 1 | -1/+8 | |
| - Last selected payer selected by default when creating a new bill - Fix some translation typos and modify a few labels | |||||
| 2011-10-18 | Bills can't be negative. Fix #45 | Alexis Metaireau | 1 | -0/+4 | |
| 2011-10-15 | Fix translations of forms. | Alexis Metaireau | 1 | -1/+1 | |
| Forms are not context related, thus translations are done only once if not done in a lazy way. the fix is to use lazy_gettext rather than gettext. Fix #12 | |||||
| 2011-10-15 | Translate the application using Flask-babel. | Alexis Metaireau | 1 | -36/+31 | |
| The only translation so far is french, but more can be added. The browser language is used thanks to the HTTP languages headers. There are still some problems with the translation of some strings, I don't know why this is. See #12 | |||||
| 2011-10-14 | I HAZ TO RUN TESTS BEFORE COMMITING | Alexis Metaireau | 1 | -3/+3 | |
| 2011-10-13 | Coerce the payer choice to int, default is unicode. Fix #33 | Alexis Metaireau | 1 | -1/+1 | |
| 2011-10-08 | Add a password recovery feature. Fix #32 | Alexis Metaireau | 1 | -0/+10 | |
| 2011-10-08 | merge with master | Alexis Metaireau | 1 | -4/+5 | |
| 2011-10-08 | Complete the REST API + Tests. Fix #27 | Alexis Metaireau | 1 | -2/+3 | |
| 2011-09-18 | Merge mistake, my bad | Arnaud Bos | 1 | -0/+1 | |
| - Restore ProjectForm.password as a PasswordField and not TextField | |||||
| 2011-09-18 | Merge branch 'master' into auth-forms-usability | Arnaud Bos | 1 | -17/+36 | |
| 2011-09-14 | Provide a way to edit a project. Fix #17 | Alexis Metaireau | 1 | -9/+13 | |
| 2011-09-14 | Make the identifier clearer to the end-user. | Arnaud Bos | 1 | -1/+1 | |
| - Send an email to the user with the summary of the created project containing a reminder of the identifier, password and a link. - Add flash message with the identifier in the /invite page/ - Add a small note containing the identifier in the upper right corner of the project main page. | |||||
| 2011-09-13 | API: Create and Update support | Alexis Metaireau | 1 | -4/+20 | |
| 2011-09-11 | Fix #24 on Authentication and New project forms usability. | Arnaud Bos | 1 | -4/+31 | |
| - Do not display anymore the identifier field in home. - Let the user enter the id if the slug generated from project name already exists as a project id. - Moved get_billform_for from 'utils' to 'forms', to avoid issue (was 'from forms import ...' into utils, and 'from utils import ...' into forms, which causeed an error). | |||||
| 2011-09-09 | Start working on archive management | Alexis Metaireau | 1 | -0/+5 | |
| 2011-08-22 | Add missing tests. Fixes #14 and #22. | Alexis Metaireau | 1 | -1/+2 | |
| 2011-08-21 | Re-design (Fixes #19) | Alexis Metaireau | 1 | -3/+2 | |
| 2011-08-10 | Add some more tests about membership. (#14) | Alexis Metaireau | 1 | -1/+0 | |
| Fixes #15 as invalid: deactivated users are not listed on the bill form or on the balance. | |||||
| 2011-08-10 | Add tests about project creation and member add. | Alexis Metaireau | 1 | -0/+4 | |
| See #14 | |||||
| 2011-08-10 | It is now possible to edit existing bills. | Frédéric Sureau | 1 | -7/+18 | |
| 2011-08-10 | Changed 'for' value of checkboxes labels when adding a bill. This is now ↵ | Frédéric Sureau | 1 | -1/+1 | |
| possible to check the correct box when you click on the label. | |||||
