Skip to content

Commit

Permalink
24.5.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed Jun 12, 2024
1 parent dab8934 commit 8ee294e
Show file tree
Hide file tree
Showing 14 changed files with 3,140 additions and 3,105 deletions.
18 changes: 10 additions & 8 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,17 @@ Examples of behavior that contributes to creating a positive environment include

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* The use of sexualized language or imagery and unwelcome sexual attention or advances.
* Trolling, insulting/derogatory comments, and personal or political attacks.
* Public or private harassment, including focusing on individual developers when a topic should be broadly addressed.
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting
* Not respecting other people's time
* Being impatient or rude
* Pressing developers for priority fixes or ETAs
* Guilting the developers into focusing on your issue(s)
* Publishing others' private information, such as a physical or electronic address, without explicit permission.
* Other conduct which could reasonably be considered inappropriate in a professional setting.
* Not respecting other people's time.
* Being impatient or rude.
* Pressing developers for priority fixes or ETAs.
* Guilting the developers into focusing on your issue(s).
* Ignoring that a request has been declined and repeating your point over and over .
* "X app has it, why don't you?"
* Repeatedly showing an inappropriate level of entitlement, asking for issue status, or bumping issues.

## Our Responsibilities
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
12-JUN-2024: 24.5.4

- Fixes link to members page for GitLab files [jgraph/drawio#4213]
- Uses current unit in edge start/end/width/size/spacing in Format panel [jgraph/drawio#2993]
- Fixes conflict dialog for deleted files in desktop
- Fixes BPMN group shape in dark mode [jgraph/drawio#4471]

11-JUN-2024: 24.5.3

- Fixes show start screen option [drawio-desktop-1738]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.5.3
24.5.4
2,700 changes: 1,351 additions & 1,349 deletions src/main/webapp/js/app.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/main/webapp/js/diagramly/ElectronApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -970,8 +970,8 @@ mxStencilRegistry.allowEval = false;
'inConflictState', file.inConflictState,
'unwatchedSaves', file.unwatchedSaves);

//File is changed (not just accessed) && File is not already in a conflict state
if (curr.mtimeMs != prev.mtimeMs && !file.inConflictState)
// File not deleted, changed (not just accessed) and not already in conflict state
if (curr.mtimeMs != 0 && curr.mtimeMs != prev.mtimeMs && !file.inConflictState)
{
//Ignore our own changes
if (file.unwatchedSaves || (file.stat != null && file.stat.mtimeMs == curr.mtimeMs))
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/js/diagramly/sidebar/Sidebar-BPMN.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
this.addDataEntry('container swimlane pool vertical', 380, 480, 'Vertical Pool 2',
'xZTfboMgFIefhnv+uGbXtVtv2qSJT0D0pJChGKRT+/Q7Cs5trYk3XS9MON/hJ/CFQERadnsna3W0BRgi3ohInbU+jMouBWMIp7ogYkc4p/gR/r7QZWOX1tJB5dcEeAh8SnOBQE7WmgAb35sIm1aXRlZYbZUvcZc7hsNcaVMcZG8vw1qNl/nHVG0dNPoKp2kj7A86yg4pRYox5zNsYM0HoKzTV1t5aeKMGWTDEvFvrdIeslrmQ7BFgcjiYcB56BaFjCja2IMtwbsep7S68CrMEK9BGlWgzyrGkgnKJoDzd3b2i4Oo+L5ucaP7MFjllK1UfmNr1ZH5/SPHQLwiPw0w/igDyZIB/kQDLPlPBS9LCsQzL8HmgQqwnJ+0sffrxfsC'),
this.createVertexTemplateEntry('swimlane;startSize=20;whiteSpace=wrap;html=1;', 120, 320, 'Lane', 'Vertical Swimlane', null, null, 'swimlane lane pool'),
this.createVertexTemplateEntry('points=[[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];rounded=1;arcSize=10;dashed=1;strokeColor=#000000;fillColor=none;gradientColor=none;dashPattern=8 3 1 3;strokeWidth=2;whiteSpace=wrap;html=1;',
this.createVertexTemplateEntry('points=[[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];rounded=1;arcSize=10;dashed=1;fillColor=none;gradientColor=none;dashPattern=8 3 1 3;strokeWidth=2;whiteSpace=wrap;html=1;',
200, 200, '', 'Group', null, null, this.getTagsForStencil('bpmn', 'group', 'bpmn business process model ').join(' ')),

this.createEdgeTemplateEntry(s5 + 'none;startArrow=none;', ew, eh, '', 'Association', null, dt + 'association'),
Expand Down
Loading

0 comments on commit 8ee294e

Please sign in to comment.