Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a817682

Browse files
authored
Merge pull request #107 from wpopielarski/4.6.0-vfinal
Prepares 4.6.0-vfinal release.
2 parents 439f742 + 2981732 commit a817682

File tree

8 files changed

+135
-26
lines changed

8 files changed

+135
-26
lines changed

_includes/frontpage.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="span8">
55
<div class="rounded-corner-box">
66
<div class="release-title">
7-
<h2>Version 4.5.0</h2>
7+
<h2>Version 4.6.0</h2>
88
<h2>Now Available!</h2>
99
</div>
1010
<div class="release-text">
@@ -23,7 +23,7 @@
2323
</div>
2424

2525
<!-- Uncomment this section for a RC release -->
26-
26+
<!--
2727
<div>
2828
<div class="rounded-corner-box" style="min-height: 0px; float: left; padding: 10px; margin-top: 10px; width: 778px; background-color: rgba(0,0,0,0.5);">
2929
<span class="news-box-text">
@@ -33,7 +33,7 @@
3333
<span class="news-arrow"><img src="{{ site.baseurl }}/resources/images/news-arrow.png"></span>
3434
<a href="{{ site.baseurl }}/download/milestone.html"><img style="float: right; margin-top: 5px; margin-bottom: -15px; margin-right: 35px;" src="{{ site.baseurl }}/resources/images/tools.png"></a>
3535
</div>
36-
36+
-->
3737
</div>
3838
</div>
3939

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<div class="download-section">
2+
3+
<div id="download-link-2-12" class="download-link">
4+
<a href="#" id="downloadIDE212">
5+
Download IDE
6+
<small></small>
7+
</a>
8+
</div>
9+
10+
<div class="row">
11+
<div class="span4 offset1">
12+
<div>
13+
<h4 class="inline">Windows</h4>
14+
</div>
15+
<a id="win64_212" onclick="trackDownloadLink(urls_212.win64)" href="#">Windows 64 bit</a>
16+
</div>
17+
<div class="span4">
18+
<div>
19+
<h4 class="inline">Mac</h4>
20+
</div>
21+
<a id="mac64_212" onclick="trackDownloadLink(urls_212.mac64)" href="#">Mac OS X Cocoa 64 bit</a>
22+
</div>
23+
<div class="span4">
24+
<div>
25+
<h4 classs="inline">Linux</h4>
26+
</div>
27+
<a id="linux64_212" onclick="trackDownloadLink(urls_212.linux64)" href="#">Linux GTK 64 bit</a>
28+
</div>
29+
</div>
30+
31+
</div>
32+
33+
<script type="text/javascript">
34+
var urls_212 = {
35+
prefix: "http://downloads.typesafe.com/scalaide-pack/4.6.0-vfinal-neon-212-20170516/scala-SDK-4.6.0-vfinal-2.12",
36+
};
37+
38+
urls_212.win64 = urls_212.prefix + "-win32.win32.x86_64.zip"
39+
urls_212.mac64 = urls_212.prefix + "-macosx.cocoa.x86_64.zip"
40+
urls_212.linux64= urls_212.prefix + "-linux.gtk.x86_64.tar.gz"
41+
42+
var osTuple = [];
43+
if (navigator.appVersion.indexOf("Win")!=-1) osTuple = ["Windows - 64 bit" , urls_212.win64];
44+
else if (navigator.appVersion.indexOf("Mac")!=-1) osTuple = ["Mac - 64 bit" , urls_212.mac64];
45+
else if (navigator.appVersion.indexOf("X11")!=-1) osTuple = ["Linux - 64 bit" , urls_212.linux64];
46+
else if (navigator.appVersion.indexOf("Linux")!=-1) osTuple = ["Linux - 64 bit" , urls_212.linux64];
47+
else $("#downloadIDE212").hide();
48+
$("#downloadIDE212").attr("href", osTuple[1]).find("small").html(osTuple[0]);
49+
$("#downloadIDE212").attr("onclick", "trackDownloadLink('" + osTuple[1] + "')");
50+
51+
$("#win64_212").attr("href", urls_212.win64);
52+
$("#mac64_212").attr("href", urls_212.mac64);
53+
$("#linux64_212").attr("href", urls_212.linux64);
54+
</script>

_includes/sdk-download-content.txt

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@
22
<div class="span5">
33
<h2>Content</h2>
44
<ul>
5-
<li>Eclipse 4.6.1 (Neon)</li>
6-
<li>Scala IDE 4.5.0</li>
7-
<li>Scala 2.11.8 and Scala 2.10.6</li>
8-
<li>Zinc 1.0.0-X6</li>
9-
<li>Scala Worksheet 0.6.0</li>
10-
<li>Play 2 Framework support 0.9.0</li>
11-
<li>ScalaTest support 2.10.0</li>
12-
<li>Scala Refactoring 0.11.0</li>
13-
<li>Scala Search 0.5.0</li>
14-
<li>Access to the full Scala IDE ecosystem</li>
5+
<li>Eclipse 4.6.3 (Neon)</li>
6+
<li>Scala IDE 4.6.0</li>
7+
<li>Scala 2.12.2 with Scala 2.11.8 and Scala 2.10.6</li>
8+
<li>Zinc 1.0.0-X14</li>
9+
<li>Scala Worksheet 0.7.0</li>
10+
<li>ScalaTest 2.10.0.v-4-2_12</li>
11+
<li>Scala Refactoring 0.13.0</li>
12+
<li>Scala Search 0.6.0</li>
1513
</ul>
1614
</div>
1715
<div class="span6 offset1">

blog/_posts/2017-05-04-release-notes-4.6.0-RC2.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Enjoy.
1515

1616
Scala 2.12.2 mostly!
1717

18+
## Stats
19+
20+
For the full list of all changes, see the [changelog][cl].
21+
1822
## Thanks
1923

2024
The following statistic contains the accumulated commits of the following repositories:
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
layout: blog
3+
title: Scala IDE 4.6.0 is out!
4+
author: Scala IDE team
5+
disqus: false
6+
---
7+
8+
We have the great pleasure to give into your hands the latest Scala IDE which is fully compatible with Scala 2.12.2. This time we have devoted almost all our efforts to migrate Scala IDE functionality to Scala 2.12.2 together with related plugins. So Search, Worksheet, ScalaTest and Refactoring plugins are now available for the newest Scala version! Unfortunately we could not be able to deliver you Play 2 plugin because of too many interactions between other plugins and Scala 2.12. The good news is that we are planning very soon (next 1-2 weeks) release 4.6.1 which will contain support for Play 2.6 templates. Actually full work has been done already.
9+
10+
Besides that we traditionally added a bunch of smaller fixes and enhancements into existing functionalities.
11+
12+
Finally as always, we are aware that Scala IDE still needs improvements, especially now, and we assure you that we are doing our best to deliver the most reliable and handy tool as possible, with your help as well. Enjoy.
13+
14+
## New and Noteworthy
15+
16+
### Improved Refactoring Support
17+
18+
There are so many tiny improvements in our logic that it is difficult to mention them all here but you can take a look at our [changelog][cl] to find out which changes there are exactly. They may still not be perfect - but we came a lot closer.
19+
20+
## Stats
21+
22+
For the full list of all changes, see the [changelog][cl].
23+
24+
## Thanks
25+
26+
The following statistic contains the accumulated commits of the following repositories:
27+
28+
<pre>
29+
# https://github.com/scala-ide/scala-ide
30+
% git shortlog -sn --no-merges 4.5.0-vfinal..4.6.0-vfinal
31+
# https://github.com/scala-ide/scala-refactoring
32+
% git shortlog -sn --no-merges 0.11.0..0.13.0-4.6.0-vfinal
33+
</pre>
34+
35+
<pre>
36+
Commits:
37+
69 Wieslaw Popielarski
38+
49 Simon Schäfer
39+
41 Matthias Langer
40+
6 Rafał Krzewski
41+
2 Sam Halliday
42+
1 Melvin Winstroem-Moeller
43+
</pre>
44+
45+
[cl]: http://scala-ide.org/docs/changelog.html

download/current.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: current-download
3-
title: Download the 4.5 Release of the Scala IDE for Eclipse
3+
title: Download the 4.6 Release of the Scala IDE for Eclipse
44
---
55

66
# Get Started
@@ -9,7 +9,7 @@ If you are new to Eclipse or Scala, watch the *Getting Started with the Scala ID
99

1010
If you already know Eclipse and you want to find out more about features available in the Scala IDE, make sure not to miss the [Scala IDE Features Overview]({{ site.baseurl }}/index.html), on the front page. A complete list of features is available in the expandable menu on the [front page]({{ site.baseurl }}/index.html#features).
1111

12-
## 4.5.0 Release
12+
## 4.6.0 Release
1313

1414
This is the most recent release of Scala IDE for Eclipse. See the [release notes][relnotes] or the complete
1515
[Changelog][clog] for a complete list of changes.
@@ -21,7 +21,7 @@ The simplest way to get started is to download a pre-configured version of Eclip
2121
#### Update site installation
2222

2323
{% assign divId = 'download-210-juno' %}
24-
{% assign downloadUrl = 'http://download.scala-ide.org/sdk/lithium/e46/scala211/stable' %}
24+
{% assign downloadUrl = 'http://download.scala-ide.org/sdk/lithium/e46/scala212/stable' %}
2525

2626
{% include download-box.txt %}
2727

@@ -31,16 +31,19 @@ The simplest way to get started is to download a pre-configured version of Eclip
3131

3232
This Scala IDE release includes:
3333

34-
* Scala 2.11.8 and Scala 2.10.6
35-
* Zinc 1.0.0-X6
36-
* Scalariform 0.1.6
37-
* Scala Refactoring 0.11.0
34+
* Scala 2.12.2 with Scala 2.11.8 and Scala 2.10.6
35+
* Zinc 1.0.0-X14
36+
* Scalariform 0.1.5
37+
* Scala Refactoring 0.13.0
38+
* Scala Worksheet 0.7.0
39+
* Scala Search 0.6.0
40+
* ScalaTest 2.10.0.v-4-2_12
3841

3942
### Requirements
4043
{% include requirements-stable.txt %}
4144

4245
### [Older versions](prev-stable.html)
4346

4447
[clog]: /docs/changelog.html
45-
[relnotes]: /blog/release-notes-4.5.0-vfinal.html
48+
[relnotes]: /blog/release-notes-4.6.0-vfinal.html
4649
[sdkpage]:/download/sdk.html

download/prev-stable.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ layout: current-download
33
title: Older releases of the Scala IDE for Eclipse
44
---
55

6+
# 4.5.0 Release for Scala 2.11.8
7+
8+
This release is only available for Eclipse 4.6 and can be retrieved as [zipfile][450_2118_zip].
9+
610
# 4.4.1 Release for Scala 2.11.8
711

812
This release is only available for Eclipse 4.x and can be retrieved as [zipfile][441_2118_zip].
@@ -135,6 +139,7 @@ Scala 2.10, we recommend you to use the [3.0.0 release](#300_release)
135139
[430_2117_zip]: http://download.scala-ide.org/sdk/lithium/e44/scala211/stable/site_assembly-20151202-0007.zip
136140
[440_2118_zip]: http://download.scala-ide.org/sdk/lithium/e44/scala211/stable/base-20160401-1237.zip
137141
[441_2118_zip]: http://download.scala-ide.org/sdk/lithium/e44/scala211/stable/base-20160504-1321.zip
142+
[450_2118_zip]: http://download.scala-ide.org/sdk/lithium/e46/scala211/stable/base-20161213-1347.zip
138143

139144
#### For Scala 2.8.x
140145

download/sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ Whether you are a seasoned Scala developer, or just picking up the language, thi
1111

1212
{% include sdk-download-content.txt %}
1313

14-
## 4.5.0 Release
14+
## 4.6.0 Release
1515

16-
This release is available for *Scala 2.11* (with support for Scala 2.10 projects in the same workspace)
16+
This release is available for *Scala 2.12* (with support for Scala 2.10 and 2.11 projects in the same workspace)
1717
and is based on *Eclipse 4.6 (Neon)*. See [Release Notes][relnotes] and the [Changelog][clog] for a detailed list of changes.
1818

19-
### For Scala 2.11.8
20-
{% include sdk-download-box-2-11.txt %}
19+
### For Scala 2.12.2
20+
{% include sdk-download-box-2-12.txt %}
2121

2222
### Requirements
2323
{% include jdk-requirements.txt %}
@@ -27,4 +27,4 @@ and is based on *Eclipse 4.6 (Neon)*. See [Release Notes][relnotes] and the [Cha
2727
Get started by watching the [videos]({{ site.baseurl }}/docs/videos.html) or reading the [docs and tutorials]({{ site.baseurl }}/documentation.html)
2828

2929
[clog]: /docs/changelog.html
30-
[relnotes]: /blog/release-notes-4.5.0-vfinal.html
30+
[relnotes]: /blog/release-notes-4.6.0-vfinal.html

0 commit comments

Comments
 (0)