Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LANDrop/LANDrop
Drop any files to any devices on your LAN.
https://github.com/LANDrop/LANDrop
Last synced: 3 months ago
JSON representation
Drop any files to any devices on your LAN.
- Host: GitHub
- URL: https://github.com/LANDrop/LANDrop
- Owner: LANDrop
- License: bsd-3-clause
- Created: 2021-01-12T06:28:47.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-14T03:48:50.000Z (5 months ago)
- Last Synced: 2024-10-16T14:44:27.090Z (3 months ago)
- Language: C++
- Homepage: https://landrop.app/
- Size: 660 KB
- Stars: 4,850
- Watchers: 39
- Forks: 393
- Open Issues: 168
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome - LANDrop/LANDrop - Drop any files to any devices on your LAN. (C++)
- awesome-list - LANDrop - A cross-platform tool that you can use to conveniently transfer photos, videos, and other types of files to other devices on the same local network. (Cross-Platform / JavaScript)
README
![Package](https://github.com/LANDrop/LANDrop/workflows/Package/badge.svg)
> Drop any files to any devices on your LAN. No need to use instant messaging for that anymore.
LANDrop is a cross-platform tool that you can use to conveniently transfer photos, videos, and other types of files to other devices on the same local network.
You can download prebuilts of LANDrop from the [official website](https://landrop.app/#downloads).
## Features
- Cross platform: when we say it, we mean it. iOS, Android, macOS, Windows, Linux, name yours.
- Ultra fast: uses your local network for transferring. Internet speed is not a limit.
- Easy to use: intuitive UI. You know how to use it when you see it.
- Secure: uses state-of-the-art cryptography algorithm. No one else can see your files.
- No cellular data: outside? No problem. LANDrop can work on your personal hotspot, without consuming cellular data.
- No compression: doesn't compress your photos and videos when sending.## Building
The AppImage we provide as the prebuilt for Linux might not work on your machine. You can build LANDrop by yourself if the prebuilt doesn't work for you.
To build LANDrop:
1. Download and install the dependencies: [Qt](https://www.qt.io/download-qt-installer) and [libsodium](https://libsodium.gitbook.io/doc/#downloading-libsodium)
If you are using a Debian-based distro, such as Ubuntu, you can install libsodium via
```
sudo apt install libsodium-dev
```
2. Clone this repository
```
git clone https://github.com/LANDrop/LANDrop
```
3. Run the following commands
```
mkdir -p LANDrop/build
cd LANDrop/build
qmake ../LANDrop
make -j$(nproc)
sudo make install
```
4. You can now run LANDrop via
```
landrop
```