From 227fcfbe6c368a8990896a2c097d8f1f294062a6 Mon Sep 17 00:00:00 2001 From: Matheus Kautzmann Date: Wed, 12 Oct 2016 09:30:03 -0300 Subject: [PATCH] Release v1.0.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 ++ package.json | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea55b26..47d2df3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.0.0 - Completely rewritten to JS/ES2015 +* The package now reaches maturity. +* The codebase is now pure JS/ES2015 compliant. +* The load times are greatly improved since we are now using lazy module requires. The tooltip info is fetched only when needed. +* The tooltip now dismisses when clicking away. +* The tooltip now supports the new ImageEditor from Atom 1.0+. +* The package now gracefully enables and disables according to the user settings. +* The package specs are passing on `apm test` and when running over the GUI inside the Atom editor. +* Internal dependencies have been upgraded. +* `space-pen-views` dependency has been dropped, since GitHub is not maintaining it anymore. +* The README was simplified and updated to reflect the recent changes. +* The package is ready for Atom's most current and upcoming releases. + ## 0.4.2 - Improve load time * Improve load time by requiring dependencies on package activation diff --git a/README.md b/README.md index 29d00b7..4993041 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ This package is intended for use with the [Atom Editor](https://atom.io) and it displays the size of the focused file in the [status-bar](https://atom.io/packages/status-bar) component included with Atom. +**New!** Version 1.0.0 is here. It's 100% compatible with Atom 1.0+ APIs. + **Bonus:** If you click on the filesize component it will show a tooltip with more information about the file, try it out! See the screenshot below for a preview on that new feature. diff --git a/package.json b/package.json index 2d31f2b..c46c6b7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "filesize", "main": "./lib/filesize", - "version": "0.4.2", + "version": "1.0.0", "description": "Displays the current file's size on the status bar", "repository": { "type": "git",