From 30ab8f7e665f2c2f5f3117fdbf5438f282d7b3ce Mon Sep 17 00:00:00 2001 From: Jonas L Date: Fri, 26 May 2017 23:31:40 +0200 Subject: [PATCH 1/4] Fix INSTALL link to the website documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fa32d076..9d3bace7 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Libresonic can be downloaded from [GitHub](https://github.com/Libresonic/libresonic/releases) for personal usage. Packagers can also reference the [release repository](https://libresonic.org/release/). -Please see the [INSTALL document](https://github.com/Libresonic/documentation/blob/stable/install.md) for instructions on running Libresonic. +Please use the Libresonic documentation(https://libresonic.github.io/docs/) for instructions on running Libresonic. Community From 56f5625e79ef876905f9ff1850d19fd287f2b367 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Fri, 26 May 2017 23:32:17 +0200 Subject: [PATCH 2/4] Typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d3bace7..07711b8a 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Libresonic can be downloaded from [GitHub](https://github.com/Libresonic/libresonic/releases) for personal usage. Packagers can also reference the [release repository](https://libresonic.org/release/). -Please use the Libresonic documentation(https://libresonic.github.io/docs/) for instructions on running Libresonic. +Please use the [Libresonic documentation](https://libresonic.github.io/docs/) for instructions on running Libresonic. Community From adb77df481e590ede56ff2ffd07f74a9ea46b344 Mon Sep 17 00:00:00 2001 From: Andrew DeMaria Date: Sun, 4 Jun 2017 16:06:08 -0600 Subject: [PATCH 3/4] Added tracer for media scanning Signed-off-by: Andrew DeMaria --- .../java/org/libresonic/player/service/MediaScannerService.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libresonic-main/src/main/java/org/libresonic/player/service/MediaScannerService.java b/libresonic-main/src/main/java/org/libresonic/player/service/MediaScannerService.java index c589f63c..7adfe6f0 100644 --- a/libresonic-main/src/main/java/org/libresonic/player/service/MediaScannerService.java +++ b/libresonic-main/src/main/java/org/libresonic/player/service/MediaScannerService.java @@ -220,6 +220,8 @@ public class MediaScannerService { LOG.info("Scanned media library with " + scanCount + " entries."); } + LOG.trace("Scanning file {}", file.getPath()); + searchService.index(file); // Update the root folder if it has changed. From 68d02991e2ba4fdbcbdc53188ac0113b5bd7b03d Mon Sep 17 00:00:00 2001 From: Andrew DeMaria Date: Sun, 4 Jun 2017 16:10:12 -0600 Subject: [PATCH 4/4] Revert "Added tracer for media scanning" This reverts commit adb77df481e590ede56ff2ffd07f74a9ea46b344. --- .../java/org/libresonic/player/service/MediaScannerService.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/libresonic-main/src/main/java/org/libresonic/player/service/MediaScannerService.java b/libresonic-main/src/main/java/org/libresonic/player/service/MediaScannerService.java index 7adfe6f0..c589f63c 100644 --- a/libresonic-main/src/main/java/org/libresonic/player/service/MediaScannerService.java +++ b/libresonic-main/src/main/java/org/libresonic/player/service/MediaScannerService.java @@ -220,8 +220,6 @@ public class MediaScannerService { LOG.info("Scanned media library with " + scanCount + " entries."); } - LOG.trace("Scanning file {}", file.getPath()); - searchService.index(file); // Update the root folder if it has changed.