2015年8月25日火曜日

v3.8.0 がリリースされました

v3.8.0 がリリースされました
日本時間で(2015.8.4)に v3.7.0 がリリースされました。

Releases - openlayers/ol3 GitHub
(https://github.com/openlayers/ol3/releases)より

v3.8.0
Summary

The v3.8.0 release includes features and fixes from 33 pull requests since v3.7.0. While summer vacations have slowed the pace of development a bit this month, there are some nice improvements in this release. See the complete list below for details.
3.8.0 リリースは 3.7.0 以降の33のプルリクエスト(訳注:Git でリクエストを出す機能)からの機能と修正が含まれています。夏休みのこの月は、開発のペースが少し遅くなるので、このリリースで有用な向上がありリます。下の詳細な完全なリストを参照してください。


v3.8.1 がリリースされました
日本時間で(2015.8.7)に v3.8.1 がリリースされました。

v3.8.1
Summary

This is a patch release that updates the URL for builds shown in the examples. Details below.
例に示されたビルドの url を更新するパッチリリースです。詳細は下記を参照。

#3970 - Pull builds from openlayers.org. (@tschaub)


v3.8.2 がリリースされました
日本時間で(2015.8.8)に v3.8.2 がリリースされました。

v3.8.2
Summary

This is yet another patch release that corrects the URL for builds shown in the examples. Details below.
例に示されたビルドの正しい url を更新するもうひとつのパッチリリースです。詳細は下記を参照。

#3979 - Fix URLs for openlayers.org resources. (@tschaub)


v3.8.2 の examples を試してみます
OpenLayers 3 のホームページ(http://openlayers.org/)の「LATEST」の文中の「v3.8.2」をクリックします。
開いたページ「Downloads for the v3.8.2 release(http://openlayers.org/download/)」の「v3.8.2.zip」ボタンをクリックしてダウンロードします。
展開したフォルダを Eclipse の ol3proj にコピーします。

ディレクトリは次のようにしました。
ol3proj
|-v3.0.0/
|-v3.1.1/
|-v3.2.0/
|-v3.2.1/
|-v3.3.0/
|-v3.4.0/
|-v3.5.0/
|-v3.6.0/
|-v3.7.0/
|-v3.8.2/
|-2xx-ol3ex.html
|-2xx-ol3ex.js
|-2xx-ol3ex-require.js
|-loader.js
|-loader-v3.0.0.js
|-loader-v3.1.1.js
|-loader-v3.2.0.js
|-loader-v3.2.1.js
|-loader-v3.3.0.js
|-loader-v3.4.0.js
|-loader-v3.5.0.js
|-loader-v3.6.0.js

v.3.7.0 の loader.js の名前を loader-v3.7.0.js に変更し、v3.8.2/examples/loader.js を ol3proj 直下にコピーします。
ol3proj
|-v3.0.0/
|-v3.1.1/
|-v3.2.0/
|-v3.2.1/
|-v3.3.0/
|-v3.4.0/
|-v3.5.0/
|-v3.6.0/
|-v3.7.0/
|-v3.8.2/
|-2xx-ol3ex.html
|-2xx-ol3ex.js
|-2xx-ol3ex-require.js
|-loader.js
|-loader-v3.0.0.js
|-loader-v3.1.1.js
|-loader-v3.2.0.js
|-loader-v3.2.1.js
|-loader-v3.3.0.js
|-loader-v3.4.0.js
|-loader-v3.5.0.js
|-loader-v3.6.0.js
|-loader-v3.7.0.js

loader.js の内容を次のように修正します。

---
  if (!raw) {
    // document.write('<scr' + 'ipt type="text/javascript" src="../build/ol.js"></scr' + 'ipt>');
    // ディレクトリ修正
    document.write('<scr' + 'ipt type="text/javascript" src="v3.8.2/build/ol.js"></scr' + 'ipt>');

  } else {
    window.CLOSURE_NO_DEPS = true; // we've got our own deps file
    // document.write('<scr' + 'ipt type="text/javascript" src="../closure-library/closure/goog/base.js"></scr' + 'ipt>');
    // document.write('<scr' + 'ipt type="text/javascript" src="../build/ol-deps.js"></scr' + 'ipt>');
    // ディレクトリ修正
    document.write('<scr' + 'ipt type="text/javascript" src="v3.8.2/closure-library/closure/goog/base.js"></scr' + 'ipt>');
    document.write('<scr' + 'ipt type="text/javascript" src="v3.8.2/build/ol-deps.js"></scr' + 'ipt>');

    document.write('<scr' + 'ipt type="text/javascript" src="' + scriptId + '-require.js"></scr' + 'ipt>');
  }
  document.write('<scr' + 'ipt type="text/javascript" src="' + scriptId + '.js"></scr' + 'ipt>');
}());

0 件のコメント: