-
Notifications
You must be signed in to change notification settings - Fork 12
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
8 changed files
with
227 additions
and
171 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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,6 +1,6 @@ | ||
[package] | ||
name = "overskride" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
edition = "2021" | ||
authors = ["kaii_lb <[email protected]"] | ||
|
||
|
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.6"; | ||
pub static VERSION: &str = "0.5.7"; | ||
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using Gtk 4.0; | ||
using Adw 1; | ||
|
||
Adw.PreferencesWindow pref_window { | ||
default-width: 600; | ||
default-height: 500; | ||
title: _("Preferences"); | ||
|
||
Adw.PreferencesPage { | ||
title: _("Behavior"); | ||
icon-name: "settings-symbolic"; | ||
|
||
Adw.PreferencesGroup { | ||
title: _("Sharing Settings"); | ||
description: _("Change how the app behaves during file transfers."); | ||
|
||
Adw.SwitchRow auto_accept_after_first_row { | ||
title: _("Auto Accept After First File"); | ||
subtitle: _("when receiving files, auto accept every file after the first one"); | ||
} | ||
} | ||
} | ||
} |
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