Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Release/0.8.0 #72

Merged
merged 3 commits into from
Sep 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.8.0]
#### Added
- Support for multiline imports ([#60](https://github.com/buehler/typescript-hero/issues/60))
- Added setting for multiline threshold
Expand Down Expand Up @@ -81,7 +83,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Various bugs in AST parsing


[Unreleased]: https://github.com/buehler/typescript-hero/compare/v0.7.1...master
[Unreleased]: https://github.com/buehler/typescript-hero/compare/v0.8.0...master
[0.8.0]: https://github.com/buehler/typescript-hero/compare/v0.7.1...v0.8.0
[0.7.1]: https://github.com/buehler/typescript-hero/compare/v0.7.0...v0.7.1
[0.7.0]: https://github.com/buehler/typescript-hero/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/buehler/typescript-hero/compare/v0.5.4...v0.6.0
Expand Down
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ work with typescript.

## Features at a glance

Here is a brief list, of what TypeScript Hero is capable of:

- Add imports of your project or libraries to your current file
- Add an import for the current name under the cursor
- Intellisense that suggests symbols and automatically adds the needed imports
Expand Down Expand Up @@ -86,8 +88,16 @@ Please visit [the issue list](https://github.com/buehler/typescript-hero/issues)
This section will cover the newest release, for the rest of the changelog,
please visit the [CHANGELOG](https://github.com/buehler/typescript-hero/blob/master/CHANGELOG.md)

### 0.7.1
### 0.8.0
#### Added
- Support for multiline imports ([#60](https://github.com/buehler/typescript-hero/issues/60))
- Added setting for multiline threshold
- Configurable new import location (at top of the file or at the cursor position) ([#41](https://github.com/buehler/typescript-hero/issues/41))
- Asks for alias if a specifier is already present ([#44](https://github.com/buehler/typescript-hero/issues/44))

#### Fixed
- Code completions does show when user types ([#55](https://github.com/buehler/typescript-hero/issues/55))
- Default exports and imports are working ([#40](https://github.com/buehler/typescript-hero/issues/40))
- New created files are correctly indexed now ([#46](https://github.com/buehler/typescript-hero/issues/46))
- Autocomplete does not suggest items that are already imported ([#64](https://github.com/buehler/typescript-hero/issues/64))
- Autocomplete does not suggest items of the own file ([#61](https://github.com/buehler/typescript-hero/issues/61))
- Does not generate duplicates when multiline imports are used ([#43](https://github.com/buehler/typescript-hero/issues/43))
- Multiline imports were not working with multiple imports
- Autocomplete does not add other classes from a file as well
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"color": "#1e324c",
"theme": "dark"
},
"version": "0.7.1",
"version": "0.8.0",
"publisher": "rbbit",
"engines": {
"vscode": "^1.5.0",
Expand Down