File tree Expand file tree Collapse file tree 11 files changed +227
-320
lines changed Expand file tree Collapse file tree 11 files changed +227
-320
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ title: Installation
4
4
hide :
5
5
- navigation
6
6
- toc
7
+ os_button : null
7
8
---
8
9
9
- {{newline}}
10
+ {{newline}}
Original file line number Diff line number Diff line change @@ -4,6 +4,85 @@ title: Linux Installation
4
4
hide :
5
5
- navigation
6
6
- toc
7
+ os_button : linux
8
+ compile_guide : https://github.com/xournalpp/xournalpp/blob/master/readme/LinuxBuild.md
9
+
10
+ version_class : linux
11
+ versions :
12
+ - name : Stable
13
+ subtitle : (Recommended)
14
+ description : Suits most users with its focus on stability.
15
+ links :
16
+ - label : AppImage
17
+ attr : linux.appimage
18
+ - label : Flatpak
19
+ attr : linux.flatpak
20
+ - label : Snap
21
+ attr : linux.snap
22
+ - label : " .deb"
23
+ attr : linux.debianStable
24
+ - name : Nightly
25
+ subtitle : (Unstable)
26
+ description : Get new features as soon as they're implemented, in exchange for stability.
27
+ links :
28
+ - label : AppImage
29
+ attr : nightly
30
+ - label : " .deb"
31
+ attr : nightly
7
32
---
8
33
9
- {{newline}}
34
+ === "Ubuntu and derivatives"
35
+
36
+ Install the latest stable release from the following unofficial ppa
37
+ ```bash
38
+ sudo add-apt-repository ppa:apandada1/xournalpp-stable
39
+ sudo apt update
40
+ sudo apt install xournalpp
41
+ ```
42
+
43
+ Install the latest unstable nightly release from the following unofficial ppa
44
+ ```bash
45
+ sudo add-apt-repository ppa:apandada1/xournalpp-master
46
+ sudo apt update
47
+ sudo apt install xournalpp
48
+ ```
49
+
50
+ Both of these can be easily upgraded via
51
+ ```bash
52
+ sudo apt update && sudo apt upgrade
53
+ ```
54
+
55
+ === "Fedora"
56
+
57
+ Install the latest stable release via
58
+ ```bash
59
+ dnf install xournalpp
60
+ ```
61
+
62
+ === "Solus"
63
+
64
+ Install the latest stable release via
65
+ ```bash
66
+ sudo eopkg it xournalpp
67
+ ```
68
+
69
+ === "openSUSE"
70
+
71
+ Install the latest stable release via
72
+ ```bash
73
+ zypper in xournalpp
74
+ ```
75
+
76
+ === "NixOS / Nix"
77
+
78
+ Install the latest stable release via
79
+ ```bash
80
+ nix-env -iA nixpkgs.xournalpp
81
+ ```
82
+
83
+ === "Arch"
84
+
85
+ Install the latest stable release via
86
+ ```bash
87
+ pacman -S xournalpp
88
+ ```
Original file line number Diff line number Diff line change @@ -4,6 +4,21 @@ title: MacOS Installation
4
4
hide :
5
5
- navigation
6
6
- toc
7
+ os_button : macos
8
+ compile_guide : https://github.com/xournalpp/xournalpp/blob/master/readme/MacBuild.md
9
+
10
+ version_class : windows-macos
11
+ versions :
12
+ - name : Stable
13
+ subtitle : (Recommended)
14
+ description : Suits most users with its focus on stability.
15
+ links : macos.stable
16
+ - name : Nightly
17
+ subtitle : (Unstable)
18
+ description : Get new features as soon as they're implemented, in exchange for stability.
19
+ links : nightly
7
20
---
8
21
9
- {{newline}}
22
+ 1 . Unzip the downloaded archive file
23
+ 2 . Run the installation program within
24
+ 3 . Success!
Original file line number Diff line number Diff line change @@ -4,6 +4,22 @@ title: Windows Installation
4
4
hide :
5
5
- navigation
6
6
- toc
7
+ os_button : windows
8
+ compile_guide : https://github.com/xournalpp/xournalpp/blob/master/readme/WindowsBuild.md
9
+
10
+ version_class : windows-macos
11
+ versions :
12
+ - name : Stable
13
+ subtitle : (Recommended)
14
+ description : Suits most users with its focus on stability.
15
+ links : windows.stable
16
+ - name : Nightly
17
+ subtitle : (Unstable)
18
+ description : Get new features as soon as they're implemented, in exchange for stability.
19
+ links : nightly
7
20
---
8
21
9
- {{newline}}
22
+ 1 . Unzip archive which should be named something like ` xournalpp-{version}-windows.zip `
23
+ 2 . Run the setup program contained in ` xournalpp-{version}-windows.zip ` .
24
+ 3 . Follow the installation steps
25
+ 4 . Success!
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{% set default = "https://github.com/xournalpp/xournalpp/releases " %}
2
2
{% set allVersions = "https://github.com/xournalpp/xournalpp/releases " %}
3
- {% set nightly = "https://github.com/xournalpp/xournalpp/releases " %}
3
+ {% set nightly = "https://github.com/xournalpp/xournalpp/releases/tag/nightly " %}
4
4
{% set windows =
5
5
({
6
6
"stable" : "https://github.com/xournalpp/xournalpp/releases/download/1.1.0/xournalpp-1.1.0-windows.zip "
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ a.mobile-option {
174
174
font-size : 18px ;
175
175
}
176
176
177
- .version .download-mac- windows {
177
+ .version .download-windows-macos {
178
178
margin : 0 auto;
179
179
align-self : flex-end;
180
180
padding : 7px ;
@@ -211,21 +211,14 @@ a.mobile-option {
211
211
margin-top : 7px ;
212
212
}
213
213
214
- .step-container p {
214
+ .step-container p , . step-container li {
215
215
font-size : 18px ;
216
216
}
217
217
218
218
.installation-guide ol > * {
219
219
list-style-type : decimal;
220
220
}
221
221
222
- .installation-guide span {
223
- background-color : # f5f5f5 ;
224
- font-family : "Roboto Mono" , monospace;
225
- font-size : 16px ;
226
- font-weight : 400 ;
227
- }
228
-
229
222
.installation-guide {
230
223
margin-bottom : 20px ;
231
224
}
@@ -310,12 +303,16 @@ a.mobile-option {
310
303
margin-bottom : 0 ;
311
304
}
312
305
313
- .code-instruction {
306
+ .distro-list div . highlight {
314
307
background-color : # f5f5f5 ;
315
308
padding : 10px 15px ;
316
309
}
317
310
318
- .code-instruction code {
311
+ .distro-list pre {
312
+ margin : 0 ;
313
+ }
314
+
315
+ .distro-list code {
319
316
font-size : 16px ;
320
317
line-height : 20px ;
321
318
}
You can’t perform that action at this time.
0 commit comments