mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-11 19:00:00 +01:00
Bump to v3.7.0 (trouble with pangocairo lib) (#2034)
* update jywarren/imgareaselect from git:// to https:// https://github.blog/2021-09-01-improving-git-protocol-security-github/ * canvas dep tweaks * remove libpango-1.0-dev * libpango1.0-dev * ran npm install with node 16
This commit is contained in:
@@ -30,19 +30,24 @@ RUN sudo apt-get update && apt-get install -y apt-transport-https \
|
|||||||
libatk1.0-0 \
|
libatk1.0-0 \
|
||||||
libc6 \
|
libc6 \
|
||||||
libcairo2 \
|
libcairo2 \
|
||||||
|
libcairo2-dev \
|
||||||
libcups2 \
|
libcups2 \
|
||||||
libdbus-1-3 \
|
libdbus-1-3 \
|
||||||
libexpat1 \
|
libexpat1 \
|
||||||
libfontconfig1 \
|
libfontconfig1 \
|
||||||
libgbm1 \
|
libgbm1 \
|
||||||
libgcc1 \
|
libgcc1 \
|
||||||
|
libgif-dev \
|
||||||
libglib2.0-0 \
|
libglib2.0-0 \
|
||||||
libgtk-3-0 \
|
libgtk-3-0 \
|
||||||
|
libjpeg-dev \
|
||||||
libnspr4 \
|
libnspr4 \
|
||||||
libnss3 \
|
libnss3 \
|
||||||
libpango-1.0-0 \
|
libpango-1.0-0 \
|
||||||
|
libpango1.0-dev \
|
||||||
libpangocairo-1.0-0 \
|
libpangocairo-1.0-0 \
|
||||||
libstdc++6 \
|
libstdc++6 \
|
||||||
|
librsvg2-dev \
|
||||||
libx11-6 \
|
libx11-6 \
|
||||||
libx11-xcb1 \
|
libx11-xcb1 \
|
||||||
libxcb1 \
|
libxcb1 \
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const staticCacheName = 'image-sequencer-static-v3.6.0';
|
const staticCacheName = 'image-sequencer-static-v3.7.0';
|
||||||
self.addEventListener('install', function(e) {
|
self.addEventListener('install', function(e) {
|
||||||
e.waitUntil(
|
e.waitUntil(
|
||||||
caches.open(staticCacheName).then(function(cache) {
|
caches.open(staticCacheName).then(function(cache) {
|
||||||
@@ -38,19 +38,19 @@ self.addEventListener('fetch', function(event) {
|
|||||||
cache.put(event.request.url, response.clone());
|
cache.put(event.request.url, response.clone());
|
||||||
}
|
}
|
||||||
return response;
|
return response;
|
||||||
})
|
});
|
||||||
})
|
})
|
||||||
.catch(function(err) {
|
.catch(function(err) {
|
||||||
// Now the request has been failed so show cached data.
|
// Now the request has been failed so show cached data.
|
||||||
return caches.match(event.request).then(function(res){
|
return caches.match(event.request).then(function(res){
|
||||||
if (res === undefined) {
|
if (res === undefined) {
|
||||||
// Display offline page
|
// Display offline page
|
||||||
return caches.match('offline.html');
|
return caches.match('offline.html');
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
)
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
// When the update modal sends a 'skipWaiting' message, call the skipWaiting method.
|
// When the update modal sends a 'skipWaiting' message, call the skipWaiting method.
|
||||||
|
|||||||
26970
package-lock.json
generated
26970
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "image-sequencer",
|
"name": "image-sequencer",
|
||||||
"version": "3.6.0",
|
"version": "3.7.0",
|
||||||
"description": "A modular JavaScript image manipulation library modeled on a storyboard.",
|
"description": "A modular JavaScript image manipulation library modeled on a storyboard.",
|
||||||
"main": "src/ImageSequencer.js",
|
"main": "src/ImageSequencer.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
"imagemin": "^7.0.1",
|
"imagemin": "^7.0.1",
|
||||||
"imagemin-jpegtran": "^7.0.0",
|
"imagemin-jpegtran": "^7.0.0",
|
||||||
"imagemin-pngquant": "^9.0.1",
|
"imagemin-pngquant": "^9.0.1",
|
||||||
"imgareaselect": "git://github.com/jywarren/imgareaselect.git#v1.0.0-rc.2",
|
"imgareaselect": "https://github.com/jywarren/imgareaselect.git#v1.0.0-rc.2",
|
||||||
"istanbul": "^0.4.5",
|
"istanbul": "^0.4.5",
|
||||||
"jasmine": "^3.4.0",
|
"jasmine": "^3.4.0",
|
||||||
"jpegtran-bin": "^6.0.1",
|
"jpegtran-bin": "^6.0.1",
|
||||||
@@ -88,6 +88,7 @@
|
|||||||
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
|
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
|
||||||
"babelify": "^10.0.0",
|
"babelify": "^10.0.0",
|
||||||
"browserify": "17.0.0",
|
"browserify": "17.0.0",
|
||||||
|
"canvas": "^2.8.0",
|
||||||
"eslint": "^8.0.0",
|
"eslint": "^8.0.0",
|
||||||
"grunt": "^1.0.3",
|
"grunt": "^1.0.3",
|
||||||
"grunt-browser-sync": "^2.2.0",
|
"grunt-browser-sync": "^2.2.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user