Skip to content

Commit 64f5b8c

Browse files
committed
✍🏻|Updated to version 1.12.2
1 parent fbee8f7 commit 64f5b8c

6 files changed

Lines changed: 27 additions & 9 deletions

File tree

.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 ErikrafT Drop instance https://drop.erikraft.com/**
3838
No | Yes
39-
Version: v1.12.1
39+
Version: v1.12.2
4040

4141
**Bug occurs on self-hosted ErikrafT Drop 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.12.1
47+
Version: v1.12.2
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
@@ -46,11 +46,11 @@ This erikraftdrop-cli version was released alongside v1.10.4
4646
#### Linux / Mac
4747
1. Download the latest _erikraftdrop-cli.zip_ from the [releases page](https://github.com/erikraft/Drop/releases/)
4848
```shell
49-
wget "https://github.com/erikraft/Drop/releases/download/v1.12.1/erikraftdrop-cli.zip"
49+
wget "https://github.com/erikraft/Drop/releases/download/v1.12.2/erikraftdrop-cli.zip"
5050
```
5151
or
5252
```shell
53-
curl -LO "https://github.com/erikraft/Drop/releases/download/v1.12.1/erikraftdrop-cli.zip"
53+
curl -LO "https://github.com/erikraft/Drop/releases/download/v1.12.2/erikraftdrop-cli.zip"
5454
```
5555
2. Unzip the archive to a folder of your choice e.g. `/usr/share/erikraftdrop-cli/`
5656
```shell

docs/release-notes.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
11
## 🚀 Release Notes — Chat Notifications & Media Upload Improvements
22

3-
**Version:** v1.12.1
3+
**Version:** v1.12.2
44
**Date:** 2026-02-03
55

66
### ✨ New
77

8-
* Chat now supports **image and video attachments** with in-line preview and a download button.
8+
* Chat now supports **image attachments** with in-line preview and a download button.
99
* Added a **media upload button** (clip icon) next to the message input for faster sharing.
1010
* Browser **title and favicon indicators** now update when there are unread chat messages.
1111
* Web notifications are triggered for **new chat messages when the tab is in background**.
12+
* Added a **duplicate discovery panel** in the chat popup to mirror the main UI layout.
1213

1314
### 🛠 Improvements
1415

1516
* Chat notifications are now properly handled by the `Notifications` service instead of being bound to the wrong UI class.
1617
* Notification triggering logic was standardized using `document.hidden` and `document.visibilityState`.
1718
* Improved visual feedback for **unread messages received while the chat popup is closed** (pinned highlight until reload).
1819
* Better UX consistency with existing notification patterns in the app.
20+
* Download button in chat attachments now uses the **download icon** instead of text.
1921

2022
### 🐛 Fixes
2123

2224
* Fixed an issue where chat notifications **did not fire** due to the handler being registered in the wrong class (`ChatUI` instead of `Notifications`).
2325
* Fixed cases where messages received while the chat popup was closed **were not rendered when reopening**.
26+
* Disabled **video attachments** in chat upload since delivery was unreliable.
2427

2528
### 📁 Files Changed
2629

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "erikraft-drop",
3-
"version": "1.12.1",
3+
"version": "1.12.2",
44
"type": "module",
55
"description": "A maneira mais fácil de transferir arquivos entre dispositivos",
66
"main": "server/index.js",

public/index.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,6 +723,21 @@ <h2 data-i18n-key="instructions.no-peers-title" data-i18n-attrs="text"></h2>
723723
data-i18n-attrs="title" hidden>in room IAIAI</span>
724724
</div>
725725
</div>
726+
<div class="discovery-wrapper panel border row">
727+
<div class="row center">
728+
<span data-i18n-key="footer.discovery" data-i18n-attrs="text"></span>
729+
</div>
730+
<div class="row center wrap">
731+
<span class="badge badge-room-lan lan-badge" data-i18n-key="footer.lan"
732+
data-i18n-attrs="text title" hidden>LAN</span>
733+
<span class="badge badge-room-ip" data-i18n-key="footer.on-this-network"
734+
data-i18n-attrs="text title"></span>
735+
<span class="badge badge-room-secret pointer" data-i18n-key="footer.paired-devices"
736+
data-i18n-attrs="text title" hidden></span>
737+
<span class="badge badge-room-public-id pointer" data-i18n-key="footer.public-room-devices"
738+
data-i18n-attrs="title" hidden>in room IAIAI</span>
739+
</div>
740+
</div>
726741
</div>
727742
</footer>
728743
<!-- Language Select Dialog -->
@@ -1383,7 +1398,7 @@ <h2 class="dialog-title"></h2>
13831398
</svg>
13841399
<div class="title-wrapper" dir="ltr">
13851400
<h1>ErikrafT Drop</h1>
1386-
<div class="font-subheading">v1.12.1</div>
1401+
<div class="font-subheading">v1.12.2</div>
13871402
</div>
13881403
<div class="font-subheading" data-i18n-key="about.claim" data-i18n-attrs="text">
13891404
A maneira mais fácil de transferir arquivos entre dispositivos

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.12.1';
1+
const cacheVersion = 'v1.12.2';
22
const cacheTitle = `erikraftdrop-cache-${cacheVersion}`;
33
const relativePathsToCache = [
44
'./',

0 commit comments

Comments
 (0)