Skip to content

Commit

Permalink
Update version number.
Browse files Browse the repository at this point in the history
Remove debug print.
  • Loading branch information
guyru committed Jul 23, 2019
1 parent 1cea8dd commit 3cebcf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ OPTION (WITH_OSS "Use Open Sound System (OSS) as the audio backed
[default=OFF]" OFF)

set (PACKAGE "spass")
set (VERSION "3.1")
set (VERSION "3.2")
set (PACKAGE_STRING "${PACKAGE}-${VERSION}")

# autogenerate dependency information
Expand Down
2 changes: 1 addition & 1 deletion mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void MainWindow::on_generateButton_clicked()
void MainWindow::updateStrength()
{
double bits_per_symbol = max(log2(strip->strip.size()), 0.0);
qDebug() << "Bits" << bits_per_symbol;
//qDebug() << "Bits" << bits_per_symbol;
int total_bits = bits_per_symbol * ui->lengthSpinBox->value();
ui->strengthBar->setMaximum(std::max(DEFAULT_MAX_STRENGTH, total_bits));
ui->strengthBar->setValue(total_bits);
Expand Down

0 comments on commit 3cebcf7

Please sign in to comment.