Skip to content

Commit 1f175bd

Browse files
committed
v2.5.4.1 (same as 2.5.4 + ply loading bug fix)
1 parent b73a705 commit 1f175bd

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

ccViewer/ccviewer.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
#include <assert.h>
5656

5757
//! Current version
58-
const double CC_VIEWER_VERSION = 1.31;
58+
//const double CC_VIEWER_VERSION = 1.31;
59+
//const QString CC_VIEWER_VERSION_STR = QString::number(CC_VIEWER_VERSION,'f',2);
60+
const QString CC_VIEWER_VERSION_STR = "1.30.1"; //Special version (1.30 + ply file bug fix)
5961

6062
//Camera parameters dialog
6163
ccCameraParamEditDlg* s_cpeDlg = 0;
@@ -68,7 +70,7 @@ ccViewer::ccViewer(QWidget *parent, Qt::WindowFlags flags)
6870
{
6971
ui.setupUi(this);
7072

71-
setWindowTitle(QString("ccViewer V%1").arg(CC_VIEWER_VERSION,0,'f',2));
73+
setWindowTitle(QString("ccViewer V%1").arg(CC_VIEWER_VERSION_STR));
7274

7375
//insert GL window in a vertical layout
7476
QVBoxLayout* verticalLayout_2 = new QVBoxLayout(ui.GLframe);
@@ -857,7 +859,7 @@ void ccViewer::doActionAbout()
857859

858860
Ui::AboutDialog ui;
859861
ui.setupUi(&aboutDialog);
860-
ui.textEdit->setHtml(ui.textEdit->toHtml().arg(CC_VIEWER_VERSION,0,'f',2));
862+
ui.textEdit->setHtml(ui.textEdit->toHtml().arg(CC_VIEWER_VERSION_STR));
861863

862864
aboutDialog.exec();
863865
}

qCC/bin_other/history.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
*** CloudCompare versions history ***
22

3-
v2.5.5 ??/??/2014
3+
v2.5.4.1 04/22/2014
44
- Bug fix:
5-
* Loading of PLY files with scalar field(s) would make CC crash
5+
* Loading a PLY file with scalar field(s) would make CC crash
66

77
v2.5.4 04/19/2014
88
- New file format supported:

qCC/ccCommon.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "ccCommon.h"
2222

2323
#define CC_VER_NUM "2.5"
24-
#define CC_SUB_VER "5.beta" //2014-04-20
24+
#define CC_SUB_VER "4.1" //2014-04-20
2525

2626
//! Returns current version as a string
2727
QString ccCommon::GetCCVersion(bool full/*=true*/)

0 commit comments

Comments
 (0)