From e1ccc7a6e045985635b58bf7d69e8697fdedfae3 Mon Sep 17 00:00:00 2001 From: Pier-Jean Malandrino Date: Tue, 7 Apr 2026 08:35:39 +0200 Subject: [PATCH 1/3] Add document size limit (50 MB) to disclaimer banner --- frontend/src/shared/i18n.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/shared/i18n.ts b/frontend/src/shared/i18n.ts index defe902..d2b2ab0 100644 --- a/frontend/src/shared/i18n.ts +++ b/frontend/src/shared/i18n.ts @@ -132,7 +132,7 @@ const messages: Messages = { // Disclaimer 'disclaimer.banner': - 'Instance de d\u00e9monstration \u2014 les documents upload\u00e9s sont partag\u00e9s et temporaires. Ne pas envoyer de fichiers confidentiels.', + 'Instance de d\u00e9monstration \u2014 les documents upload\u00e9s sont partag\u00e9s et temporaires (max 50 Mo). Ne pas envoyer de fichiers confidentiels.', }, en: { 'nav.home': 'Home', @@ -249,7 +249,7 @@ const messages: Messages = { // Disclaimer 'disclaimer.banner': - 'Demo instance \u2014 uploaded documents are shared and temporary. Do not upload confidential files.', + 'Demo instance \u2014 uploaded documents are shared and temporary (max 50 MB). Do not upload confidential files.', }, } From 098ad30596979da6db19e3ae13974066e624a458 Mon Sep 17 00:00:00 2001 From: Pier-Jean Malandrino Date: Tue, 7 Apr 2026 08:53:04 +0200 Subject: [PATCH 2/3] Freeze CHANGELOG for 0.3.0 release --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bebfa8..152901f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to Docling Studio will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/). -## [Unreleased] +## [0.3.0] - 2026-04-07 ### Added From af4400b1f750a9f1eb8317eb52545487a8fe79ad Mon Sep 17 00:00:00 2001 From: Pier-Jean Malandrino Date: Tue, 7 Apr 2026 08:57:39 +0200 Subject: [PATCH 3/3] Add Github badge --- README.md | 1 + frontend/src/shared/ui/AppSidebar.vue | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/README.md b/README.md index 548e3fa..db5b76d 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ ![Node](https://img.shields.io/badge/node-20+-green) ![Docling](https://img.shields.io/badge/powered%20by-Docling-orange) ![CI](https://github.com/scub-france/Docling-Studio/actions/workflows/ci.yml/badge.svg) +[![GitHub Stars](https://img.shields.io/github/stars/scub-france/Docling-Studio?style=flat-square&logo=github&label=Stars)](https://github.com/scub-france/Docling-Studio) A visual document analysis studio powered by [Docling](https://github.com/DS4SD/docling). Upload a PDF, configure the extraction pipeline, and visualize the results — text, tables, images, formulas, bounding boxes — all from your browser. diff --git a/frontend/src/shared/ui/AppSidebar.vue b/frontend/src/shared/ui/AppSidebar.vue index 095890d..80b3bb1 100644 --- a/frontend/src/shared/ui/AppSidebar.vue +++ b/frontend/src/shared/ui/AppSidebar.vue @@ -54,6 +54,18 @@ @@ -140,6 +152,17 @@ defineProps({ overflow: hidden; } +.github-badge { + display: block; + margin-bottom: 8px; + opacity: 0.7; + transition: opacity var(--transition); +} + +.github-badge:hover { + opacity: 1; +} + .version { font-size: 12px; color: var(--text-muted);