Skip to content

Commit 459a0dc

Browse files
committed
Update libAspose.Cells.CWrapper.so for linux.
1 parent 77d3aef commit 459a0dc

File tree

8 files changed

+40
-40
lines changed

8 files changed

+40
-40
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ _testmain.go
2222
*.exe
2323
*.test
2424
*.prof
25+
Data/

lib/linux_x86_64/libAspose.Cells.CWrapper.so

100644100755
8 Bytes
Binary file not shown.

samples/convert-table-to-range.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
)
66

77
func ConvertTableToRange() {
8-
workbook, err1 := NewWorkbook_String("Data/Input /BookPivotTable.xlsx")
8+
workbook, err1 := NewWorkbook_String("Data/Input/BookPivotTable.xlsx")
99
if err1 != nil {
1010
println(err1)
1111
}

samples/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ module main
33
go 1.19
44

55
require github.com/aspose-cells/aspose-cells-go-cpp/v24 v24.12.0
6+
replace github.com/aspose-cells/aspose-cells-go-cpp/v24 v24.12.0 => ../.

samples/go.sum

Lines changed: 0 additions & 2 deletions
This file was deleted.

samples/main.go

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -28,39 +28,39 @@ func main() {
2828
println("Hello World!")
2929
lic, _ := NewLicense()
3030
lic.SetLicense_String(os.Getenv("LicensePath"))
31-
32-
//AddCustomProperty()
33-
//AddDataToExcel()
34-
//AddHyperlinkToImage()
35-
//CalculateFormulaInExcel()
36-
//ChartToImage()
37-
//ConvertExcelToOds()
38-
//ConvertExcelToPdf()
39-
//ConvertTableToRange()
40-
//CopyColumn()
41-
//CopyColumns()
42-
//CopyRow()
43-
//CopyRows()
44-
//CreateChartInExcel()
45-
//CreateExcel()
46-
//CreateTableInExcel()
47-
//CreateTableInOds()
48-
//GetCellValue()
49-
//GetStyle()
50-
//HideRowsInPivotTable()
51-
//NewBubbleChart()
52-
//NewLineChartInOds()
53-
//NewLineChart()
54-
//NewPyramidChart()
55-
//New_Workbook()
56-
//SaveasWorkbook()
57-
//SetBackgroundColor()
58-
//SetCellValue()
59-
//SetComment()
60-
//SetListobjectComment()
61-
//SetStyle()
62-
//SearchCellValue()
63-
//ShowCellsHelper()
64-
//ReplaceCellValue()
65-
//Unlock()
31+
Version()
32+
// AddCustomProperty()
33+
// AddDataToExcel()
34+
// AddHyperlinkToImage()
35+
// CalculateFormulaInExcel()
36+
// ChartToImage()
37+
// ConvertExcelToOds()
38+
// ConvertExcelToPdf()
39+
// ConvertTableToRange()
40+
// CopyColumn()
41+
// CopyColumns()
42+
// CopyRow()
43+
// CopyRows()
44+
// CreateChartInExcel()
45+
// CreateExcel()
46+
// CreateTableInExcel()
47+
// CreateTableInOds()
48+
// GetCellValue()
49+
// GetStyle()
50+
// HideRowsInPivotTable()
51+
// NewBubbleChart()
52+
// NewLineChartInOds()
53+
// NewLineChart()
54+
// NewPyramidChart()
55+
// New_Workbook()
56+
// SaveasWorkbook()
57+
// SetBackgroundColor()
58+
// SetCellValue()
59+
// SetComment()
60+
// SetListobjectComment()
61+
// SetStyle()
62+
// SearchCellValue()
63+
// ShowCellsHelper()
64+
// ReplaceCellValue()
65+
// Unlock()
6666
}

start_up.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ func init() {
2424
}
2525

2626
func Version() {
27-
println("---Version: v24.12.1---")
27+
println("---Version: v24.12.2---")
2828
}
2929

3030
type UUID struct {

start_up_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func init() {
2121
}
2222

2323
func Version() {
24-
println("---Version: v24.12.1---")
24+
println("---Version: v24.12.2---")
2525
}
2626
type UUID struct {
2727
ptr unsafe.Pointer

0 commit comments

Comments
 (0)