Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-19 | [bug] fix flex styling for vpn indicator | Simon Fondrie-Teitler | |
The version of webkit we're using doesn't understand display: flex, instead it needs display: -webkit-flex. | |||
2017-05-18 | [pkg] need wget for bundles | Kali Kaneko (leap communications) | |
2017-05-18 | [docs] minor: formatting changes | Kali Kaneko (leap communications) | |
2017-05-18 | [tests] touch the dockerfile to force it being rebuilt | Kali Kaneko (leap communications) | |
2017-05-18 | [tests] another attempt at limiting docker job to parent leap repo | Kali Kaneko (leap communications) | |
2017-05-17 | [bug] add policykit-1 to docker image for e2e tests | Kali Kaneko (leap communications) | |
2017-05-17 | [tests] do not install pixelated on tests for now | Kali Kaneko (leap communications) | |
2017-05-17 | [refactor] define class only if we are importing pixelated | Kali Kaneko (leap communications) | |
2017-05-16 | [bug] limit docker job to only run in main repository | Micah Anderson | |
This will enable forks to run jobs, without needing access to the private token, or access to the docker-in-docker tagged runner | |||
2017-05-16 | [bug] use correct api uri | Kali Kaneko (leap communications) | |
Allows to upload a key to providers that use a different api uri than api.provider.net - Resolves: #8868 | |||
2017-05-16 | [refactor] cleanup | Kali Kaneko (leap communications) | |
2017-05-16 | [tests] remove listener test | Kali Kaneko (leap communications) | |
I've removed the add_listener method because it's not used anywhere. | |||
2017-05-16 | [tests] install pixelated in tox also | Kali Kaneko (leap communications) | |
2017-05-16 | [bug] allow incoming mail to be properly notified to pixelated | Kali Kaneko (leap communications) | |
If we do fast-notifies with pixelated running, the poll notifications for new mail on inbox break on pixelated side, because the email is not ready. - Related: #8798 | |||
2017-05-16 | [bug] fix notification for incoming mail with several listeners registered | Kali Kaneko (leap communications) | |
When setting the listeners in the IMAP Folder, we avoid setting more than one listener for the same imap mailbox (because in some situations we were registering way too many listeners). this was making the pixelated inbox registering the notification and therefore the imap mailbox not being registered. this MR also refactors the way pixelated is initialized, so that it avoid creating a second Account instance. In this way, we make sure that the pixelated mua and the imap server share the same collections for a given mailbox, and therefore any of the two is able to get a notification whenever the other adds a message to the mailbox. - Resolves: #8846, #8798 | |||
2017-05-16 | [docs] thunderbird integration | Kali Kaneko (leap communications) | |
2017-05-16 | [feat] add icon to account list indicating account with active VPN | Simon Fondrie-Teitler | |
This adds a lock icon to the account list next to the account with the currently active VPN. The icon is green if the VPN is connected, yellow if the VPN is connectiong, and red in any other case. - Resolves: #8853 | |||
2017-05-16 | [pkg] add dependencies for pixelated to the makefile | Kali Kaneko (leap communications) | |
2017-05-12 | [bug] return ok from a succesful provider delete | Ruben Pollan | |
2017-05-12 | [bug] make global the provider bootstrap deferreds | Ruben Pollan | |
- Resolves: #8884 | |||
2017-05-11 | [feat] add provider to the cli | Ruben Pollan | |
2017-05-11 | [bug] return core status as json instead of string | Ruben Pollan | |
- Resolves: #8886 | |||
2017-05-11 | [bug] pass the print_json flag to the vpn cli | Ruben Pollan | |
- Resolves: #8887 | |||
2017-05-09 | [pkg] stop producing debug bundles for now | Kali Kaneko (leap communications) | |
2017-05-09 | Run e2e tests againts ci.leap.se | varac | |
Resolves: #8882 | |||
2017-05-07 | [pkg] add pixelated packages to makefile | Kali Kaneko (leap communications) | |
2017-05-07 | [refactor] rename pixelated module | Kali Kaneko (leap communications) | |
2017-05-05 | [bug] add missing libs to make the bundle work on latest ubuntu | Kali Kaneko (leap communications) | |
- Resolves: #8876 | |||
2017-05-04 | [feat] Create and publish docker image (see #8755). | Micah Anderson | |
When the tests/docker directory is changed, this CI job is triggered to build the docker image and push it to the bitmask-dev container registry. This allows us to change the existing CI jobs to pull the image from our registry, instead of from dockerhub. | |||
2017-05-04 | [bug] Pass the right representation for the autoconf param from the cli | Kali Kaneko (leap communications) | |
In the previous commit 73fe341 the autoconf param for authentication calls was changed to 'True', so the cli has to send the right representation. | |||
2017-05-04 | [bug] correctly handle authenticate's autoconf parameter | Simon Fondrie-Teitler | |
This fixes two bugs with handling the autoconf parameter: - It looks for "True" instead of "true" in the dispatching code to account for json.dumps() converting true into a boolean and str() returning the python-style capitalized version "True". - It moves the initial definitions of offirst_bootstrap, ongoing_bootstrap, and stuck_bootstrap into the class instantiation method so they don't get shared between instances of the class. Previously, this caused one instance being bootstrapped to causes other instances to think they were also actively being bootstrapped. Resolves #8843 | |||
2017-05-04 | use my registry to test | Micah Anderson | |
2017-05-04 | update to remove variables | Micah Anderson | |
2017-05-04 | Build docker image and push it to the container registry when tests/docker ↵ | Micah Anderson | |
are changed | |||
2017-05-04 | [feat] Go to first open line when enter is pressed | Simon Fondrie-Teitler | |
When filling out the signup or login pages, and when adding an additional service provider, the enter key will trigger the submit action. When on the choose provider page, enter will take you to the next page. - Resolves: #8841 | |||
2017-05-04 | [docs] add simonft to authors | Kali Kaneko (leap communications) | |
2017-05-04 | [bug] Properly format string formatting | Simon Fondrie-Teitler | |
2017-05-04 | [style] wording | Kali Kaneko (leap communications) | |
2017-05-03 | [bug] include bitmask_helpers into the frozen binary | Ruben Pollan | |
The bundled version of bitmask is unable to find the bitmask_helpers binary. Let's include it as part of the frozen binary generated by pyinstaller. - Resolves: #8862 | |||
2017-05-02 | [style] remove unused imports | Ruben Pollan | |
- Resolves: #8873 | |||
2017-05-02 | [pkg] adding appdirs as dependency for manhole | Ruben Pollan | |
2017-05-02 | [bug] set a non-None value for configuration defaults | Ruben Pollan | |
None is recognized as not-default and gives an error if the searched config value is not present in the config file. This was provoking an error with manhole not being configured. | |||
2017-05-01 | [bug] remove remanents of IMAP profiling code | Ruben Pollan | |
- Resolves: #8870 | |||
2017-05-01 | [pkg] use soledad from master for bundles | Kali Kaneko (leap communications) | |
to workaround a failure that breaks client I should tag soledad 0.9.6 soonish and make everything pip-installable again | |||
2017-05-01 | [docs] update the manhole documentation | Kali Kaneko (leap communications) | |
2017-05-01 | [feature] streamline and move manhole into core | Kali Kaneko (leap communications) | |
2017-04-30 | [style] remove unused logger from vpn | Ruben Pollan | |
2017-04-27 | [style] pep8 fixes | Kali Kaneko (leap communications) | |
2017-04-27 | [tests] fix tests | Kali Kaneko (leap communications) | |
mock a renamed method. | |||
2017-04-27 | [docs] remove note about missing vpn support | Kali Kaneko (leap communications) | |