Skip to content

Commit

Permalink
relicense to GPLv3
Browse files Browse the repository at this point in the history
  • Loading branch information
itdaniher committed Feb 15, 2014
1 parent 66d0bba commit d216b4b
Show file tree
Hide file tree
Showing 9 changed files with 647 additions and 13 deletions.
18 changes: 18 additions & 0 deletions COPYING.mkd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
LibRedio - stream processing toolkit by Ian Daniher.
Copyright (C) 2013,2014 Ian Daniher

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.



622 changes: 622 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions LICENSE.mkd

This file was deleted.

3 changes: 0 additions & 3 deletions readings.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
enum DataTypes {
temperature @0;
relativeHumidity @1;
stateChange @2;
}

struct Reading {
Expand All @@ -13,5 +12,3 @@ struct Reading {
sensorReading @3: Float64; # SI units
readingTimestamp @4: Float64; # seconds since epoch
}

const exampleReading: Reading = (lower = [false, true, true], sensorType = temperature, sensorConstant = 3, sensorReading = 24.4, readingTimestamp = 1.0)
3 changes: 2 additions & 1 deletion src/dsputils.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* Copyright Ian Daniher, 2013, 2014.
Distributed under the terms of CC BY-SA 4.0. */
Distributed under the terms of the GPLv3. */

extern mod num;

use num::complex;
Expand Down
2 changes: 1 addition & 1 deletion src/instant.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Copyright Ian Daniher, 2013, 2014.
Distributed under the terms of CC BY-NC-SA 4.0. */
Distributed under the terms of the GPLv3 */

extern mod native;
extern mod kpn;
Expand Down
2 changes: 1 addition & 1 deletion src/kpn.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Copyright Ian Daniher, 2013, 2014.
Distributed under the terms of CC BY-NC-SA 4.0. */
Distributed under the terms of the GPLv3. */

use std::comm::{Chan, Port};

Expand Down
3 changes: 2 additions & 1 deletion src/rtlsdr.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* Copyright Ian Daniher, 2013, 2014.
Distributed under the terms of CC BY-SA 4.0. */
Distributed under the terms of the GPLv3. */

extern mod num;
extern mod native;

Expand Down
2 changes: 1 addition & 1 deletion src/temps.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Copyright Ian Daniher, 2013, 2014.
Distributed under the terms of CC BY-NC-SA 4.0. */
Distributed under the terms of the GPLv3. */
extern mod extra;
extern mod bitfount;
extern mod dsputils;
Expand Down

0 comments on commit d216b4b

Please sign in to comment.