You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2021/10/27 04:17:02 UTC

[echarts] branch release-dev updated (21d6317 -> 789bad0)

This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a change to branch release-dev
in repository https://gitbox.apache.org/repos/asf/echarts.git.


    from 21d6317  release 5.2.1
     add bc764f8  chore: update download links in announcement email template
     add 7b5c6bb  chore: fix http link
     add d64dc92  Merge pull request #15761 from apache/update-announce-tpl
     add 1c70026  Merge pull request #15745 from apache/release-dev
     add b78d0af  Merge pull request #15762 from apache/release
     add 04b2d1d  fix(aria): fix aria label with dataset #15734
     add 4a8a7f5  Merge pull request #15777 from apache/fix-aria
     add f38c6aa  Fix a few typos (unkown -> unknown)
     add df2f676  Merge pull request #15808 from johanvdw/fixtypos
     add aecf267  fix: un-deprecate getTextRect #15823
     add 7c1e61b  Merge pull request #15835 from apache/fix-getTextRect
     add 9d15015  chore: fix version patch number of next build
     add 8540d3c  Merge pull request #15853 from apache/fix-next-build
     add 0ef8c6c  feat(i18n): add Russian translation
     add 4dde106  Merge pull request #15867 from finkrer/russian_translation
     add 2f7c6fe  fix(tooltip): format boolean in value #15809
     add c285682  fix(tooltip): simplify logic
     add cd782ab  Merge pull request #15869 from apache/fix-15809
     add 91d2e2c  feat(i18n) Polish localization
     add d3f5cfb  Merge pull request #15891 from CaelumNigre/PL-localization
     add 10093aa  Feat(line): mouse event on polyline and polygon
     add d3987e2  chore: use native EChart event
     add 2735834  chore: remove useless code
     add 1005b8c  Merge branch 'master' into line-event
     add ff7d7c0  Feat(line): add `enableLineEvent` to control event
     add c803311  chore: rename variable
     add 2250b5a  chore: use `seriesIndex`
     add f73e6e0  Merge pull request #15847 from susiwen8/line-event
     add 1ee1ae0  fix(types): add `undefined` for the return type of `getInstanceByDom` & `getInstanceById`.
     add bc54e48  Merge pull request #15913 from apache/fix-types
     add 3bf7b2e  fix(calendar): i18n isn't working in calendar coordinate system, resolves #15932.
     add d5d9ac9  refactor(calenlar-i18n): 1) use the capital of `dayOfWeekAbbr` if `dayOfWeekShort` doesn't exist in the locale file. 2) `nameMap` can be any registered locale name (case-sensitive).
     add f28a405  chore(calendar): remove dev code.
     add 796c987  fix(calendar-i18n): remove `dayOfWeekShort` configuration from `en` locale.
     add 657752f  chore(calendar): tweak comment.
     add 8e683c7  Merge pull request #15935 from apache/fix-calendar-i18n
     add 2b63cd7  fix(line): fix visual gradient when coords are between two stops.
     add e643819  fix(line): reverted unexpected change
     add 7202eb5  Merge pull request #15938 from apache/fix-line-visual
     add 56bad39  fix(line): fix smoothed line with duplicate points failed to draw
     add 2bd54c3  Merge pull request #15942 from apache/fix-line-draw
     add 316820a  fix(bar-race): label value animation duration after sorting
     add f8ba254  fix(bar-race): fix typing
     add c450c93  fix(bar-race): improve code
     add 504a2d0  fix(bar-race): fix the case when new bar appears
     add 9e13382  fix(bar-race): fix label animation when changeOrder in the first render
     add 2c7608b  Merge pull request #15916 from apache/fix-bar-race
     add 309849b  fix(axis): charts render abnormally when `yAxis.max` is set to be a value less than the min value of the series data.
     add e66d871  Merge pull request #15878 from apache/fix-yaxis-max
     add 789bad0  Merge pull request #15950 from apache/master

No new revisions were added by this update.

Summary of changes:
 .github/workflows/source-release.yml               |   2 +-
 build/prepareNightly.js                            |   1 +
 build/source-release/template/announce-release.tpl |   6 +-
 dist/echarts.js                                    |  12 +-
 src/chart/bar/BarView.ts                           |  37 +++++-
 src/chart/line/LineSeries.ts                       |   6 +-
 src/chart/line/LineView.ts                         |  44 +++++--
 src/chart/line/install.ts                          |   1 -
 src/chart/line/poly.ts                             |  21 ++-
 src/chart/treemap/Breadcrumb.ts                    |   2 +-
 src/component/calendar/CalendarView.ts             |  82 ++++++------
 src/coord/calendar/CalendarModel.ts                |  21 +--
 src/coord/scaleRawExtentInfo.ts                    |   5 -
 src/core/echarts.ts                                |   4 +-
 src/i18n/langPL.ts                                 | 142 ++++++++++++++++++++
 src/i18n/langRU.ts                                 | 143 +++++++++++++++++++++
 src/label/LabelManager.ts                          |  13 +-
 src/label/labelStyle.ts                            |  12 +-
 src/legacy/getTextRect.ts                          |   2 -
 src/model/Model.ts                                 |   2 +-
 src/model/mixin/dataFormat.ts                      |   2 +-
 src/util/format.ts                                 |   2 +
 src/util/types.ts                                  |  11 +-
 src/visual/aria.ts                                 |   8 +-
 test/aria-pie.html                                 |  26 +++-
 test/axis-filter-extent2.html                      |  42 +++++-
 test/bar-race.html                                 |  55 +++++++-
 test/calendar-week.html                            |  44 +++++--
 test/line-case.html                                |  91 +++++++++++++
 test/line-visual2.html                             |  41 ++++++
 test/{allZero.html => polyline-gon-event.html}     |  43 ++++---
 test/runTest/actions/__meta__.json                 |   1 +
 test/tooltip-axisPointer2.html                     |  19 ++-
 33 files changed, 810 insertions(+), 133 deletions(-)
 create mode 100644 src/i18n/langPL.ts
 create mode 100644 src/i18n/langRU.ts
 copy test/{allZero.html => polyline-gon-event.html} (66%)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org