release: 1.5.2+16 (F-Droid)

This commit is contained in:
Tien Do Nam
2023-01-10 21:54:17 +01:00
parent 6fc901ff9b
commit 55a6fd38c6
13 changed files with 73 additions and 55 deletions

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "submodules/flutter"]
path = submodules/flutter
url = https://github.com/flutter/flutter.git

View File

@@ -1,46 +0,0 @@
## 1.5.1 (2023-01-10)
- fix(windows): app sometimes crash on start
## 1.5.0 (2023-01-09)
- feat: quick save mode
- feat: accept requests partially
- feat: set destination directory during accept phase
- feat: rename incoming files
- feat: keep screen on during file transfer
- feat: tap to open selected file before sending
## 1.4.0 (2023-01-06)
- feat: support multiple local IP addresses
- feat: detect if message is a link and add a button to open the link
## 1.3.1 (2023-01-03)
- fix: local IP sometimes not found
## 1.3.0 (2023-01-03)
- feat: enter custom target address
- feat: tap to open received file
- feat: responsive UI
- feat(ios): receive share intent
- feat(windows): set destination folder
- fix: update nearby device attributes when scan again
## 1.2.0 (2022-12-31)
- feat: drag and drop files
- feat: share plain messages
- feat(android): receive share intent
## 1.1.0 (2022-12-30)
- feat(android): add media picker
- feat(ios): merge image and video to common media picker
- fix(android): missing internet permission
## 1.0.0 (2022-12-29)
- Initial Release

1
CHANGELOG.md Symbolic link
View File

@@ -0,0 +1 @@
assets/CHANGELOG.md

View File

@@ -25,12 +25,6 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
android {
compileSdkVersion 33
ndkVersion flutter.ndkVersion
@@ -61,6 +55,12 @@ android {
signingConfigs {
release {
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null

50
assets/CHANGELOG.md Normal file
View File

@@ -0,0 +1,50 @@
## 1.5.2 (2023-01-14)
- F-Droid Release
## 1.5.1 (2023-01-10)
- fix(windows): app sometimes crash on start
## 1.5.0 (2023-01-09)
- feat: quick save mode
- feat: accept requests partially
- feat: set destination directory during accept phase
- feat: rename incoming files
- feat: keep screen on during file transfer
- feat: tap to open selected file before sending
## 1.4.0 (2023-01-06)
- feat: support multiple local IP addresses
- feat: detect if message is a link and add a button to open the link
## 1.3.1 (2023-01-03)
- fix: local IP sometimes not found
## 1.3.0 (2023-01-03)
- feat: enter custom target address
- feat: tap to open received file
- feat: responsive UI
- feat(ios): receive share intent
- feat(windows): set destination folder
- fix: update nearby device attributes when scan again
## 1.2.0 (2022-12-31)
- feat: drag and drop files
- feat: share plain messages
- feat(android): receive share intent
## 1.1.0 (2022-12-30)
- feat(android): add media picker
- feat(ios): merge image and video to common media picker
- fix(android): missing internet permission
## 1.0.0 (2022-12-29)
- Initial Release

View File

@@ -8,4 +8,5 @@ targets:
input_directory: assets/i18n
input_file_pattern: .i18n.json
output_directory: lib/gen
string_interpolation: braces
string_interpolation: braces
timestamp: false # for F-Droid Reproducible Builds

View File

@@ -0,0 +1,7 @@
LocalSend is an open source app to share files and messages between nearby devices using the local wifi network.
The communication between devices is entirely end-to-end encrypted via HTTPS.
No Internet required. No tracking*. No ads.
Currently, this app is available on Android, iOS, macOS, Windows and Linux. You can find all download options on the official homepage.
*The operating system may still gather usage data.

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

View File

@@ -0,0 +1 @@
Cross-Platform file sharing solution via WiFi.

View File

@@ -3,7 +3,7 @@ description: An open source cross-platform alternative to AirDrop
publish_to: 'none'
version: 1.5.1+15
version: 1.5.2+16
environment:
sdk: '>=2.18.5 <3.0.0'
@@ -60,7 +60,7 @@ flutter:
assets:
- assets/img/
- CHANGELOG.md
- assets/CHANGELOG.md
msix_config:
display_name: LocalSend

1
submodules/flutter Submodule

Submodule submodules/flutter added at 135454af32