Skip to content

Commit 65ffddc

Browse files
author
Tim
committed
Increments version.
1 parent bb7b71d commit 65ffddc

File tree

7 files changed

+26
-17
lines changed

7 files changed

+26
-17
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.15.0
2+
3+
- Adds a movement detector.
4+
- Adds automatic line separator identification to indexer.
5+
- Adds MP4 support to bCode detector.
6+
- Fixes usage texts.
7+
- Fixes display of 3rd party licenses.
8+
- Updates README.
9+
110
0.14.0
211

312
- Adds video processing capability to bCode detector.

src/edu/illinois/gernat/btools/behavior/movement/MovementDetector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ private static void detectMovement(String bCodeDetectionFile, String movementFil
8585

8686
private static void showVersionAndCopyright()
8787
{
88-
System.out.println("Movement detector (bTools) 0.14.0");
89-
System.out.println("Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of Trustees");
88+
System.out.println("Movement detector (bTools) 0.15.0");
89+
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
9090
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
9191
System.out.println("This is free software: you are free to change and redistribute it.");
9292
System.out.println("There is NO WARRANTY, to the extent permitted by law.");

src/edu/illinois/gernat/btools/behavior/trophallaxis/TrophallaxisDetector.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
2+
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
33
* Trustees.
44
*
55
* This file is part of bTools.
@@ -236,8 +236,8 @@ public static void processImage(String[] args) throws IOException, ParseExceptio
236236

237237
private static void showVersionAndCopyright()
238238
{
239-
System.out.println("Trophallaxis Detector (bTools) 0.14.0");
240-
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
239+
System.out.println("Trophallaxis Detector (bTools) 0.15.0");
240+
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
241241
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
242242
System.out.println("This is free software: you are free to change and redistribute it.");
243243
System.out.println("There is NO WARRANTY, to the extent permitted by law.");

src/edu/illinois/gernat/btools/common/io/record/Converter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
2+
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
33
* Trustees.
44
*
55
* This file is part of bTools.
@@ -55,8 +55,8 @@ private static void toPlainText(String sourceFileName, String destinationFileNam
5555

5656
private static void showVersionAndCopyright()
5757
{
58-
System.out.println("Converter (bTools) 0.14.0");
59-
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
58+
System.out.println("Converter (bTools) 0.15.0");
59+
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
6060
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
6161
System.out.println("This is free software: you are free to change and redistribute it.");
6262
System.out.println("There is NO WARRANTY, to the extent permitted by law.");

src/edu/illinois/gernat/btools/common/io/record/Indexer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
2+
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
33
* Trustees.
44
*
55
* This file is part of bTools.
@@ -62,8 +62,8 @@ public static void index(String recordFileName, int eolByteCount) throws IOExcep
6262

6363
private static void showVersionAndCopyright()
6464
{
65-
System.out.println("Indexer (bTools) 0.14.0");
66-
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
65+
System.out.println("Indexer (bTools) 0.15.0");
66+
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
6767
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
6868
System.out.println("This is free software: you are free to change and redistribute it.");
6969
System.out.println("There is NO WARRANTY, to the extent permitted by law.");

src/edu/illinois/gernat/btools/tracking/bcode/BCodeDetector.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
2+
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
33
* Trustees.
44
*
55
* This file is part of bTools.
@@ -136,8 +136,8 @@ private static List<MetaCode> detectBCodesIn(BufferedImage image)
136136

137137
private static void showVersionAndCopyright()
138138
{
139-
System.out.println("bCode Detector (bTools) 0.14.0");
140-
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
139+
System.out.println("bCode Detector (bTools) 0.15.0");
140+
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
141141
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
142142
System.out.println("This is free software: you are free to change and redistribute it.");
143143
System.out.println("There is NO WARRANTY, to the extent permitted by law.");

src/edu/illinois/gernat/btools/tracking/bcode/BCodeMaker.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
2+
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
33
* Trustees.
44
*
55
* This file is part of bTools.
@@ -170,8 +170,8 @@ private static float toPixels(float mm)
170170

171171
private static void showVersionAndCopyright()
172172
{
173-
System.out.println("bCode Maker (bTools) 0.14.0");
174-
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
173+
System.out.println("bCode Maker (bTools) 0.15.0");
174+
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
175175
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
176176
System.out.println("This is free software: you are free to change and redistribute it.");
177177
System.out.println("There is NO WARRANTY, to the extent permitted by law.");

0 commit comments

Comments
 (0)