Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update changelog. | Lauri Ojansivu | 2019-01-22 | 1 | -2/+12 |
| | |||||
* | Merge pull request #2119 from bentiss/fix-color-translation | Lauri Ojansivu | 2019-01-22 | 1 | -0/+2 |
|\ | | | | | Fix: Translate and add colors to IFTTT Rules dropdown." | ||||
| * | Fix: Translate and add colors to IFTTT Rules dropdown." | Benjamin Tissoires | 2019-01-22 | 1 | -0/+2 |
| | | | | | | | | | | | | | | This fixes commit 44e4df2492b95226f1297e7f556d61b1afaab714. When the label has a name, not setting `translatedname` results in a blank item in the IFTTT label trigger. | ||||
* | | Update translations. | Lauri Ojansivu | 2019-01-22 | 47 | -79/+126 |
|/ | |||||
* | Merge pull request #2118 from bentiss/export | Lauri Ojansivu | 2019-01-22 | 1 | -3/+5 |
|\ | | | | | Allow to call export from the API | ||||
| * | api: export board: allow authentication through generic authentication | Benjamin Tissoires | 2019-01-22 | 1 | -3/+5 |
|/ | | | | | | | | | This allows to retrieve the full export of the board from the API. When the board is big, retrieving individual cards is heavy for both the server and the number of requests. Allowing the API to directly call on export and then treat the data makes the whole process smoother. | ||||
* | - Translate and add colors to IFTTT Rules dropdown. | Lauri Ojansivu | 2019-01-22 | 3 | -18/+19 |
| | | | | Thanks to xet7 ! | ||||
* | Merge pull request #2117 from bentiss/color | Lauri Ojansivu | 2019-01-22 | 3 | -38/+42 |
|\ | | | | | Set the card color with the color picker | ||||
| * | Set the card color with the color picker | Benjamin Tissoires | 2019-01-22 | 3 | -38/+42 |
|/ | | | | When triggered from the hamburger | ||||
* | Update translations. | Lauri Ojansivu | 2019-01-22 | 47 | -0/+799 |
| | |||||
* | Merge pull request #2116 from bentiss/color | Lauri Ojansivu | 2019-01-22 | 12 | -9/+330 |
|\ | | | | | Add per card color | ||||
| * | add action: set card color | Benjamin Tissoires | 2019-01-22 | 4 | -6/+57 |
| | | |||||
| * | color: add option in hamburger to change the card color | Benjamin Tissoires | 2019-01-22 | 4 | -1/+73 |
| | | | | | | | | | | | | Currently only dropdown, no palette Fixes: #428 | ||||
| * | Add the ability to change the card background | Benjamin Tissoires | 2019-01-22 | 8 | -2/+200 |
| | | | | | | | | Currently the only way to set it is via the REST API | ||||
* | | Update translations. | Lauri Ojansivu | 2019-01-22 | 47 | -20/+67 |
|/ | |||||
* | - Added missing translation for 'days' | Lauri Ojansivu | 2019-01-21 | 1 | -0/+1 |
| | | | | | | Thanks to Chartman123 ! Closes #2114 | ||||
* | Update upcase/lowercase. | Lauri Ojansivu | 2019-01-20 | 1 | -4/+4 |
| | |||||
* | - [OpenAPI and generating of REST API ↵ | Lauri Ojansivu | 2019-01-19 | 1 | -3/+14 |
| | | | | | | Docs](https://github.com/wekan/wekan/pull/1965). Thanks to bentiss. | ||||
* | Merge branch 'bentiss-openapi' into devel | Lauri Ojansivu | 2019-01-19 | 15 | -44/+1971 |
|\ | |||||
| * | Merge branch 'openapi' of https://github.com/bentiss/wekan into bentiss-openapi | Lauri Ojansivu | 2019-01-19 | 15 | -44/+1971 |
|/| | |||||
| * | snap: also generate the html doc of the REST API | Benjamin Tissoires | 2019-01-18 | 1 | -0/+6 |
| | | | | | | | | | | Same for snap: embed the documentation of the REST API in the snap. | ||||
| * | openapi: generate the HTML documentation too and embed it in the image | Benjamin Tissoires | 2019-01-18 | 1 | -1/+4 |
| | | | | | | | | | | | | Aligning with the requirement to run the container without external resources: embed the documentation of the REST API directly in the Docker image. | ||||
| * | Add openapi in snaps | Benjamin Tissoires | 2019-01-18 | 1 | -0/+11 |
| | | | | | | | | | | Same thing than in the Dockerfile, snaps need to embed the current openapi yaml file. | ||||
| * | snapcraft add nodejs and npm as build dependencies | Benjamin Tissoires | 2019-01-18 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | When pulling the docker container snapcore/snapcraft to build the snap, those 2 packages are not present by default leading to a failure in the snap creation. Note: it is good to call `apt-get update` before `snapcraft` or the build will fail. | ||||
| * | openapi: make the code python 3.5 compatible | Benjamin Tissoires | 2019-01-18 | 1 | -68/+72 |
| | | | | | | | | | | | | | | | | | | | | It is common to use Ubuntu 16.04 to build snaps. For example, the official docker container to build snaps is using this old distribution. However, Ubuntu 16.04 ships Python 3.5.X which is not compatible with the f-strings in generate_openapi.py. This is sad, because we need to use the `.format()` syntax to make it compatible. | ||||
| * | Generate the OpenAPI in the Dockerfile | Benjamin Tissoires | 2019-01-18 | 1 | -1/+13 |
| | | | | | | | | | | | | When we build the docker container, we need to generate the openapi description in it so the geenrated API actually matches the code the container is running. | ||||
| * | RESTAPI: Add some JSDoc | Benjamin Tissoires | 2019-01-18 | 11 | -11/+994 |
| | | | | | | | | So we can have a decent REST API documentation generated. | ||||
| * | Add OpenAPI description of the REST API | Benjamin Tissoires | 2019-01-18 | 2 | -0/+938 |
| | | | | | | | | | | | | | | | | | | | | | | | | The API is generated by a custom script that parses the models directory. Once the API is generated, tools like https://editor.swagger.io/ or Python bravado can parse the file and generate a language friendly API. Note that the tool generate an OpenAPI 2.0 version because bravado doesn't handle OpenAPI 3.0. The script also parses the JSDoc with a custom parser to allow customization of the description of the fields. | ||||
| * | Revert "models: boards: add PUT members entry point" | Benjamin Tissoires | 2019-01-18 | 1 | -32/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit f61942e5cb672d3e0fd4df6c5ff9b3f15f7cb778. Adding a member is actually already handled by POST', '/api/boards/:boardId/members/:userId/add' So this function is purely duplicated. Not to mention that the '/add' one allows to set permissions so this one in this commit is less interesting. | ||||
* | | - Fix License to 2019. https://github.com/wekan/wekan/pull/2112 | Lauri Ojansivu | 2019-01-19 | 1 | -0/+1 |
| | | | | | | | | Thanks to ajRiverav ! | ||||
* | | Merge pull request #2112 from ajRiverav/devel | Lauri Ojansivu | 2019-01-19 | 1 | -1/+1 |
|\ \ | | | | | | | update license to year 2019 | ||||
| * | | update license to year 2019 | AJ Rivera | 2019-01-18 | 1 | -1/+1 |
| | | | |||||
* | | | Update translations. | Lauri Ojansivu | 2019-01-19 | 2 | -62/+62 |
| |/ |/| | |||||
* | | Update translations (ca). | Lauri Ojansivu | 2019-01-15 | 1 | -37/+37 |
|/ | |||||
* | Fix typo. | Lauri Ojansivu | 2019-01-13 | 1 | -0/+5 |
| | | | | | | Thanks to xorander00 ! Closes #2101 | ||||
* | Fix typo. | Lauri Ojansivu | 2019-01-13 | 1 | -2/+2 |
| | | | | | | Thanks to xorander00 ! Closes #2101 | ||||
* | Update translations. | Lauri Ojansivu | 2019-01-11 | 5 | -100/+100 |
| | |||||
* | v2.01v2.01 | Lauri Ojansivu | 2019-01-06 | 4 | -4/+8 |
| | |||||
* | Update translations (cs and he). | Lauri Ojansivu | 2019-01-06 | 2 | -98/+98 |
| | |||||
* | v2.00v2.00 | Lauri Ojansivu | 2019-01-04 | 4 | -4/+8 |
| | |||||
* | Update translations. | Lauri Ojansivu | 2019-01-04 | 7 | -86/+86 |
| | |||||
* | v1.99v1.99 | Lauri Ojansivu | 2019-01-04 | 4 | -6/+19 |
| | |||||
* | Update translations. | Lauri Ojansivu | 2019-01-04 | 47 | -188/+846 |
| | |||||
* | - Merge duplicate translation. | Lauri Ojansivu | 2019-01-04 | 4 | -16/+15 |
| | | | | Thanks to xet7 ! | ||||
* | - Remove duplicate translation. | Lauri Ojansivu | 2019-01-04 | 2 | -3/+2 |
| | | | | Thanks to xet7 ! | ||||
* | Merge branch 'edge' into devel | Lauri Ojansivu | 2019-01-04 | 2 | -168/+184 |
|\ | |||||
| * | Update translations (pt-BR). | Lauri Ojansivu | 2019-01-04 | 1 | -168/+168 |
| | | |||||
| * | - Add find.sh bash script that ignores extra directories when searching. | Lauri Ojansivu | 2019-01-02 | 1 | -0/+16 |
| | | | | | | | | | | | | xet7 uses this a lot when developing. Thanks to xet7 ! | ||||
* | | Merge branch 'Angtrim-feature-rules' into devel | Lauri Ojansivu | 2019-01-04 | 16 | -94/+433 |
|\ \ | |/ |/| | |||||
| * | - Fix lint errors. | Lauri Ojansivu | 2019-01-04 | 4 | -10/+10 |
| | | | | | | | | Thanks to xet7 ! |