raised version number to 0.6.0

This commit is contained in:
badaix 2016-04-10 23:30:20 +02:00
parent 1210d506de
commit ff4dc98d32
8 changed files with 34 additions and 8 deletions

View file

@ -8,8 +8,8 @@ android {
applicationId "de.badaix.snapcast"
minSdkVersion 16
targetSdkVersion 23
versionCode 4
versionName "0.5.0"
versionCode 5
versionName "0.6.0"
multiDexEnabled true
}
buildTypes {
@ -26,6 +26,6 @@ dependencies {
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
// compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
}

View file

@ -1,4 +1,4 @@
VERSION = 0.5.0
VERSION = 0.6.0
TARGET = snapclient
SHELL = /bin/bash

View file

@ -1,3 +1,16 @@
snapclient (0.6.0) unstable; urgency=low
* Features
-Port to OpenWrt
* Bugfixes
-Android client: fixed crash if more than two streams are active
* General
-Support Tremor, an integer only Ogg-Vorbis implementation
-Endian-independent code
-Cleaned up build process
-- Johannes Pohl <johannes.pohl@badaix.de> Sun, 10 Apr 2016 00:02:00 +0200
snapclient (0.5.0) unstable; urgency=low
* Features

View file

@ -134,4 +134,4 @@ Build Snapcast:
$ make package/sxx/snapcast/clean V=s
$ make package/sxx/snapcast/compile -j1 V=s
The packaged `ipk` files are in `<buildroot dir>/bin/ar71xx/packages/base/snap[client|server]_0.5.0_ar71xx.ipk`
The packaged `ipk` files are in `<buildroot dir>/bin/ar71xx/packages/base/snap[client|server]_0.6.0_ar71xx.ipk`

View file

@ -42,7 +42,7 @@ public:
msg["ClientName"] = "Snapclient";
msg["OS"] = ::getOS();
msg["Arch"] = ::getArch();
msg["SnapStreamProtocolVersion"] = 1;
msg["SnapStreamProtocolVersion"] = 2;
}
virtual ~Hello()

View file

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/target.mk
PKG_NAME := snapcast
PKG_VERSION := 0.5.0
PKG_VERSION := 0.6.0
PKG_RELEASE := $(PKG_SOURCE_VERSION)
PKG_USE_MIPS16 := 0

View file

@ -1,4 +1,4 @@
VERSION = 0.5.0
VERSION = 0.6.0
TARGET = snapserver
SHELL = /bin/bash

View file

@ -1,3 +1,16 @@
snapserver (0.6.0) unstable; urgency=low
* Features
-Port to OpenWrt
* Bugfixes
-Android client: fixed crash if more than two streams are active
* General
-Support Tremor, an integer only Ogg-Vorbis implementation
-Endian-independent code
-Cleaned up build process
-- Johannes Pohl <johannes.pohl@badaix.de> Sun, 10 Apr 2016 00:02:00 +0200
snapserver (0.5.0) unstable; urgency=low
* Features