From 1d3f04f9bcd9cee985dbc2b6394b3df29eeaad82 Mon Sep 17 00:00:00 2001 From: Chris Buccella Date: Wed, 14 Apr 2021 12:34:19 -0400 Subject: [PATCH] Replace loki -> oxen in UI - update links on about page - replace gross pixelated logo on about page - update menu links for release notes, bug reports, and support - update names and links in README and CONTRIBUTING --- CONTRIBUTING.md | 6 +++--- README.md | 4 ++-- about.html | 7 ++++--- main.js | 6 +++--- 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5ea086af5..b38167e2b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,7 +11,7 @@ for it or creating a new one yourself. You can use also that issue as a place to your intentions and get feedback from the users most likely to appreciate your changes. You're most likely to have your pull request accepted easily if it addresses bugs already -in the [Next Steps project](https://github.com/loki-project/session-desktop/projects/1), +in the [Next Steps project](https://github.com/oxen-io/session-desktop/projects/1), especially if they are near the top of the Backlog column. Those are what we'll be looking at next, so it would be great if you helped us out! @@ -22,7 +22,7 @@ ounce of prevention, as they say!](https://www.goodreads.com/quotes/247269-an-ou ## Developer Setup First, you'll need [Node.js](https://nodejs.org/) which matches our current version. -You can check [`.nvmrc` in the `development` branch](https://github.com/loki-project/session-desktop/blob/development/.nvmrc) to see what the current version is. If you have [nvm](https://github.com/creationix/nvm) +You can check [`.nvmrc` in the `clearnet` branch](https://github.com/oxen-io/session-desktop/blob/clearnet/.nvmrc) to see what the current version is. If you have [nvm](https://github.com/creationix/nvm) you can just run `nvm use` in the project directory and it will switch to the project's desired Node.js version. [nvm for windows](https://github.com/coreybutler/nvm-windows) is still useful, but it doesn't support `.nvmrc` files. @@ -56,7 +56,7 @@ Then you need `git`, if you don't have that yet: https://git-scm.com/ Now, run these commands in your preferred terminal in a good directory for development: ``` -git clone https://github.com/loki-project/session-desktop.git +git clone https://github.com/oxen-io/session-desktop.git cd session-desktop npm install --global yarn # (only if you don’t already have `yarn`) yarn install --frozen-lockfile # Install and build dependencies (this will take a while) diff --git a/README.md b/README.md index 101e62457..d16e9c083 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,13 @@ ## Summary -Session integrates directly with [Loki Service Nodes](https://lokidocs.com/ServiceNodes/SNOverview/), 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). +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).

![DesktopSession](https://i.imgur.com/ZnHvYjo.jpg) ## Want to Contribute? Found a Bug or Have a feature request? -Please search for any [existing issues](https://github.com/loki-project/session-desktop/issues) that describe your bugs in order to avoid duplicate submissions.

Submissions can be made by making a pull request to our development branch. If you don't know where to start contributing, try reading the Github issues page for ideas. +Please search for any [existing issues](https://github.com/oxen-io/session-desktop/issues) that describe your bugs in order to avoid duplicate submissions.

Submissions can be made by making a pull request to our development branch. If you don't know where to start contributing, try reading the Github issues page for ideas. ## Build instruction diff --git a/about.html b/about.html index 3a5da534b..216f8b87a 100644 --- a/about.html +++ b/about.html @@ -33,17 +33,18 @@ - +
- loki.network + getsession.org

- Terms & Privacy Policy + Privacy Policy
+ Terms of Service
diff --git a/main.js b/main.js index 71b551c2b..eac6d8fec 100644 --- a/main.js +++ b/main.js @@ -492,19 +492,19 @@ setTimeout(readyForUpdates, TEN_MINUTES); function openReleaseNotes() { shell.openExternal( - `https://github.com/loki-project/session-desktop/releases/tag/v${app.getVersion()}` + `https://github.com/oxen-io/session-desktop/releases/tag/v${app.getVersion()}` ); } function openNewBugForm() { shell.openExternal( - 'https://github.com/loki-project/session-desktop/issues/new' + 'https://github.com/oxen-io/session-desktop/issues/new' ); } function openSupportPage() { shell.openExternal( - 'https://docs.loki.network/LokiServices/Messenger/Session/' + 'https://docs.oxen.io/products-built-on-oxen/session' ); }