Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/workflows/rust-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,3 @@ jobs:
ARCHIVE_TYPES: ${{ matrix.archive_type }}
ARCHIVE_NAME: json-lines-viewer-${{ matrix.archive_platform_name }}
UPLOAD_MODE: release
publish-crate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
components: rustfmt
- name: Login to crates.io
run: cargo login ${{ secrets.CRATES_TOKEN }}
- name: Publish crate
run: cargo publish --token ${{ secrets.CRATES_TOKEN }}
78 changes: 39 additions & 39 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json-lines-viewer"
version = "0.4.6"
version = "0.5.0"
edition = "2024"
description = "JSON Lines Viewer - Terminal-UI to view JSON line files (e.g. application logs)"
authors = ["bitmagier"]
Expand Down
5 changes: 1 addition & 4 deletions planning.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
## TODO's Version 1
- feature: highlight all search hits on all screens with a style (e.g. underline or background color)
- main screen: mark line
- object screen: mark line
- value details screen: mark text section
- case-insensitive search

## (Version 2): Should be a fork with a different name - e.g. json-viewer
- rewrite: generalize viewer to any kind of json and any object depth
Expand Down
Loading