Skip to content

Commit

Permalink
new release v2021.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MuseMuses committed Jul 1, 2021
1 parent 4195379 commit 018cda6
Show file tree
Hide file tree
Showing 21 changed files with 34,044 additions and 7,143 deletions.
10 changes: 8 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
**/*/node_modules
**/*/package-lock.json
# Folders
/**/.vs/
/*/packages/
/*/*/bin/
/*/*/obj/
/*/*/node_modules
/*/*/package-lock.json
/**/*.csproj.user
2,637 changes: 2,079 additions & 558 deletions ASP.NET/01. Load Dashboard from Server Side/Dashboards/DashboardChristmas.mrt

Large diffs are not rendered by default.

3,879 changes: 3,351 additions & 528 deletions ASP.NET/01. Load Dashboard from Server Side/Dashboards/DashboardFinancial.mrt

Large diffs are not rendered by default.

2,931 changes: 2,562 additions & 369 deletions ASP.NET/01. Load Dashboard from Server Side/Dashboards/DashboardOpec.mrt

Large diffs are not rendered by default.

3,182 changes: 2,765 additions & 417 deletions ASP.NET/01. Load Dashboard from Server Side/Dashboards/DashboardProducts.mrt

Large diffs are not rendered by default.

2,637 changes: 2,079 additions & 558 deletions Angular/01. Working with dashboard designer/src/dashboard/DashboardChristmas.mrt

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class AppComponent {
this.http.request('dashboard/DashboardChristmas.mrt').subscribe((data: Response) => {

console.log('Load dashboard from url');
this.report.loadDocument(data.json());
this.report.loadDocument(data.text());
this.viewer.report = this.report;

console.log('Rendering the viewer to selected element');
Expand Down
2,637 changes: 2,079 additions & 558 deletions AngularJS/dashboard/DashboardChristmas.mrt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Demo/css/demo.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


html, body {
margin: 0px;
padding: 0px;
Expand Down
2 changes: 1 addition & 1 deletion Demo/demo.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>

<head>
Expand Down
2 changes: 1 addition & 1 deletion Demo/scripts/demo.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var dashboardButtonsId = [];
var dashboardButtonsId = [];
var viewer = null;
var designer = null;

Expand Down
2 changes: 1 addition & 1 deletion Demo/scripts/jquery-1.8.3.min.js

Large diffs are not rendered by default.

87 changes: 43 additions & 44 deletions Java/01. Data Adapter/pom.xml
Original file line number Diff line number Diff line change
@@ -1,45 +1,44 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>DataAdapter</groupId>
<artifactId>DataAdapter</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<warSourceDirectory>WebContent</warSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.stimulsoft</groupId>
<artifactId>stimulsoft-reports-libs</artifactId>
<version>2020.2.2</version>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.0-801.jdbc3</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.33</version>
</dependency>
</dependencies>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>DataAdapter</groupId>
<artifactId>DataAdapter</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<warSourceDirectory>WebContent</warSourceDirectory>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.stimulsoft</groupId>
<artifactId>stimulsoft-reports-libs</artifactId>
<version>2021.3.4</version>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.0-801.jdbc3</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.33</version>
</dependency>
</dependencies>
</project>
2,637 changes: 2,079 additions & 558 deletions PHP/01. Load Dashboard from Server Side/dashboards/DashboardChristmas.mrt

Large diffs are not rendered by default.

3,879 changes: 3,351 additions & 528 deletions PHP/01. Load Dashboard from Server Side/dashboards/DashboardFinancial.mrt

Large diffs are not rendered by default.

Loading

0 comments on commit 018cda6

Please sign in to comment.