Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-29 | [pkg] bump status to beta | Kali Kaneko | |
2015-10-28 | [pkg] bump dependencies0.9.0 | Ivan Alejandro | |
2015-10-28 | [pkg] add joint changelog and announcement text | Ivan Alejandro | |
2015-10-28 | [pkg] merge RCs changes and fold in files | Ivan Alejandro | |
2015-10-27 | [pkg] remove old relnotes file | Ivan Alejandro | |
We now use the more nice looking release-notes.rst - Annoucement text goes on the website - License is already in a file and on the readme - Instructions to install/test/hack have their own page on docs | |||
2015-10-23 | [i18n] add an extra env variable to change lang | Ivan Alejandro | |
In some cases setting just `LANG` doesn't change the language, in those cases, setting `LC_ALL` does the trick. | |||
2015-10-20 | [i18n] update spanish resource file | Ivan Alejandro | |
2015-10-20 | [i18n] update spanish strings | Ivan Alejandro | |
2015-10-20 | [i18n] update source i18n file | Ivan Alejandro | |
2015-10-16 | fix IS_SUMO assignment | Kali Kaneko | |
2015-10-09 | [pkg] skip leap-deps in sumo too | Kali Kaneko | |
2015-10-09 | [pkg] make sumo tar non-namespace package | Kali Kaneko | |
2015-10-09 | [pkg] add pems to data (for sumo tarball) | Kali Kaneko | |
2015-10-07 | [pkg] add changes file for #7512 | Ivan Alejandro | |
2015-10-07 | [bug] pass on standalone flag to common | Ivan Alejandro | |
- Related: #7512 | |||
2015-10-06 | [bug] store logs in the right place | Ivan Alejandro | |
Load flags before creating logger so the logs path considers the standalone flag. Move the log file path definition to the function, otherwise it will calculated during import and (most likely) before defining the flags.STANDALONE value. Create logger inside `run_frontend` right after knowing if we are standalone or not. - Resolves: #7512 | |||
2015-10-06 | [bug] store zmq certs in the right path | Ivan Alejandro | |
Change KEYS_DIR for a function, so the path does not get defined on import (and most likely) before the flags are defined. Move the flags_dict call before the generate_zmq_certificates call. Otherwise the standalone flag won't be set properly. - Resolves: #7512 | |||
2015-10-05 | [pkg] update release notes0.9.0rc4 | Ivan Alejandro | |
2015-10-05 | [pkg] fold in changes | Ivan Alejandro | |
2015-10-05 | [docs] add irc badge | Kali Kaneko | |
2015-10-02 | [bug] move assign to prevent race condition | Ivan Alejandro | |
When the error happens too quickly, the errback is called before the assign of the callLater. And in the errback we cancel that call which gives an error. - Related: #7451 | |||
2015-10-02 | [bug] signal soledad bootstrap fail on init | Ivan Alejandro | |
- Resolves: #7503 Signed-off-by: Ivan Alejandro <ivanalejandro0@gmail.com> | |||
2015-10-02 | [bug] remove bubble argument from the logbook NullHandler | Ruben Pollan | |
NullHandler doesn't have anymore the argument bubble. https://pythonhosted.org/Logbook/changelog.html#version-0-11-0 | |||
2015-09-23 | [feat] disable email firewall on docker containers | Ivan Alejandro | |
- Related: #7471 | |||
2015-09-23 | [docs] fix usage indication for bitmask-docker script | Kali Kaneko | |
2015-09-23 | [docs] small additions to CONTRIBUTING | Kali Kaneko | |
2015-09-22 | [docs] add CONTRIBUTING file | Ivan Alejandro | |
- Resolves: #7445 | |||
2015-09-22 | [pkg] fold in changes0.9.0rc3 | Ivan Alejandro | |
2015-09-21 | [bug] add compatibility mode for platform < 0.8 | Kali Kaneko | |
there was a bug in plaform that made webapp not serve correctly the smtp certificates. with this fallback, we try to support platforms < 0.8, although we should deprecate this behavior in bitmask 0.10 | |||
2015-09-21 | [feature] retrieve specific smtp certificate. Closes: #4284 | Kali Kaneko | |
2015-09-21 | [bug] fix typo on backend name | Ivan Alejandro | |
2015-09-18 | [bug] track soledad ready state on a shared place | Ivan Alejandro | |
Connecting to the `soledad_bootstrap_finished` signal is not enough since the password change window is created after the signal is emitted, that way we were not able to tell when soledad is ready to be used. - Resolves: #7474 | |||
2015-09-18 | [bug] correctly return expected value for methods that check services | Kali Kaneko | |
these methods were returning None, and therefore breaking soledad password change (since it checks whether mail is enabled before changing soledad pass after srp pass change). - Resolves: #7470 | |||
2015-09-18 | [bug] show unread emails after sync complete | Ivan Alejandro | |
Right after a complete sync we show the unread emails. - Resolves: #7453 | |||
2015-09-17 | [style] pep8 fixes | Kali Kaneko | |
2015-09-18 | [feat] remove taskthread dependency | Ruben Pollan | |
Refactor ivan's code (aa4b684d0682ff9faf1577653fa5ceabbc6e0f20) to remove the time.sleep. - Resolves: #7414 | |||
2015-09-17 | [bug] fix assignment of the incoming service | Kali Kaneko | |
the second callback was actually broken, not being called when it was supposed to be. the reason is that IncomingMail.startService returns a deferred which callback is called with the loopingCall instance only when the loopingCall is stopped. | |||
2015-09-16 | [bug] authenticate logout calls to api | Kali Kaneko | |
logout calls were not being authenticated, so we were receiving 401 return code. | |||
2015-09-15 | [pkg] require Logbook 0.7.0 or newer | Ivan Alejandro | |
For our logging we need a new logbook feature that was added on 0.7.0. - Resolves: #7449 | |||
2015-09-14 | [pkg] revert attempt to be compatible with logbook 0.6.0 | Kali Kaneko | |
we need the 'multi' feature all the same, so we'll be depending on logbook >= 0.7.0. | |||
2015-09-11 | [pkg] add libzmq dependency | Ivan Alejandro | |
This is needed if we use wheels, since the zmq library is not build as it is when we install from code. | |||
2015-09-11 | [bug] fix import | Kali Kaneko | |
there's an error in the import | |||
2015-09-10 | [docs] add some docs for new docker stuff | Ivan Alejandro | |
- Resolves: #7446 | |||
2015-09-10 | [bug] add compatibility for logbook versions < 0.7.0 | Kali Kaneko | |
for the version in ubuntu trusty, the call for the zeromq handler initialization gets one less argument | |||
2015-09-09 | [docs] fix broken pypi badge | Kali Kaneko | |
2015-09-09 | [feat] use docker to test .deb packages | Ivan Alejandro | |
Add scripts to easily test (stable or unstable) debian packages. - Resolves: #6715 | |||
2015-09-09 | [pkg] add docker/data to ignores | Kali Kaneko | |
2015-09-09 | [feat] install using leap-wheels | Ivan Alejandro | |
I did the previous merge against an outdated version of the PR branch (leapcode/pr/889). Sorry! | |||
2015-09-08 | [feat] run bitmask inside a docker container | Ivan Alejandro | |
2015-09-07 | [bug] fix argument number on window raise event | Ivan Alejandro | |
- Resolves: #7415 |