diff --git a/README.md b/README.md index 028f168b..a173afc8 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ machines, all machines must have run LogViewer. - Download LogViewer from [Github releases](https://github.com/sevdokimov/log-viewer/releases) and unpack it to any folder. Make sure the machine has installed Java 8 or later. -- Run `log-viewer-0.1.4/logviewer.sh` +- Run `log-viewer-0.1.6/logviewer.sh` - Open `http://localhost:8111`. There will be a file chooser to select a log from the file system. User can open a log file using the file chooser on `http://localhost:8111` or by a direct link: _http://localhost:8111/log?***log=$pathToLogFile***_. For opening several log files in one view, @@ -39,7 +39,7 @@ See [embedding to Spring Boot application](_docs/embadded-spring-boot.md) or [em ### Configuration -Configuration is located in `log-viewer-0.1.4/config.conf`, the file has [HOCON](https://github.com/lightbend/config) +Configuration is located in `log-viewer-0.1.6/config.conf`, the file has [HOCON](https://github.com/lightbend/config) format. The most important configuration is a list of available files. Also, you can specify the log format if the automatic format diff --git a/_docs/configuration.md b/_docs/configuration.md index 0715cfd1..1aed86a2 100644 --- a/_docs/configuration.md +++ b/_docs/configuration.md @@ -1,4 +1,4 @@ -Configuration is located in `log-viewer-0.1.4/config.conf`, the file has [HOCON](https://github.com/lightbend/config) +Configuration is located in `log-viewer-0.1.6/config.conf`, the file has [HOCON](https://github.com/lightbend/config) ### List of available log files diff --git a/_docs/embadded-spring-boot.md b/_docs/embadded-spring-boot.md index 1a8faf59..964ef0c0 100644 --- a/_docs/embadded-spring-boot.md +++ b/_docs/embadded-spring-boot.md @@ -1,7 +1,7 @@ LogViewer can be added to existing Spring Boot application as a library. The library provides the log-viewer servlet. You can map the servlet to any URL and it will show logs. Log configuration will be detected automatically. -The library is `com.logviewer:log-viewer-spring-boot:0.1.4` in https://dl.bintray.com/sevdokimov/log-viewer maven repository +The library is `com.logviewer:log-viewer-spring-boot:0.1.6` in https://dl.bintray.com/sevdokimov/log-viewer maven repository
Maven configuration @@ -19,7 +19,7 @@ The library is `com.logviewer:log-viewer-spring-boot:0.1.4` in https://dl.bintra com.logviewer log-viewer-spring-boot - 0.1.4 + 0.1.6 ``` @@ -38,7 +38,7 @@ repositories { } dependencies { - implementation 'com.logviewer:log-viewer-spring-boot:0.1.4' + implementation 'com.logviewer:log-viewer-spring-boot:0.1.6' } ```

diff --git a/_docs/standalone.md b/_docs/standalone.md index 92519926..01faa33e 100644 --- a/_docs/standalone.md +++ b/_docs/standalone.md @@ -4,7 +4,7 @@ Make sure the machine has installed Java 8 or later. ## Usage -Run `log-viewer-0.1.4/logviewer.sh` +Run `log-viewer-0.1.6/logviewer.sh` Web UI will be available at http://localhost:8111. There will be a file tree where you can select a log to view. @@ -14,7 +14,7 @@ Note: all log files must have full timestamp, otherwise LogViewer cannot merge t ## Configuration -Configuration is located in `log-viewer-0.1.4/config.conf`, the file has [HOCON](https://github.com/lightbend/config) +Configuration is located in `log-viewer-0.1.6/config.conf`, the file has [HOCON](https://github.com/lightbend/config) format. #### List of available log files diff --git a/log-viewer/src/main/frontend/src/app/log-view/view-config.service.ts b/log-viewer/src/main/frontend/src/app/log-view/view-config.service.ts index 5ba58912..59f69aa0 100644 --- a/log-viewer/src/main/frontend/src/app/log-view/view-config.service.ts +++ b/log-viewer/src/main/frontend/src/app/log-view/view-config.service.ts @@ -226,7 +226,7 @@ export class ViewConfigService { let fakeImage: HTMLImageElement = document.createElement('img'); - fakeImage.src = 'http://myregexp.com/log-viewer-statistic/0.1.4/sending-usage-statistics_can_be_disabled_by_removing_send-usage-statistics_property_in_the_configuration.png'; + fakeImage.src = 'http://myregexp.com/log-viewer-statistic/0.1.6/sending-usage-statistics_can_be_disabled_by_removing_send-usage-statistics_property_in_the_configuration.png'; fakeImage.style.position = 'absolute'; fakeImage.style.left = '-101px'; fakeImage.style.top = '-101px';