Skip to content

Commit 130f2ca

Browse files
Merge branch 'bugfix'
2 parents 75cc06e + 24229ae commit 130f2ca

File tree

575 files changed

+1169
-1351
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

575 files changed

+1169
-1351
lines changed

Changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## v2.6.3
4+
5+
---
6+
Release Date: **08.12.2018**
7+
8+
- Improved the performance of adding stylized cells by factor 10 to 100
9+
10+
11+
312
## v2.6.2
413

514
---

Demo/Program.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using System.IO;
1111
using System.Threading.Tasks;
1212
using PicoXLSX;
13+
using Testing;
1314

1415

1516
namespace Demo
@@ -22,6 +23,7 @@ class Program
2223
/// <param name="args">Not used</param>
2324
static void Main(string[] args)
2425
{
26+
2527
BasicDemo();
2628
ShortenerDemo();
2729
StreamDemo();
@@ -36,11 +38,12 @@ static void Main(string[] args)
3638
Demo8();
3739
Demo9();
3840
Demo10();
41+
3942

4043
/* ### PERFORMANCE TESTS ### */
4144
// # Use tests in this section to test the performance of PicoXLSX
4245
/* ######################### */
43-
// Testing.Performance.StressTest("stressTest.xlsx", "worksheet", 15000, 100);
46+
// Performance.StressTest("stressTest.xlsx", "worksheet", 1500, 2);
4447
/* ######################### */
4548
/* ###### TYPE TESTS ####### */
4649
// # Use tests in this section to test the type casting of PicoXLSX

Demo/Testing/Performance.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using System.Linq;
1111
using System.Text;
1212
using System.Threading.Tasks;
13+
using PicoXLSX;
1314

1415
namespace Testing
1516
{
@@ -61,7 +62,7 @@ public static void StressTest(string filename, string sheetname, int rows, int c
6162
{
6263
for (j = 0; j < cols; j++)
6364
{
64-
s.AddNextCell(field[i][j]);
65+
s.AddNextCell(field[i][j], Style.BasicStyles.Bold);
6566
}
6667
s.GoToNextRow();
6768
}

Executable/Debug/PicoXLSX.XML

Lines changed: 47 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Executable/Debug/PicoXLSX.dll

-512 Bytes
Binary file not shown.

Executable/Documentation.chm

-9.71 KB
Binary file not shown.

Executable/Release/PicoXLSX.dll

-1 KB
Binary file not shown.

PicoXLSX/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
// You can specify all the values or you can default the Build and Revision Numbers
3131
// by using the '*' as shown below:
3232
// [assembly: AssemblyVersion("1.0.*")]
33-
[assembly: AssemblyVersion("2.6.2")]
34-
[assembly: AssemblyFileVersion("2.6.2")]
33+
[assembly: AssemblyVersion("2.6.3")]
34+
[assembly: AssemblyFileVersion("2.6.3")]

0 commit comments

Comments
 (0)