File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
6
6
7
7
## [ Unreleased]
8
8
9
+ ### Added
10
+
11
+ - Function name extraction with support for multiple programming languages.
12
+ - Unit tests for function name extraction, covering various structures and languages.
13
+ - Frontend logic in ` render/src/App.svelte ` to extract and display metadata based on render type.
14
+ - Display of both CFG and function metadata in the GitHub render view, and CFG metadata in the Graph render view.
15
+
9
16
## [ 0.0.16] - 2025-05-07
10
17
11
18
### Added
@@ -46,7 +53,6 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
46
53
and cases after the catch-all are removed as dead code.
47
54
- C++ learned ` co_yield ` and ` co_return `
48
55
- Python learned ` assert `
49
- - Function info and stats to the /render page.
50
56
51
57
### Fixed
52
58
Original file line number Diff line number Diff line change @@ -433,11 +433,9 @@ onMount(() => {
433
433
.controlsContainer {
434
434
position : fixed ;
435
435
display : flex ;
436
- justify-content : flex-end ;
436
+ justify-content : right ;
437
437
width : 100% ;
438
- top : 0 ;
439
- right : 0 ;
440
- z-index : 1002 ;
438
+ z-index : 1000 ;
441
439
}
442
440
443
441
.controls {
@@ -516,9 +514,8 @@ onMount(() => {
516
514
flex-direction : column ;
517
515
align-items : center ;
518
516
justify-content : center ;
519
- width : 100% ;
520
- height : 100vh ;
521
- overflow : hidden ;
517
+ width : 100 dvw;
518
+ height : 100 dvh;
522
519
}
523
520
524
521
:global(body ), :global(body [data-theme = " dark" ]) {
You can’t perform that action at this time.
0 commit comments