## Long distance projects support

By default the Scheduler Pro supports projects of 5 years duration max roughly.
That limit was hardcoded in some private code.
And in this release [ProjectModel](#SchedulerPro/model/ProjectModel) has got new
[maxCalendarRange](#SchedulerPro/model/ProjectModel#config-maxCalendarRange) config allowing to adjust this limit.

The value should be provided in milliseconds and should be configured in case the project deals with long tasks:

```javascript
new SchedulerPro({
    project : {
        // adjust calendar iteration limit to 10 years roughly:
        // 10 years expressed in ms
        maxCalendarRange : 10 * 365 * 24 * 3600000,
        /* ... */
    }
});
```


<p class="last-modified">Last modified on 2023-10-26 8:19:27</p>