Skip to content

Commit

Permalink
Set version=0.1.6 in documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
sevdokimov committed Jan 31, 2021
1 parent dda17a3 commit 50a7dd0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: _h<span>t</span>tp://localhost:8111/log?***log=$pathToLogFile***_. For opening several log files in one view,
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion _docs/configuration.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 3 additions & 3 deletions _docs/embadded-spring-boot.md
Original file line number Diff line number Diff line change
@@ -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

<details>
<summary>Maven configuration</summary>
Expand All @@ -19,7 +19,7 @@ The library is `com.logviewer:log-viewer-spring-boot:0.1.4` in https://dl.bintra
<dependency>
<groupId>com.logviewer</groupId>
<artifactId>log-viewer-spring-boot</artifactId>
<version>0.1.4</version>
<version>0.1.6</version>
</dependency>
</dependencies>
```
Expand All @@ -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'
}
```
</p>
Expand Down
4 changes: 2 additions & 2 deletions _docs/standalone.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 50a7dd0

Please sign in to comment.