summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md18
-rw-r--r--Dockerfile1
-rw-r--r--README.md23
-rw-r--r--client/lib/utils.js2
4 files changed, 40 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0413046e..66f40784 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,23 @@
This release adds following new features:
-* Make Due Date layout nicer on minicard.
+* Make Due Date layout nicer on minicard;
+* [Wekan <=> MongoDB <=> ToroDB => PostgreSQL read-only
+ mirroring](https://github.com/wekan/wekan-postgresql)
+ for SQL access with any programming language
+ or Office package that has PostgreSQL support, like
+ newest LibreOffice 3.5;
+* [Wekan database cleanup script](https://github.com/fmonthel/wekan-cleanup) --
+ [Feedback](https://github.com/wekan/wekan/issues/833).
+ Link to cleanup script also added to README.md.
-Thanks to GitHub user whittssg2 for his contributions.
+and fixes the following bugs:
+
+* Dockerfile was missing EXPOSE $PORT;
+* Typos.
+
+Thanks to GitHub users fmonthel, vuxor, whittssg2 and xet7
+for their contributions.
# v0.11.1-rc1 2017-02-10 Wekan prerelease
diff --git a/Dockerfile b/Dockerfile
index b6e8b3df..507432f2 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -94,5 +94,6 @@ RUN \
rm /home/wekan/install_meteor.sh
ENV PORT=80
+EXPOSE $PORT
CMD ["node", "/build/main.js"]
diff --git a/README.md b/README.md
index 47dd8576..9bff23a2 100644
--- a/README.md
+++ b/README.md
@@ -81,15 +81,32 @@ Automatic generated newest builds are available for Docker, and some others that
install directly from this repo. Automatic builds will be added later for more
platforms.
+[Wekan database cleanup script][wekan_cleanup] -- [Feedback][cleanup_issue]
+
### Docker: [Docker image][docker_image], [Docs at wiki][wekan_wiki]
Docker example, running latest Wekan using docker-compose:
#### Running from remote dockerhub images
+
+Recommended:
+
+* [Wekan <=> MongoDB][wekan_mongodb] - contains the only required Docker Compose file
+
+Development:
+
+* Clone this wekan repo and run from dockerhub without building:
+
```
-sudo docker-compose pull && sudo docker-compose up -d --no-build
+sudo docker-compose up -d --nobuild
```
+#### PostgreSQL read-only mirroring using dockerhub images
+
+[Wekan <=> MongoDB <=> ToroDB => PostgreSQL read-only mirroring][wekan_postgresql]
+for SQL access with any programming language or Office package that has PostgreSQL support, like
+newest LibreOffice 3.5.
+
#### Running from locally built dockerhub images
```
sudo docker-compose up -d --build
@@ -186,3 +203,7 @@ with [Meteor](https://www.meteor.com).
[autoinstall_issue]: https://github.com/anselal/wekan/issues/18
[dev_docs]: https://github.com/wekan/wekan/wiki/Developer-Documentation
[donations]: http://www.xet7.org/wekan
+[wekan_mongodb]: https://github.com/wekan/wekan-mongodb
+[wekan_postgresql]: https://github.com/wekan/wekan-postgresql
+[wekan_cleanup]: https://github.com/fmonthel/wekan-cleanup
+[cleanup_issue]: https://github.com/wekan/wekan/issues/833
diff --git a/client/lib/utils.js b/client/lib/utils.js
index 4f772a60..9a9ff654 100644
--- a/client/lib/utils.js
+++ b/client/lib/utils.js
@@ -27,7 +27,7 @@ Utils = {
// in fact, what we really care is screen size
// large mobile device like iPad or android Pad has a big screen, it should also behave like a desktop
// in a small window (even on desktop), Wekan run in compact mode.
- // we can easily debug with a small window of desktop broswer. :-)
+ // we can easily debug with a small window of desktop browser. :-)
isMiniScreen() {
this.windowResizeDep.depend();
return $(window).width() <= 800;