From 4f02a204c7ce54f267418dbaa2d022694b03260c Mon Sep 17 00:00:00 2001 From: Gregor Grigorjan Date: Mon, 20 May 2024 02:57:53 +0300 Subject: [PATCH] feat(docs): `README.md`: update information for MELPA release --- README.md | 13 ++++++++----- magit-file-icons.el | 2 +- nix/packages.nix | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 263cf917..9f9f98b6 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,11 @@ Display icons for filenames in ![Magit](https://github.com/magit/magit) buffers! - +
+ Build status + magit-file-icons badge + License +
# Preview ![Magit status buffer with file icons](./screenshots/status.png) @@ -14,14 +18,13 @@ Display icons for filenames in ![Magit](https://github.com/magit/magit) buffers! ![Magit revision diffstat with file icons](./screenshots/diffstat.png) # Installation +You can install this package from [MELPA](https://melpa.org/#/magit-file-icons). -This package is not yet in any package archives. To install, you need to fetch the source. - -For example, with [straight.el](https://github.com/radian-software/straight.el): +For example, with `use-package`: ```elisp (use-package magit-file-icons - :straight (:host github :repo "gekoke/magit-file-icons") + :ensure t :custom ;; These are the default values: (magit-file-icons-enable-diff-file-section-icons t) diff --git a/magit-file-icons.el b/magit-file-icons.el index 5f05c5b2..3f284e26 100644 --- a/magit-file-icons.el +++ b/magit-file-icons.el @@ -6,7 +6,7 @@ ;; Created: 14 May 2024 ;; URL: https://github.com/gekoke/magit-file-icons -;; Package-Version: 0.2.5 +;; Package-Version: 1.0.0 ;; Package-Requires: ((emacs "24.3") (magit "3.3.0") (nerd-icons "0.1.0") (el-patch "3.1")) ;; This program is free software; you can redistribute it and/or modify diff --git a/nix/packages.nix b/nix/packages.nix index c741006d..f4488283 100644 --- a/nix/packages.nix +++ b/nix/packages.nix @@ -7,7 +7,7 @@ _: { magit-file-icons = pkgs.emacsPackages.trivialBuild rec { pname = "magit-file-icons"; - version = "v0.2.5"; + version = "v1.0.0"; src = ../.;