Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0d88f99

Browse files
MarinaKalashinaUndin
authored andcommittedAug 5, 2019
main page updates: intro, screenshot, 'install' section (#72)
* main page updates: intro, screenshot, 'install' section
1 parent 820345c commit 0d88f99

File tree

4 files changed

+38
-36
lines changed

4 files changed

+38
-36
lines changed
 

‎_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# Site settings
99
title: IntelliJ Rust
1010
email: ""
11-
description: Rust plugin for IntelliJ IDEA
11+
description: Open-source Rust plugin for IntelliJ-based IDEs
1212

1313
collections:
1414
docs:

‎assets/intro_screen_editor.png

321 KB
Loading

‎index.html

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
<div class="page-content jumbo">
1313
<div class="wrapper">
1414
<h1>{{ site.title }}</h1>
15-
<p class="desc">{{ site.description }}<sup>*</sup></p>
16-
<p class="preview-note"><sup>*</sup>work-in-progress, expect bugs and missing features</p>
15+
<p class="desc">{{ site.description }}</p>
1716
<div id="download">
1817
<a id="download-stable" href="/install.html">Install</a>
1918
<div id="install-pane">
@@ -28,22 +27,33 @@ <h1>{{ site.title }}</h1>
2827

2928
<div class="page-content showcase">
3029
<div class="wrapper">
31-
<h1 class="square">What is IntelliJ Rust</h1>
30+
<!--h1 class="square">What is IntelliJ Rust</h1-->
31+
<h1 class="square">Intelligent Rust</h1>
3232
<div class="showcase-pic">
33-
<img src="/assets/ir-completion.png" class="completion"/>
34-
<img src="/assets/ir-intention.png" class="intention">
33+
<!--img src="/assets/ir-completion.png" class="completion"/-->
34+
<!--img src="/assets/ir-intention.png" class="intention"-->
35+
<img src="/assets/intro_screen_editor.png" width="800" alt="editor features"/>
36+
<!--img src="/assets/intro_screen_debugger.png" width="900" alt="debugger"/-->
3537
</div>
3638
<section>
37-
<h2>Intelligent Rust</h2>
38-
<p>We aim to build JetBrains-quality language support for IntelliJ IDEA and related IDEs.
39+
<!--h2>Intelligent Rust</h2-->
40+
<!--p>We aim to build JetBrains-quality language support for IntelliJ IDEA and related IDEs.
3941
Right now, you get native code completion<abbr class="wip" title="Work In Progress">WIP</abbr>,
40-
broad navigation, intentions, formatting and much more...</p>
42+
broad navigation, intentions, formatting and much more...</p-->
43+
44+
<p>IntelliJ Rust brings JetBrains-quality language support and full IDE experience to your Rust workflow.</p>
45+
<p>Rust becomes native to <a href="https://www.jetbrains.com/idea/">IDEA</a>, <a href="https://www.jetbrains.com/clion/">CLion</a>,
46+
and other IntelliJ IDEs with smart coding assistance,
47+
seamless Cargo support, and built-in test runner.</p>
48+
<p>
49+
In CLion, you get even more: fully-fledged debugger, CPU profiler, and Valgrind memcheck.
50+
</p>
4151
</section>
42-
<section>
52+
<!--section>
4353
<h2>Corroded IDEA</h2>
4454
<p>...while this is still your ol' good IDE. Enjoy highly productive developer experience, VCS integration
4555
and other languages support.</p>
46-
</section>
56+
</section-->
4757

4858
<ul class="fancy-link-row">
4959
<li><a href="/features/" class="fancy-link">All Features</a></li>

‎install.markdown

Lines changed: 17 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,29 @@ layout: page
33
title: Install IntelliJ Rust
44
---
55

6-
## Getting alpha builds
6+
## Stable builds
77

8-
IntelliJ Rust is currently in the _alpha_ stage of development. When we reach some acceptable level of stability,
9-
we publish alpha builds to the IntelliJ's main plugin [repository](https://plugins.jetbrains.com/plugin/8182).
10-
You can download and install these builds directly from `Plugins > Browse repositories` screen in your IDE.
8+
IntelliJ Rust is in active development, and we regularly publish new stable builds to the JetBrains plugin [repository](https://plugins.jetbrains.com/plugin/8182).
9+
You can download and install them directly from `Settings / Preferences | Plugins | Marketplace` in your IDE.
1110

12-
As this is a preview release, something might go wrong. So, be brave to face some nasty bugs.
13-
If you find one, we would very appreciate if you file an [issue](https://github.com/intellij-rust/intellij-rust/issues)
14-
on our bugtracker or ping us on our [chat](https://gitter.im/intellij-rust/intellij-rust).
11+
## Nightly builds
1512

16-
## Setting up nightly builds
17-
18-
In addition to preview releases, we also
19-
ship pre-release builds of _intellij-rust_ and _intellij-toml_ in the nightly channel.
20-
21-
To use them you need to follow the
22-
[instructions](https://www.jetbrains.com/idea/help/managing-enterprise-plugin-repositories.html)
23-
of adding additional plugin repository and paste the URL for the one you need:
13+
In addition to stable releases, we also ship nightly snapshots of the _intellij-rust_ development branch.
14+
To use the nightly channel, [add a custom plugin repository](https://www.jetbrains.com/idea/help/managing-enterprise-plugin-repositories.html#repos)
15+
and set the following URL:
2416

2517
```yaml
26-
- Rust: https://plugins.jetbrains.com/plugins/nightly/8182
27-
- TOML: https://plugins.jetbrains.com/plugins/nightly/8195
18+
https://plugins.jetbrains.com/plugins/nightly/8182
2819
```
2920

30-
Nightly builds are daily snapshots of current development branch. So, it's natural that there may be even
31-
more bugs than in alpha channel. If you find one, we would very appreciate if you file an
32-
[issue](https://github.com/intellij-rust/intellij-rust/issues) on our bugtracker or ping us on our
33-
[chat](https://gitter.im/intellij-rust/intellij-rust).
34-
3521
## Compatible IDEs
3622

37-
The plugin should be compatible with any Intellij based IDE like IDEA, CLion or PyCharm. Latest plugin is guranteed
38-
to support the latest released major platform version (`2017.3` at the moment of writing), it may support some previous
39-
or EAP versions. See `Help > About` menu for IDE version and `Settings > Plugins` menu for plugin version.
23+
The plugin is compatible with all Intellij-based IDEs like IDEA, CLion, or PyCharm. The latest plugin version supports the latest released platform version (for example, `2019.2`).
24+
25+
## Bug reports and feature requests
26+
27+
Please use our [tracker](https://github.com/intellij-rust/intellij-rust/issues/new).
28+
You can get there quickly right from the IDE:
29+
call `Create New Issue` on a selected piece of code, and you'll jump to a pre-filled issue creating form.
30+
31+
Also feel free to ping us on [Gitter](https://gitter.im/intellij-rust/intellij-rust).

0 commit comments

Comments
 (0)
Please sign in to comment.