Skip to content

Commit

Permalink
updating deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tnrich committed Aug 3, 2022
1 parent 32ec6c3 commit d0363c7
Show file tree
Hide file tree
Showing 5 changed files with 921 additions and 697 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ GH_TOKEN=yourstringhere
```

- Bump the package.json version number
Login to snapcraft (credentials under ubuntu.com)
snapcraft login
Go to https://developer.apple.com/account and make sure all notices are signed
- Build mac and linux:
```
yarn deploy
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ove-electron",
"version": "1.3.3",
"version": "1.4.0",
"description": "An open source vector or plasmid editor",
"main": "main.js",
"scripts": {
Expand Down Expand Up @@ -98,24 +98,24 @@
"author": "tnrich",
"license": "MIT",
"devDependencies": {
"auto-changelog": "^2.3.0",
"electron": "^16.0.6",
"electron-builder": "^22.14.5",
"electron-notarize": "^1.1.1",
"auto-changelog": "^2.4.0",
"electron": "^20.0.1",
"electron-builder": "^23.3.3",
"electron-notarize": "^1.2.1",
"env-cmd": "^10.1.0",
"eslint": "^8.6.0",
"eslint-config-teselagen": "^6.0.2",
"mocha": "^9.1.3",
"spectron": "^15.0.0"
"eslint": "^8.21.0",
"eslint-config-teselagen": "^6.0.3",
"mocha": "^10.0.0",
"spectron": "^19.0.0"
},
"dependencies": {
"bio-parsers": "^8.3.20",
"electron-updater": "^4.6.1",
"bio-parsers": "^8.3.29",
"electron-updater": "^5.2.1",
"electron-window-state": "^5.0.3",
"open-vector-editor": "^17.0.6",
"open-vector-editor": "^18.1.0",
"ove-auto-annotate": "^0.0.5",
"querystring": "^0.2.1",
"ve-range-utils": "^2.6.5",
"ve-sequence-utils": "^5.1.13"
"ve-range-utils": "^2.6.6",
"ve-sequence-utils": "^5.1.29"
}
}
2 changes: 2 additions & 0 deletions src/preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
// using a querystring - https://stackoverflow.com/questions/38335004/how-to-pass-parameters-from-main-process-to-render-processes-in-electron/38401579#38401579

const { ipcRenderer, contextBridge } = require("electron");
console.log(`here`)
const querystring = require("querystring");
console.log(`here2`)

// Adds an object 'api' to the global window object:
contextBridge.exposeInMainWorld("api", {
Expand Down
2 changes: 2 additions & 0 deletions src/renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ const editor = window.createVectorEditor("createDomNodeForMe", {
//you can also pass a DOM node as the first arg here
// showReadOnly: false,
// disableSetReadOnly: true,
allowPrimerBasesToBeEdited: true,
defaultLinkedOligoMessage: '',
shouldAutosave: false,
alwaysAllowSave: true,
// rightClickOverrides: {
Expand Down

0 comments on commit d0363c7

Please sign in to comment.