Next | Query returned 60 messages, browsing 31 to 40 | Previous

History of commit frequency

CVS Commit History:


   2021-06-17 22:26:31 by pin | Files touched by this commit (2) | Package updated
Log message:
sysutils/xplr: update to 0.14.2

Changes & fixes:
-Added messages: PrintPwdAndQuit, PrintFocusPathAndQuit, PrintSelectionAndQuit.
-Mapped :q to a new built-in mode quit containing different options to quit.
-Fixed handling of relative paths.
-FocusNext will start from the first node after the last node.
-FocusPrevious will start from the last node after the first node.
   2021-06-09 09:54:13 by pin | Files touched by this commit (2) | Package updated
Log message:
sysutils/xplr: update to 0.14.1

-Fixed critical issue with FocusPath.
   2021-06-06 18:00:08 by pin | Files touched by this commit (2) | Package updated
Log message:
sysutils/xplr: update to 0.14.0

Changes & fixes:
-Added basic CLI arguments. Try xplr --help.
-Fixed config path for macOS. New priority: -c <PATH> > \ 
~/.config/xplr/init.lua
> /etc/xplr/init.lua.
-Further improved the library API.
-Added support for FIFO-based previewer.
-Added option to disable the recover mode (config.general.disable_recover_mode).
-Added support for specifying read only mode via CLI argument.
   2021-06-05 21:12:45 by pin | Files touched by this commit (4) | Package updated
Log message:
sysutils/xplr: update to 0.13.7

0.13.7
======
-Implemented basic CLI arguments.

0.13.6
======
-Removed --locked to use the latest versions of dependencies.

0.13.5
======
-Started publishing PGP signature for the source archive.

0.13.4
======
-Fix pgp publishing attempt.

0.13.3
======
-Fix pgp publishing attempt.

0.13.2
======
Changes & fixes:
-No need to Refresh explicitly. xplr with auto Refresh after each batch of
messages. i.e. you can remove all the Refresh from your init.lua.
-Mouse will be disabled by default. Use :m key binding or
{Enable|Disable|Toggle}Mouse messages to enable/disable mouse.
-Fixed focus jumping to the first file after deleting a file.
-Upgraded dependencies.
-Polished xplr library API.
   2021-05-28 09:29:04 by pin | Files touched by this commit (2) | Package updated
Log message:
sysutils/xplr: update to 0.13.1

Changes & fixes:
-Optimized rendering speed (significantly).
-Minor documentation fixes.
   2021-05-27 22:43:17 by pin | Files touched by this commit (2) | Package updated
Log message:
sysutils/xplr: update to 0.13.0

Changes & fixes:
-Lua functions called via CallLua and CallLuaSilently will now receive
CallLuaArg object as input.
-node_types configurations will inherit parameters from the less specific
node_types configurations and overwrite them.
   2021-05-25 18:15:54 by pin | Files touched by this commit (4) | Package updated
Log message:
sysutils/xplr: update to 0.12.1

0.12.1
======
-Fixed compilation with stable rust.

0.12.0
======
Changes & fixes:
-xplr.config.node_types.mime_essence has split into type and subtype. Hence,
instead of xplr.config.node_types.mime_essence["text/plain"] = .. use
xplr.config.node_types.mime_essence["text"] = { plain = .. }.
-You can also define \ 
xplr.config.node_types.mime_essence["text"]["*"] that will
match all text types (text/*).
-Functions called using CallLua and CallLuaSilently now have optional return
type.
-Some minor improvements to permission rendering.

0.11.1
======
-Fixed ctrl-i key behavior by remapping it back to tab.

0.11.0
======
Changes & fixes:
-Added file permissions.
-Added support for setting terminal colors from Lua functions.
-Removed remaps: from key bindings. Remapped keys using Lua assignments instead.
-Current mode will also be displayed on the input & logs panel title.
-Mapped :q to "quit" action.
-Minor UI fixes.
   2021-05-23 19:08:50 by pin | Files touched by this commit (5) | Package updated
Log message:
sysutils/xplr: update to 0.10.2

0.10.2
======
Changes & fixes:
-Fixed error with broken symlink.
-Fixed displaying correct symlink destination.
-Fixed deleting symlinks pointing to a directory.

0.10.1
======
Changes & files:
-Fixed icon rendering
-Made all the important structs public for visible documentation.

0.10.0
======
Changes & fixes:
-config.yml has been fully replaced with init.lua. If you have a lot of
customization in your config.yml, xplr-yml2lua can help you with migrating
it to lua.
-Handlebars templates has been replaced with Lua functions.
-xplr will fall back to default config if init.lua is corrupt. You will see
the error via log. So, now, it's not a big deal if you mess up init.lua or you
upgrade xplr and there's version incompatibility issue. You can still use it.
-Added (optional) mouse scrolling support, which be auto enabled on devices
that support mouse.
-History navigation will now behave like jump list in vim. So, you can even
jump and return to different locations in the same directory.
-Added messages CallLua and CallLuaSilently to call lua functions. The app
state will be passed as input to the functions, and the returned messages will
be handled by xplr. CallLua and CallLuaSilently are more flexible (and probably
faster) alternatives to Call, CallSilently, BashExec and BashExecSilently. e.g.
-Fixed "directory not empty" error on MacOS
-Fixed initial focus via CLI argument.

0.10.0-beta.6
=============
Changes & fixes:
-Fall back to default config when the custom config is corrupt. An error log
will be displayed.
-Optimized CPU usage by limiting pipe readers.
-Added messages CallLua and CallLuaSilently to call lua functions. The app
state will be passed as inputs to the functions, and the returned messages
will be handled by xplr.

0.10.0-beta.5
=============
-Fixed initial $PWD sync issue.

0.10.0-beta.4
=============
Changes & fixes:
-config.yml has been fully ported to init.lua. That means, xplr won't read
config.yml anymore.
-xplr.fn.builtin.foo_func format synax has been shortened to builtin.foo_func.

0.10.0-beta.3
=============
Changes & fixes:
-Added (optional) mouse scrolling support.
-History navigation will now behave like jump list.
-Fixed initial focus via CLI argument.
-Fixes MacOS error "directory not empty".

0.10.0-beta.2
=============
-Update version

0.10.0-beta.1
=============
Changes & fixes:
-Handlebars templates have been replaced with Lua functions. Hence, instead of
handlebars templates, you will be writing the location to the lua functions
(e.g. xplr.fn.builtin.fmt_general_table_row_cols_0) in
config.general.table.row.cols[n].format.
-As of now 4 inbuilt functions have been defined in Lua.
xplr.fn.builtin.fmt_general_table_row_cols_{n}, which can be overwritten
via ~/.config/xplr/init.lua.
-You can define your own functions in xplr.fn.custom.
-CallSilently message has been fixed, and you won't see the unexpected
stdout/stderr on screen anymore.

0.10.0-beta.0
=============
-Added support for native lua binding via ~/.config/xplr/init.lua.
-Fixed open in editor action by only opening the file under focus.
   2021-05-15 16:55:48 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/xplr: update to 0.9.1

-Added support for un-mapping keys by remapping keys to null.
-Removed lag when ctrl-w is pressed in default mode.
-Use less -+F instead of less as the default pager.
-gx will open the file under focus.
-New key map :sx will open the selected files.
-Fixed selecting broken symlinks.
-Set the default col_spacing for the table to 1.
   2021-05-13 20:34:29 by pin | Files touched by this commit (2) | Package updated
Log message:
sysutils/xplr: update to 0.9.0

-Added new recover mode. Pressing any invalid key will lead the users to this
mode. esc is the escape from that mode.
-Introduced new message PopMode which will pop the last mode and switch to it.
-Stay in filter mode after filtering files, similar to sort.
-Stay in create x mode while creating files or directories, allowing batch
creation.
-Added LogWarning message, similar to LogInfo, LogSuccess and LogError.
-Logs will be hidden when switching to input mode, and will appear when new
logs are available.
-Fixed rename operation.
-Fixed error that occurs when running a subprocess and pressing a key
immediately.

Next | Query returned 60 messages, browsing 31 to 40 | Previous