From 27344791c8b41807005f2ac2864c3741de926a56 Mon Sep 17 00:00:00 2001 From: Daniel Klaffenbach Date: Sat, 1 Jan 2011 19:16:39 +0100 Subject: [PATCH] New release: 0.4.3 --- debian/changelog | 8 ++++++++ src/mainwindow.cpp | 7 ++++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 475b0a0..07a5c38 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +qcpufreq (0.4.3-1) unstable; urgency=low + + * Display a confirmation before applying new frequency (configurable) + * Fix minimum frequency after loading voltage presets + + -- maintainer Daniel Klaffenbach Sat, 01 Jan 2011 19:41:03 +0200 + + qcpufreq (0.4.2-1) unstable; urgency=low * Enable loading of voltage profiles (through "kernel-config") diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index b513ca8..1ae60ae 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1,6 +1,6 @@ /* * QCPUFreq - a simple cpufreq GUI - * Copyright (C) 2010 Daniel Klaffenbach + * Copyright (C) 2010-11 Daniel Klaffenbach * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ #endif #define APPNAME "QCPUFreq" -#define APPVERSION "0.4.2" +#define APPVERSION "0.4.3" MainWindow::MainWindow(QWidget *parent) : @@ -117,7 +117,7 @@ MainWindow::~MainWindow() */ void MainWindow::about() { - QMessageBox::about(this, APPNAME " " APPVERSION, "

© 2010 Daniel Klaffenbach

" ); + QMessageBox::about(this, APPNAME " " APPVERSION, "

© 2011 Daniel Klaffenbach

" ); refresh(); } @@ -421,6 +421,7 @@ void MainWindow::loadPreset(QString presetName) callHelper("loadpreset", presetName); calculateMinFreq(); QMaemo5InformationBox::information(this, tr( "The preset was loaded." ), QMaemo5InformationBox::DefaultTimeout); + refresh(); #endif } -- 1.7.9.5