mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-26 01:36:18 -04:00
Merge branch 'master' into translate
This commit is contained in:
commit
25f2bc2285
12 changed files with 32 additions and 42 deletions
|
@ -622,7 +622,7 @@
|
|||
</svg>
|
||||
<div class="title-wrapper" dir="ltr">
|
||||
<h1>PairDrop</h1>
|
||||
<div class="font-subheading">v1.10.9</div>
|
||||
<div class="font-subheading">v1.10.10</div>
|
||||
</div>
|
||||
<div class="font-subheading" data-i18n-key="about.claim" data-i18n-attrs="text"></div>
|
||||
<div class="row">
|
||||
|
|
|
@ -26,8 +26,6 @@
|
|||
}
|
||||
],
|
||||
"background_color": "#efefef",
|
||||
"start_url": "/",
|
||||
"scope": "/",
|
||||
"display": "minimal-ui",
|
||||
"theme_color": "#3367d6",
|
||||
"screenshots" : [
|
||||
|
|
|
@ -2101,7 +2101,7 @@ class ReceiveTextDialog extends Dialog {
|
|||
let linkNodePlaceholder = `${p}${m}`;
|
||||
|
||||
// add linkNodePlaceholder to text node and save a reference to linkNodes object
|
||||
linkNodes[linkNodePlaceholder] = `<a href="${link}" target="_blank">${url}</a>`;
|
||||
linkNodes[linkNodePlaceholder] = `<a href="${link}" target="_blank" rel="noreferrer">${url}</a>`;
|
||||
return `${whitespaceOrSpecial}${linkNodePlaceholder}`;
|
||||
}
|
||||
// link is not valid -> do not replace
|
||||
|
|
|
@ -477,13 +477,16 @@ function getThumbnailAsDataUrl(file, width = undefined, height = undefined, qual
|
|||
return new Promise(async (resolve, reject) => {
|
||||
try {
|
||||
if (file.type === "image/heif" || file.type === "image/heic") {
|
||||
// browsers can't show heic files --> convert to jpeg before creating thumbnail
|
||||
let blob = await fileToBlob(file);
|
||||
file = await heic2any({
|
||||
blob,
|
||||
toType: "image/jpeg",
|
||||
quality: quality
|
||||
});
|
||||
// hotfix: Converting heic images taken on iOS 18 crashes page. Waiting for PR #350
|
||||
reject(new Error(`Hotfix: Converting of HEIC/HEIF images currently disabled.`));
|
||||
return;
|
||||
// // browsers can't show heic files --> convert to jpeg before creating thumbnail
|
||||
// let blob = await fileToBlob(file);
|
||||
// file = await heic2any({
|
||||
// blob,
|
||||
// toType: "image/jpeg",
|
||||
// quality: quality
|
||||
// });
|
||||
}
|
||||
|
||||
let imageUrl = URL.createObjectURL(file);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const cacheVersion = 'v1.10.9';
|
||||
const cacheVersion = 'v1.10.10';
|
||||
const cacheTitle = `pairdrop-cache-${cacheVersion}`;
|
||||
const forceFetch = false; // FOR DEVELOPMENT: Set to true to always update assets instead of using cached versions
|
||||
const relativePathsToCache = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue