Skip to content

Commit 607b7fe

Browse files
committed
CHANGELOG with new features
1 parent e6c8172 commit 607b7fe

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## [Unreleased]
88

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+
916
## [0.0.16] - 2025-05-07
1017

1118
### Added
@@ -46,7 +53,6 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
4653
and cases after the catch-all are removed as dead code.
4754
- C++ learned `co_yield` and `co_return`
4855
- Python learned `assert`
49-
- Function info and stats to the /render page.
5056

5157
### Fixed
5258

src/render/src/App.svelte

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -433,11 +433,9 @@ onMount(() => {
433433
.controlsContainer {
434434
position: fixed;
435435
display: flex;
436-
justify-content: flex-end;
436+
justify-content: right;
437437
width: 100%;
438-
top: 0;
439-
right: 0;
440-
z-index: 1002;
438+
z-index: 1000;
441439
}
442440
443441
.controls {
@@ -516,9 +514,8 @@ onMount(() => {
516514
flex-direction: column;
517515
align-items: center;
518516
justify-content: center;
519-
width: 100%;
520-
height: 100vh;
521-
overflow: hidden;
517+
width: 100dvw;
518+
height: 100dvh;
522519
}
523520
524521
:global(body), :global(body[data-theme="dark"]) {

0 commit comments

Comments
 (0)