Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-09 | [bug] make openvpn and firewall able to launch | Kali Kaneko | |
with these fixes, I'm able to finally launch openvpn and firewall on osx. :) all that's left for a minimum vpn release is packaging and installing all the helpers in the proper place. | |||
2017-06-07 | [docs] note about debugging osx helper | Kali Kaneko (leap communications) | |
2017-06-07 | [docs] typo in known issues docs | kwadronaut | |
- Resolves: #8919 - Documentation: #8919 | |||
2017-06-07 | [docs] update issue tracker in docs | Kali Kaneko (leap communications) | |
2017-06-07 | [docs] document testing of the osx helper | Kali Kaneko (leap communications) | |
2017-06-07 | [style] pep8 | Kali Kaneko (leap communications) | |
2017-06-07 | [tests] re-enable all tests | Kali Kaneko (leap communications) | |
2017-06-07 | [tests] enable mail e2e again | Kali Kaneko (leap communications) | |
- skip ssl verification for this test - use mail.bitmask as e2e provider for now (ci.leap.se seems broken; cannot download smtp cert) | |||
2017-06-07 | [feature] run vpn directly if user is root | Kali Kaneko (leap communications) | |
- Improve tests too: add entry in resolv.conf, not done without resolvconf | |||
2017-06-07 | [feature] log output of subprocess call | Kali Kaneko (leap communications) | |
2017-06-07 | [refactor] install helpers in makefile | Kali Kaneko (leap communications) | |
2017-06-07 | [feat] do not use pkexec if we are root | Kali Kaneko (leap communications) | |
2017-06-07 | [tests] improve vpn e2e test | Kali Kaneko (leap communications) | |
- add invite code | |||
2017-06-07 | [tests] copy helpers for vpn e2e | Kali Kaneko (leap communications) | |
2017-06-07 | [tests] simple e2e vpn test | Kali Kaneko (leap communications) | |
- Resolves: #8874 | |||
2017-06-07 | [docs] change order of steps | Kali Kaneko (leap communications) | |
2017-06-07 | [docs] bitmask has to be running to configure tb | Kali Kaneko (leap communications) | |
2017-06-06 | [pkg] copy sql file from new path | Kali Kaneko (leap communications) | |
2017-06-06 | [pkg] get rid of dist folder | Kali Kaneko (leap communications) | |
2017-06-06 | [pkg] build with latest soledad release | Kali Kaneko (leap communications) | |
2017-06-05 | [style] grammar | Kali Kaneko (leap communications) | |
2017-06-05 | [feat] On bitmaskclt vpn start use the last vpn if no provider is provided | Ruben Pollan | |
- Resolves: #8835 | |||
2017-06-05 | [test] validate the CA cert fingerprint check | Ruben Pollan | |
2017-06-05 | [bug] fail bonafide bootstrap for self sign certs | Ruben Pollan | |
- Resolves: #8881 | |||
2017-06-05 | [feat] check ca cert fingreprint against provider.json | Ruben Pollan | |
2017-06-05 | [docs] add signoff-rebase alias | Ruben Pollan | |
2017-06-01 | [refactor] improve error reporting when openvpn not found | Kali Kaneko (leap communications) | |
2017-06-01 | [refactor] hide mac/linux switch inside process module | Kali Kaneko (leap communications) | |
2017-06-01 | [feat] use vpncanary for osx | Kali Kaneko (leap communications) | |
2017-06-01 | [feat] darwin helper command | Kali Kaneko (leap communications) | |
2017-05-31 | [docs] document helper installation | Kali Kaneko (leap communications) | |
2017-05-31 | [refactor] factor out installer function | Kali Kaneko (leap communications) | |
2017-05-31 | [feat] install installers directly if we are root | Kali Kaneko (leap communications) | |
2017-05-31 | [docs] update vpn readme | Kali Kaneko (leap communications) | |
2017-05-31 | [bug] fix deprecated import of cryptography multibackend | Kali Kaneko (leap communications) | |
- Resolves: #8910 | |||
2017-05-31 | [pkg] copy over osx boilerplate from legacy repo | Kali Kaneko (leap communications) | |
2017-05-31 | [docs] use mailmap to de-duplicate committers | varac | |
2017-05-31 | Fix soledad image location | varac | |
2017-05-30 | [pkg] settle on 0.10a10.10a1 | Kali Kaneko (leap communications) | |
2017-05-30 | [docs] add notes for osx/windows dev env | Kali Kaneko (leap communications) | |
2017-05-30 | [pkg] bump next version | Kali Kaneko (leap communications) | |
2017-05-29 | add osx/windows documents | Kali Kaneko (leap communications) | |
2017-05-26 | [docs] formatting | Kali Kaneko (leap communications) | |
2017-05-26 | [doc] webkit -> qtwebkit | Ruben Pollan | |
2017-05-24 | [docs] add pixelated/thunderbird issues to known issues | Kali Kaneko (leap communications) | |
2017-05-24 | [tests] fix tests | Kali Kaneko (leap communications) | |
2017-05-24 | [refactor] simplify wrapper create and add_msg | Kali Kaneko (leap communications) | |
- remove premature optimization for fast-notifies. blobs will cover that, no point in maintaning the optimization at the price of creeping complexity. | |||
2017-05-24 | [bug] fix sending mail error from pixelated | Kali Kaneko (leap communications) | |
- Create the 'Sent folder' ourselves to avoid pixelated hitting a bug in mailbox creation. - I believe there's still a problem with bitmask desing for the adaptor (in get-or-create mailbox). This needs further tests. - Case manipualation to avoid having a 'Sent' and 'SENT' folder when Thunderbird and Pixelated write to those. - Further hacks to monkeypatch the leap-mail-adapter that Pixelated uses (make them reuse the account instance!). This is getting insane, I am really looking forward to the fork. - Duly note our technical debt in the area of Pixelated integration. Keeping the Pixelated codebase untouched for a long time will backfire. As far as I've noticed, we have a basic violation of the assumptions about a single-instance writes and notifications to all listeners. As commented in the commit, this should go either for a guarantee that only one account object is created per user (creating it in the bootstrapping process in bitmask), or for the opposite direction in which the listeners are communicated in some other way (zmq events, for instance). - In any case, it's strongly recommended to deduplicate the Pixelated libraries as soon as possible and make Pixelated use a better defined set of Bitmask's public apis. - Modify the wrapper create methods so that they return the modified wrapper itself. - Resolves: #8903, #8904 | |||
2017-05-23 | [feature] enable vpn by default, yeah | Kali Kaneko (leap communications) | |
2017-05-22 | [docs] format typo | Kali Kaneko (leap communications) | |