From 9db04be5638504149376325dfb9b85b63d2a925b Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 7 Feb 2018 09:19:15 -0500 Subject: [PATCH] Update docs, changelog, and bump version --- CHANGELOG.md | 10 +++++++++- README.md | 4 ++-- ext/manifest.json | 2 +- project.clj | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7454acc..e791d7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. This change ## [Unreleased] +## [1.1.2] +### Changed +- Revamped the whole build and package process to produce an artifact that meets Chrome and Firefox web store standards + +### Removed +- Removed unecessary permission requests and the custom CSP from the extension manifest, now that the build process enables that + ## [1.1.1] - 2018-02-06 ### Changed - Comments are now sorted by total number of descendant comments, not just number of immediate children. @@ -27,7 +34,8 @@ All notable changes to this project will be documented in this file. This change - Functionality to fetch and display Hacker News comments for the current URL. - Analytics through [Amplitude](https://amplitude.com). -[Unreleased]:https://github.com/jdormit/looped-in/compare/v1.1.1...HEAD +[Unreleased]:https://github.com/jdormit/looped-in/compare/v1.1.2...HEAD +[1.1.2]: https://github.com/jdormit/looped-in/compare/v1.1.1...v1.1.2 [1.1.1]: https://github.com/jdormit/looped-in/compare/v1.1.0...v1.1.1 [1.1.0]: https://github.com/jdormit/looped-in/compare/v1.0.1...v1.0.0 [1.0.1]: https://github.com/jdormit/looped-in/compare/v1.0.0...v1.0.1 diff --git a/README.md b/README.md index f7bb2f9..1702174 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Looped In will be available from the Chrome Web Store and the Firefox Add-ons si ## Usage -To build Looped In locally, you'll need [Leiningen](https://leiningen.org), the Clojure build tool. +To build Looped In locally, you'll need [Leiningen](https://leiningen.org) and [GNU Make](https://www.gnu.org/software/make) To obtain a copy of the source code: @@ -15,7 +15,7 @@ To obtain a copy of the source code: To build the source code once, navigate to the project root and run: - $ lein cljsbuild once + $ make clean dev This will output the generated JavaScript to `ext/js/generated`. diff --git a/ext/manifest.json b/ext/manifest.json index 15b37c3..99a76e0 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Looped In", - "version": "1.1.1", + "version": "1.1.2", "description": "Shows conversations on Hacker News about the current web page", "icons": { "16": "icons/icon16.png", diff --git a/project.clj b/project.clj index 68d6324..6d7e8ae 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject conversations-extension "1.1.1" +(defproject conversations-extension "1.1.2" :description "A browser extension that display Hackers News comments for the current web page" :url "https://github.com/jdormit/looped-in" :license {:name "GNU General Public License"