2 Commits
0.1.1 ... 0.1.2

Author SHA1 Message Date
92d384573e Rescan the media library before reporting on absent files. 2016-09-08 14:18:20 -05:00
4468f606ed Bump H2 DB version. 2016-09-08 14:13:04 -05:00
3 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,7 @@ allprojects {
}
group = 'com.jdbernard'
version = '0.1.1'
version = '0.1.2'
repositories {
mavenLocal()

View File

@ -28,7 +28,7 @@ import static com.jdbernard.wdiwtlt.cli.CliErr.*
public class CommandLineInterface {
public static final VERSION = "0.1.1"
public static final VERSION = "0.1.2"
public static final def DOC = """\
wdiwtlt v$VERSION
@ -551,6 +551,7 @@ Configuration:
[(idKeyFor(selectionClass)): it.id]) }.findAll()
case ~/absent files/:
scanMediaLibrary()
return library.getMediaFilesWhere(presentLocally: false)
case ~/files tagged( as){0,1}((\s[^\s]+)+)/:

View File

@ -25,6 +25,6 @@ dependencies {
testCompile 'junit:junit:4.12'
runtime 'com.h2database:h2:1.4.185'
runtime 'com.h2database:h2:1.4.192'
runtime 'org.postgresql:postgresql:9.4.1207.jre7'
}