Timothy Stack
31a670ce27
[md4c] initial markdown support
2022-05-22 20:44:18 -07:00
Timothy Stack
45262b80c4
[build] fix some itertools issues
2022-05-10 22:22:25 -07:00
Timothy Stack
f03f9e704f
[views] add a breadcrumb view
2022-05-10 21:58:32 -07:00
Timothy Stack
f2968a7032
[build] missing include ... again
2022-04-30 13:17:50 -07:00
Timothy Stack
45b9745cf2
[build] missing include
2022-04-30 13:14:28 -07:00
Timothy Stack
a27198e8ca
[regex101] add an integration with regex101
...
... and a pile of other changes
2022-04-30 13:06:01 -07:00
Timothy Stack
0785a432fa
[console] colorize console output
2022-04-12 16:07:13 -07:00
Timothy Stack
292724d7ad
[build] remove use of memset
2022-04-04 11:53:47 -07:00
Timothy Stack
5eaf1c4332
[exttm] missed an initialization
2022-04-04 09:58:16 -07:00
Timothy Stack
c8799b1c99
[build] missing include
2022-04-04 09:30:03 -07:00
Timothy Stack
d82140de52
[date-time-scanner] fix generating with a user-defined format
...
Fixes #967
2022-04-04 09:14:57 -07:00
Timothy Stack
99c1688c2e
[attr_line] use variant instead of a union for attribute values
2022-03-31 23:21:59 -07:00
Timothy Stack
81e63784e7
[modernize] some more cleanups
2022-03-31 08:59:33 -07:00
Timothy Stack
b856cd9657
[build] silence some warnings
2022-03-28 22:00:49 -07:00
Timothy Stack
6fff9d60f5
[build] some clang-tidy fixes
2022-03-25 16:38:11 -07:00
Timothy Stack
8b3bb9312e
[build] cmake fixes for linux
2022-03-16 21:41:37 -07:00
Timothy Stack
66ef5fdae1
[clang-format] init
2022-03-16 15:38:08 -07:00
Timothy Stack
d0ba84d9be
[build] run cmake-init and switch from hunter to conan for packages
2022-03-13 22:44:12 -07:00
Timothy Stack
4564e162d0
[build] try to optimize compile time
2022-03-13 15:49:41 -07:00
Peter Schiffer
b8a31ae9b4
Add #include <iterator>
to string_util.cc
...
Lnav fails to build on the next Fedora version due to the following error:
```
make[3]: Entering directory '/builddir/build/BUILD/lnav-0.10.1/src/base'
g++ -std=c++14 -DHAVE_CONFIG_H -I. -I../../src -Wall -I../../src/ -I../../src/third-party -I../../src/fmtlib -I../../src/third-party/doctest-root -I/usr/local/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -D_GNU_SOURCE -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -c -o string_util.o string_util.cc
make[3]: Leaving directory '/builddir/build/BUILD/lnav-0.10.1/src/base'
string_util.cc: In function 'std::string repeat(const std::string&, size_t)':
string_util.cc:199:22: error: 'ostream_iterator' is not a member of 'std'
199 | std::fill_n(std::ostream_iterator<std::string>(os), num, input);
| ^~~~~~~~~~~~~~~~
string_util.cc:38:1: note: 'std::ostream_iterator' is defined in header '<iterator>'; did you forget to '#include <iterator>'?
37 | #include "string_util.hh"
+++ |+#include <iterator>
38 |
```
Reason is probably the updated GNU toolchain, more info:
https://fedoraproject.org/wiki/Changes/GNUToolchainF36
This patch fixes the issue.
2022-02-21 21:09:30 +01:00
Cristian Chiru
084b88b6f4
Fix func signature
2022-02-20 03:32:33 +02:00
Cristian Chiru
b23e0ad508
Fix lnav homedir for windows
2022-02-20 03:30:07 +02:00
Cristian Chiru
e2fe64e536
Fix for building on msys2; Closes #795
2022-02-20 01:35:40 +02:00
Timothy Stack
8bb034eeeb
[pcap] initial pcap support
...
Fixes #12
2021-11-05 15:13:16 -07:00
Timothy Stack
f74214b9b6
[sql] add a gunzip() SQL function
2021-10-26 09:39:05 -07:00
Timothy Stack
7627c41802
[build] missing file
2021-10-03 12:52:29 -07:00
Timothy Stack
19fd336e9a
[formats] add logfmt
2021-10-02 23:17:33 -07:00
Timothy Stack
008b1c827b
[build] fix some 32-bit build issues
2021-10-02 16:29:15 -07:00
Timothy Stack
dc0b7ff631
[cmake] run cmake-format
2021-09-27 15:59:23 -07:00
Timothy Stack
b884f732f2
[json-ext] json_contains() should accept null
...
Related to #447
2021-09-27 15:54:10 -07:00
Timothy Stack
954e368974
[build] rejigger doctest inclusion a bit
2021-09-26 22:01:40 -07:00
Timothy Stack
2edc3c8382
[lnav_log] fix issue when the debug log file couldn't be opened
...
Related to #866
2021-09-23 13:13:01 -07:00
Timothy Stack
b2f11ac27f
[intern] some cleanup
2021-09-22 16:01:03 -07:00
Timothy Stack
0de76b29c8
[files] fix refreshing files with errors and auto-switching to text view
...
Fixes #909
2021-09-03 12:33:11 -07:00
Timothy Stack
211f10535c
[cmds] add --view flag
2021-08-23 22:25:38 -07:00
Timothy Stack
76ce111d48
[test] fix a leak
2021-06-03 05:54:13 +00:00
Timothy Stack
d3d527d290
[tests] adding some more coverage
2021-06-02 21:09:50 -07:00
Timothy Stack
8f7b08c9c5
[logfile] add notes for automatic decisions and fix compile errors
...
Fixes #864
2021-05-30 13:33:05 -07:00
Timothy Stack
108dc1b77a
[build] more stacktrace
2021-05-24 21:06:14 -07:00
Timothy Stack
9231e812d7
[build] disable backward
2021-05-23 22:49:26 -07:00
Timothy Stack
399cf83fc5
[ras] add backward-cpp
2021-05-23 21:54:12 -07:00
Timothy Stack
be51a4e3de
[arc/remote] use a single work directory for archive/remote files
2021-05-15 22:39:18 -07:00
Timothy Stack
d2b5690e0c
[readline] improve filename completion
2021-05-13 19:50:04 -07:00
Timothy Stack
98677eb09a
[remote] some more tweaks and add tab-completion
2021-05-11 22:37:21 -07:00
Timothy Stack
681f771bb7
[remote] add preview for remote :open
2021-05-09 15:01:21 -07:00
Timothy Stack
ab671d5834
[lnav_log] add a thread-local prefix for messages
2021-05-04 22:28:49 -07:00
Timothy Stack
04676d75b7
[build] missing include
2021-05-01 08:42:12 -07:00
Timothy Stack
f050c7b0a7
[remote] start to wire up remote support
2021-05-01 08:33:54 -07:00
Timothy Stack
444e7e3289
[remote] draft of the tailer
2021-04-22 09:02:24 -07:00
Timothy Stack
d31aa845f5
[base] refactor duration2str
2021-04-03 14:24:24 -07:00