-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rTorrent: Help menu version and bugs link (#17)
Changes to menu to determine version Just a general idea of how to make Changes to menu to determine version which are updated every release
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
AC_INIT(rtorrent, 0.9.8, [email protected]) | ||
|
||
AC_DEFINE(API_VERSION, 10, api version) | ||
|
||
AC_DEFINE(STICKZ_VERSION, "0.9.8-v5.0", rtorrent stickz version) | ||
AM_INIT_AUTOMAKE | ||
AC_CONFIG_HEADERS(config.h) | ||
|
||
|
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 |
---|---|---|
|
@@ -647,7 +647,7 @@ do_panic(int signum) { | |
|
||
void | ||
print_help() { | ||
std::cout << "Rakshasa's BitTorrent client version " VERSION "." << std::endl; | ||
std::cout << "rtorrent stickz BitTorrent client version " STICKZ_VERSION "." << std::endl; | ||
std::cout << std::endl; | ||
std::cout << "All value pairs (f.ex rate and queue size) will be in the UP/DOWN" << std::endl; | ||
std::cout << "order. Use the up/down/left/right arrow keys to move between screens." << std::endl; | ||
|
@@ -686,7 +686,8 @@ print_help() { | |
std::cout << " o View trackers" << std::endl; | ||
std::cout << std::endl; | ||
|
||
std::cout << "Report bugs to <[email protected]>." << std::endl; | ||
std::cout << "Report bugs to <https://github.com/stickz/rtorrent/issues>." << std::endl; | ||
|
||
|
||
exit(0); | ||
} |