Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3c0caaf
ci: change when job run
c-git Dec 23, 2024
b4c99ec
chore: version bump
c-git Dec 23, 2024
b0bf88a
chore: clear clippy lint
c-git Dec 23, 2024
3b62ead
chore: add todo to update CI properly
c-git Dec 23, 2024
e9b5696
chore: update deps
c-git Dec 24, 2024
058754e
chore: update eframe and move comment down
c-git Dec 24, 2024
a859933
fix: restore linux support
c-git Dec 24, 2024
61bbb1e
chore: update code for new egui version
c-git Dec 24, 2024
8097b9f
feat: add support for x11
c-git Dec 24, 2024
24be0b4
refactor: replace unwrap with expect
c-git Dec 27, 2024
aaf1a97
fix: repair wasm version after upgrade
c-git Dec 27, 2024
71b7e22
feat: update default alignment to center
c-git Dec 27, 2024
90df25a
chore: change to dev version
c-git Dec 27, 2024
61d3261
style: clean up imports
c-git Dec 27, 2024
326bea5
feat: display version number
c-git Dec 27, 2024
033ff65
refactor: extract message cleaning logic
c-git Dec 28, 2024
2e66aef
refactor: rename function for clarity
c-git Dec 28, 2024
139962e
chore: script to test running app w/out setting
c-git Dec 28, 2024
a130133
refactor: simplify and explain why n-1
c-git Dec 28, 2024
5442ef8
refactor: move row id into display settings
c-git Dec 29, 2024
84b49dc
feat: support loading non-json lines
c-git Dec 29, 2024
d4b3817
feat: add more fields to common
c-git Dec 29, 2024
8e41588
feat: add log level conversion
c-git Dec 29, 2024
5c2344c
test: update tests and snapshot
c-git Dec 29, 2024
36921a9
chore: bacon file to make run with reset easier
c-git Dec 29, 2024
c61cd4b
chore: version bump to 0.3.0
c-git Dec 29, 2024
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
5 changes: 4 additions & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ permissions:
contents: write # for committing to gh-pages branch.

jobs:
tests:
uses: ./.github/workflows/rust.yml
build-github-pages:
runs-on: ubuntu-latest
needs: tests
steps:
- uses: actions/checkout@v4 # repo checkout
- uses: wykies/checkout@main
- uses: actions-rs/toolchain@v1 # get rust toolchain for wasm
with:
profile: minimal
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
on: [push, pull_request]

name: CI

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
push:
branches:
- develop
pull_request:
types: [ opened, synchronize, reopened ]
branches:
- develop
workflow_call:

env:
# --cfg=web_sys_unstable_apis is required to enable the web_sys clipboard API which egui_web uses
# https://rustwasm.github.io/wasm-bindgen/api/web_sys/struct.Clipboard.html
# https://rustwasm.github.io/docs/wasm-bindgen/web-sys/unstable-apis.html
RUSTFLAGS: -D warnings --cfg=web_sys_unstable_apis
RUSTDOCFLAGS: -D warnings

Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"hline",
"libxcb",
"libxkbcommon",
"logviewer",
"xfixes"
]
}
Loading
Loading