Skip to content

Commit 1239d81

Browse files
Release of v1.1.0
1 parent d1b1cfc commit 1239d81

File tree

5 files changed

+42
-13
lines changed

5 files changed

+42
-13
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ baseurl: "/wp"
1717
title: JSXGraph
1818

1919
# Latest JSXGraph version
20-
version_number: 1.00.0
20+
version_number: 1.1.0
2121

2222
# Short description of your site
2323
description: Interactive Geometry, plotting, visualization
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: post
3+
title: Release of 1.1.0
4+
subtitle: Major new release
5+
date: 2020-06-02T12:00:00+00:00
6+
categories:
7+
- Releases
8+
---
9+
10+
Version 1.1.0 introduces the new JSXGraph element `polygonalchain` (sometimes also called "polyline"),
11+
see <https://jsxgraph.org/docs/symbols/PolygonalChain.html> and new attributes for gradient colors.
12+
Examples can be seen at <https://jsfiddle.net/6wbmvjp3/> for linear gradients and
13+
<https://jsfiddle.net/6wbmvjp3/1/> for radial gradients.
14+
The statistics module received the new method `JXG.Math.statistics.generateGaussian` which generates values
15+
of a standard normal random variable.
16+
JSXGraph v1.1.0 supports the exciting MathJax v3+ which renders math content much faster than v2.
17+
Following a user request, slider values can now be set by clicking on the slider baseline.
18+
19+
Further improvements include the `autoposition` feature for labels introduced in v1.0.0 which is now much more stable and arrow heads on curves do now end on the curves' end point. This release contains a cleanup of the npm repository and - as usual - several bug fixes.
20+
21+
We thank all contributors which supplied patches, bug reports and suggestions for improvements.
22+
23+
24+
For a full list of all changes see the [CHANGELOG](https://github.com/jsxgraph/jsxgraph/blob/master/CHANGELOG.md).
25+
26+
Enjoy,
27+
28+
Matthias Ehmann, Michael Gerhäuser, Carsten Miller, and Alfred Wassermann

download.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: page
33
title: Download
4-
subtitle: Latest version 1.00.0
4+
subtitle: Latest version 1.1.0
55
---
66

77
**JSXGraph** needs two files:
@@ -11,22 +11,23 @@ subtitle: Latest version 1.00.0
1111

1212
### CDN
1313

14-
**UPDATE 2020-03-28:** v1.00.0 is not yet available on CDNJS, we are working to resolve this problem.
14+
The easiest way to use JSXGraph is to link directly to the public installation available through a Content Distribution Network (CDN).
15+
Put one of the following code snippets into the `<head>` block of your document:
1516

16-
The easiest way to use JSXGraph is to link directly to the public installation available through the Content Distribution Network (CDN) **cdnjs**. Put the following code into the `<head>` block of your document:
17+
```html
18+
<script type="text/javascript" charset="UTF-8"
19+
src="https://cdn.jsdelivr.net/npm/jsxgraph@{{ site.version_number }}/distrib/jsxgraphcore.js"></script>
20+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/jsxgraph@{{ site.version_number }}/distrib/jsxgraph.css" />
21+
```
22+
23+
or
1724

1825
```html
1926
<script type="text/javascript" charset="UTF-8"
2027
src="//cdnjs.cloudflare.com/ajax/libs/jsxgraph/{{ site.version_number }}/jsxgraphcore.js"></script>
2128
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/jsxgraph/{{ site.version_number }}/jsxgraph.css" />
2229
```
2330

24-
The latest JSXGraph version hosted on **cdnjs** is:
25-
26-
* <https://cdnjs.cloudflare.com/ajax/libs/jsxgraph/{{ site.version_number }}/jsxgraphcore.js>
27-
* <https://cdnjs.cloudflare.com/ajax/libs/jsxgraph/{{ site.version_number }}/jsxgraph.css>
28-
29-
3031
### JSXGraph site
3132
Download the latest version {{ site.version_number }} from the [JSXGraph home page](https://jsxgraph.org/distrib/jsxgraphcore.js)
3233

@@ -49,8 +50,6 @@ Download the latest version {{ site.version_number }} from the [JSXGraph home pa
4950
The latest development version can always be downloaded/used from <https://jsxgraph.uni-bayreuth.de/~michael/jsxgraph-nightly/>.
5051
Beware, there may be untested features (bugs)!
5152

52-
53-
5453
### Previous releases
5554

5655
[Here are links to older versions of JSXGraph.](https://jsxgraph.org/wp/previousreleases/)

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ <h3>Interactive geometry, plotting, visualization</h3>
2020
<div class="col-lg-10 col-lg-offset-1 col-md-10 col-md-offset-1 nopadding text-center">
2121
<div class="col-sm-3 col-xs-6 text-center mybox">
2222
<!-- <a href="https://jsfiddle.net/dr63zumf/1/" title="jsfiddle"> 0.99.7 -->
23-
<a href="https://jsfiddle.net/8kep9syd/" title="jsfiddle">
23+
<!-- <a href="https://jsfiddle.net/8kep9syd/" title="jsfiddle"> 1.00.0 -->
24+
<a href="https://jsfiddle.net/c05b4y9z/" title="jsfiddle">
2425
<span class="fa-stack fa-lg icon">
2526
<i class="fa fa-circle fa-stack-2x"></i>
2627
<i class="fa fa-jsfiddle fa-stack-1x fa-inverse"></i>

previousreleases.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Available previous JSXGraph versions hosted on **cdnjs** are:
2424

2525
### From JSXGraph site
2626

27+
* v1.00.0: <http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore-1.00.0.js>
2728
* v0.99.7: <http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore-0.99.7.js>
2829
* v0.99.5: <http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore-0.99.5.js>
2930
* v0.99.4: <http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore-0.99.4.js>

0 commit comments

Comments
 (0)