Skip to content

Commit 3bc2d6c

Browse files
[1.5.1] Various fixes and optimizations (#11)
* Fix selection issues * Improved sorting order * Add a progress bar * Extract toggle component * Convert dropdown to Svelte component * Reorder components folder * Update changelog
1 parent beee500 commit 3bc2d6c

27 files changed

Lines changed: 2587 additions & 352 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ yarn.lock
5050
vsc-extension-quickstart.md
5151

5252
**/__pycache__/
53+
.mypy_cache/
54+
.ruff_cache/
5355

5456
# Fichiers temporaires ou backup
5557
*.tmp

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to the **VS Code Aster** extension will be documented in thi
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.5.1] - 2026-03-16
9+
10+
Various fixes and optimizations.
11+
12+
### Added
13+
- Selecting object names in text editors hides all other objects (hence highlighting selected object)
14+
- Progress bar for mesh loading
15+
16+
### Fixed
17+
- Text selection now highlights groups again
18+
- Group sorting order now handles alphanumerical sorting
19+
820
## [1.5.0] - 2026-03-13
921

1022
Rewrote the mesh viewer UI with Svelte, and added new viewer features.

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cff-version: 1.5.0
1+
cff-version: 1.5.1
22
title: VS Code Aster
33
message: >-
44
If you use this software, please cite it using the

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p align="center"><img src="https://raw.githubusercontent.com/simvia-tech/vs-code-aster/main/media/images/simvia.png" alt="Simvia Logo" width="50%" /></p>
22

33
<p align="center">
4-
<a href="/"><img src="https://img.shields.io/badge/version-1.5.0-blue" alt="Version" /></a>
4+
<a href="/"><img src="https://img.shields.io/badge/version-1.5.1-blue" alt="Version" /></a>
55
<a href="./LICENSE"><img src="https://img.shields.io/badge/license-GPL%203.0-green" alt="License" /></a>
66
</p>
77

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The extension aims to reduce friction between modeling, validation, execution, and analysis by bringing **code_aster** native workflows into the editor.
66

7-
## Current Capabilities (v1.5.0)
7+
## Current Capabilities (v1.5.1)
88

99
- `.export` file generator
1010
- 3D mesh viewer

0 commit comments

Comments
 (0)