Skip to content

Commit

Permalink
Capitalize Protontricks consistently
Browse files Browse the repository at this point in the history
Capitalize the application name more consistently.
  • Loading branch information
Matoking committed Dec 30, 2021
1 parent ab4d7f6 commit ace4189
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [1.1] - 2019-01-20
### Added
- Custom Proton installations in `STEAM_DIR/compatibilitytools.d` are now detected. See [Sirmentio/protontricks#31](https://github.com/Sirmentio/protontricks/issues/31).
- protontricks is now a Python package and can be installed using `pip`.
- Protontricks is now a Python package and can be installed using `pip`.

### Changed
- Argument parsing has been refactored to use argparse.
- `protontricks gui` is now `protontricks --gui`.
- New `protontricks --version` command to print the version number.
- Game names are now displayed in alphabetical order and filtered to exclude non-Proton games.
- protontricks no longer prints INFO messages by default. To restore previous behavior, use the `-v` flag.
- Protontricks no longer prints INFO messages by default. To restore previous behavior, use the `-v` flag.

### Fixed
- More robust VDF parsing.
Expand All @@ -174,7 +174,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 1.0 - 2019-01-16
### Added
- The last release of protontricks maintained by [@Sirmentio](https://github.com/Sirmentio).
- The last release of Protontricks maintained by [@Sirmentio](https://github.com/Sirmentio).

[Unreleased]: https://github.com/Matoking/protontricks/compare/1.6.2...HEAD
[1.6.2]: https://github.com/Matoking/protontricks/compare/1.6.1...1.6.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ protontricks <APPID> <ACTIONS>
# Run a custom command within game's installation directory
protontricks -c <COMMAND> <APPID>
# Run the protontricks GUI
# Run the Protontricks GUI
protontricks --gui
# Print the protontricks help message
# Print the Protontricks help message
protontricks --help
```

Expand Down
2 changes: 1 addition & 1 deletion data/com.github.Matoking.protontricks.metainfo.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="console-application">
<id>com.github.Matoking.protontricks</id>
<name>protontricks</name>
<name>Protontricks</name>
<summary>A simple wrapper that does winetricks things for Proton enabled games</summary>
<summary xml:lang="pt_BR">Um invólucro simples que executa truques de winetricks para jogos habilitados para usar o Proton</summary>
<summary xml:lang="es">Un contenedor simple que realiza trucos de winetricks para juegos habilitados para usar Proton</summary>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
)
LONG_DESCRIPTION = (
"A simple wrapper for running Winetricks commands for Proton-enabled "
"games. protontricks requires Winetricks."
"games. Protontricks requires Winetricks."
)
AUTHOR = "Janne Pulkkinen"
AUTHOR_EMAIL = "janne.pulkkinen@protonmail.com"
Expand Down
6 changes: 3 additions & 3 deletions src/protontricks/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def exit_(error):

if not has_installed_apps:
exit_("Found no games. You need to launch a game at least once "
"before protontricks can find it.")
"before Protontricks can find it.")

try:
steam_app = select_steam_app_with_gui(
Expand Down Expand Up @@ -247,15 +247,15 @@ def exit_(error):
"\n{}\n".format(matching_games)
)
print(
"To run protontricks for the chosen game, run:\n"
"To run Protontricks for the chosen game, run:\n"
"$ protontricks APPID COMMAND"
)
else:
print("Found no games.")

print(
"\n"
"NOTE: A game must be launched at least once before protontricks "
"NOTE: A game must be launched at least once before Protontricks "
"can find the game."
)
return
Expand Down

0 comments on commit ace4189

Please sign in to comment.