Skip to content

Commit

Permalink
Fix video
Browse files Browse the repository at this point in the history
  • Loading branch information
as3810t committed Feb 9, 2018
1 parent fcdf3b8 commit 8b3593c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ environment:

artifacts:
- path: 'out\make\*'
- path: 'out\make\squirrel.windows\*'

# Install scripts. (runs after repo cloning)
install:
Expand All @@ -28,4 +29,4 @@ build_script:
- electron-forge make --arch=ia32

deploy_script:
- electron-forge publish --arch=ia32
- electron-forge publish --arch=ia32 --skip-package
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "h77",
"productName": "h77",
"version": "1.0.0",
"version": "1.0.1",
"description": "H77+ video analysis software",
"main": "dist/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/settings/settings.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export class SettingsComponent {
try {
var arrayBuffer = new Uint8Array(buffer).buffer;
var blob = new Blob([new Uint8Array(arrayBuffer)], { type: MIME[window.require('path').parse(name).ext] });
this.player.nativeElement.src = name;
this.player.nativeElement.src = window.URL.createObjectURL(blob);

callback();
}
Expand Down

0 comments on commit 8b3593c

Please sign in to comment.