Skip to content

Commit

Permalink
Increments version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim committed Dec 30, 2021
1 parent bb7b71d commit 65ffddc
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 17 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.15.0

- Adds a movement detector.
- Adds automatic line separator identification to indexer.
- Adds MP4 support to bCode detector.
- Fixes usage texts.
- Fixes display of 3rd party licenses.
- Updates README.

0.14.0

- Adds video processing capability to bCode detector.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ private static void detectMovement(String bCodeDetectionFile, String movementFil

private static void showVersionAndCopyright()
{
System.out.println("Movement detector (bTools) 0.14.0");
System.out.println("Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of Trustees");
System.out.println("Movement detector (bTools) 0.15.0");
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
System.out.println("This is free software: you are free to change and redistribute it.");
System.out.println("There is NO WARRANTY, to the extent permitted by law.");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
* Trustees.
*
* This file is part of bTools.
Expand Down Expand Up @@ -236,8 +236,8 @@ public static void processImage(String[] args) throws IOException, ParseExceptio

private static void showVersionAndCopyright()
{
System.out.println("Trophallaxis Detector (bTools) 0.14.0");
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
System.out.println("Trophallaxis Detector (bTools) 0.15.0");
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
System.out.println("This is free software: you are free to change and redistribute it.");
System.out.println("There is NO WARRANTY, to the extent permitted by law.");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
* Trustees.
*
* This file is part of bTools.
Expand Down Expand Up @@ -55,8 +55,8 @@ private static void toPlainText(String sourceFileName, String destinationFileNam

private static void showVersionAndCopyright()
{
System.out.println("Converter (bTools) 0.14.0");
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
System.out.println("Converter (bTools) 0.15.0");
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
System.out.println("This is free software: you are free to change and redistribute it.");
System.out.println("There is NO WARRANTY, to the extent permitted by law.");
Expand Down
6 changes: 3 additions & 3 deletions src/edu/illinois/gernat/btools/common/io/record/Indexer.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
* Trustees.
*
* This file is part of bTools.
Expand Down Expand Up @@ -62,8 +62,8 @@ public static void index(String recordFileName, int eolByteCount) throws IOExcep

private static void showVersionAndCopyright()
{
System.out.println("Indexer (bTools) 0.14.0");
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
System.out.println("Indexer (bTools) 0.15.0");
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
System.out.println("This is free software: you are free to change and redistribute it.");
System.out.println("There is NO WARRANTY, to the extent permitted by law.");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
* Trustees.
*
* This file is part of bTools.
Expand Down Expand Up @@ -136,8 +136,8 @@ private static List<MetaCode> detectBCodesIn(BufferedImage image)

private static void showVersionAndCopyright()
{
System.out.println("bCode Detector (bTools) 0.14.0");
System.out.println("Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of Trustees");
System.out.println("bCode Detector (bTools) 0.15.0");
System.out.println("Copyright (C) 2017-2021 University of Illinois Board of Trustees");
System.out.println("License AGPLv3+: GNU AGPL version 3 or later <http://www.gnu.org/licenses/>");
System.out.println("This is free software: you are free to change and redistribute it.");
System.out.println("There is NO WARRANTY, to the extent permitted by law.");
Expand Down
6 changes: 3 additions & 3 deletions src/edu/illinois/gernat/btools/tracking/bcode/BCodeMaker.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2017, 2018, 2019, 2020 University of Illinois Board of
* Copyright (C) 2017, 2018, 2019, 2020, 2021 University of Illinois Board of
* Trustees.
*
* This file is part of bTools.
Expand Down Expand Up @@ -170,8 +170,8 @@ private static float toPixels(float mm)

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

0 comments on commit 65ffddc

Please sign in to comment.