blob: a6f8839435485edb9623ea7d52df2c672f0a7821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
Install it
----------
Install dependencies:
```
# apt install libgtk-3-dev libappindicator3-dev golang pkg-config
```
Build the systray:
```
$ git clone 0xacab.org/leap/bitmask-systray
$ cd bitmask-systray
$ go get .
$ go build
```
To be able to build the assets you'll need:
```
$ go get -u golang.org/x/text/cmd/gotext github.com/cratonica/2goarray
```
OSX
----------
Using homebrew:
```
$ brew install golang zmq pkg-config
$ brew install --default-names gnu-sed
$ git clone 0xacab.org/leap/bitmask-systray
$ cd bitmask-systray
$ go get .
$ go build
```
Linux
----------
Building the systray in linux will produce some `-Wdeprecated-declarations` warnings, like that:
```
cgo-gcc-prolog: In function ‘_cgo_3f9f61f961c9_Cfunc_gtk_font_button_get_font_name’:
cgo-gcc-prolog:5455:2: warning: ‘gtk_font_button_get_font_name’ is deprecated [-Wdeprecated-declarations]
In file included from /usr/include/gtk-3.0/gtk/gtk.h:106:0,
from ../../../go/src/github.com/gotk3/gotk3/gtk/gtk.go:48:
/usr/include/gtk-3.0/gtk/gtkfontbutton.h:96:23: note: declared here
const gchar * gtk_font_button_get_font_name (GtkFontButton *font_button);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
They are expected and don't produce any problem on the systray.
Run it
-------------
bitmask-systray assumes that you already have bitmaskd running.
Run bitmask and the systray:
```
$ bitmaskd
$ ./bitmask-systray
```
Standalone
-------------
Is also posible to compile the systray to be standalone (don't depend on bitmask):
```
$ go build -tags standalone
```
It still requires a helper and openvpn installed to work. For linux the helper is
[bitmask-root](https://0xacab.org/leap/bitmask-dev/blob/master/src/leap/bitmask/vpn/helpers/linux/bitmask-root)
for windows and OSX there is [a helper written in go](https://0xacab.org/leap/riseup_vpn/tree/master/helper).
i18n
----
Generate `locales/*` files:
```
$ make generate_locales LANGS="sjn tlh"
```
Edit the `locales/*/out.gotext.json` translations into `locales/*/messages.gotext.json`.
To rebuild the locales:
```
$ make locales
```
Report an issue
-------------------
When you report an issue include the following information:
* what you expected to see
* what you got
* the version of the program. You can check the version on the about page.
* the logs of the program. The location of the logs depends on the OS:
* linux: `/home/<your user>/.config/leap/bitmaskd.log` & `/home/<your user>/.config/leap/systray.log`
* OSX: `/Users/<your user>/Library/Preferences/leap/systray.log`, `/Applications/RiseupVPN.app/Contents/helper/helper.log` & `/Applications/RiseupVPN.app/Contents/helper/openvpn.log`
* windows: `C:\Users\<your user>\AppData\Local\leap\systray.log`, `C:\Program Files\RiseupVPN\helper.log` & `C:\Program Files\RiseupVPN\openvp.log`
|