Skip to content

Commit b7dfb9f

Browse files
Merge pull request #16 from DHTMLX/next
Next
2 parents f6e06ac + 1c17ebc commit b7dfb9f

File tree

2 files changed

+36
-2
lines changed

2 files changed

+36
-2
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Deploy To Site
66
on:
77
# Triggers the workflow on push or pull request events but only for the master branch
88
push:
9-
branches: [ master, next ]
9+
branches: [ master ]
1010

1111
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1212
jobs:
@@ -41,4 +41,25 @@ jobs:
4141
push: true
4242
tags: registry.webix.io/richtext-docs-alt:${{ steps.vars.outputs.short_ref }}
4343

44-
- run: curl "https://docs.dhtmlx.com/hooks/restart-docker?token=${{ secrets.RESTART_TOKEN }}&project=docs-richtext-alt-${{ steps.vars.outputs.short_ref }}"
44+
- run: curl "https://docs.dhtmlx.com/hooks/restart-docker?token=${{ secrets.RESTART_TOKEN }}&project=docs-richtext-alt-${{ steps.vars.outputs.short_ref }}"
45+
46+
algolia-crawl:
47+
runs-on: ubuntu-latest
48+
needs: build
49+
steps:
50+
- name: Checkout Repo
51+
uses: actions/checkout@v4
52+
53+
- name: Wait for Deployment
54+
run: sleep 30
55+
56+
- name: Algolia Crawler Creation and Crawl
57+
uses: algolia/algoliasearch-crawler-github-actions@v1.0.10
58+
with:
59+
crawler-user-id: ${{ secrets.CRAWLER_USER_ID }}
60+
crawler-api-key: ${{ secrets.CRAWLER_API_KEY }}
61+
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }}
62+
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }}
63+
site-url: 'https://docs.dhtmlx.com/richtext/'
64+
crawler-name: 'RichText Docs Crawler'
65+
override-config: true

docs/news/whats_new.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ title: What's new
44
description: You can explore what's new in DHTMLX RichText and its release history in the documentation of the DHTMLX JavaScript UI library. Browse developer guides and API reference, try out code examples and live demos, and download a free 30-day evaluation version of DHTMLX RichText.
55
---
66

7+
## Version 2.0.3
8+
9+
Released on August 27, 2025
10+
11+
### Fixes
12+
13+
- Clicking on a horizontal line causes a script error
14+
- The default line height is incorrect
15+
- Content styles include duplicate selectors
16+
- Plain text blocks ignore style changes when parsing HTML
17+
- The parser ignores escaped font names in HTML
18+
- The parser ignores `margin-left` and `line-height` properties in HTML
19+
720
## Version 2.0.2
821

922
Released on August 4, 2025

0 commit comments

Comments
 (0)