Skip to content

Commit

Permalink
23.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Feb 7, 2024
1 parent bfe2276 commit dfa7176
Show file tree
Hide file tree
Showing 172 changed files with 17,842 additions and 15,082 deletions.
14 changes: 14 additions & 0 deletions ChangeLog
@@ -1,3 +1,17 @@
06-FEB-2024: 23.1.2

- Fixes possible spin forever in image dialogs [drawio-4166]
- Uses SVG icons for Confluence Cloud viewer toolbar buttons
- Handles possible parser error in OneDrive auth
- Fixes prev is not defined when creating new files
- [conf cloud] Removed custom libs 25 limit in listing [DID-10673][DID-10695]

01-FEB-2024: 23.1.1

- Update azure shapes [drawio-3333]
- Fixes only first layer shown in template preview
- Fixes image size and padding for savesidebar URL parameter

31-JAN-2024: 23.1.0

- Fixes smoothing configuration for freehand [drawio-3093]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
23.1.0
23.1.2
31 changes: 31 additions & 0 deletions src/main/mxgraph/util/mxUtils.js
Expand Up @@ -451,6 +451,37 @@ var mxUtils =
return result;
},

/**
* Function: addItems
*
* Adds all items from the given array to the given array.
* If an item is an array, then its members are added.
*
* Parameters:
*
* to - Array to add the items to.
* from - Array to add the items from.
*/
addItems: function(to, from)
{
for (var i = 0; i < from.length; i++)
{
if (from[i] != null)
{
if (from[i].constructor == Array)
{
mxUtils.addItems(to, from[i]);
}
else if (mxUtils.indexOf(to, from[i]) < 0)
{
to.push(from[i]);
}
}
}

return to;
},

/**
* Function: isNode
*
Expand Down
Binary file modified src/main/webapp/images/sidebar-azure.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions src/main/webapp/img/lib/azure2/ai_machine_learning/Bonsai.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/main/webapp/img/lib/azure2/ai_machine_learning/Face_APIs.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit dfa7176

Please sign in to comment.