Go to file
Dany Marcoux d4d2cc00b6 Accepting request 800149 from home:mrey:branches:utilities
- Update to version 0.15.0
  * Features
    - This release adds a new --diff/-d option that can be used to
      only show lines surrounding Git changes, i.e. added, removed
      or modified lines. The amount of additional context can be
      controlled with --diff-context=N. See #23 and #940
  * Bugfixes
    - Error message printed in the middle of the output for another
      file, see #946
      Performance improvements when using custom caches (via bat
      cache --build): the bat startup time should now be twice as
      fast.
  * Themes
    - Updated version of the Solarized dark/light themes, see #941
  * bat as a library
    - There are a few changes in the "low level" API (the Config
      struct has changed andthe error handler needs a new &mut dyn
      Write argument). The high-level API is not affected.
- Changes from version 0.14.0
  * Features
    - Added a new --file-name <name>… option to overwrite the
      displayed filename(s) in the header. This is useful when
      piping input into bat. See #654 and #892.
    - Added a new --generate-config-file option to create an
      initial configuration file at the right place. See #870.
  * Bugfixes
    - Performance problems with C# source code have been fixed, see
      #677
    - Performance problems with Makefiles have been fixed, see #750
    - Fix bug when highlighting Ruby files with unindented heredocs

OBS-URL: https://build.opensuse.org/request/show/800149
OBS-URL: https://build.opensuse.org/package/show/utilities/bat?expand=0&rev=19
2020-05-05 07:15:01 +00:00
.gitattributes Accepting request 639027 from home:dmarcoux 2018-09-28 15:16:54 +00:00
.gitignore Accepting request 639027 from home:dmarcoux 2018-09-28 15:16:54 +00:00
bat-0.15.0.tar.gz Accepting request 800149 from home:mrey:branches:utilities 2020-05-05 07:15:01 +00:00
bat.changes Accepting request 800149 from home:mrey:branches:utilities 2020-05-05 07:15:01 +00:00
bat.spec Accepting request 800149 from home:mrey:branches:utilities 2020-05-05 07:15:01 +00:00
README.packager Accepting request 738624 from home:dmarcoux 2019-10-15 13:24:20 +00:00
vendor.tar.xz Accepting request 800149 from home:mrey:branches:utilities 2020-05-05 07:15:01 +00:00

# Heavily based on https://build.opensuse.org/package/view_file/devel:languages:rust/racer/README.packager (Thank you for this!)
#
# Generating `vendor.tar.xz`

1. Install `cargo` from official repositories.

    zypper install cargo

2. Checkout version

    git clone https://github.com/sharkdp/bat ~/tmp/bat
    cd ~/tmp/bat
    git checkout v0.10.0 (or another version from `git tag --list`)

3. Generate archive

    cargo vendor
    tar -cJf vendor.tar.xz vendor