Skip to content

Commit 300dad3

Browse files
committed
update to 2.1.2
1 parent a1ffcce commit 300dad3

File tree

13 files changed

+17
-13
lines changed

13 files changed

+17
-13
lines changed

Examples.Library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ targetCompatibility = 1.8
2626

2727
dependencies {
2828
compile fileTree(dir: 'lib', include: ['*.jar'])
29-
compile('com.grapecity.documents:gcexcel:2.1.1')
29+
compile('com.grapecity.documents:gcexcel:2.1.2')
3030
}
3131

Examples.Library/src/main/resources/tutorial_en-US.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
# Getting started with Documents for Excel - Java Edition, a spreadsheet API
33

44
In this tutorial, we create a real-life scenario with GcExcel Java to give you a fundamental understanding of what it can do. At the end of this tutorial, you will have a simple budget Excel file.
@@ -12,12 +12,12 @@ In this tutorial, we create a real-life scenario with GcExcel Java to give you a
1212
3. Add dependency for GcExcel library:
1313
> **Intellij or Eclipse Console Application**
1414
> - Download gcexcel jar package from [Maven](https://search.maven.org/artifact/com.grapecity.documents/gcexcel/) or [Github](https://github.com/GrapeCity/GcExcel-Java)
15-
> - Copy gcexcel-2.1.0.jar into project library folder, and add it as a dependency library
15+
> - Copy gcexcel-2.1.1.jar into project library folder, and add it as a dependency library
1616
>
1717
> **Gradle Project**
1818
> - Open the build.gradle and append below script in in the dependencies block
1919
> ```xml
20-
> compile("com.grapecity.documents:gcexcel:2.1.0")
20+
> compile("com.grapecity.documents:gcexcel:2.1.2")
2121
> ```
2222
>
2323
> **Maven Project**
@@ -26,7 +26,7 @@ In this tutorial, we create a real-life scenario with GcExcel Java to give you a
2626
> <dependency>
2727
> <groupId>com.grapecity.documents</groupId>
2828
> <artifactId>gcexcel</artifactId>
29-
> <version>2.1.0</version>
29+
> <version>2.1.2</version>
3030
> </dependency>
3131
> ```
3232
@@ -250,4 +250,4 @@ Save it to an Excel file named "SimpleBudget.xlsx."
250250
workbook.save("SimpleBudget.xlsx");
251251
```
252252

253-
You can download and view the saved [SimpleBudget.xlsx](http://10.41.1.18:8080/gcexcel-examples-api-server/api/examples/xlsx/com.grapecity.documents.excel.examples.Tutorial?fileName=SimpleBudget). If you prefer to download the [Tutorial Source Project](gcexcel-tutorial.zip) and run the code yourself.
253+
You can download and view the saved [SimpleBudget.xlsx](http://10.41.1.18:8080/gcexcel-examples-api-server/api/examples/xlsx/com.grapecity.documents.excel.examples.Tutorial?fileName=SimpleBudget). If you prefer to download the [Tutorial Source Project](gcexcel-tutorial.zip) and run the code yourself.

Examples.Library/src/main/resources/tutorial_zh-CN.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 介绍
1+
# 介绍
22

33
在本教程中, 我们将会通过一个真实的使用场景,来让大家对Spread表格组件能够做什么有一个基础的了解,并且在教程的最后一步,你将会得到一个用Spread表格组件生成的Excel文件,这个文件可以用来分析你的月度收入和支出。
44

@@ -11,12 +11,12 @@
1111
3. 添加GcExcel Java依赖包:
1212
> **在Intellij IDEA 或 Eclipse中**
1313
> -[Maven](https://search.maven.org/artifact/com.grapecity.documents/gcexcel/)或者[Github](https://github.com/GrapeCity/GcExcel-Java)下载GcExcel jar包
14-
> - 将gcexcel-2.1.0.jar拷贝到现有工程目录下, 右键将jar包添加为依赖包
14+
> - 将gcexcel-2.1.1.jar拷贝到现有工程目录下, 右键将jar包添加为依赖包
1515
>
1616
> **Gradle工程**
1717
> - 打开build.gradle,在dependencies代码块下添加下面代码
1818
> ```xml
19-
> compile("com.grapecity.documents:gcexcel:2.1.0")
19+
> compile("com.grapecity.documents:gcexcel:2.1.2")
2020
> ```
2121
>
2222
> **Maven工程**
@@ -25,7 +25,7 @@
2525
> <dependency>
2626
> <groupId>com.grapecity.documents</groupId>
2727
> <artifactId>gcexcel</artifactId>
28-
> <version>2.1.0</version>
28+
> <version>2.1.2</version>
2929
> </dependency>
3030
> ``
3131
@@ -249,4 +249,4 @@ chartSeries.getDataLabels().setPosition(DataLabelPosition.OutsideEnd);
249249
workbook.save("SimpleBudget.xlsx");
250250
```
251251

252-
此时,你可以下载并查看保存的[SimpleBudget.xlsx](http://server-ip:8080/gcexcel-examples-api-server/api/examples/xlsx/com.grapecity.documents.excel.examples.Tutorial?fileName=SimpleBudget). 同时,你也可以下载本教程的[源代码工程](gcexcel-tutorial.zip)并亲自运行它。
252+
此时,你可以下载并查看保存的[SimpleBudget.xlsx](http://server-ip:8080/gcexcel-examples-api-server/api/examples/xlsx/com.grapecity.documents.excel.examples.Tutorial?fileName=SimpleBudget). 同时,你也可以下载本教程的[源代码工程](gcexcel-tutorial.zip)并亲自运行它。

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ This repository contains source project of Examples and Showcases of GcExcel to
1111
| gcexcel-2.0.1 | Contains GcExcel Java 2.0.1 jar package and its dependency packages |
1212
| gcexcel-2.1.0 | Contains GcExcel Java 2.1.0 jar package and its dependency packages |
1313
| gcexcel-2.1.1 | Contains GcExcel Java 2.1.1 jar package and its dependency packages |
14+
| gcexcel-2.1.2 | Contains GcExcel Java 2.1.2 jar package and its dependency packages |
1415
| Examples.Library | A collection of Java examples that help you learn and explore the API features |
1516
| SpringBootDemo/SpringBoot+React | A source project that demonstrates how to use GcExcel Java with SpringBoot + React + Spread.Sheets|
1617
| SpringBootDemo/SpringBoot+Angular2 | A source project that demonstrates how to use GcExcel with SpringBoot + Angular2 + Spread.Sheets|
1718

1819
# Release Notes
20+
## 2.1.2
21+
### Bug fixed
22+
* GcExcel is unable to load an Excel file consisting SUMPRODUCT formula.(DOCXLS-733)
1923
## 2.1.1
2024
### Enhancements
2125
* Added IWorksheet.FixedPageBreaks to control whether to adjust page breaks after inserting/deleting rows or columns.

SpringBootDemo/SpringBoot+Angular2/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies {
3838
}
3939

4040
//dependencies of GcExcel
41-
compile('com.grapecity.documents:gcexcel:2.1.1')
41+
compile('com.grapecity.documents:gcexcel:2.1.2')
4242
}
4343

4444
task clientBuild(type: GradleBuild){

SpringBootDemo/SpringBoot+React/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ dependencies {
3737
}
3838

3939
//dependencies of GcExcel
40-
compile('com.grapecity.documents:gcexcel:2.1.1')
40+
compile('com.grapecity.documents:gcexcel:2.1.2')
4141
//compile fileTree(dir: 'libs', include: ['*.jar'])
4242
}
4343

60.6 KB
Binary file not shown.

gcexcel-2.1.2/fontbox-2.0.11.jar

1.48 MB
Binary file not shown.
1.64 MB
Binary file not shown.

gcexcel-2.1.2/gcexcel-2.1.2.jar

5.67 MB
Binary file not shown.
5.74 KB
Binary file not shown.

gcexcel-2.1.2/javax.json-1.0.4.jar

83.2 KB
Binary file not shown.

gcexcel-2.1.2/pdfbox-2.0.11.jar

2.41 MB
Binary file not shown.

0 commit comments

Comments
 (0)