Skip to content

Commit ace9ed7

Browse files
committed
[update] version 6.2.0
1 parent ced368d commit ace9ed7

File tree

149 files changed

+1885
-653
lines changed

Some content is hidden

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

149 files changed

+1885
-653
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# dhtmlxGantt v.6.1
1+
# dhtmlxGantt v.6.2
22

33
[![Join the chat at https://gitter.im/dhtmlx/dhtmlx](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/dhtmlx/dhtmlx)
44

5-
dhtmlxGantt is an open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart.
5+
dhtmlxGantt is an open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart.
66

77
It can show the dependencies between tasks as lines and allows you to set up different relationships between tasks (finish-to-start, start-to-start, finish-to-finish, start-to-finish).
88

@@ -28,7 +28,7 @@ Add markup:
2828
And initialize:
2929

3030
~~~js
31-
gantt.config.xml_date = "%Y-%m-%d %H:%i";
31+
gantt.config.date_format = "%Y-%m-%d %H:%i";
3232
gantt.init("gantt_here");
3333
gantt.parse({
3434
data: [
@@ -72,7 +72,7 @@ gantt.parse({
7272

7373
## License
7474

75-
This version of dhtmlxGantt is distributed under GPL 2.0 license and can be legally used in GPL projects.
75+
This version of dhtmlxGantt is distributed under GPL 2.0 license and can be legally used in GPL projects.
7676

7777
To use dhtmlxGantt in non-GPL projects (and get Pro version of the product), please obtain Commercial/Enterprise or Ultimate license on our site https://dhtmlx.com/docs/products/dhtmlxGantt/#licensing or contact us at [email protected]
7878

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gantt",
3-
"version": "6.1.7",
3+
"version": "6.2.0",
44
"homepage": "https://dhtmlx.com/docs/products/dhtmlxGantt/",
55
"description": "An open source JavaScript Gantt chart that helps you illustrate a project schedule in a nice-looking chart.",
66
"main": [

codebase/dhtmlxgantt.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/dhtmlxgantt.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ interface GanttTemplates {
215215
* @param item the task object assigned to the row
216216
* @param date the date of a cell
217217
*/
218-
task_cell_class(item: any, date: Date): string;
218+
timeline_cell_class(item: any, date: Date): string;
219219

220220
/**
221221
* specifies the CSS class that will be applied to task bars

codebase/dhtmlxgantt.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/dhtmlxgantt.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/ext/dhtmlxgantt_click_drag.js

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codebase/ext/dhtmlxgantt_click_drag.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)