This is an automated email from the ASF dual-hosted git repository.
aglinxinyuan pushed a change to branch xinyuan-angular-17
in repository https://gitbox.apache.org/repos/asf/texera.git
from 43930054c5 update
add fee6f8caa2 feat: add a new wind rose chart operator (#4224)
add 2b6253909c fix: only run workflow build and deploy image action if
scheduled or auto run if on… (#4214)
add d868b85225 feat: add Radar Plot Visualization Operator (#3500)
add 8cd1570dd2 feat: add a new webgl polar chart operator (#4221)
add 41e7339f1b fix(operator): convert booleans to Python-compatible values
in BubbleChart/ContourPlot/TernaryPlot (#4238)
add 4be9baeaa2 chore(build): add customized LICENSE to jar META-INF and
dist zips (#4367)
add f682e9e59a Merge branch 'main' into xinyuan-angular-17
No new revisions were added by this update.
Summary of changes:
.github/workflows/build-and-push-images.yml | 1 +
.licenserc.yaml | 1 -
bin/access-control-service.dockerfile | 3 -
bin/computing-unit-master.dockerfile | 3 -
bin/computing-unit-worker.dockerfile | 3 -
bin/config-service.dockerfile | 3 -
bin/file-service.dockerfile | 3 -
bin/texera-web-application.dockerfile | 3 -
bin/workflow-compiling-service.dockerfile | 3 -
...flow-computing-unit-managing-service.dockerfile | 3 -
build.sbt | 31 ++-
.../apache/texera/amber/operator/LogicalOp.scala | 6 +
.../bubbleChart/BubbleChartOpDesc.scala | 2 +-
.../contourPlot/ContourPlotOpDesc.scala | 2 +-
.../PolarChartOpDesc.scala} | 110 +++++-----
.../radarChart/RadarChartOpDesc.scala | 3 +-
.../RadarPlotLinePattern.java} | 23 +--
.../visualization/radarPlot/RadarPlotOpDesc.scala | 230 +++++++++++++++++++++
.../ternaryPlot/TernaryPlotOpDesc.scala | 2 +-
.../WindRoseChartOpDesc.scala} | 85 +++++---
frontend/src/assets/operator_images/PolarChart.png | Bin 0 -> 133686 bytes
frontend/src/assets/operator_images/RadarPlot.png | Bin 0 -> 48432 bytes
.../src/assets/operator_images/WindRoseChart.png | Bin 0 -> 24191 bytes
project/AddMetaInfLicenseFiles.scala | 142 +++++++++++++
24 files changed, 514 insertions(+), 148 deletions(-)
copy
common/workflow-operator/src/main/scala/org/apache/texera/amber/operator/visualization/{candlestickChart/CandlestickChartOpDesc.scala
=> polarChart/PolarChartOpDesc.scala} (51%)
copy
common/workflow-operator/src/main/scala/org/apache/texera/amber/operator/visualization/{histogram2d/NormalizationType.java
=> radarPlot/RadarPlotLinePattern.java} (71%)
create mode 100644
common/workflow-operator/src/main/scala/org/apache/texera/amber/operator/visualization/radarPlot/RadarPlotOpDesc.scala
copy
common/workflow-operator/src/main/scala/org/apache/texera/amber/operator/visualization/{waterfallChart/WaterfallChartOpDesc.scala
=> windRoseChart/WindRoseChartOpDesc.scala} (59%)
create mode 100644 frontend/src/assets/operator_images/PolarChart.png
create mode 100644 frontend/src/assets/operator_images/RadarPlot.png
create mode 100644 frontend/src/assets/operator_images/WindRoseChart.png
create mode 100644 project/AddMetaInfLicenseFiles.scala