Skip to content

Commit 412b638

Browse files
[TASKSCLOUD-936] - Deployed new 25.8 version.
1 parent 00eaeda commit 412b638

File tree

268 files changed

+4056
-3392
lines changed

Some content is hidden

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

268 files changed

+4056
-3392
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ Feel free to explore the [Developer's Guide](https://docs.aspose.cloud/display/t
3434
XER, XLSX, HTML, XML, TXT, TIF, SVG, PNG, JPEG
3535

3636

37+
## Enhancements in Version 25.8
38+
- Added new ability to level tasks for the resources.
39+
- Provided the ability to clear leveling delay that was previously added to the tasks during resource leveling.
40+
3741
## Enhancements in Version 25.4
3842
- Enhanced Task model.
3943
- Enhanced TaskLink model.

api/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="client.go">
4-
* Copyright (c) 2021 Aspose.Tasks Cloud
4+
* Copyright (c) 2025 Aspose.Tasks Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy

api/custom/date_without_tz.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import (
3434
)
3535

3636
const formatStringTimeWithoutTZ = "2006-01-02T15:04:05"
37+
3738
var regexFinder = regexp.MustCompile(`\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}`)
3839

3940
// TimeWithoutTZ provides a yyyy-MM-ddThh:mm:ss date.
@@ -47,7 +48,7 @@ func (d TimeWithoutTZ) MarshalJSON() ([]byte, error) {
4748
// UnmarshalJSON handles incoming JSON.
4849
func (d *TimeWithoutTZ) UnmarshalJSON(b []byte) (err error) {
4950
str := regexFinder.FindString(string(b))
50-
if str == ""{
51+
if str == "" {
5152
err = newErrInvalidDateFormatTimeWithoutTZ(string(b))
5253
return
5354
}
@@ -60,6 +61,7 @@ func (d *TimeWithoutTZ) UnmarshalJSON(b []byte) (err error) {
6061
}
6162

6263
// String // String returns the time formatted using the format string
64+
//
6365
// "2006-01-02T15:04:05"
6466
//
6567
// If the time has a monotonic clock reading, the returned string
@@ -79,4 +81,3 @@ type ErrInvalidDateFormatTimeWithoutTZ error
7981
func newErrInvalidDateFormatTimeWithoutTZ(input string) ErrInvalidDateFormatTimeWithoutTZ {
8082
return ErrInvalidDateFormatTimeWithoutTZ(fmt.Errorf(" string '%s' did not contain any date in yyyy-MM-ddThh:mm:ss format", input))
8183
}
82-

api/models/aspose_response.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="aspose_response.go">
4-
* Copyright (c) 2021 Aspose.Tasks Cloud
4+
* Copyright (c) 2025 Aspose.Tasks Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -10,10 +10,10 @@
1010
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
* copies of the Software, and to permit persons to whom the Software is
1212
* furnished to do so, subject to the following conditions:
13-
*
13+
*
1414
* The above copyright notice and this permission notice shall be included in all
1515
* copies or substantial portions of the Software.
16-
*
16+
*
1717
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1919
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

api/models/assignment_baseline.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="assignment_baseline.go">
4-
* Copyright (c) 2021 Aspose.Tasks Cloud
4+
* Copyright (c) 2025 Aspose.Tasks Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -10,10 +10,10 @@
1010
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
* copies of the Software, and to permit persons to whom the Software is
1212
* furnished to do so, subject to the following conditions:
13-
*
13+
*
1414
* The above copyright notice and this permission notice shall be included in all
1515
* copies or substantial portions of the Software.
16-
*
16+
*
1717
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1919
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

api/models/assignment_item.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="assignment_item.go">
4-
* Copyright (c) 2021 Aspose.Tasks Cloud
4+
* Copyright (c) 2025 Aspose.Tasks Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -10,10 +10,10 @@
1010
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
* copies of the Software, and to permit persons to whom the Software is
1212
* furnished to do so, subject to the following conditions:
13-
*
13+
*
1414
* The above copyright notice and this permission notice shall be included in all
1515
* copies or substantial portions of the Software.
16-
*
16+
*
1717
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1919
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

api/models/assignment_item_response.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="assignment_item_response.go">
4-
* Copyright (c) 2021 Aspose.Tasks Cloud
4+
* Copyright (c) 2025 Aspose.Tasks Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -10,10 +10,10 @@
1010
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
* copies of the Software, and to permit persons to whom the Software is
1212
* furnished to do so, subject to the following conditions:
13-
*
13+
*
1414
* The above copyright notice and this permission notice shall be included in all
1515
* copies or substantial portions of the Software.
16-
*
16+
*
1717
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1919
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

api/models/assignment_items.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="assignment_items.go">
4-
* Copyright (c) 2021 Aspose.Tasks Cloud
4+
* Copyright (c) 2025 Aspose.Tasks Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -10,10 +10,10 @@
1010
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
* copies of the Software, and to permit persons to whom the Software is
1212
* furnished to do so, subject to the following conditions:
13-
*
13+
*
1414
* The above copyright notice and this permission notice shall be included in all
1515
* copies or substantial portions of the Software.
16-
*
16+
*
1717
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1919
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -29,6 +29,6 @@ package models
2929

3030
type AssignmentItems struct {
3131
// Link to the document.
32-
Link *Link `json:"link,omitempty"`
32+
Link *Link `json:"link,omitempty"`
3333
AssignmentItem []AssignmentItem `json:"assignmentItem,omitempty"`
3434
}

api/models/assignment_items_response.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="assignment_items_response.go">
4-
* Copyright (c) 2021 Aspose.Tasks Cloud
4+
* Copyright (c) 2025 Aspose.Tasks Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -10,10 +10,10 @@
1010
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
* copies of the Software, and to permit persons to whom the Software is
1212
* furnished to do so, subject to the following conditions:
13-
*
13+
*
1414
* The above copyright notice and this permission notice shall be included in all
1515
* copies or substantial portions of the Software.
16-
*
16+
*
1717
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1919
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
@@ -31,6 +31,6 @@ type AssignmentItemsResponse struct {
3131
// Response status code
3232
Code int32 `json:"code"`
3333
// Response status
34-
Status string `json:"status,omitempty"`
34+
Status string `json:"status,omitempty"`
3535
Assignments *AssignmentItems `json:"assignments,omitempty"`
3636
}

api/models/assignment_response.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* --------------------------------------------------------------------------------
33
* <copyright company="Aspose" file="assignment_response.go">
4-
* Copyright (c) 2021 Aspose.Tasks Cloud
4+
* Copyright (c) 2025 Aspose.Tasks Cloud
55
* </copyright>
66
* <summary>
77
* Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -10,10 +10,10 @@
1010
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
* copies of the Software, and to permit persons to whom the Software is
1212
* furnished to do so, subject to the following conditions:
13-
*
13+
*
1414
* The above copyright notice and this permission notice shall be included in all
1515
* copies or substantial portions of the Software.
16-
*
16+
*
1717
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1919
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

0 commit comments

Comments
 (0)