Update version to 2.3.0.13

This commit is contained in:
Eddie Cohen 2013-10-30 17:13:23 +02:00 committed by eddie.cohen
parent 431d7d9cec
commit 6c712f3e7e
11 changed files with 30 additions and 11 deletions

View File

@ -9,12 +9,17 @@ OpenNI 2.3:
- NiViewer application
- Fix pure-C APIs
- Allow providing driver list from config file
- Auto-recording feature (see OpenNI.ini)
- Bug Fix: depth/world conversion was wrong when depth is in 100 um format
- Adding logs for endpoints bandwidth and FPS
- Better handling of cases where device does not report its FOV
- Remove GLH from samples
- NiViewer:
- IR emitter on/off is added for both PS1080 and Kinect.
- Near mode on/off is added for Kinect (was already there for PS1080)
- IR now also uses an histogram
- draw textures according to aspect ratio
- Cleanup help screen
- Java APIs
- Add log APIs
- Implemented hashCode() and equals() for VideoMode
@ -33,6 +38,7 @@ OpenNI 2.3:
- Bug Fix: Disconnect event was fired twice
- Implement MAX_PIXEL_VALUE for IR stream
- Bug Fix: Single pixel translation is wrong when image res is 1280x1024
- Windows: print USB banndwidth to log
- Kinect:
- Add mirror support
- Rewrite image registration for better performance
@ -56,9 +62,22 @@ OpenNI 2.3:
- Bug Fix: no even frame indexes from Capri devices.
- Properties are now saved in recordings
- PSLinkConsole: allow running a single command and exit
- PresetsAHB property now supports comments in files
- Add ReadDebugData command
- Support 100um mode
- Can turn on firmware log from INI file
- Bug Fix: log stream might lose the first packet
- PSLinkConsole Bug Fix: FormatZone command did not work.
- Capri: don't set USB interface if not doing reset (console mode)
- Bug: Couldn't set video mode to IR stream
- OniFile:
- Allow calling setVideoMode() as long as it's the same mode (needed by some applications)
- Properties are now saved in recordings
- allow playback of recordings that don't have the cropping property (just assume it's disabled)
- Bug Fix: potential crash when playback restarts
- Fix a potential deadlock if calling stop() immediately after a repeat occurred
- potential crash when closing recorder
- Can control playback speed and repeat options from INI file
- Build:
- Support gold linker in compilation
- Add Linux prerequisites to release notes

View File

@ -23,7 +23,7 @@
#define ONI_VERSION_MAJOR 2
#define ONI_VERSION_MINOR 3
#define ONI_VERSION_MAINTENANCE 0
#define ONI_VERSION_BUILD 12
#define ONI_VERSION_BUILD 13
/** OpenNI version (in brief string format): "Major.Minor.Maintenance (Build)" */
#define ONI_BRIEF_VERSION_STRING \

View File

@ -8,7 +8,7 @@
<?define MinorVersion=3?>
<?define MaintenanceVersion=0?>
<!-- BuildVersion is NOT used by WiX in the upgrade procedure -->
<?define BuildVersion=12?>
<?define BuildVersion=13?>
<!-- Full version number to display -->
<?define VersionNumber="$(var.MajorVersion).$(var.MinorVersion).$(var.MaintenanceVersion).$(var.BuildVersion)"?>
<?define VersionName="2.3"?>

View File

@ -125,7 +125,7 @@ def build_android():
print 'Cleaning...'
for proj in android_projects:
logFile.write('**** Cleaning ' + proj + "...****\n")
build_android_project(os.path.join('..', proj), outputFile=logFile, target='clean')
#build_android_project(os.path.join('..', proj), outputFile=logFile, target='clean')
# and build all
for proj in android_projects:
logFile.write('**** Building ' + proj + "...****\n")

View File

@ -28,7 +28,7 @@ from datetime import date
VERSION_MAJOR = 2
VERSION_MINOR = 3
VERSION_MAINTENANCE = 0
VERSION_BUILD = 12
VERSION_BUILD = 13
def getVersionString():
return str(VERSION_MAJOR) + "." + str(VERSION_MINOR) + "." + str(VERSION_MAINTENANCE) + "." + str(VERSION_BUILD)

View File

@ -1,5 +1,5 @@
OpenNI 2.3.0 Build 12
October 22 2013
OpenNI 2.3.0 Build 13
October 30 2013
Minimum Requirements:
---------------------

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.openni.android.samples.simpleread"
android:versionCode="203000012"
android:versionCode="203000013"
android:versionName="2.3" >
<uses-sdk

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.openni.android.samples.simpleviewer"
android:versionCode="203000012"
android:versionCode="203000013"
android:versionName="2.3" >
<uses-sdk

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.openni.android.tools.niviewer"
android:versionCode="203000012"
android:versionCode="203000013"
android:versionName="2.3" >
<uses-sdk

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.openni.android"
android:versionCode="203000012"
android:versionCode="203000013"
android:versionName="2.3">
<uses-sdk android:minSdkVersion="14"/>

View File

@ -121,7 +121,7 @@
<target name="-pre-build">
<exec executable="${ndk.build}" failonerror="true">
<arg value="-j6"/>
<arg value="-j"/>
</exec>
</target>