diff --git a/configure.ac b/configure.ac index 444ece61..26866be4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(rtorrent, 0.7.7, jaris@ifi.uio.no) +AC_INIT(rtorrent, 0.7.8, jaris@ifi.uio.no) AM_INIT_AUTOMAKE AM_CONFIG_HEADER(config.h) diff --git a/src/ui/download_list.cc b/src/ui/download_list.cc index 20cd9bef..478abca7 100644 --- a/src/ui/download_list.cc +++ b/src/ui/download_list.cc @@ -203,8 +203,12 @@ DownloadList::activate_display(Display displayType) { // Set title. switch (displayType) { - case DISPLAY_DOWNLOAD_LIST: control->ui()->window_title()->set_title("rTorrent " VERSION " - libTorrent " + std::string(torrent::version())); break; - case DISPLAY_LOG: control->ui()->window_title()->set_title("Log"); break; + case DISPLAY_DOWNLOAD_LIST: + control->ui()->window_title()->set_title("rTorrent " VERSION "/" + std::string(torrent::version()) + " - " + rpc::call_command_string("get_name")); + break; + case DISPLAY_LOG: + control->ui()->window_title()->set_title("Log"); + break; default: break; }