Oxen electron GUI wallet
Go to file
kylezs b7f06ecc35
Bump node version, update README (#184)
* Bump node version and update docs
2020-09-17 10:02:13 +10:00
.github Added build action 2020-09-16 12:50:07 +10:00
.vscode LNS (#127) 2020-04-07 12:56:15 +10:00
bin Import v1.0.0 2018-09-08 14:44:19 -07:00
build update repo url 2020-09-11 10:23:24 +10:00
public UI upgrade (#155) 2020-08-31 15:26:06 +10:00
src fix a few bugs, support reserved service nodes, confirm tx sweep all (#179) 2020-09-16 12:41:42 +10:00
src-electron fix a few bugs, support reserved service nodes, confirm tx sweep all (#179) 2020-09-16 12:41:42 +10:00
.editorconfig Refactor auto updating 2020-03-04 15:44:16 +11:00
.eslintignore Loki changes 2019-03-13 15:33:47 +11:00
.eslintrc.js Linting 2020-03-03 14:43:29 +11:00
.gitignore LNS (#127) 2020-04-07 12:56:15 +10:00
.nvmrc Bump node version, update README (#184) 2020-09-17 10:02:13 +10:00
.postcssrc.js Linting 2020-03-03 14:43:29 +11:00
.prettierignore Linting 2020-03-03 14:43:29 +11:00
.stylintrc fix a few bugs, support reserved service nodes, confirm tx sweep all (#179) 2020-09-16 12:41:42 +10:00
BUILDING.md Linting 2020-03-03 14:43:29 +11:00
LICENSE License Images and markdown 2019-03-27 16:17:29 +11:00
README.md Bump node version, update README (#184) 2020-09-17 10:02:13 +10:00
RELEASING.md Linting 2020-03-03 14:43:29 +11:00
babel.config.js UI upgrade (#155) 2020-08-31 15:26:06 +10:00
jsconfig.json LNS (#127) 2020-04-07 12:56:15 +10:00
package-lock.json Fix dependencies 2020-09-10 14:58:29 +10:00
package.json Disable publishing on build 2020-09-16 13:00:46 +10:00
quasar.conf.js Fix dependencies 2020-09-10 14:58:29 +10:00

README.md

Loki Electron GUI Wallet

Introduction

Loki is a private cryptocurrency based on Monero. Loki aims to provide a private data transmission layer using a second layer of Service Nodes. More information on the project can be found on the website and in the whitepaper. Loki is an open source project, and we encourage contributions from anyone with something to offer.

About this project

This is the new electron GUI for Loki. It is open source and completely free to use without restrictions, anyone may create an alternative implementation of the Loki Electron GUI that uses the protocol and network in a compatible manner.

Please submit any changes as pull requests to the development branch, all changes are assessed in the development branch before being merged to master, release tags are considered stable builds for the GUI.

Pre-requisites

  • Download latest Lokid
  • Extract the lokid binaries to a folder

Commands

nvm use 14.11.0
npm install -g @quasar/cli
git clone https://github.com/loki-project/loki-electron-gui-wallet
cd loki-electron-gui-wallet
cp path_to_lokid_binaries/lokid bin/
cp path_to_lokid_binaries/loki-wallet-rpc bin/
npm install

For dev:

npm run dev

For building:

Note: This will only build the binaries for the system you run the command on. Running this command on linux will only make linux binaries, no mac or windows binaries.

npm run build

Adding language support

Adding a new language is fairly simple.

  1. Duplicate the language file src/i18n/en-us.js and rename it to the relevant language code.
  2. Translate all the strings in that duplicated file. Take note that capitalization matters.
    • The translated string must go in-between the quotes ("")
      • E.G all: "ALL" -> all: "ВСЕ"
    • If possible try and stick to the general string formatting already present.
      • E.G if there is a new line then try and keep that in your translation.
      • The same goes for the pipe character |. DO NOT REMOVE IT.
    • Please don't translate strings inside {} brackets. They are meant as placeholders for other values.
      • Some examples include {type} and {count}.
      • E.G if you have a string A {index} then you may translate it as B {index} or {index} B depending on how the string makes sense in your language. You are allowed to reposition the placeholders for the string to make sense BUT DO NOT DELETE OR REPLACE THE PLACEHOLDERS WITH OTHER VALUES
  3. Add the language to the languages array in src/i18n/index.js. The flag property is the ISO 3166-1-alpha-2 code of a country.
    • NOTE: DO NOT ADD THE LANGUAGE TO export default. Dynamic language loading is handled by the application.
  4. Add your language locale to Vue Timeago. Add it in src/plugins/timeago.js under locales.
  5. Submit a PR with your changes.