-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
93 additions
and
19 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,57 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop"> | ||
<id>io.github.kaii_lb.Overskride.desktop</id> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-3.0-or-later</project_license> | ||
<description> | ||
<p>No description</p> | ||
</description> | ||
<component type="desktop-application"> | ||
<id>io.github.kaii_lb.overskride</id> | ||
|
||
<name>Overskride</name> | ||
<summary>A simple but powerful bluetooth app</summary> | ||
|
||
<metadata_license>CC-BY-4.0</metadata_license> | ||
<project_license>GPL-3.0-or-later</project_license> | ||
|
||
<content_rating type="oars-1.1" /> | ||
|
||
<recommends> | ||
<display_length compare="ge">310</display_length> | ||
</recommends> | ||
<supports> | ||
<control>pointing</control> | ||
<control>keyboard</control> | ||
<control>touch</control> | ||
<control>tablet</control> | ||
</supports> | ||
|
||
<description> | ||
<p> | ||
A Bluetooth and Obex client that is straight to the point, DE/WM agnostic, and beautiful :D | ||
</p> | ||
<p> | ||
The main features are: - Dynamically enumerate and list all devices known/in range - Authenticating with devices (aka passkey confirmation) - Sending/receiving files - Multiple adapter support - Audio Profile support - Sorting devices by RSSI (signal strength) - Battery polling over Bluetooth (enable experimental Bluetooth options) - Distance approximation - ...and many more | ||
</p> | ||
</description> | ||
|
||
<releases> | ||
<release version="0.5.6" date="2024-11-15" type="stable"> | ||
<description> | ||
<p>Better Device Distance Approximation</p> | ||
</description> | ||
|
||
<url>https://github.com/kaii-lb/overskride/actions/runs/6881017303</url> | ||
</release> | ||
</releases> | ||
|
||
<launchable type="desktop-id">io.github.kaii_lb.Overskride.desktop</launchable> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://raw.githubusercontent.com/kaii-lb/overskride/main/assets/images/overskride.png</image> | ||
<caption>multi-window screenshot of app</caption> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/kaii-lb/overskride/main/assets/images/center.png</image> | ||
<caption>main screen of app</caption> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/kaii-lb/overskride/main/assets/images/left.png</image> | ||
<caption>minimized form of connected device</caption> | ||
</screenshot> | ||
</screenshots> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
[Desktop Entry] | ||
Name=overskride | ||
Exec=overskride | ||
Version=1.0 | ||
Type=Application | ||
|
||
Name=Overskride | ||
Comment=A simple yet powerful bluetooth app! | ||
Categories=Utility; | ||
Keywords=blue;bluetooth;transfer;send;audio;share; | ||
|
||
Icon=io.github.kaii_lb.Overskride | ||
Terminal=false | ||
Type=Application | ||
Categories=GTK; | ||
Exec=overskride | ||
StartupNotify=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
pub static VERSION: &str = "0.5.5"; | ||
pub static VERSION: &str = "0.5.6"; | ||
pub static GETTEXT_PACKAGE: &str = "overskride"; | ||
pub static LOCALEDIR: &str = "/usr/share/locale"; | ||
pub static PKGDATADIR: &str = "/usr/share/overskride"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters