Merge pull request #2838 from bemusementpark/add-download-link

Add download link
pull/2847/head
Audric Ackermann 2 years ago committed by GitHub
commit d2bccd1076
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,7 @@
# Session Desktop
[Download at getsession.org](https://getsession.org/download)
## Summary
Session integrates directly with [Oxen Service Nodes](https://docs.oxen.io/about-the-oxen-blockchain/oxen-service-nodes), which are a set of distributed, decentralized and Sybil resistant nodes. Service Nodes act as servers which store messages offline, and a set of nodes which allow for onion routing functionality obfuscating users IP Addresses. For a full understanding of how Session works, read the [Session Whitepaper](https://getsession.org/whitepaper).

@ -25,9 +25,9 @@ function cleanUpOtherTest() {
alreadyCleanedWaiting = true;
const parentFolderOfAllDataPath = isMacOS()
? '~/Library/Application Support/'
? join(homedir(), 'Library', 'Application Support')
: isLinux()
? `${homedir()}/.config/`
? join(homedir(), '.config')
: null;
if (!parentFolderOfAllDataPath) {
throw new Error('Only macOS is currrently supported ');

Loading…
Cancel
Save