Skip to content

Commit

Permalink
[ui] add down arrow to view crumb
Browse files Browse the repository at this point in the history
  • Loading branch information
tstack committed Feb 22, 2025
1 parent 9eba9c3 commit decfb67
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include(cmake/prelude.cmake)
set(CMAKE_CXX_STANDARD 17)
project(
lnav
VERSION 0.12.4
VERSION 0.12.5
DESCRIPTION "An advanced log file viewer for the terminal."
HOMEPAGE_URL "https://lnav.org/"
LANGUAGES CXX C
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([lnav],[0.12.4],[[email protected]],[lnav],[http://lnav.org])
AC_INIT([lnav],[0.12.5],[[email protected]],[lnav],[http://lnav.org])
AC_CONFIG_SRCDIR([src/lnav.cc])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign subdir-objects])
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def analyse_text(text):
# The short X.Y version.
version = '0.12'
# The full version, including alpha/beta/rc tags.
release = '0.12.4'
release = '0.12.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion release/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

VERSION=0.12.4
VERSION=0.12.5

VERSION_TAG=v$(VERSION)

Expand Down
2 changes: 1 addition & 1 deletion src/base/intern_string.hh
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ struct string_fragment {

iterator end() const { return &this->sf_string[this->sf_end]; }

bool empty() const { return !this->is_valid() || length() == 0; }
constexpr bool empty() const { return !this->is_valid() || length() == 0; }

Result<ssize_t, const char*> codepoint_to_byte_index(
ssize_t cp_index) const;
Expand Down
4 changes: 2 additions & 2 deletions src/view_helpers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1456,8 +1456,8 @@ lnav_crumb_source()
auto view_index = top_view - lnav_data.ld_views;
retval.emplace_back(
lnav_view_titles[view_index],
attr_line_t().append(lnav::roles::status_title(
fmt::format(FMT_STRING(" {} "), lnav_view_titles[view_index]))),
attr_line_t().append(lnav::roles::status_title(fmt::format(
FMT_STRING(" {} \u25bc "), lnav_view_titles[view_index]))),
view_title_poss,
view_performer);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# '|/path/to/this/file' in lnav to execute this file and
# restore the state of the session.

;SELECT raise_error('This session export was made with a newer version of lnav, please upgrade to ' || '0.12.4' || ' or later')
WHERE lnav_version() < '0.12.4' COLLATE naturalcase
;SELECT raise_error('This session export was made with a newer version of lnav, please upgrade to ' || '0.12.5' || ' or later')
WHERE lnav_version() < '0.12.5' COLLATE naturalcase

# The files loaded into the session were:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# '|/path/to/this/file' in lnav to execute this file and
# restore the state of the session.

;SELECT raise_error('This session export was made with a newer version of lnav, please upgrade to ' || '0.12.4' || ' or later')
WHERE lnav_version() < '0.12.4' COLLATE naturalcase
;SELECT raise_error('This session export was made with a newer version of lnav, please upgrade to ' || '0.12.5' || ' or later')
WHERE lnav_version() < '0.12.5' COLLATE naturalcase

# The files loaded into the session were:

Expand Down

0 comments on commit decfb67

Please sign in to comment.