Socket
Socket
Sign inDemoInstall

filestack-js

Package Overview
Dependencies
Maintainers
1
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

filestack-js - npm Package Compare versions

Comparing version 0.8.1-rc to 0.8.1

10

CHANGELOG.md
# filestack-js changelog
## 0.8.1 (2017-08-04)
**Picker changes**
- Implement audio and video sources
- Add `videoResolution` option for video source
- Fix CSS bugs on iOS 8 Safari
- Fix bug with cloud file selection/deselection
**Client changes**
- Uploads will no longer retry on HTTP 4xx responses
## 0.8.0 (2017-07-26)

@@ -4,0 +14,0 @@ **Picker changes**

2

config/env_production.js
export default {
picker: '//static.filestackapi.com/picker/v3/picker-0.9.3.js',
picker: '//static.filestackapi.com/picker/v3/picker-0.9.5.js',
};
{
"name": "filestack-js",
"version": "0.8.1-rc",
"version": "0.8.1",
"description": "Official web SDK for the Filestack API",

@@ -5,0 +5,0 @@ "author": "Filestack",

@@ -42,3 +42,3 @@ <p align="center">

```HTML
<script src="//static.filestackapi.com/v3/filestack-0.7.0.js"></script>
<script src="//static.filestackapi.com/v3/filestack-0.8.1.js"></script>
<script>

@@ -53,3 +53,3 @@ const apikey = 'abc';

This library requires an environment that implements the [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) object spec.
If you target IE11 you will need to add a `Promise` polyfill to your page or application.
If you target IE11 or iOS before 8.0 you will need to add a `Promise` polyfill to your page or application.

@@ -148,2 +148,4 @@ **Polyfills we recommend:**

- `webcam` - Desktop only. Not currently supported in Safari and IE.
- `video` - Desktop only. Not currently supported in Safari and IE.
- `audio` - Desktop only. Not currently supported in Safari and IE.
- `evernote`

@@ -178,2 +180,3 @@ - `flickr`

- .disableThumbnails <code>boolean</code> <code> = false</code> - Disables local image thumbnail previews in the summary screen.
- .videoResolution <code>string</code> <code> = &quot;640x480&quot;</code> - Sets the resolution of recorded video. One of "320x240", "640x480" or "1280x720".
- .transformations <code>object</code> - Specify options for images passed to the crop UI.

@@ -325,4 +328,4 @@ - .crop <code>boolean</code> | <code>object</code> <code> = true</code> - Enable crop.

.then((blob) => {
var urlCreator = window.URL || window.webkitURL;
var imageUrl = urlCreator.createObjectURL(blob);
const urlCreator = window.URL || window.webkitURL;
const imageUrl = urlCreator.createObjectURL(blob);
document.querySelector('#myImage').src = imageUrl;

@@ -329,0 +332,0 @@ })

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc