-
Notifications
You must be signed in to change notification settings - Fork 0
fix(text-wrapper): prevent boundary word duplication in line wrapping #81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Cadons
merged 8 commits into
main
from
80-text-wrapping-duplicates-content-when-a-multi-word-textcell-needs-to-wrap-regression-vs-b386ee8
Aug 16, 2026
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ce6f7e1
fix(text-wrapper): prevent boundary word duplication in line wrapping
Cadons 5f0fcc1
fix(loom-table): stop table columns overflowing available width
Cadons e4f18c7
fix(loom-rectangle): clip children to rectangle bounds when rendering
Cadons 22cfed4
refactor(loom-rendering): extract paint_children_clipped_to_frame
Cadons b730c6a
feat(docs): modularize documentation workflows with separate YAML files
Cadons bb144ab
ci(docs): update permissions for documentation workflows
Cadons 9e451c2
ci(docs): update Python dependencies and permissions in documentation…
Cadons da77a0a
fix(requirements): downgrade sphinx to version 9.0.4
Cadons File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| name: Build Documentation | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| upload-artifact: | ||
| description: 'Upload the built docs as a GitHub Pages artifact' | ||
| type: boolean | ||
| default: false | ||
|
|
||
| jobs: | ||
| build-docs: | ||
| runs-on: ubuntu-latest | ||
| name: Build documentation (Sphinx + Doxygen) | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
|
|
||
| - name: Install system dependencies | ||
| run: | | ||
| sudo apt-get update | ||
| sudo apt-get install -y doxygen graphviz | ||
|
|
||
| - name: Install Python dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip==26.2.1 | ||
| pip install --only-binary :all: -r doc/requirements.txt | ||
|
Check warning on line 35 in .github/workflows/docs-build.yml
|
||
|
|
||
| - name: Build documentation | ||
| run: | | ||
| cd doc | ||
| sphinx-build -b html source build/html -W --keep-going | ||
|
|
||
| - name: Upload GitHub Pages artifact | ||
| if: inputs.upload-artifact | ||
| uses: actions/upload-pages-artifact@v3 | ||
| with: | ||
| path: doc/build/html/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| name: Documentation Deploy | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| paths: | ||
| - 'doc/**' | ||
| - 'docraft/include/**' | ||
| - '.github/workflows/docs-deploy.yml' | ||
| - '.github/workflows/docs-build.yml' | ||
| workflow_dispatch: | ||
|
|
||
| concurrency: | ||
| group: pages | ||
| cancel-in-progress: false | ||
|
|
||
| permissions: | ||
| contents: read | ||
| packages: read | ||
| jobs: | ||
| build-docs: | ||
| uses: ./.github/workflows/docs-build.yml | ||
| with: | ||
| upload-artifact: true | ||
|
|
||
| deploy-docs: | ||
| needs: build-docs | ||
| runs-on: ubuntu-latest | ||
| name: Deploy documentation to GitHub Pages | ||
|
|
||
| permissions: | ||
| pages: write | ||
| id-token: write | ||
|
|
||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
|
|
||
| steps: | ||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v4 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,73 +1,18 @@ | ||
| name: Documentation | ||
|
|
||
| on: | ||
| push: | ||
| branches: [main] | ||
| paths: | ||
| - 'doc/**' | ||
| - 'docraft/include/**' | ||
| - '.github/workflows/docs.yml' | ||
| pull_request: | ||
| branches: [main, dev] | ||
| paths: | ||
| - 'doc/**' | ||
| - 'docraft/include/**' | ||
| - '.github/workflows/docs.yml' | ||
| - '.github/workflows/docs-build.yml' | ||
| workflow_dispatch: | ||
|
|
||
| concurrency: | ||
| group: pages | ||
| cancel-in-progress: false | ||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| build-docs: | ||
| runs-on: ubuntu-latest | ||
| name: Build documentation (Sphinx + Doxygen) | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
|
|
||
| - name: Install system dependencies | ||
| run: | | ||
| sudo apt-get update | ||
| sudo apt-get install -y doxygen graphviz | ||
|
|
||
| - name: Install Python dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install -r doc/requirements.txt | ||
|
|
||
| - name: Build documentation | ||
| run: | | ||
| cd doc | ||
| sphinx-build -b html source build/html -W --keep-going | ||
|
|
||
| - name: Upload GitHub Pages artifact | ||
| uses: actions/upload-pages-artifact@v3 | ||
| with: | ||
| path: doc/build/html/ | ||
|
|
||
| deploy-docs: | ||
| if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
| needs: build-docs | ||
| runs-on: ubuntu-latest | ||
| name: Deploy documentation to GitHub Pages | ||
|
|
||
| permissions: | ||
| pages: write | ||
| id-token: write | ||
|
|
||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
|
|
||
| steps: | ||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v4 | ||
|
|
||
| uses: ./.github/workflows/docs-build.yml | ||
|
github-advanced-security[bot] marked this conversation as resolved.
Fixed
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| sphinx | ||
| breathe | ||
| sphinx_rtd_theme | ||
| sphinx-design | ||
| sphinx-sitemap | ||
| sphinxext-opengraph | ||
| sphinx==9.0.4 | ||
| breathe==4.36.0 | ||
| sphinx_rtd_theme==3.1.0 | ||
| sphinx-design==0.7.0 | ||
| sphinx-sitemap==2.9.0 | ||
| sphinxext-opengraph==0.13.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.