Skip to content

Commit c7b7bad

Browse files
Increase version to v1.11.1
## Fixes - Fix PWA install button on chromium based browsers (#383) (Thanks @realchrislovett) - Fix wrong file extension on chromium based browsers if mime type is not set (#355) ## Languages - Translations updates from Hosted Weblate (Japanese)
1 parent 13e75f5 commit c7b7bad

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ If applicable, add screenshots to help explain your problem.
3636

3737
**Bug occurs on official PairDrop instance https://pairdrop.net/**
3838
No | Yes
39-
Version: v1.11.0
39+
Version: v1.11.1
4040

4141
**Bug occurs on self-hosted PairDrop instance**
4242
No | Yes
4343

4444
**Self-Hosted Setup**
4545
Proxy: Nginx | Apache2
4646
Deployment: docker run | docker compose | npm run start:prod
47-
Version: v1.11.0
47+
Version: v1.11.1
4848

4949
**Additional context**
5050
Add any other context about the problem here.

docs/how-to.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ This pairdrop-cli version was released alongside v1.10.4
4545
#### Linux / Mac
4646
1. Download the latest _pairdrop-cli.zip_ from the [releases page](https://github.com/schlagmichdoch/PairDrop/releases)
4747
```shell
48-
wget "https://github.com/schlagmichdoch/PairDrop/releases/download/v1.11.0/pairdrop-cli.zip"
48+
wget "https://github.com/schlagmichdoch/PairDrop/releases/download/v1.11.1/pairdrop-cli.zip"
4949
```
5050
or
5151
```shell
52-
curl -LO "https://github.com/schlagmichdoch/PairDrop/releases/download/v1.11.0/pairdrop-cli.zip"
52+
curl -LO "https://github.com/schlagmichdoch/PairDrop/releases/download/v1.11.1/pairdrop-cli.zip"
5353
```
5454
2. Unzip the archive to a folder of your choice e.g. `/usr/share/pairdrop-cli/`
5555
```shell

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pairdrop",
3-
"version": "1.11.0",
3+
"version": "1.11.1",
44
"type": "module",
55
"description": "",
66
"main": "server/index.js",

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ <h2 class="dialog-title"></h2>
668668
</svg>
669669
<div class="title-wrapper" dir="ltr">
670670
<h1>PairDrop</h1>
671-
<div class="font-subheading">v1.11.0</div>
671+
<div class="font-subheading">v1.11.1</div>
672672
</div>
673673
<div class="font-subheading" data-i18n-key="about.claim" data-i18n-attrs="text"></div>
674674
<div class="row">

public/service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const cacheVersion = 'v1.11.0';
1+
const cacheVersion = 'v1.11.1';
22
const cacheTitle = `pairdrop-cache-${cacheVersion}`;
33
const forceFetch = false; // FOR DEVELOPMENT: Set to true to always update assets instead of using cached versions
44
const relativePathsToCache = [

0 commit comments

Comments
 (0)