Skip to content

Commit 80e634d

Browse files
author
Piotr
committed
v0.14.0 release
1 parent c6b2b89 commit 80e634d

23 files changed

+923
-351
lines changed

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,21 @@
1515
</a>
1616
</p>
1717

18-
### Latest version: 0.13.3 (10 December 2024) - [Read announcement](https://logdy.dev/blog/post/logdy-new-version-announcement-v013)
18+
### Latest version: 0.14.0 (13 December 2024) - [Read announcement](https://logdy.dev/blog/post/logdy-new-version-announcement-v014)
1919

2020
Logdy is a single-binary that you add to your PATH so it's available just like any other tool: grep, awk, sed, jq. **No installations, no deployments, no compilations**. It works locally, so it's also secure. [Read more](https://logdy.dev/docs/what-is-logdy).
2121

2222
### Standalone use
2323
```bash
24-
# use with any shell command
24+
# Use with any shell command
2525
$ tail -f file.log | logdy
2626
INFO[2024-02...] WebUI started, visit http://localhost:8080 port=8080
27+
28+
# Read log files
29+
$ logdy follow app-out.log --full-read
30+
INFO[2024-02...] WebUI started, visit http://localhost:8080 port=8080
2731
```
32+
More use [modes in the docs.](https://logdy.dev/docs/explanation/command-modes)
2833

2934
### Use as a Go library
3035
```go
@@ -41,14 +46,15 @@ func main(){
4146
<-context.Background().Done()
4247
}
4348
```
49+
Check [docs](https://logdy.dev/docs/golang-logs-viewer) or [example app](https://github.com/logdyhq/logdy-core/blob/main/example-app/main.go).
4450

45-
## Demo
51+
## Demo of the UI
4652
Visit [demo.logdy.dev](https://demo.logdy.dev)
4753

4854

4955
![autogenerate](https://github.com/logdyhq/logdy-core/assets/1653294/bfe09fa8-bbba-46fa-b54d-503f796c7b57)
5056

51-
Visit [logdy.dev](http://logdy.dev) for more info.
57+
Visit [logdy.dev](http://logdy.dev) for more info and detalied documentation.
5258

5359
##### Project status: Beta version, new features added actively.
5460

@@ -73,7 +79,7 @@ $ brew install logdy
7379
Naviage to [releases](https://github.com/logdyhq/logdy-core/releases) Github page and download the latest release for your architecture.
7480

7581
```bash
76-
wget https://github.com/logdyhq/logdy-core/releases/download/v0.13.3/logdy_linux_amd64;
82+
wget https://github.com/logdyhq/logdy-core/releases/download/v0.14.0/logdy_linux_amd64;
7783
mv logdy_linux_amd64 logdy;
7884
chmod +x logdy;
7985
```
@@ -149,9 +155,9 @@ If you would like to develop with UI, check [readme for logdy-ui](https://github
149155
150156
## Building
151157
152-
This repository uses static asset embedding during compilation. This way, the UI is served from a single binary. Before you build make sure you copy a compiled [UI](https://github.com/logdyhq/logdy-ui) (follow the instructions about building) in `assets` directory. The UI is already commited to this repository, so you don't have to do anymore actions.
158+
This repository uses static asset embedding during compilation. This way, the UI is served from a single binary. Before you build make sure you copy a compiled [UI](https://github.com/logdyhq/logdy-ui) (follow the instructions about building) in `http/assets` directory. The UI is already commited to this repository, so you don't have to do anymore actions.
153159

154-
Look at `embed.go` for more details on how UI is embedded into the binary.
160+
Look at `http/embed.go` for more details on how UI is embedded into the binary.
155161

156162
For a local architecture build:
157163
```bash

build_across

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
gox -ldflags "-X 'main.Version=0.13.3'" -output="bin/logdy_{{.OS}}_{{.Arch}}" -osarch="linux/amd64 linux/arm64 windows/386 windows/amd64 darwin/amd64 darwin/arm64"
1+
gox -ldflags "-X 'main.Version=0.14.0'" -output="bin/logdy_{{.OS}}_{{.Arch}}" -osarch="linux/amd64 linux/arm64 windows/386 windows/amd64 darwin/amd64 darwin/arm64"

http/assets/assets/cssMode-hamDldIn.js renamed to http/assets/assets/cssMode-Sb1HsyF1.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

http/assets/assets/freemarker2-hQuJctH-.js renamed to http/assets/assets/freemarker2-rigGjrd5.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

http/assets/assets/handlebars-qpvmrikL.js renamed to http/assets/assets/handlebars-36yn1XDC.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

http/assets/assets/html-qKxh1SOy.js renamed to http/assets/assets/html-3P5GNVWI.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

http/assets/assets/htmlMode-HIDsQ80x.js renamed to http/assets/assets/htmlMode-_UTXnAs0.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

http/assets/assets/index--ia9tQRb.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

http/assets/assets/index-rjYvFtqJ.js renamed to http/assets/assets/index-hNNUgwiq.js

Lines changed: 314 additions & 314 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

http/assets/assets/index-tv-8Ql_Z.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)