Skip to content

Commit

Permalink
Release v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkxml committed May 4, 2017
1 parent b333e89 commit 3a4da5c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.0.0 - Change config UseKibibyteRepresentation to UseDecimal
* Breaking change: Config `UseKibibyteRepresentation` is now `UseDecimal`. When set to true it will now use base 1000, base 1024 is used when it's false which is the default behavior for this option.
* Small refactoring in source code.
* Updated filesize-calculator to 2.0.0.
* Updated dev dependencies.

## 2.0.4 - Fix tooltip breaking on certain themes
* Some themes, like Atom Material, were breaking the tooltip styling. That's now fixed!
* Updated specs, removing `filesize-calculator` stuff. It was a duplicated suite.
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ This package is intended for use with the [Atom Editor](https://atom.io) and it

**Bonus:** If you click on the filesize component it will show a tooltip with more information about the file, try it out!

**New!** Version 2.0.0 is here. We now have **gzip** support, open the popup and check it out!

It works great with your new theme! The popups tries to follow your current theme's style, try switching themes and see for yourself.

**Config change in 3.0.0:** `KibibyteRepresentation` config has been changed to `UseDecimal`. The new default value is `false` to preserve the old behavior. Set to true to use base 1000 instead of base 1024.

# Get it now

If you have Atom Shell Commands run this on your terminal to get it now:
Expand Down Expand Up @@ -44,9 +44,10 @@ The status-bar component is installed and enabled by default by Atom. Thus, usua

The package has three settings located in `Settings->Packages->filesize`:

- `Kibibyte Representation`, whether you want to show the size using Kibibyte or Kilobyte representations ([SI](https://en.wikipedia.org/wiki/International_System_of_Units)). It defaults to using the Kibibyte one.
- `Use Decimal`, whether you want to show the size using Decimal or [IEC/ISO80000](https://en.wikipedia.org/wiki/ISO/IEC_80000). It defaults to using the IEC representation.
- `Enable Popup Appearance`, whether the popup will show on clicking the `filesize` component on the status bar. Defaults to showing the popup.
- `Display Full Day Time On Popup`, whether to use 24 or 12 hour time display. It defaults to using the 24-hour format.
- `Display Gzipped Size on Popup`, whether to enable gzip size appearance on the popup.

# Contributing

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "filesize",
"main": "./lib/filesize",
"version": "2.0.4",
"version": "3.0.0",
"description": "Displays the current file's size on the status bar",
"repository": {
"type": "git",
Expand Down

0 comments on commit 3a4da5c

Please sign in to comment.