Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
fsteff committed Jan 16, 2022
1 parent e7812ca commit e5f6320
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"build-ui": "cd ./filemanager-ui && npm run build",
"electron": "electron dist/index.js",
"electron-tsc": "tsc && npm run build-ui && npm run electron",
"distribute": "electron-packager . --ignore=\"filemanager-ui|.*\\.ts|.*\\.js.map|.*\\.zip\" --overwrite",
"distribute-all": "electron-packager . --ignore=\"filemanager-ui|.*\\.ts|.*\\.js.map|.*\\.zip\" --overwrite --all"
"distribute": "electron-packager . certacrypt-filemanager --ignore=\"filemanager-ui|.*\\.ts|.*\\.js.map|.*\\.zip\" --overwrite",
"distribute-all": "electron-packager . certacrypt-filemanager --ignore=\"filemanager-ui|.*\\.ts|.*\\.js.map|.*\\.zip\" --overwrite --all"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/ContactsEventHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import os from 'os'
import { CertaCrypt, GraphObjects, FriendState, URL_TYPES, createUrl, CommShare } from '@certacrypt/certacrypt'
import { ShareGraphObject } from '@certacrypt/certacrypt-graph'
import { IpcMain, dialog } from "electron"
import { Generator, GraphObject, GRAPH_VIEW, IVertex, Query, QueryState, STATIC_VIEW, Vertex } from "hyper-graphdb"
import { Generator, GraphObject, GRAPH_VIEW, IVertex, Query, QueryState, STATIC_VIEW, Vertex } from '@certacrypt/hyper-graphdb'
import { Contact, IContactsEventHandler, Profile, Share } from "./EventInterfaces"
import { MainEventHandler } from "./MainEventHandler"
import { PubSub } from "./pubsub"
Expand Down
2 changes: 1 addition & 1 deletion src/Main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class Main {
Main.mainWindow
.loadURL('file://' + __dirname + '/ui/index.html');
Main.mainWindow.on('closed', Main.onClose);
Main.mainWindow.webContents.openDevTools();
//Main.mainWindow.webContents.openDevTools();
}

static main(app: Electron.App, browserWindow: typeof BrowserWindow) {
Expand Down

0 comments on commit e5f6320

Please sign in to comment.