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

Commit

Permalink
Release/1.1.0 (#224)
Browse files Browse the repository at this point in the history
* Update changelog to v1.1.0

* Update package.json to v1.1.0

* fix ts version to 2.3

* readme
  • Loading branch information
buehler committed Jun 20, 2017
1 parent 47212ff commit 10edfd5
Show file tree
Hide file tree
Showing 4 changed files with 252 additions and 117 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
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]

## [1.1.0]
#### Added
- View (in the explorer) with the code outline (code structure) of the actual file - Jumps to code on click

Expand Down Expand Up @@ -196,7 +198,8 @@ The whole refactoring is part of ([#143](https://github.com/buehler/typescript-h
- Various bugs in AST parsing


[Unreleased]: https://github.com/buehler/typescript-hero/compare/v1.0.0...master
[Unreleased]: https://github.com/buehler/typescript-hero/compare/v1.1.0...master
[1.1.0]: https://github.com/buehler/typescript-hero/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/buehler/typescript-hero/compare/v0.13.2...v1.0.0
[0.13.2]: https://github.com/buehler/typescript-hero/compare/v0.13.1...v0.13.2
[0.13.1]: https://github.com/buehler/typescript-hero/compare/v0.13.0...v0.13.1
Expand Down
19 changes: 19 additions & 0 deletions README.md
Expand Up @@ -18,6 +18,7 @@ Here is a brief list, of what TypeScript Hero is capable of (more at the end):
- Intellisense that suggests symbols and automatically adds the needed imports
- "Light bulb feature" that fixes code you wrote
- Sort and organize your imports (sort and remove unused)
- Code outline view of your open TS / TSX document

##### Some badges :-)

Expand Down Expand Up @@ -82,6 +83,15 @@ The following settings do have the prefix `resolver`. So an example setting coul
| disableImportSorting | Disable sorting during organize imports action |
| importGroups | The groups that are used for sorting the imports (description below) |

### Code outline view

The following settings do have the prefix `codeOutline`. So an example setting could be
`typescriptHero.codeOutline.enabled`.

| Setting | Description |
| --------- | -------------------------------------------------------------------------- |
| enabled | Defines if the view should actually parse the opened documents |

## Features (extended)

### Import management
Expand Down Expand Up @@ -193,6 +203,15 @@ TypeScript Hero offers the following fix actions:
- Detect missing methods / properties of an interface that you implemented and implement them for you (implement interface refactoring)
- Detect missing abstract methods of an extended abstract class and implement them for you (implement abstract class refactoring)

### Code outline view

This view is below your file explorer. It displays a code outline of your actually opened typescript or typescript-react
file. If you switch your actual editor, the new file is parsed and shown. When you expand classes and imports, you'll
see what's in them. If you click on an element, the editor will jump to the location of the element.

By now, only typescript / typescript-react is supported. Maybe this will wander in it's own extension to support
more languages than those two.

## Known Issues

Please visit [the issue list](https://github.com/buehler/typescript-hero/issues) :-)

0 comments on commit 10edfd5

Please sign in to comment.