mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2026-04-07 02:12:16 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
86e0d97afb | ||
|
|
433373bad1 | ||
|
|
9a7e621af6 |
4
.github/ISSUE_TEMPLATE/bug-report.md
vendored
4
.github/ISSUE_TEMPLATE/bug-report.md
vendored
@@ -36,7 +36,7 @@ If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**Bug occurs on official PairDrop instance https://pairdrop.net/**
|
||||
No | Yes
|
||||
Version: v1.9.3
|
||||
Version: v1.9.4
|
||||
|
||||
**Bug occurs on self-hosted PairDrop instance**
|
||||
No | Yes
|
||||
@@ -44,7 +44,7 @@ No | Yes
|
||||
**Self-Hosted Setup**
|
||||
Proxy: Nginx | Apache2
|
||||
Deployment: docker run | docker-compose | npm run start:prod
|
||||
Version: v1.9.3
|
||||
Version: v1.9.4
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "pairdrop",
|
||||
"version": "1.9.3",
|
||||
"version": "1.9.4",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "pairdrop",
|
||||
"version": "1.9.3",
|
||||
"version": "1.9.4",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"express": "^4.18.2",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pairdrop",
|
||||
"version": "1.9.3",
|
||||
"version": "1.9.4",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -480,7 +480,7 @@
|
||||
</svg>
|
||||
<div class="title-wrapper" dir="ltr">
|
||||
<h1>PairDrop</h1>
|
||||
<div class="font-subheading">v1.9.3</div>
|
||||
<div class="font-subheading">v1.9.4</div>
|
||||
</div>
|
||||
<div class="font-subheading" data-i18n-key="about.claim" data-i18n-attrs="text"></div>
|
||||
<div class="row">
|
||||
|
||||
@@ -1268,9 +1268,9 @@ class PairDeviceDialog extends Dialog {
|
||||
content: this._getPairUrl(),
|
||||
width: 150,
|
||||
height: 150,
|
||||
padding: 0,
|
||||
background: "transparent",
|
||||
color: `rgb(var(--text-color))`,
|
||||
padding: 1,
|
||||
background: 'rgb(238,238,238)',
|
||||
color: 'rgb(18, 18, 18)',
|
||||
ecl: "L",
|
||||
join: true
|
||||
});
|
||||
@@ -1619,9 +1619,9 @@ class PublicRoomDialog extends Dialog {
|
||||
content: this._getShareRoomUrl(),
|
||||
width: 150,
|
||||
height: 150,
|
||||
padding: 0,
|
||||
background: "transparent",
|
||||
color: `rgb(var(--text-color))`,
|
||||
padding: 1,
|
||||
background: 'rgb(238,238,238)',
|
||||
color: 'rgb(18, 18, 18)',
|
||||
ecl: "L",
|
||||
join: true
|
||||
});
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const cacheVersion = 'v1.9.3';
|
||||
const cacheVersion = 'v1.9.4';
|
||||
const cacheTitle = `pairdrop-cache-${cacheVersion}`;
|
||||
const forceFetch = false; // FOR DEVELOPMENT: Set to true to always update assets instead of using cached versions
|
||||
const urlsToCache = [
|
||||
|
||||
@@ -485,7 +485,7 @@
|
||||
</svg>
|
||||
<div class="title-wrapper" dir="ltr">
|
||||
<h1>PairDrop</h1>
|
||||
<div class="font-subheading">v1.9.3</div>
|
||||
<div class="font-subheading">v1.9.4</div>
|
||||
</div>
|
||||
<div class="font-subheading" data-i18n-key="about.claim" data-i18n-attrs="text"></div>
|
||||
<div class="row">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
window.URL = window.URL || window.webkitURL;
|
||||
window.isRtcSupported = false; //!!(window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection);
|
||||
window.isRtcSupported = !!(window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection);
|
||||
|
||||
window.hiddenProperty = 'hidden' in document ? 'hidden' :
|
||||
'webkitHidden' in document ? 'webkitHidden' :
|
||||
|
||||
@@ -1270,9 +1270,9 @@ class PairDeviceDialog extends Dialog {
|
||||
content: this._getPairUrl(),
|
||||
width: 150,
|
||||
height: 150,
|
||||
padding: 0,
|
||||
background: "transparent",
|
||||
color: `rgb(var(--text-color))`,
|
||||
padding: 1,
|
||||
background: 'rgb(238,238,238)',
|
||||
color: 'rgb(18, 18, 18)',
|
||||
ecl: "L",
|
||||
join: true
|
||||
});
|
||||
@@ -1621,9 +1621,9 @@ class PublicRoomDialog extends Dialog {
|
||||
content: this._getShareRoomUrl(),
|
||||
width: 150,
|
||||
height: 150,
|
||||
padding: 0,
|
||||
background: "transparent",
|
||||
color: `rgb(var(--text-color))`,
|
||||
padding: 1,
|
||||
background: 'rgb(238,238,238)',
|
||||
color: 'rgb(18, 18, 18)',
|
||||
ecl: "L",
|
||||
join: true
|
||||
});
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const cacheVersion = 'v1.9.3';
|
||||
const cacheVersion = 'v1.9.4';
|
||||
const cacheTitle = `pairdrop-included-ws-fallback-cache-${cacheVersion}`;
|
||||
const forceFetch = false; // FOR DEVELOPMENT: Set to true to always update assets instead of using cached versions
|
||||
const urlsToCache = [
|
||||
|
||||
Reference in New Issue
Block a user