diff --git a/CMakeLists.txt b/CMakeLists.txt index 9395339..3e43703 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -77,7 +77,7 @@ set(META_APP_URL "https://github.com/${META_APP_AUTHOR}/${META_PROJECT_NAME}") set(META_APP_DESCRIPTION "Arch Linux repository browser") set(META_VERSION_MAJOR 0) set(META_VERSION_MINOR 2) -set(META_VERSION_PATCH 0) +set(META_VERSION_PATCH 1) # stringification of meta data set(META_PROJECT_NAME_STR "\"${META_PROJECT_NAME}\"") diff --git a/alpm/manager.cpp b/alpm/manager.cpp index b97fd8b..10af3e3 100644 --- a/alpm/manager.cpp +++ b/alpm/manager.cpp @@ -670,7 +670,7 @@ bool Manager::isAutoUpdateEnabled() const */ void Manager::setAutoUpdateEnabled(bool enabled) { - if(isAutoCacheMaintenanceEnabled() != enabled) { + if(isAutoUpdateEnabled() != enabled) { if(enabled) { if(!m_updateTimer) { m_updateTimer = make_unique();