Update docs, changelog, and bump version

This commit is contained in:
Jeremy Dormitzer 2018-02-07 09:19:15 -05:00
parent 6577463b28
commit 9db04be563
No known key found for this signature in database
GPG Key ID: 04F17C0F5A32C320
4 changed files with 13 additions and 5 deletions

View File

@ -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

View File

@ -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`.

View File

@ -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",

View File

@ -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"