Skip to content

Commit 6490a1d

Browse files
committed
Release version 2.6.4
1 parent 2c9e2b4 commit 6490a1d

9 files changed

Lines changed: 20 additions & 8 deletions

File tree

QGLViewer/QGLViewer.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
TEMPLATE = lib
88
TARGET = QGLViewer
9-
VERSION = 2.6.3
9+
VERSION = 2.6.4
1010
CONFIG *= qt opengl warn_on shared thread create_prl rtti no_keywords
1111

1212
QGL_HEADERS = \

QGLViewer/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#ifndef QGLVIEWER_CONFIG_H
77
#define QGLVIEWER_CONFIG_H
88

9-
#define QGLVIEWER_VERSION 0x020603
9+
#define QGLVIEWER_VERSION 0x020604
1010

1111
// Needed for Qt < 4 (?)
1212
#ifndef QT_CLEAN_NAMESPACE

QGLViewer/qglviewer.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
%define version_major 2
33
%define version_minor 6
4-
%define version_revision 3
4+
%define version_revision 4
55

66
Name: libQGLViewer
77
Version: %{version_major}.%{version_minor}.%{version_revision}
@@ -155,6 +155,9 @@ rm -rf $RPM_BUILD_ROOT
155155
%{docDir}/examples/*/*
156156

157157
%changelog
158+
* Tue Sep 27 2016 Gilles Debunne <contact@libQGLViewer.com> 2.6.4
159+
- Fix ARM build, remove contribs examples' compilation.
160+
158161
* Thu Jul 16 2015 Gilles Debunne <contact@libQGLViewer.com> 2.6.3
159162
- Build library in QGLViewer directory. Simplified examples.pri.
160163

QGLViewer/qglviewer_fr.qm

77 Bytes
Binary file not shown.

doc/Doxyfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = libQGLViewer
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "Version 2.6.3"
41+
PROJECT_NUMBER = "Version 2.6.4"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a
@@ -1285,7 +1285,7 @@ QCH_FILE =
12851285
# The default value is: org.doxygen.Project.
12861286
# This tag requires that the tag GENERATE_QHP is set to YES.
12871287

1288-
QHP_NAMESPACE = com.libqglviewer.2.6.3
1288+
QHP_NAMESPACE = com.libqglviewer.2.6.4
12891289

12901290
# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
12911291
# Help Project output. For more information please see Qt Help Project / Virtual

doc/changeLog.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ <h2>Jul 16th 2016 - 2.6.4</h2>
3838
<ul>
3939
<li>Add a <code>-qt4</code> or <code>-qt5</code> suffix to library file name on Linux. Fixes #18 (thanks Laurent).</li>
4040
<li>Edit the .pro of the examples to support the debug version of the library on Windows. Fixes #23 (thanks naubry).</li>
41+
<li><code>contribs</code> examples no longer build by default. Relied on deprecated GL calls (Fixes #31)</li>
42+
<li>Add <code>QMAKE_MAC_SDK</code> to fix compilation on Mac with recent XCode versions</li>
43+
<li>Fix compilation errors on ARMv7, when `qreal` is defined to `float` (Pull request from lrineau)</li>
4144
</ul>
4245

4346

doc/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,12 @@ <h2>Latest changes</h2>
9191

9292
<table style="width:90%; margin-left:50px; border:1px solid #AAF; background-color:#DDE" cellspacing="8" cellpadding="8">
9393

94+
<tr>
95+
<td><b>Sep 27th, 2016</b><br/><a href="changeLog.html">Version 2.6.4</a></td>
96+
<td>Fix ARM build, remove <code>contribs<code> examples' compilation.</td>
97+
</tr>
98+
99+
94100
<tr>
95101
<td><b>Jun 23rd, 2015</b><br/><a href="changeLog.html">Version 2.6.3</a></td>
96102
<td>The library is now always built in the <code>QGLViewer</code> directory.</td>

libQGLViewer.nsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Name libQGLViewer
1313

1414
# Defines
1515
!define REGKEY "SOFTWARE\$(^Name)"
16-
!define VERSION 2.6.3
16+
!define VERSION 2.6.4
1717
!define COMPANY "Gilles Debunne"
1818
!define URL http://www.libqglviewer.com/
1919

@@ -66,7 +66,7 @@ InstallDir $PROGRAMFILES\libQGLViewer
6666
CRCCheck on
6767
XPStyle on
6868
ShowInstDetails show
69-
VIProductVersion 2.6.3
69+
VIProductVersion 2.6.4
7070
VIAddVersionKey /LANG=${LANG_ENGLISH} ProductName "${NAME}"
7171
VIAddVersionKey /LANG=${LANG_ENGLISH} ProductVersion "${VERSION}"
7272
VIAddVersionKey /LANG=${LANG_ENGLISH} CompanyName "${COMPANY}"

makeDist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
libName="libQGLViewer"
4-
version="2.6.3"
4+
version="2.6.4"
55

66
WebURL="http://www.libqglviewer.com"
77

0 commit comments

Comments
 (0)