You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,11 @@
1
-
# Contributing to jasp
1
+
# Requesting new features, or reporting bugs:
2
2
3
-
Anyone is welcome to contribute to JASP. If you would like to create a new module/analysis, fix a
4
-
bug you found, or implemented a feature, please submit a pull request. See
3
+
To request a new feature, or report a bug, please consult the following [blog post](https://jasp-stats.org/2018/03/29/request-feature-report-bug-jasp/)
4
+
5
+
# Contributing to JASP
6
+
7
+
Anyone is welcome to contribute to JASP. If you have created a new module/analysis, fixed a
8
+
bug you found, or implemented a feature on your own branch, please submit a pull request. See
5
9
[Dev Docs](Docs/development) for more details about the development.
Copy file name to clipboardExpand all lines: Docs/development/jasp-building-guide.md
+24-24Lines changed: 24 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,9 +32,9 @@ Windows
32
32
33
33
Building JASP under windows is the most temperamental, and the versions listed here are known to work; slight variations on these numbers probably won't work.
-[Visual Studio 2017] (https://www.visualstudio.com/downloads/) Download community version
39
39
40
40
Qt: JASP for windows is built as 64-bit and is built with Visual Studio 2017.
@@ -70,33 +70,33 @@ To build JASP on mac you need to clone the JASP repository and download the foll
70
70
0. Clone the JASP repository
71
71
1.[XCode](https://developer.apple.com/xcode/) Easiest would be via the App Store.
72
72
2.[Qt 5.10.1 + QtWebEngine](https://download.qt.io/archive/qt/). Tick: MacOS and Qt WebEngine
73
-
3.[R 3.3.3](https://static.jasp-stats.org/development/R3.3%20OSX%20JASP%200.8.6.zip) This contains R and the packages. Unzip this file and set it as a framework in the build folder as shown below.
73
+
3.[R 3.4.4](https://static.jasp-stats.org/development/R3.4%20OSX%20JASP%200.9.1.zip) This contains R and the packages. Unzip this file and set it as a framework in the build folder as shown below.
74
74
4.[boost 1.64.0](https://static.jasp-stats.org/development/boost_1_64_0.zip). Unzip this file in the JASP folder.
75
75
5.[boost 1.64.0 binaries, libarchive binaries](https://static.jasp-stats.org/development/Build-Binaries-OSX-64-qt510.zip). Unzip this file in both release and debug build folders.
76
76
77
77
The directory structure should be as follows:
78
78
79
-
[+] JASP
80
-
[-] jasp-desktop < from github >
81
-
[-] buildDebug510 < Build debug directory for QtCreator >
82
-
- libboost_system-clang-mt-1_64.a
83
-
- libboost_filesystem-clang-mt-1_64.a
84
-
- libarchive.a
85
-
- libz.a
86
-
- libJASP-R-Interface.1.0.0.dylib
87
-
- libJASP-R-Interface.dylib
88
-
[-] buildRelease510 < Build release directory for QtCreator >
89
-
- libboost_system-clang-mt-1_64.a
90
-
- libboost_filesystem-clang-mt-1_64.a
91
-
- libarchive.a
92
-
- libz.a
93
-
- libJASP-R-Interface.1.0.0.dylib
94
-
- libJASP-R-Interface.dylib
95
-
[-] boost_1_64_0
96
-
[-] Frameworks
97
-
[-] R.framework
98
-
[-] Versions
99
-
[+] 3.3
79
+
[+] JASP
80
+
[-] jasp-desktop < from github >
81
+
[-] buildDebug510 < Build debug directory for QtCreator >
82
+
- libboost_system-clang-mt-1_64.a
83
+
- libboost_filesystem-clang-mt-1_64.a
84
+
- libarchive.a
85
+
- libz.a
86
+
- libJASP-R-Interface.1.0.0.dylib
87
+
- libJASP-R-Interface.dylib
88
+
[-] buildRelease510 < Build release directory for QtCreator >
89
+
- libboost_system-clang-mt-1_64.a
90
+
- libboost_filesystem-clang-mt-1_64.a
91
+
- libarchive.a
92
+
- libz.a
93
+
- libJASP-R-Interface.1.0.0.dylib
94
+
- libJASP-R-Interface.dylib
95
+
[-] boost_1_64_0
96
+
[-] Frameworks
97
+
[-] R.framework
98
+
[-] Versions
99
+
[+] 3.3
100
100
101
101
0.**Clone** the JASP repository into a folder of your choice. Our default choice is *~/desktop/JASP/* and cloning results in the creating of *~/desktop/JASP/jasp-desktop*.
102
102
1.**XCode**: Qt on OS X relies on XCode to function, you can install this through the App Store. It's easiest if you install this, run it, accept the license agreement, and then close it down before installing Qt.
Copy file name to clipboardExpand all lines: Docs/user-guide/index.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,10 +34,25 @@ From then on, you will be able to start JASP in the usual way.
34
34
35
35
#### Linux
36
36
37
+
#### 1. Flatpak
38
+
JASP is now available for virtually all Linux distributions through the widely available flatpak. This is most likely already installed on your distribution and otherwise can be easily acquired through your package manager. After you have installed flatpak enter the following command into a terminal:
It might not be automatically added to the application menu in some cases (ubuntu for instance) and there you can start JASP by running:
43
+
```
44
+
flatpak run org.jasp.JASP
45
+
```
46
+
After you have installed JASP from flatpak any new releases/updates can be installed by running:
47
+
```
48
+
flatpak update
49
+
```
50
+
51
+
#### 2. PPA
37
52
JASP is available for the following Linux versions:
38
53
54
+
- Ubuntu Artful (17.10)
39
55
- Ubuntu Xenial (16.04 LTS)
40
-
- Ubuntu Wily (15.10)
41
56
- Arch Linux
42
57
43
58
For other verions, JASP can be built from the source. The debian folder is located in the github repository – https://github.com/jasp-stats/jasp-desktop/tree/development/Tools/debian
0 commit comments