Skip to content

Commit

Permalink
Real attempt at binary release
Browse files Browse the repository at this point in the history
  • Loading branch information
maackle committed Jul 20, 2018
1 parent 9453b00 commit a3ab79f
Show file tree
Hide file tree
Showing 11 changed files with 953 additions and 4,040 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ dist
ssb-data
ssb-test-data
ssb-dev*
release/
4 changes: 2 additions & 2 deletions electron/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<title>ssb-igo</title>
<link rel="stylesheet" href="node_modules/tenuki/build/tenuki.css" />
<link rel="stylesheet" href="build/manifest.css" />
</head>
Expand All @@ -12,7 +12,7 @@
<script>
require('./renderer.js')
// require('../output/App.UI.Main').main()
require('../dist/ui.js')
require('./dist/ui.js')
</script>
</body>
</html>
4 changes: 3 additions & 1 deletion electron/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const path = require('path')
const url = require('url')
const {startSbot} = require('./start-sbot-mainnet')

require('electron-reload')(path.join(__dirname, 'ui'))
// require('electron-reload')(path.join(__dirname, 'ui'))

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
Expand All @@ -35,6 +35,8 @@ function createWindow () {
// when you should delete the corresponding element.
mainWindow = null
})

mainWindow.webContents.openDevTools()
}


Expand Down
1 change: 1 addition & 0 deletions electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 0 additions & 15 deletions electron/package.json

This file was deleted.

1 change: 1 addition & 0 deletions electron/package.json
2 changes: 1 addition & 1 deletion electron/start-sbot-mainnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fs = require('fs')
const path = require('path')
const pull = require('pull-stream')
const ssbKeys = require('ssb-keys')
const bundle = require('../dist/db.js')
const bundle = require('./dist/db.js')
const {ssbIgoPlugin} = bundle

console.log(ssbIgoPlugin)
Expand Down
1 change: 0 additions & 1 deletion electron/ui

This file was deleted.

Loading

0 comments on commit a3ab79f

Please sign in to comment.