Skip to content

Commit 666e04f

Browse files
committed
Merge pull request rangle#367 from sumitarora/docs-update
updating readme for release
2 parents c44b95c + 62cccfb commit 666e04f

File tree

4 files changed

+10
-30
lines changed

4 files changed

+10
-30
lines changed

README.md

+5-25
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Circle CI](https://circleci.com/gh/rangle/augury.svg?style=svg)](https://circleci.com/gh/rangle/augury) [![Slack Status](https://augury-slack.herokuapp.com/badge.svg)](https://augury-slack.herokuapp.com)
44
[![Stories in Ready](https://badge.waffle.io/rangle/augury.svg?label=ready&title=Ready)](https://waffle.io/rangle/augury)
55

6-
Augury is a Google Chrome Dev Tools extension for debugging Angular 2 applications. Treat this as a "developer preview". Until the official Chrome Web Store release, please follow the [instructions below](#getting-the-extension) to install it. It's actually quite easy.
6+
[Augury](https://augury.angular.io/) is a Google Chrome Dev Tools extension for debugging Angular 2 applications. You can install the extension from [Chrome Store](https://chrome.google.com/webstore/detail/augury/elgalmkoelokbchhkhacckoklkejnhcd).
77

88
![Screenshot of Augury](assets/screenloop.gif)
99

@@ -16,22 +16,6 @@ Currently works with applications built in [Angular 2.0.0-beta.15](https://githu
1616

1717
If you want to contribute or need help getting started, [join us on Slack](https://augury-slack.herokuapp.com).
1818

19-
## Getting the Extension
20-
21-
You can get the extension in two ways:
22-
23-
1. If you just want to use the extension you can get the latest master build, which is packaged and hosted on every successful build of master branch on CircleCI
24-
* To download the latest build go to [Batarangle.io](http://batarangle.io) and click install
25-
* After download is complete go to Chrome Extensions `chrome://extensions` in the Chrome
26-
* Drag and Drop the downloaded package to install the extension
27-
28-
2. If you want to download the source code and build it manually
29-
* Clone the repo and install all the dependencies required
30-
* Run command `npm run pack`
31-
* This will generate `batarangle.crx` in the source folder
32-
* Then go to Chrome Extensions `chrome://extensions` in the Chrome
33-
* Drag and Drop the bundled package to install the extension
34-
3519
## Development Environment
3620

3721
To develop this extension, the following environment is used:
@@ -41,16 +25,16 @@ To develop this extension, the following environment is used:
4125
* TypeScript 1.7.5
4226
* typings 0.6.8
4327

44-
## Trying out the extension
28+
## Building & Installing Locally
4529

4630
1. Clone this repository: `git clone git://github.com/rangle/augury`.
4731
2. Run `npm install`.
48-
3. Run `npm run build` (errors related to typing files conflicts can be ignore for now).
32+
3. Run `npm run build`.
4933
4. Navigate to chrome://extensions and enable Developer Mode.
5034
5. Choose "Load unpacked extension".
5135
6. In the dialog, open the directory you just cloned.
5236

53-
To try out with an example application, refer to instructions in [README](./example-apps/todo-mvc-example/README.md).
37+
To try out the extension with an example application, refer to instructions in [README](./example-apps/kitchen-sink-example/README.md).
5438

5539
## Running Tests
5640

@@ -65,17 +49,13 @@ To execute all unit tests, run `npm test`. It bundles up all files that match `*
6549
- `start` Clean build and run webpack in watch mode
6650
- `test` Bundle all *.test.ts and run it through a headless browser
6751
- `prepack` Run npm build before running npm pack
68-
- `pack` Packages the extension and create chrome build batarangle.crx
52+
- `pack` Packages the extension and create chrome build augury.crx
6953

7054
## Developer Information
7155

7256
- [Developer guide](https://github.com/rangle/augury/wiki)
7357
- [Contributing guidelines](CONTRIBUTING.md)
7458
- [Architecture of this extension](./docs/ARCHITECTURE.md)
7559

76-
## Future Plans
77-
78-
We are working hard towards [the official release](https://github.com/rangle/augury/releases). But in the meantime, you can take a look at our [milestones](https://github.com/rangle/augury/milestones) to see what new features are in place.
79-
8060
## License
8161
[MIT](LICENSE)

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Augury",
33
"short_name": "Augury",
4-
"version": "0.0.9",
4+
"version": "1.0.0",
55
"description": "Extends the Developer Tools, adding tools for debugging and profiling Angular 2.0 applications.",
66
"permissions": [
77
"tabs",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "augury",
3-
"version": "0.0.9",
3+
"version": "1.0.0",
44
"description": "Chrome Developer Tools Extension for inspecting Angular 2.0 applications",
55
"repository": {
66
"type": "git",

popup.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ <h1>
168168

169169
<div class="modal_content">
170170
<p>
171-
Augury is a Google Chrome Dev Tool extension for debugging Angular 2 applications. Treat this as a "developer preview". Until the official release, please follow instructions on github to build the tool locally and install it from the source. It's actually quite easy!
171+
Augury is a Google Chrome Dev Tool extension for debugging Angular 2 applications. Currently works with applications built in Angular 2.0.0-beta.15.
172172
</p>
173173
</div>
174174

@@ -178,10 +178,10 @@ <h1>
178178
<a target="_blank" href="https://github.com/rangle/augury" class="icon github"><span>Github</span></a>
179179
</div>
180180
<div class="flex website">
181-
<a target="_blank" href="http://rangle.github.io/batarangle-io/" class="icon"><span>Website</span></a>
181+
<a target="_blank" href="https://augury.angular.io/" class="icon"><span>Website</span></a>
182182
</div>
183183
<div class="flex contribute">
184-
<a target="_blank" href="https://github.com/rangle/augury" class="icon"><span>Contribute</span></a>
184+
<a target="_blank" href="https://github.com/rangle/augury/blob/master/CONTRIBUTING.md" class="icon"><span>Contribute</span></a>
185185
</div>
186186
</div>
187187
</div>

0 commit comments

Comments
 (0)