Skip to content

Commit e896d70

Browse files
committed
Updated version and changelogs
1 parent 5895037 commit e896d70

3 files changed

Lines changed: 107 additions & 3 deletions

File tree

CHANGELOG

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
dsdcc (1.9.0-1) unstable; urgency=medium
2+
3+
* All: tolerate some mismatching symbols in the sync sequence. Implements #36
4+
* DMR BP: apply only to the 49 bits of data
5+
6+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 25 Jul 2020 10:38:11 +0200
7+
8+
dsdcc (1.8.4-1) unstable; urgency=medium
9+
10+
* NXDN: take RTCH-C frames into consideration
11+
* MSVC compatibility
12+
13+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 01 Dec 2018 20:15:15 +0100
14+
15+
dsdcc (1.8.3-1) unstable; urgency=medium
16+
17+
* NXDN: support full rate (EFR)
18+
19+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 28 Jun 2018 14:15:15 +0200
20+
21+
dsdcc (1.8.2-1) unstable; urgency=medium
22+
23+
* Fixed compilation errors
24+
25+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 24 Jun 2018 18:15:15 +0200
26+
27+
dsdcc (1.8.1-1) unstable; urgency=medium
28+
29+
* High pass filter enhancement
30+
31+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 24 Jun 2018 17:15:15 +0200
32+
33+
dsdcc (1.8.0-1) unstable; urgency=medium
34+
35+
* NXDN implementation
36+
37+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 24 Jun 2018 16:15:15 +0200
38+
39+
dsdcc (1.7.7-1) unstable; urgency=medium
40+
41+
* Reverted Implement DMR negative
42+
43+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 24 Apr 2018 16:15:15 +0200
44+
45+
dsdcc (1.7.6-1) unstable; urgency=medium
46+
47+
* Upsampling by 2,3,4,5 with mbelib decoding
48+
49+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Mon, 23 Apr 2018 16:15:15 +0200
50+
51+
dsdcc (1.7.5-1) unstable; urgency=medium
52+
53+
* Implemented DMR negative
54+
55+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 31 Mar 2018 16:15:15 +0200
56+
57+
dsdcc (1.7.4-1) unstable; urgency=medium
58+
59+
* changed optional audio high pass filter cutoff down to 240 Hz @ -3 dB
60+
61+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 02 Jan 2018 18:15:15 +0100
62+
63+
dsdcc (1.7.3-1) unstable; urgency=medium
64+
65+
* Added optional audio high pass filter when processing with mbelib
66+
67+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 26 Dec 2017 19:15:15 +0100
68+
69+
dsdcc (1.7.2-1) unstable; urgency=medium
70+
71+
* Activated compiler warnings and made corresponding fixes
72+
73+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 25 May 2017 23:15:15 +0200
74+
75+
dsdcc (1.7.1-1) unstable; urgency=medium
76+
77+
* Make PLL to track symbol synchronization optional
78+
* YSF: fixed FICH code
79+
80+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 07 May 2017 11:15:15 +0200
81+
82+
dsdcc (1.7.0-1) unstable; urgency=medium
83+
84+
* Implemented PLL to track symbol synchronization
85+
* Code cleanup with cppcheck and Eclipse possibly fixing occasional segfault
86+
87+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 06 May 2017 11:15:15 +0200
88+
89+
dsdcc (1.6.0-1) unstable; urgency=medium
90+
91+
* Initial release as a Debian package
92+
* Code refactoring with some changes in interface from 1.5.5
93+
* Added options to log formatted messages containing the traffic control information
94+
* Added options to specify own geographical position
95+
96+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 14 Jan 2017 11:15:15 +0100
97+

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.1.0)
33
project(dsdcc)
44

55
set(MAJOR_VERSION 1)
6-
set(MINOR_VERSION 8)
7-
set(PATCH_VERSION 7)
6+
set(MINOR_VERSION 9)
7+
set(PATCH_VERSION 0)
88
set(PACKAGE libdsdcc)
99
set(VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION})
1010
set(VERSION ${VERSION_STRING})

debian/changelog

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
dsdcc (1.9.0-1) unstable; urgency=medium
2+
3+
* All: tolerate some mismatching symbols in the sync sequence. Implements #36
4+
* DMR BP: apply only to the 49 bits of data
5+
6+
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 25 Jul 2020 10:38:11 +0200
7+
18
dsdcc (1.8.4-1) unstable; urgency=medium
29

310
* NXDN: take RTCH-C frames into consideration
@@ -87,4 +94,4 @@ dsdcc (1.6.0-1) unstable; urgency=medium
8794
* Added options to specify own geographical position
8895

8996
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sat, 14 Jan 2017 11:15:15 +0100
90-
97+

0 commit comments

Comments
 (0)