Skip to content

Commit

Permalink
fixed conflict in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
pietrop committed Apr 13, 2018
2 parents c013e9d + b1ee90a commit cd7987a
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 39 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,22 @@ Is designed so that the front end in backbone can be used as standalone static s

For more info [check out the documentation](https://pietropassarelli.gitbooks.io/autoedit-2-documentation/content/).

### -->Papereditig<--
### Main updates in latest releases

#### -->Papereditig<--

As of version `1.0.6` you can pull selections from multiple transcriptions into a paperedit, see a video preview, and export as an EDL video sequence. [Check out the user manual for more on this](https://pietropassarelli.gitbooks.io/autoedit2-user-manual/content/paperediting.html).

### --> Move to electron<--
#### --> Move to electron<--
As of version `1.0.7` (soon to be released) moved from nwjs to electron to package the app for desktop. This will allow to do a leap forward in certain areas of the roadmap.

#### --> Linux <--
As of version `1.0.8` support is added for Linux thanks to [@probonopd](https://github.com/probonopd) [#36](https://github.com/OpenNewsLabs/autoEdit_2/issues/36).

#### --> Speechmatics <--
As of version `1.0.9` support is added for Speechmatics STT service, with 28 languages.


## Development

### Launching the app
Expand Down
76 changes: 39 additions & 37 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,33 @@
{
"name": "autoEdit2",
"productName": "autoEdit2",
"version": "1.0.9",
"version": "1.0.10",
"description": "Fast text based video editing",
"main": "electron/main.js",
"scripts": {
"test": "jasmine",
"electron": "electron . --disable-background-timer-throttling",
"electron": "electron .",
"make_js": "browserify lib/app/app.js > electron/app.js",
"start": "npm run make_js && npm run electron",

"pack": "build --dir",
"pack:mac": "build --dir --mac --x64",
"pack:linux": "build --dir --linux --x64",
"pack:win": "build --dir --win --x64",
"build": "build",
"build:mac": "build --mac --x64",
"build:mac:dmg": "npm run build:mac && npm run make_dmg",
"build:mac_app_store": "echo 'Mac App Store Option Not currently implemented'",
"build:win": "build --win nsis-web --x64",
"build:linux": "build --linux --x64",

"publish:github": "build --publish always --draft true",

"make_demo": "npm run make_js && node ./config/make_demo.js",
"preview_page": "npm run make_demo && jekyll serve --source project_page --destination docs",
"preview_page_no_demo_reload": "jekyll serve --source project_page --destination docs",
"make_page": "npm run make_demo && jekyll build --source project_page --destination docs"
},
"build": {
"build": {
"appId": "org.autoEdit2.autoEdit2-electron",
"asar": false,
"files": [
Expand Down Expand Up @@ -95,7 +97,7 @@
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"files": [
"files": [
"node_modules/ffmpeg-static/bin/win/${arch}/ffmpeg",
"!node_modules/ffmpeg-static/bin/win/ia32${/*}",
"!node_modules/ffmpeg-static/bin/linux${/*}",
Expand All @@ -110,44 +112,44 @@
"author": "Pietro Passarelli <[email protected]> (http://pietropassarelli.com)",
"license": "MIT",
"dependencies": {
"backbone": "1.3.3",
"bootstrap": "3.3.7",
"electron-debug": "1.1.0",
"ffmpeg-static": "git@github.com:pietrop/ffmpeg-static.git",
"ffprobe-static": "git@github.com:pietrop/ffprobe-static.git",
"file-saver": "1.3.3",
"fluent-ffmpeg": "2.1.0",
"backbone": "^1.3.3",
"bootstrap": "^3.3.7",
"electron-debug": "^1.1.0",
"ffmpeg-static": "https://github.com/pietrop/ffmpeg-static.git",
"ffprobe-static": "https://github.com/pietrop/ffprobe-static.git",
"file-saver": "^1.3.3",
"fluent-ffmpeg": "^2.1.0",
"jquery": "1.12.4",
"jquery-sortable": "0.9.13",
"linvodb3": "3.24.0",
"medeadown": "1.1.8",
"moment": "2.15.2",
"mousetrap": "1.6.0",
"node-timecodes": "2.4.1",
"jquery-sortable": "^0.9.13",
"linvodb3": "^3.24.0",
"medeadown": "^1.1.8",
"moment": "^2.15.2",
"mousetrap": "^1.6.0",
"node-timecodes": "^2.4.1",
"node-underscorify": "0.0.14",
"path": "0.12.7",
"request": "2.81.0",
"require-globify": "1.4.1",
"speechmatics": "git+https://github.com/pietrop/speechmatics.git",
"underscore": "1.8.3",
"underscore.string": "3.3.4",
"path": "^0.12.7",
"request": "^2.81.0",
"require-globify": "^1.4.1",
"underscore": "^1.8.3",
"underscore.string": "^3.3.4",
"watson-developer-cloud": "2.4.1"
},
"devDependencies": {
"babelify": "7.3.0",
"browserify": "13.1.1",
"browserify-shim": "3.8.12",
"copy-dir": "0.3.0",
"docco": "0.7.0",
"electron": "1.6.10",
"electron-builder": "18.1.1",
"electron-packager": "8.7.0",
"jasmine": "2.5.2",
"jsdoc": "3.4.1",
"watchify": "3.7.0"
},
"optionalDependencies": {
"appdmg": "^0.4.5"
},
"devDependencies": {
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-shim": "^3.8.12",
"copy-dir": "^0.3.0",
"docco": "^0.7.0",
"electron": "^1.6.10",
"electron-builder": "*",
"electron-packager": "*",
"jasmine": "^2.5.2",
"jsdoc": "^3.4.1",
"watchify": "^3.7.0"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -192,4 +194,4 @@
]
}
}
}
}

0 comments on commit cd7987a

Please sign in to comment.