From 04890ab485b9d0ddb921a3302b0ea64c4967a570 Mon Sep 17 00:00:00 2001 From: Ilya Kaminsky Date: Tue, 15 May 2018 19:52:13 -0700 Subject: [PATCH 1/2] docs(README): add installation instructions Add installation instructions to the `README` so that users can install the plugin in different ways. closes #3 --- CHANGELOG.md | 4 ++++ README.md | 13 +++++++++++++ 2 files changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 950141f..2b69ff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [Unreleased] +### Added: +- Installation instructions to the `README` + ## [1.1.0] - 2018-05-14 ### Added: - The command to "Remove Duplicate Lines" to the Command Palette diff --git a/README.md b/README.md index c217111..a5a4378 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,19 @@ A plugin for [Sublime Text](http://www.sublimetext.com/) that allows you to remove duplicate lines from the file. +## Installation + +* **Package Control** + 1. [Install Package Control](https://packagecontrol.io/installation) + 1. [Bring up the Command Palette](https://sublime-text.readthedocs.io/en/stable/reference/command_palette.html#how-to-use-the-command-palette) and type "Package Control: Install Package" + 1. Type "RemoveDuplicateLines" and press enter +* **Directly** + 1. Locate the `Packages` folder in the [data directory](http://docs.sublimetext.info/en/sublime-text-3/basic_concepts.html#the-data-directory) + 1. Download the [latest version of RemoveDuplicateLines](https://github.com/ilyakam/RemoveDuplicateLines/releases/latest) + 1. Extract the archive into the `Packages` folder +* **Development** + 1. [Follow the instructions on the `CONTRIBUTING` guide](./CONTRIBUTING.md#getting-started) + ## Usage shiftF5 on all platforms. You might also need to hold (fn) depending on your OS/BIOS configuration. From d6b724f025ba46e3169edb8a8c4dc65a14f09b3c Mon Sep 17 00:00:00 2001 From: Ilya Kaminsky Date: Tue, 15 May 2018 19:54:00 -0700 Subject: [PATCH 2/2] chore(*): release version 1.2.0 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b69ff7..b88c321 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [1.2.0] - 2018-05-15 ### Added: - Installation instructions to the `README`