Next | Query returned 26 messages, browsing 11 to 20 | Previous

History of commit frequency

CVS Commit History:


   2021-12-13 15:12:04 by pin | Files touched by this commit (4) | Package updated
Log message:
www/hackernews-tui: update to 0.8.0

Breaking changes
-remove allow_unicode config option. Rendering unicode characters by default.
-remove scroll_offset config option. Use a constant value 3.
-change the default value for url_open_command from xdg-open to open
-remove client.lazy_loading_comments config options
-remove reload_comment_view command

Changes
-implement a smarter comment loading function (in #47)
-rewrite search view module in view/search_view.rs(#48)
-add file logger (in #47)
-simplify key parser (in #49)
-and many other improvements and refactoring
   2021-10-26 13:31:15 by Nia Alarie | Files touched by this commit (1030)
Log message:
www: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Not committed (merge conflicts):
www/nghttp2/distinfo

Unfetchable distfiles (almost certainly fetched conditionally...):
./www/nginx-devel/distinfo array-var-nginx-module-0.05.tar.gz
./www/nginx-devel/distinfo echo-nginx-module-0.62.tar.gz
./www/nginx-devel/distinfo encrypted-session-nginx-module-0.08.tar.gz
./www/nginx-devel/distinfo form-input-nginx-module-0.12.tar.gz
./www/nginx-devel/distinfo headers-more-nginx-module-0.33.tar.gz
./www/nginx-devel/distinfo lua-nginx-module-0.10.19.tar.gz
./www/nginx-devel/distinfo naxsi-1.3.tar.gz
./www/nginx-devel/distinfo nginx-dav-ext-module-3.0.0.tar.gz
./www/nginx-devel/distinfo nginx-rtmp-module-1.2.2.tar.gz
./www/nginx-devel/distinfo nginx_http_push_module-1.2.10.tar.gz
./www/nginx-devel/distinfo ngx_cache_purge-2.5.1.tar.gz
./www/nginx-devel/distinfo ngx_devel_kit-0.3.1.tar.gz
./www/nginx-devel/distinfo ngx_http_geoip2_module-3.3.tar.gz
./www/nginx-devel/distinfo njs-0.5.0.tar.gz
./www/nginx-devel/distinfo set-misc-nginx-module-0.32.tar.gz
./www/nginx/distinfo array-var-nginx-module-0.05.tar.gz
./www/nginx/distinfo echo-nginx-module-0.62.tar.gz
./www/nginx/distinfo encrypted-session-nginx-module-0.08.tar.gz
./www/nginx/distinfo form-input-nginx-module-0.12.tar.gz
./www/nginx/distinfo headers-more-nginx-module-0.33.tar.gz
./www/nginx/distinfo lua-nginx-module-0.10.19.tar.gz
./www/nginx/distinfo naxsi-1.3.tar.gz
./www/nginx/distinfo nginx-dav-ext-module-3.0.0.tar.gz
./www/nginx/distinfo nginx-rtmp-module-1.2.2.tar.gz
./www/nginx/distinfo nginx_http_push_module-1.2.10.tar.gz
./www/nginx/distinfo ngx_cache_purge-2.5.1.tar.gz
./www/nginx/distinfo ngx_devel_kit-0.3.1.tar.gz
./www/nginx/distinfo ngx_http_geoip2_module-3.3.tar.gz
./www/nginx/distinfo njs-0.5.0.tar.gz
./www/nginx/distinfo set-misc-nginx-module-0.32.tar.gz
   2021-10-07 17:09:00 by Nia Alarie | Files touched by this commit (1033)
Log message:
www: Remove SHA1 hashes for distfiles
   2021-08-05 10:48:28 by pin | Files touched by this commit (1)
Log message:
www/hackernews-tui: simplify Makefile
   2021-07-11 07:22:25 by pin | Files touched by this commit (3) | Package updated
Log message:
www/hackernews-tui: update to 0.7.3

Changes:
-added cursor navigation in SearchView's text box (#42)
-fixed minor bugs
-added performance optimizations in Cargo.toml's release profile
-added Github CI actions
-added docker image of the latest main branch build
   2021-06-28 22:02:25 by pin | Files touched by this commit (2) | Package updated
Log message:
www/hackernews-tui: update to 0.7.2

Application changes:
-fix weird behavior when collpasing a comment with partially collapsed child
comments
-improve performance when parsing comments

Codebase chages:
-refactor modules #41. Move client and config modules into separate folders
   2021-06-21 15:54:03 by pin | Files touched by this commit (3) | Package updated
Log message:
www/hackernews-tui: update to 0.7.1

Brief description of changes:
-add comment_collapsing feature (default binds to tab) to toggle collapsing of
a comment
-disable rendering non-ascii characters by default to avoid some weird behaviors
on terminal. To enable rendering all unicode characters, set allow_unicode
option to true.
   2021-06-12 19:14:24 by pin | Files touched by this commit (4) | Package updated
Log message:
www/hackernews-tui: update to 0.7.0

Brief description of application changes:

integrate Official HN APIs:
-#36: use the official APIs to display the Story View - Front Page similarly to
HN front-page.
-#37: remove StoryPooling feature and replace it with LazyLoadingComments
feature which lazily loads comments on demand.
-#39: allow all configuration options to be optional. Previously, user needs to
create the config file based the example config. Now, if an option is not
specified, a default value will be used instead (for more information/
documentation, refer to the example config file).

Brief description of codebase changes:
-Refactor the repo into 3 separate crates: hackernews_tui for main binary crate,
config_parser (lib) and config_parser_derive (proc-macro) for the libraries to
parse configuration options from the config file.
-#38: reduce the .clone() usage, move the application's hn_client::HNClient to
global state.
-small refactoring and documentation improvements
   2021-05-29 19:18:41 by pin | Files touched by this commit (2) | Package updated
Log message:
www/hackernews-tui: update to 0.6.2

Changes:
-add article_parse_command
-use raw hex code when defining the default theme (setting color to "white"
can be different depending on the terminal's theme)
-fix bugs
-remove multiline from the regex parsing markdown URL (to avoid possible parsing \ 
errors)
   2021-05-19 14:06:28 by pin | Files touched by this commit (2) | Package updated
Log message:
www/hackernews-tui: update to 0.6.1

Application changes:
-remove q,w,e,r default shortcuts/functionalities used to filter stories by
past date
-add support for defining custom shortcut to navigate between different
StoryView with filters

Codebase changes:
-implement support for defining custom keymap.
-minor improvements, bug fixes
-add Derive(Debug) for most of the defined structs
-move src/view/utils.rs to src/utils.rs
-refactor HelpView to allow non-static description for a key shortcut

Next | Query returned 26 messages, browsing 11 to 20 | Previous