Skip to content

Commit

Permalink
update electron version, rename app
Browse files Browse the repository at this point in the history
  • Loading branch information
xx10t4 committed Jan 31, 2018
1 parent c025694 commit 3818177
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
14 changes: 7 additions & 7 deletions README.md
@@ -1,21 +1,21 @@
# iota1k
# iotalk

**iota1k** is a privacy-minded messaging system built on the IOTA Tangle. Each message is a transaction bundle stored in the Tangle, just like a value transfer. Messages are encrypted so only the intended recipient can read them. **iota1k** provides an easy way for users to create a public key that also act as a message address. Other users can send encrypted messages to that address, and only the recipient can read it.
**iotalk** is a privacy-minded messaging system built on the IOTA Tangle. Each message is a transaction bundle stored in the Tangle, just like a value transfer. Messages are encrypted so only the intended recipient can read them. **iotalk** provides an easy way for users to create a public key that also act as a message address. Other users can send encrypted messages to that address, and only the recipient can read it.

This is currently very alpha-quality software. Please report issues on github. For extra safety I recommend not using an IOTA seed that has any value right now.


# Running Unpackaged

**iota1k** is built on Electron and Node. NPM or Yarn need to be intalled to run it.
**iotalk** is built on Electron and Node. NPM or Yarn need to be intalled to run it.
```
cd path/to/iota1k
cd path/to/iotalk
# install and build dependencies
yarn
# run the app
yarn run start
# or with NPM
# or with NPM
npm
npm run start
```
Expand All @@ -27,12 +27,12 @@ Right now binaries have only been compiled for linux and Windows 10. There is no
# pre-steps needed to compile to linux
sudo apt install graphicsmagick
sudo apt-get install g++-multilib
cd path/to/iota1k/
cd path/to/iotalk/
npm run compile:lin
# needed to compile on Windows 10 - run this command in gitbash as an Administrator
npm install --global --production windows-build-tools
cd path/to/iota1k/
cd path/to/iotalk/
npm run compile:win
```
Expand Down
2 changes: 1 addition & 1 deletion app/html/index.html
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>iota1k</title>
<title>iotalk</title>

<link href="../../node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="../../node_modules/toastr/build/toastr.min.css" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion app/js/accounts.js
@@ -1,6 +1,6 @@
/*
iota1k is a privacy-minded messaging app built on the IOTA Tangle.
iotalk is a privacy-minded messaging app built on the IOTA Tangle.
Copyright (C) 2017 xx10t4 <xx10t4@gmail.com>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion app/js/configuration.js
@@ -1,6 +1,6 @@
/*
iota1k is a privacy-minded messaging app built on the IOTA Tangle.
iotalk is a privacy-minded messaging app built on the IOTA Tangle.
Copyright (C) 2017 xx10t4 <xx10t4@gmail.com>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion app/js/contacts.js
@@ -1,6 +1,6 @@
/*
iota1k is a privacy-minded messaging app built on the IOTA Tangle.
iotalk is a privacy-minded messaging app built on the IOTA Tangle.
Copyright (C) 2017 xx10t4 <xx10t4@gmail.com>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion app/js/index.js
@@ -1,6 +1,6 @@
/*
iota1k is a privacy-minded messaging app built on the IOTA Tangle.
iotalk is a privacy-minded messaging app built on the IOTA Tangle.
Copyright (C) 2017 xx10t4 <xx10t4@gmail.com>
This program is free software: you can redistribute it and/or modify
Expand Down
8 changes: 4 additions & 4 deletions app/js/main.js
@@ -1,6 +1,6 @@
/*
iota1k is a privacy-minded messaging app built on the IOTA Tangle.
iotalk is a privacy-minded messaging app built on the IOTA Tangle.
Copyright (C) 2017 xx10t4 <xx10t4@gmail.com>
This program is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -37,13 +37,13 @@ let mainWindow
function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1200,
width: 1200,
height: 600,
icon: path.join(__dirname, '../../images', 'iota1k_logo.png')
icon: path.join(__dirname, '../../images', 'iotalk_logo.png')
})

menu(electron,mainWindow)

// and load the index.html of the app.
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, '../html/index.html'),
Expand Down
2 changes: 1 addition & 1 deletion app/js/messages.js
@@ -1,6 +1,6 @@
/*
iota1k is a privacy-minded messaging app built on the IOTA Tangle.
iotalk is a privacy-minded messaging app built on the IOTA Tangle.
Copyright (C) 2017 xx10t4 <xx10t4@gmail.com>
This program is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion app/js/renderer.js
@@ -1,6 +1,6 @@
/*
iota1k is a privacy-minded messaging app built on the IOTA Tangle.
iotalk is a privacy-minded messaging app built on the IOTA Tangle.
Copyright (C) 2017 xx10t4 <xx10t4@gmail.com>
This program is free software: you can redistribute it and/or modify
Expand Down
File renamed without changes
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -51,7 +51,7 @@
"winston":"2.4.0"
},
"devDependencies": {
"electron": "1.7.9",
"electron": "1.7.11",
"electron-builder": "19.48.3",
"electron-rebuild":"1.6.0",
"follow-redirects":"1.2.6",
Expand All @@ -65,7 +65,7 @@
"publish": [
"github"
],
"appId": "iota1k",
"appId": "iotalk",
"extraResources": [
"lib/**/*"
],
Expand Down

0 comments on commit 3818177

Please sign in to comment.