Merge pull request #45 from scub-france/feature/github-tag
Feature/GitHub tag
This commit is contained in:
commit
2919687202
4 changed files with 27 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||

|
||||

|
||||

|
||||
[](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.
|
||||
|
|
|
|||
|
|
@ -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.',
|
||||
},
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -54,6 +54,18 @@
|
|||
</nav>
|
||||
|
||||
<div class="sidebar-footer">
|
||||
<a
|
||||
class="github-badge"
|
||||
href="https://github.com/scub-france/Docling-Studio"
|
||||
target="_blank"
|
||||
rel="noopener"
|
||||
>
|
||||
<img
|
||||
src="https://img.shields.io/github/stars/scub-france/Docling-Studio?style=social"
|
||||
alt="GitHub Stars"
|
||||
height="20"
|
||||
/>
|
||||
</a>
|
||||
<span class="version">v{{ version }}</span>
|
||||
</div>
|
||||
</aside>
|
||||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue