Skip to content

Commit

Permalink
10.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ihnatmoisieiev committed Apr 6, 2022
1 parent cc404e6 commit 3cb457c
Show file tree
Hide file tree
Showing 38 changed files with 79 additions and 73 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 10.0.0.1

## iOS:

1. Fixed #396, call an export method causing chart not to redrawing.

# Version 10.0.0

## iOS:
Expand Down
14 changes: 7 additions & 7 deletions Example/HighFit/HighFit Swift/Highcharts.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,32 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>Highcharts.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Highcharts.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@
</data>
<key>Info.plist</key>
<data>
pYXJh1ltiAwy8MXHem7NJNpMK3k=
vn+CeiibrLColmKMLq4hcyR0aec=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -1538,7 +1538,7 @@
</data>
<key>com.highcharts.charts.bundle/highcharts.html</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
<data>
Expand Down Expand Up @@ -8241,11 +8241,11 @@
<dict>
<key>hash</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>hash2</key>
<data>
gOmRmE+bGTWjeHq8JEILrRRMDML5V1Ddv1w2L0nBLKU=
lJigE7s2ND6XgO4GIBL/crFoLN7zP+Nvt9uNWa5CNX8=
</data>
</dict>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
function shareChart(type) {
switch (type) {
case "image":
chart.exportChart({type: 'image/png'});
chart.exportChartLocal({type: 'image/png'});
break;
case "pdf":
chart.exportChart({type: 'application/pdf'});
chart.exportChartLocal({type: 'application/pdf'});
break;
case "csv":
var csvText = "data:text/csv;charset=utf-8," + chart.getCSV();
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@
</data>
<key>Info.plist</key>
<data>
INsfFcKf2RUgxsRtbOOBW3UAqvg=
Qa0muZpk5DsUXzTprJ9DmUxCxFo=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -1538,7 +1538,7 @@
</data>
<key>com.highcharts.charts.bundle/highcharts.html</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
<data>
Expand Down Expand Up @@ -8241,11 +8241,11 @@
<dict>
<key>hash</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>hash2</key>
<data>
gOmRmE+bGTWjeHq8JEILrRRMDML5V1Ddv1w2L0nBLKU=
lJigE7s2ND6XgO4GIBL/crFoLN7zP+Nvt9uNWa5CNX8=
</data>
</dict>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
function shareChart(type) {
switch (type) {
case "image":
chart.exportChart({type: 'image/png'});
chart.exportChartLocal({type: 'image/png'});
break;
case "pdf":
chart.exportChart({type: 'application/pdf'});
chart.exportChartLocal({type: 'application/pdf'});
break;
case "csv":
var csvText = "data:text/csv;charset=utf-8," + chart.getCSV();
Expand Down
14 changes: 7 additions & 7 deletions Example/HighFit/HighFit/Highcharts.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,32 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>Highcharts.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Highcharts.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@
</data>
<key>Info.plist</key>
<data>
pYXJh1ltiAwy8MXHem7NJNpMK3k=
vn+CeiibrLColmKMLq4hcyR0aec=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -1538,7 +1538,7 @@
</data>
<key>com.highcharts.charts.bundle/highcharts.html</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
<data>
Expand Down Expand Up @@ -8241,11 +8241,11 @@
<dict>
<key>hash</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>hash2</key>
<data>
gOmRmE+bGTWjeHq8JEILrRRMDML5V1Ddv1w2L0nBLKU=
lJigE7s2ND6XgO4GIBL/crFoLN7zP+Nvt9uNWa5CNX8=
</data>
</dict>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
function shareChart(type) {
switch (type) {
case "image":
chart.exportChart({type: 'image/png'});
chart.exportChartLocal({type: 'image/png'});
break;
case "pdf":
chart.exportChart({type: 'application/pdf'});
chart.exportChartLocal({type: 'application/pdf'});
break;
case "csv":
var csvText = "data:text/csv;charset=utf-8," + chart.getCSV();
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@
</data>
<key>Info.plist</key>
<data>
INsfFcKf2RUgxsRtbOOBW3UAqvg=
Qa0muZpk5DsUXzTprJ9DmUxCxFo=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -1538,7 +1538,7 @@
</data>
<key>com.highcharts.charts.bundle/highcharts.html</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
<data>
Expand Down Expand Up @@ -8241,11 +8241,11 @@
<dict>
<key>hash</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>hash2</key>
<data>
gOmRmE+bGTWjeHq8JEILrRRMDML5V1Ddv1w2L0nBLKU=
lJigE7s2ND6XgO4GIBL/crFoLN7zP+Nvt9uNWa5CNX8=
</data>
</dict>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
function shareChart(type) {
switch (type) {
case "image":
chart.exportChart({type: 'image/png'});
chart.exportChartLocal({type: 'image/png'});
break;
case "pdf":
chart.exportChart({type: 'application/pdf'});
chart.exportChartLocal({type: 'application/pdf'});
break;
case "csv":
var csvText = "data:text/csv;charset=utf-8," + chart.getCSV();
Expand Down
4 changes: 2 additions & 2 deletions Highcharts.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Pod::Spec.new do |s|


s.name = "Highcharts"
s.version = "10.0.0"
s.version = "10.0.0.1"
s.summary = "Powerful, vast charting library"

s.description = <<-DESC
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.license = { :type =>'Custom', :file => "LICENSE" }

s.author = "Highsoft"
s.source = { :git => "https://github.com/highcharts/highcharts-ios.git", :tag => "v10.0.0" }
s.source = { :git => "https://github.com/highcharts/highcharts-ios.git", :tag => "v10.0.0.1" }
s.ios.deployment_target = '9.0'


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ Here we present how to create basic chart and place it in your project.
- First of all download Highcharts xcframework from here: [Highcharts](https://github.com/highcharts/highcharts-ios/tree/master/XCFramework)
or by using **Cocoapods** by adding
```
pod 'Highcharts', '~> 10.0.0'
pod 'Highcharts', '~> 10.0.0.1'
```
to your Podfile

or **Carthage** by adding
```
github "https://github.com/highcharts/highcharts-ios" >= 10.0.0
github "https://github.com/highcharts/highcharts-ios" >= 10.0.0.1
```
to your Cartfile

Expand Down
14 changes: 7 additions & 7 deletions XCFramework/Highcharts.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,32 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>Highcharts.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Highcharts.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@
</data>
<key>Info.plist</key>
<data>
pYXJh1ltiAwy8MXHem7NJNpMK3k=
vn+CeiibrLColmKMLq4hcyR0aec=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -1538,7 +1538,7 @@
</data>
<key>com.highcharts.charts.bundle/highcharts.html</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
<data>
Expand Down Expand Up @@ -8241,11 +8241,11 @@
<dict>
<key>hash</key>
<data>
nZKWwOEtVUB2rKKqCt7duKkySDY=
Ibp5dEfaqHRjDEXFax66t+OjLYE=
</data>
<key>hash2</key>
<data>
gOmRmE+bGTWjeHq8JEILrRRMDML5V1Ddv1w2L0nBLKU=
lJigE7s2ND6XgO4GIBL/crFoLN7zP+Nvt9uNWa5CNX8=
</data>
</dict>
<key>com.highcharts.charts.bundle/js/css/annotations/popup.css</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
function shareChart(type) {
switch (type) {
case "image":
chart.exportChart({type: 'image/png'});
chart.exportChartLocal({type: 'image/png'});
break;
case "pdf":
chart.exportChart({type: 'application/pdf'});
chart.exportChartLocal({type: 'application/pdf'});
break;
case "csv":
var csvText = "data:text/csv;charset=utf-8," + chart.getCSV();
Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 3cb457c

Please sign in to comment.