Skip to content

Commit

Permalink
fixed dvb.sh and dvb.bat to use correct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
EricBerendsen committed Aug 4, 2024
1 parent eabed6a commit d10e367
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ DVB inspector requires java 17 or higher.

DVB inspector comes in a single .zip file. It contains all necessary files for running DVB inspector.

Unzip DVBinspector-1.18.0-dist.zip to a directory of your choice. It will create the following directory structure;
Unzip DVBinspector-1.19.0-dist.zip to a directory of your choice. It will create the following directory structure;

### Directory structure

Expand All @@ -24,13 +24,13 @@ Unzip DVBinspector-1.18.0-dist.zip to a directory of your choice. It will create
* dvb.bat Dos command script that starts the program. Can be modified if libraries are placed in a different location than default.
* dvb.sh Bash script to start the program using Linux.
* DVBInspector.jar contains the classes for the main program. Can be executed using the dvb.bat or dvb.sh script.
* DVBinspector-1.18.0.jar. Self contained jar that contains all resources and libs. To execute just double click.
* DVBinspector-1.19.0.jar. Self contained jar that contains all resources and libs. To execute just double click.

## Usage

### DVBinspector-1.18.0.jar
### DVBinspector-1.19.0.jar

There are two ways to start DVBInspector. The easiest is to use DVBinspector-1.18.0.jar. This jar contains everything DVBInspector needs (apart from java), so there is no need to set class-paths, etc. On windows just double-click. Or from command line type "DVBinspector-1.18.0.jar" (without the quotes). If you want more control (to set heap size), and see some debug information you can use "java -jar DVBinspector-1.18.0.jar".
There are two ways to start DVBInspector. The easiest is to use DVBinspector-1.19.0.jar. This jar contains everything DVBInspector needs (apart from java), so there is no need to set class-paths, etc. On windows just double-click. Or from command line type "DVBinspector-1.19.0.jar" (without the quotes). If you want more control (to set heap size), and see some debug information you can use "java -jar DVBinspector-1.19.0.jar".

### dvb.bat

Expand All @@ -48,6 +48,12 @@ See the [manual](http://www.digitalekabeltelevisie.nl/dvb_inspector/usermanual.s

List of the most important changes between releases.

### Release 1.19.1 (bug fix release)
Release date: 4/08/2024

* fixed: dvb.sh and dvb.bat to use correct dependencies


### Release 1.19.0
Release date: 4/08/2024

Expand Down
2 changes: 1 addition & 1 deletion dvb.bat
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ set JVM_FLAGS=
:: uncomment next line to set initial and maximum head size to 4 GByte
::set JVM_FLAGS=-Xmx4g -Xms4g

java -classpath .;.\lib\jfreechart-1.5.3.jar;.\lib\opencsv-5.5.2.jar;.\lib\jlayer-1.0.1.4.jar;.\lib\commons-text-1.9.jar;.\lib\commons-logging-1.2.jar;.\lib\commons-lang3-3.12.0.jar;.\lib\commons-collections4-4.4.jar;.\lib\commons-collections-3.2.2.jar;.\lib\commons-beanutils-1.9.4.jar;.\DVBinspector.jar %JVM_FLAGS% -Djava.util.logging.config.file=src/main/resources/logging.properties nl.digitalekabeltelevisie.main.DVBinspector
java -classpath .;.\lib\jfreechart-1.5.3.jar;.\lib\opencsv-5.7.1.jar;.\lib\jlayer-1.0.1.4.jar;.\lib\commons-text-1.9.jar;.\lib\commons-logging-1.2.jar;.\lib\commons-lang3-3.12.0.jar;.\lib\commons-collections4-4.4.jar;.\lib\commons-collections-3.2.2.jar;.\lib\commons-beanutils-1.9.4.jar;.\DVBinspector.jar %JVM_FLAGS% -Djava.util.logging.config.file=src/main/resources/logging.properties nl.digitalekabeltelevisie.main.DVBinspector
2 changes: 1 addition & 1 deletion dvb.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
java -classpath .:./lib/jfreechart-1.5.3.jar:./lib/opencsv-5.5.2.jar:./lib/jlayer-1.0.1.4.jar:./lib/commons-text-1.9.jar:./lib/commons-logging-1.2.jar:./lib/commons-lang3-3.12.0.jar:./lib/commons-collections4-4.4.jar:./lib/commons-collections-3.2.2.jar:./lib/commons-beanutils-1.9.4.jar:./DVBinspector.jar -Djava.util.logging.config.file=src/main/resources/logging.properties nl.digitalekabeltelevisie.main.DVBinspector
java -classpath .:./lib/jfreechart-1.5.3.jar:./lib/opencsv-5.7.1.jar:./lib/jlayer-1.0.1.4.jar:./lib/commons-text-1.9.jar:./lib/commons-logging-1.2.jar:./lib/commons-lang3-3.12.0.jar:./lib/commons-collections4-4.4.jar:./lib/commons-collections-3.2.2.jar:./lib/commons-beanutils-1.9.4.jar:./DVBinspector.jar -Djava.util.logging.config.file=src/main/resources/logging.properties nl.digitalekabeltelevisie.main.DVBinspector

0 comments on commit d10e367

Please sign in to comment.