Skip to content

Commit

Permalink
Bump to v3.7.0 (trouble with pangocairo lib) (#2034)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jywarren authored Jan 14, 2022
1 parent e84906a commit 08d680c
Show file tree
Hide file tree
Showing 5 changed files with 38,675 additions and 11,431 deletions.
5 changes: 5 additions & 0 deletions .gitpod.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,24 @@ RUN sudo apt-get update && apt-get install -y apt-transport-https \
libatk1.0-0 \
libc6 \
libcairo2 \
libcairo2-dev \
libcups2 \
libdbus-1-3 \
libexpat1 \
libfontconfig1 \
libgbm1 \
libgcc1 \
libgif-dev \
libglib2.0-0 \
libgtk-3-0 \
libjpeg-dev \
libnspr4 \
libnss3 \
libpango-1.0-0 \
libpango1.0-dev \
libpangocairo-1.0-0 \
libstdc++6 \
librsvg2-dev \
libx11-6 \
libx11-xcb1 \
libxcb1 \
Expand Down
10 changes: 5 additions & 5 deletions examples/sw.js
Original file line number Diff line number Diff line change
@@ -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) {
e.waitUntil(
caches.open(staticCacheName).then(function(cache) {
Expand Down Expand Up @@ -38,19 +38,19 @@ self.addEventListener('fetch', function(event) {
cache.put(event.request.url, response.clone());
}
return response;
})
});
})
.catch(function(err) {
// Now the request has been failed so show cached data.
return caches.match(event.request).then(function(res){
if (res === undefined) {
if (res === undefined) {
// Display offline page
return caches.match('offline.html');
}
return res;
});
})
)
})
);
});

// When the update modal sends a 'skipWaiting' message, call the skipWaiting method.
Expand Down
Loading

0 comments on commit 08d680c

Please sign in to comment.