Notifications settings
We’ve got a lot of feedback about spammy notifications. Now we’re giving notifications configuration power to you, so you can fine-tune events and channels for notifications. Navigate to Settings → Notifications
and click some checkboxes. In fact, you can disable all notifications and even hide Inbox from the left menu completely .
You can also fine tune Watch rules and disable some. For example, you may no longer watch entities you are assigned to automatically.
Bezier curves for connector lines
Now you have the ability to use bezier curves to transform connection lines. This feature is especially useful when you need to create highly curved lines to connect shapes that are far apart in a complex diagram.
Automations: Send email supports attachments
Now you can attach files in Send Email
action.
File can be attached by setting file ids or file names separated by comma. Templates are supported. Here are some examples:
- All files of entity can be send as email attachment by setting template:
{= Files:Id =}
- Formula can be used to send files with specific name. For example
[Step 1 Project].Files.Filter(Name = "My.pdf").Join(Name, ",")
Limitations: Only 10 files can be attached to one email and the file size of each attachment should be less than 5Mb.
Automations: Generate PDF file by treating template as html page
We extended Attach PDF using template
Action. Now it is possible to check an option Treat template as HTML page
and the HTML template will be rendered to PDF as is. This allows to provide custom css styles and use any HTML elements and layout.
NOTE: Markdown is not processed in this case.
Example of HTML Page Template:
<!DOCTYPE html>
<html>
<head>
<style>
body {
padding-top: 200px;
padding-left: 200px;
}
#circle {
width: 300px;
height: 300px;
-webkit-border-radius: 150px;
background: blue;
}
.text {
padding-top: 100px;
font-size: large;
text-align: center;
vertical-align: center;
color: yellow;
}
</style>
<head>
<body>
<div id="circle">
<div class="text">{{Name}}<br/>{{Planned Dates}}</div>
</div>
</body>
</html>
The html above will be rendered to a super-useful PDF like this:
Open Database context menu with right click
We’re making Fibery navigation consistent, so now you can right click on a Database to access its context menu.
Fixed Bugs
- Fields creation results in field already exists but it does not!
- Exception in timeline in attempt to access Backlog
- In case Name has a long value and user does ‘Fit column’ then scroll bar is gone and he is not able to make width smaller
- User who is not yet logged in is met by a barrage of errors
- “[SystemPanel]: Cannot read properties of undefined” error when renaming fields on DB screen
- Calendar view: Card box is bigger than actual event in Day mode