New release: 0.4.3 v0.4.3
authorDaniel Klaffenbach <danielklaffenbach@gmail.com>
Sat, 1 Jan 2011 18:16:39 +0000 (19:16 +0100)
committerDaniel Klaffenbach <danielklaffenbach@gmail.com>
Sat, 1 Jan 2011 18:16:39 +0000 (19:16 +0100)
debian/changelog
src/mainwindow.cpp

index 475b0a0..07a5c38 100644 (file)
@@ -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 <danielklaffenbach@gmail.com>  Sat, 01 Jan 2011 19:41:03 +0200
+
+
 qcpufreq (0.4.2-1) unstable; urgency=low
 
   * Enable loading of voltage profiles (through "kernel-config")
index b513ca8..1ae60ae 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * QCPUFreq - a simple cpufreq GUI
- * Copyright (C) 2010 Daniel Klaffenbach <danielklaffenbach@gmail.com>
+ * Copyright (C) 2010-11 Daniel Klaffenbach <danielklaffenbach@gmail.com>
  *
  * 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, "<p style=\"align:center;\">&copy; 2010 Daniel Klaffenbach</p>" );
+    QMessageBox::about(this, APPNAME " " APPVERSION, "<p style=\"align:center;\">&copy; 2011 Daniel Klaffenbach</p>" );
     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
 }