Skip to content

Commit

Permalink
INDI v1.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Nov 15, 2016
1 parent 7773846 commit e75b29f
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 11 deletions.
4 changes: 2 additions & 2 deletions debian/kstars/control
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Build-Depends: cmake,
zlib1g-dev,
libcfitsio3-dev (>= 3.040),
libnova-dev,
libindi-dev (>= 1.2.0),
indi-bin (>= 1.2.0),
libindi-dev (>= 1.3.1),
indi-bin (>= 1.3.1),
wcslib-dev,
libraw-dev
Standards-Version: 3.9.3
Expand Down
6 changes: 6 additions & 0 deletions debian/libindi/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libindi (1.3.1) xenial; urgency=medium

* New upstream release.

-- Jasem Mutlaq <[email protected]> Tue, 15 Nov 2016 09:30:00 +0300

libindi (1.3.0) UNRELEASED; urgency=medium

* New upstream release.
Expand Down
6 changes: 3 additions & 3 deletions debian/libindi/libindi1.install
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
usr/lib/*/libindi.so.1
usr/lib/*/libindi.so.1.3.0
usr/lib/*/libindi.so.1.3.1
usr/lib/*/libindidriver.so.1
usr/lib/*/libindidriver.so.1.3.0
usr/lib/*/libindidriver.so.1.3.1
usr/lib/*/libindiAlignmentDriver.so.1
usr/lib/*/libindiAlignmentDriver.so.1.3.0
usr/lib/*/libindiAlignmentDriver.so.1.3.1
usr/lib/*/indi/MathPlugins/
4 changes: 3 additions & 1 deletion libindi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ set(CMAKE_CXX_FLAGS "-std=c++0x ${CMAKE_CXX_FLAGS}")
endif(NOT WIN32 AND NOT ANDROID)

##################################### INDI version ################################################
# N.B. DO NOT Forget to update version also in indiapi.h
# Proper way is to use indiversion.h.cmake file but this would break make existing applications so let us stick to the old proven way

set(INDI_SOVERSION "1")
set(CMAKE_INDI_VERSION_MAJOR 1)
set(CMAKE_INDI_VERSION_MINOR 3)
set(CMAKE_INDI_VERSION_RELEASE 0)
set(CMAKE_INDI_VERSION_RELEASE 1)
set(CMAKE_INDI_VERSION_STRING "${CMAKE_INDI_VERSION_MAJOR}.${CMAKE_INDI_VERSION_MINOR}.${CMAKE_INDI_VERSION_RELEASE}")

######################################## Paths ###################################################
Expand Down
7 changes: 7 additions & 0 deletions libindi/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
From 1.3.0 to 1.3.1

+ Support for Optec IFW Filter Wheel.
+ Added new method in base client getBLOBMode to retrieve previously set BLOB mode for a device/property pair.
+ QHY driver use software binning by default for all cameras.
+ Minor bug fixes and improvements across all drivers.

From 1.2.0 to 1.3.0

+ Support for Shelyak eShel spectrograph.
Expand Down
9 changes: 4 additions & 5 deletions libindi/indiapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,10 @@ You can find information on INDI development in the <a href="http://www.indilib.

#define INDIV 1.7


/* INDI Library version */
#define INDI_VERSION_MAJOR 1
#define INDI_VERSION_MINOR 2
#define INDI_VERSION_RELEASE 0
#define INDI_VERSION_MINOR 3
#define INDI_VERSION_RELEASE 1

/*******************************************************************************
* Manifest constants
Expand All @@ -119,9 +118,9 @@ You can find information on INDI development in the <a href="http://www.indilib.
*/
typedef enum
{
ISS_OFF, /*!< Switch is OFF */
ISS_OFF, /*!< Switch is OFF */
ISS_ON /*!< Switch is ON */
} ISState; /* switch state */
} ISState; /* switch state */

/** \typedef IPState
\brief Property state.
Expand Down

0 comments on commit e75b29f

Please sign in to comment.