-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from nathan-fiscaletti/dev
Application version: 1.2.2, Backend version: 5.8.8
- Loading branch information
Showing
14 changed files
with
108 additions
and
117 deletions.
There are no files selected for viewing
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,58 @@ | ||
# Keyboard Sounds: Application Rules | ||
|
||
![Application Rules](./app-rules.png) | ||
|
||
**⚠️ Application Rules are only available on Windows** | ||
|
||
## Index | ||
|
||
- [Rule Types](#rule-types) | ||
- [Add and Remove Rules](#add-and-remove-rules) | ||
- [Set the global rule](#set-the-global-rule) | ||
|
||
## Rule Types | ||
|
||
![Rule Types](./rule-type.png) | ||
|
||
- `enable` - Enable sound effects for the application. | ||
- `disable` - Disable sound effects for the application. | ||
- `exclusive` - Only play sound effects for the application. | ||
|
||
> The global rule can only be set to `enable` or `disable`. By default, the global rule is set to `enable`. | ||
## Add and Remove Rules | ||
|
||
### In Application | ||
|
||
You can add and remove rules in the Application Rules section of the application. | ||
|
||
![Add and Remove Rules](./add-app-rule.png) | ||
|
||
### From the Command Line | ||
|
||
```bash | ||
# Add a rule to disable sound effects for an application | ||
$ kbs add-rule -r disable -a "C:\Program Files\MyApp\MyApp.exe" | ||
|
||
# Remove a rule for an application | ||
$ kbs remove-rule -a "C:\Program Files\MyApp\MyApp.exe" | ||
``` | ||
|
||
## List Rules | ||
|
||
```bash | ||
# List the currently loaded rules | ||
$ kbs list-rules | ||
``` | ||
|
||
## Set the global rule | ||
|
||
> The global rule is used as the fallback for any application that does not have a specific rule set. By default, it is set to `enable`. | ||
```bash | ||
# Set the global rule to disable | ||
$ kbs set-global-rule -r disable | ||
|
||
# Retrieve the current global rule | ||
$ kbs get-global-rule | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
[project] | ||
name = "keyboardsounds" | ||
version = "5.8.7" | ||
version = "5.8.8" | ||
authors = [ | ||
{ name="Nathan Fiscaletti", email="[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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name="keyboardsounds", | ||
version="5.8.7", | ||
version="5.8.8", | ||
description="Adds the ability to play sounds while typing on any system.", | ||
author="Nathan Fiscaletti", | ||
author_email="[email protected]", | ||
|