Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2cde12d
Various changes to begin work on v1.5.0
ulysse-bouchet-simvia Mar 6, 2026
de8a010
Improve filter popup
ulysse-bouchet-simvia Mar 6, 2026
e1c36ff
Improve zoom and rendering options
ulysse-bouchet-simvia Mar 6, 2026
526f56f
Switch viewer to Svelte
ulysse-bouchet-simvia Mar 10, 2026
2690871
Fix bugs
ulysse-bouchet-simvia Mar 11, 2026
7c718ea
Fix selection bug
ulysse-bouchet-simvia Mar 12, 2026
5e3d5e2
Add "hide all other objects" button on object right click
ulysse-bouchet-simvia Mar 12, 2026
1fb4c6f
Revamp help popup
ulysse-bouchet-simvia Mar 12, 2026
cb750ac
Update settings popup
ulysse-bouchet-simvia Mar 13, 2026
2dc8440
Add pre-commits and CI checks for linting and formatting
ulysse-bouchet-simvia Mar 13, 2026
e34f30a
Edit CI
ulysse-bouchet-simvia Mar 13, 2026
7fbfdf2
Fix styling errors
ulysse-bouchet-simvia Mar 13, 2026
41949b5
Fix linting errors
ulysse-bouchet-simvia Mar 13, 2026
5b3680c
Improve tailwind theme
ulysse-bouchet-simvia Mar 13, 2026
1731741
Fix style error
ulysse-bouchet-simvia Mar 13, 2026
0fd888f
Reorganise folders
ulysse-bouchet-simvia Mar 13, 2026
dd5a697
Update resources links
ulysse-bouchet-simvia Mar 13, 2026
ace6408
Use toggle component in groups popup
ulysse-bouchet-simvia Mar 13, 2026
02a02db
Fix groups with same name in same object
ulysse-bouchet-simvia Mar 13, 2026
9e3b0f1
Update Changelog.md
ulysse-bouchet-simvia Mar 13, 2026
60d27ca
Fix selection issues
ulysse-bouchet-simvia Mar 16, 2026
c3e819e
Improved sorting order
ulysse-bouchet-simvia Mar 16, 2026
05d402b
Add a progress bar
ulysse-bouchet-simvia Mar 16, 2026
cecc844
Extract toggle component
ulysse-bouchet-simvia Mar 16, 2026
851a664
Convert dropdown to Svelte component
ulysse-bouchet-simvia Mar 16, 2026
a718679
Reorder components folder
ulysse-bouchet-simvia Mar 16, 2026
71c0007
Update changelog
ulysse-bouchet-simvia Mar 16, 2026
e98015f
Merge branch 'main' into dev
ulysse-bouchet-simvia Mar 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ yarn.lock
vsc-extension-quickstart.md

**/__pycache__/
.mypy_cache/
.ruff_cache/

# Fichiers temporaires ou backup
*.tmp
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to the **VS Code Aster** extension will be documented in thi
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.5.1] - 2026-03-16

Various fixes and optimizations.

### Added
- Selecting object names in text editors hides all other objects (hence highlighting selected object)
- Progress bar for mesh loading

### Fixed
- Text selection now highlights groups again
- Group sorting order now handles alphanumerical sorting

## [1.5.0] - 2026-03-13

Rewrote the mesh viewer UI with Svelte, and added new viewer features.
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cff-version: 1.5.0
cff-version: 1.5.1
title: VS Code Aster
message: >-
If you use this software, please cite it using the
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<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>

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

Expand Down
2 changes: 1 addition & 1 deletion ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

The extension aims to reduce friction between modeling, validation, execution, and analysis by bringing **code_aster** native workflows into the editor.

## Current Capabilities (v1.5.0)
## Current Capabilities (v1.5.1)

- `.export` file generator
- 3D mesh viewer
Expand Down
Loading
Loading