Skip to content

Commit 4e130f3

Browse files
committed
update CHANGELOG.md, LICENSE.md, README.md, _config.yml, publiccode.yml
1 parent c06747f commit 4e130f3

File tree

5 files changed

+89
-10
lines changed

5 files changed

+89
-10
lines changed

CHANGELOG.md

+77
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,81 @@
11
# Changelog
22

3+
## 2020.3.0 - May 20, 2019
4+
- added new type of QR code, Swiss QR Code
5+
- added property MatrixObject.PrintIfEmpty, which allows displaying the matrix even if it is empty
6+
- added property Page.LastPageSource, which allows to configure the printer tray for printing the last page of the report
7+
- added VisibleExpression, PrintableExpression, and ExportableExpression properties (these properties allow to set the value of the Visible, Printable, and Exportable properties, depending on the fulfillment of the specified condition)
8+
- fixed a bug with text object visibility when Highlight.Visible parameter is enabled
9+
- fixed a bug with work of property PrintableExpression
10+
- optimized saving of embedded fonts in PDF-export. File size has decreased significantly.
11+
- fixed a bug with resource loading in WebReport
12+
- fixed a bug with image scaling in WebReport
13+
- fixed a bug with timeout exception while saving a report in the Online Designer
14+
- fixed a bug with calls of WebReport.ExportPdf, WebReport.ExportCsv, WebReport.ExportRtf, etc.
15+
- fixed compilation error on Unix-systems (because of net40 in targetFrameworks)
16+
- fixed some API errors in report code, available in System.Drawing.Primitives
17+
18+
## 2020.1.0 - Dec 2, 2019
19+
- added an ability to change decimal digits for Number, Currency and Percent formats when UseLocale property is true
20+
- added a property "SplitRows" for MatrixObject. By default, its value is False and in this case rows with the same vaues are joined. If True - rows are split (like TableObject)
21+
- added an ability to change export settings. To do this, you need to subscribe to the ExportParameters event in WebReport.Report
22+
- fixed a bug with trying to convert DBNull in empty string when ConvertNulls is disabled
23+
- fixed a bug when PageFooter with PrintOn=LastPage causes to print it on penultimate page
24+
- fixed view of background on BarcodeObject at Html export
25+
- fixed incorrect width and height for reports with mixed page orientation (Landscape & Portrait)
26+
- fixed incorrect view of background in ShapeObject
27+
- fixed lack of non-standard fill (Hatch, LinearGradient, etc.) on ShapeObject
28+
- fixed a bug with SQLite plugin if database includes null-values
29+
- known issue: Save button in Preview does not respond to click.
30+
31+
## 2019.4.0 - Sep 10, 2019
32+
- graphics dependency changed from CoreCompat.System.Drawing to System.Drawing.Common
33+
- added a new Json data connection integrated into the engine
34+
- added RepeatBandNTimes property for bands
35+
- added Bezier curve for polygons
36+
- added a new time format minutes:seconds [mm:ss]
37+
- fixed TypeConverter on the TextObject.ParagraphFormat property
38+
- fixed a bug with breaking ManualBuild table with CanBreak = false
39+
- fixed a bug with changing the GroupHeaderBand hierarchy if it had a child GroupHeaderBand
40+
- fixed a bug when font changed in parent report were not changed in inherited report
41+
- fixed image size calculation when AutoSize is enabled in the preparation stage
42+
- fixed a bug with display on the penultimate page with PageFooter PrintOn = LastPage
43+
44+
## 2019.3.0 - May 15, 2019
45+
- added a CoreCompat.System.Drawing reference to the script, which allows using Color, Font and some other features of System.Drawing
46+
- added ImageAlign property for image alignment inside PictureObject; by default, alignment is disabled
47+
- fixed a bug when in some cases the TypeConverter`s were not loaded correctly
48+
- fixed a bug with infinite loop in AdvancedTextRenderer when WordWrap is true and width of object less than width of one character
49+
- fixed a bug causing memory leak in HtmlTextRenderer
50+
- added links for images to HTML-export
51+
52+
## 2019.2.7 - Mar 28, 2019
53+
- added links for images to HTML-export
54+
- fixed a bug when in some cases the TypeConverter`s were not loaded correctly
55+
- fixed bug with infinite loop in AdvancedTextRenderer when WordWrap is true and width of object less than width of one character
56+
- added a CoreCompat.System.Drawing reference to the script, which allows using Color, Font and some other features of System.Drawing
57+
58+
## 2019.2.0 - Mar 5, 2019
59+
- sync with FastReport .NET 2019.2
60+
61+
## 2019.1.0 - Dec 19, 2018
62+
- sync with FastReport .NET 2019.1
63+
64+
## 2018.4.16 - Nov 30, 2018
65+
- Changed the build method, now the packages are assembled with all the necessary native libraries
66+
67+
## 2018.4.15 - Nov 27, 2018
68+
- fixed bug with Roslyn wrapper, when a warning is raised as error
69+
70+
## 2018.4.14 - Nov 26, 2018
71+
- In this release we have added the main connectors
72+
73+
## 2018.4.9 - Nov 2, 2018
74+
- sync with FastReport 2018.4.9 changes
75+
- disabled "new dialog page" button
76+
- added script for packing on linux systems
77+
- updated license in nuget packages
78+
- added PostgreSQL connector
79+
380
## 2018.4.7 - Oct 25, 2018
481
- Initial Release

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2018 Fast Reports Inc
1+
Copyright (c) 2020 Fast Reports Inc
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## What is FastReport?
66

7-
FastReport provides open source report generator for .NET Core 2.x/.NET Framework 4.x. You can use the FastReport in MVC, Web API applications.
7+
FastReport provides open source report generator for .NET Core/.NET Framework. You can use the FastReport in MVC, Web API applications.
88

99
[![Image of FastReport](https://raw.githubusercontent.com/FastReports/FastReport.Documentation/master/images/FastReport-screenshot2-small.png)](https://raw.githubusercontent.com/FastReports/FastReport.Documentation/master/images/FastReport-screenshot2.png)
1010

@@ -117,9 +117,9 @@ Licensed under the MIT license. See [LICENSE.md](LICENSE.md) for details.
117117

118118
[FastReport Open Source Documentation](https://fastreports.github.io/FastReport.Documentation/)
119119

120-
[FastReport Open Source Articles and How-Tos](https://fropensource.blogspot.com/)
120+
[FastReport Open Source Blog with Articles and How-Tos](https://opensource.fast-report.com/)
121121

122-
[The Feature Comparison Table for FastReport Open Source, FastReport Core, FastReport .NET](https://fastreports.github.io/FastReport.Documentation/COMPARISON.html "FastReport Open Source vs FastReport Core vs FastReport .NET")
122+
[The Feature Comparison Table for FastReport Open Source, FastReport Core, FastReport .NET](https://opensource.fast-report.com/p/the-feature-comparison-table-for.html "FastReport Open Source vs FastReport Core vs FastReport .NET")
123123

124124
[FastReport Core Online Demo](https://www.fast-report.com:2018 "Click to view FastReport Online Demo")
125125

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
theme: jekyll-theme-cayman
22
title: FastReport Open Source
3-
description: FastReport provides open source report generator for .NET Core 2.x/.Net Framework 4.x.
3+
description: FastReport provides open source report generator for .NET Core/.NET Framework.

publiccode.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
publiccodeYmlVersion: '0.2'
66
name: FastReport
7-
releaseDate: '2019-12-02'
7+
releaseDate: '2020-05-20'
88
url: 'https://github.com/FastReports/FastReport.git'
99
applicationSuite: Report generator
1010
landingURL: 'https://github.com/FastReports/FastReport'
11-
softwareVersion: 2020.1.0
11+
softwareVersion: 2020.3.0
1212
roadmap: 'https://github.com/FastReports/FastReport/issues/79'
1313
developmentStatus: stable
1414
softwareType: library
@@ -95,12 +95,13 @@ description:
9595
- finance
9696
- library
9797
- printing
98+
- pdf
9899
- viewer
99100
- word-processor
100101
featureList:
101102
- generate report
102103
- 'export to PDF, html, image, etc.'
103-
longDescription: FastReport fornisce un generatore di report open source per .NET Core 2.x / .NET Framework 4.x. È possibile utilizzare FastReport in MVC, applicazioni API Web. FastReport è scritto in C# ed è compatibile con .NET Standard 2.0 e versioni successive. L'architettura FastReport estendibile consente di creare oggetti, filtri di esportazione, procedure guidate e motori DB personalizzati. È possibile ottenere dati da XML, CSV, Json, MS SQL, MySql, Oracle, Postgres, MongoDB, Couchbase, RavenDB, SQLite. FastReport ha un motore di script integrato che supporta due lingue .NET, C# e VB.NET. È possibile utilizzare tutta la potenza di .NET nei report per eseguire complesse operazioni di gestione dei dati e molto altro. È possibile creare un modello di report in diversi modi:creazione di report da codice, sviluppo di template di report come file XML, utilizzando FastReport Online Designer, utilizzando FastReport Designer Community Edition (freeware). FastReport Open Source può salvare documenti in HTML, BMP, PNG, JPEG, GIF, TIFF, EMF. L'esportazione PDF è disponibile come plug-in. FASTREPORT Open Source è un programma per la creazione di report con specifica gestione di sezioni visualmente distinte. Queste comprendono:titolo del report, riassunto, titolo principale, sottotitolo, testata della colonna, nota in calce della colonna, testata dei dati, dati, nota in calce dei dati, testata di gruppo, nota in calce del gruppo, figli, overlay. Inoltre è possibile l’uso di sottoreport, che sono totalmente gestiti dal programma. L’ampia gamma di campi permette la creazione di qualsiasi tipo di report:liste, master-detail, gruppi, colonne multiple, master-detail-detail e molti altri.
104+
longDescription: FastReport fornisce un generatore di report open source per .NET Core/ .NET Framework. È possibile utilizzare FastReport in MVC, applicazioni API Web. FastReport è scritto in C# ed è compatibile con .NET Standard 2.0 e versioni successive. L'architettura FastReport estendibile consente di creare oggetti, filtri di esportazione, procedure guidate e motori DB personalizzati. È possibile ottenere dati da XML, CSV, Json, MS SQL, MySql, Oracle, Postgres, MongoDB, Couchbase, RavenDB, SQLite. FastReport ha un motore di script integrato che supporta due lingue .NET, C# e VB.NET. È possibile utilizzare tutta la potenza di .NET nei report per eseguire complesse operazioni di gestione dei dati e molto altro. È possibile creare un modello di report in diversi modi:creazione di report da codice, sviluppo di template di report come file XML, utilizzando FastReport Online Designer, utilizzando FastReport Designer Community Edition (freeware). FastReport Open Source può salvare documenti in HTML, BMP, PNG, JPEG, GIF, TIFF, EMF. L'esportazione PDF è disponibile come plug-in. FASTREPORT Open Source è un programma per la creazione di report con specifica gestione di sezioni visualmente distinte. Queste comprendono:titolo del report, riassunto, titolo principale, sottotitolo, testata della colonna, nota in calce della colonna, testata dei dati, dati, nota in calce dei dati, testata di gruppo, nota in calce del gruppo, figli, overlay. Inoltre è possibile l’uso di sottoreport, che sono totalmente gestiti dal programma. L’ampia gamma di campi permette la creazione di qualsiasi tipo di report:liste, master-detail, gruppi, colonne multiple, master-detail-detail e molti altri.
104105
screenshots:
105106
- assets/images/FastReport-screenshot2.png
106107
- assets/images/FastReport-screenshot1.png
@@ -126,7 +127,7 @@ description:
126127
genericName: Generatore di report
127128

128129
en:
129-
shortDescription: FastReport provides open source report generator for .NET Core 2.x/.NET Framework 4.x. You can use the FastReport in MVC, Web API applications.
130+
shortDescription: FastReport provides open source report generator for .NET Core/.NET Framework. You can use the FastReport in MVC, Web API applications.
130131
documentation: 'https://github.com/FastReports/FastReport.Documentation'
131132
freeTags:
132133
- fastreport
@@ -140,12 +141,13 @@ description:
140141
- finance
141142
- library
142143
- printing
144+
- pdf
143145
- viewer
144146
- word-processor
145147
featureList:
146148
- generate report
147149
- 'export to PDF, html, image, etc.'
148-
longDescription: FastReport provides open source report generator for .NET Core 2.x/.NET Framework 4.x. You can use the FastReport in MVC, Web API applications. FastReport is written in C# and it is compatible with .NET Standard 2.0 and higher. Extendable FastReport architecture allows creating your own objects, export filters, wizards and DB engines. You can get data from XML, CSV, Json, MS SQL, MySql, Oracle, Postgres, MongoDB, Couchbase, RavenDB, SQLite. FastReport has a built-in script engine that supports two .NET languages, C# and VB.NET. You can use all of the .NET power in your reports to perform complex data handling and much more. You can make a report template in several ways:creating report from code, developing report template as XML file, using the FastReport Online Designer, using the FastReport Designer Community Edition (freeware). FastReport Open Source can save documents in HTML, BMP, PNG, JPEG, GIF, TIFF, EMF. PDF Export is available as a plugin.
150+
longDescription: FastReport provides open source report generator for .NET Core/.NET Framework. You can use the FastReport in MVC, Web API applications. FastReport is written in C# and it is compatible with .NET Standard 2.0 and higher. Extendable FastReport architecture allows creating your own objects, export filters, wizards and DB engines. You can get data from XML, CSV, Json, MS SQL, MySql, Oracle, Postgres, MongoDB, Couchbase, RavenDB, SQLite. FastReport has a built-in script engine that supports two .NET languages, C# and VB.NET. You can use all of the .NET power in your reports to perform complex data handling and much more. You can make a report template in several ways:creating report from code, developing report template as XML file, using the FastReport Online Designer, using the FastReport Designer Community Edition (freeware). FastReport Open Source can save documents in HTML, BMP, PNG, JPEG, GIF, TIFF, EMF. PDF Export is available as a plugin.
149151

150152
screenshots:
151153
- assets/images/FastReport-screenshot2.png

0 commit comments

Comments
 (0)