Skip to content

Commit

Permalink
Releasing vis-1.129.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phanlezz committed Oct 17, 2024
1 parent ef6427e commit dcad73e
Show file tree
Hide file tree
Showing 17 changed files with 74 additions and 37 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<p align="center">
Latest Release: <br>
Analysis <a href="https://github.com/MaibornWolff/codecharta/releases/tag/ana-1.127.0">1.127.0</a> | Visualization <a href="https://github.com/MaibornWolff/codecharta/releases/tag/vis-1.128.0">1.128.0</a>
Analysis <a href="https://github.com/MaibornWolff/codecharta/releases/tag/ana-1.127.0">1.127.0</a> | Visualization <a href="https://github.com/MaibornWolff/codecharta/releases/tag/vis-1.129.0">1.129.0</a>

[comment]: ##################################################################################
[comment]: <Ensure that the words 'latest release' are above the line with the links>
Expand Down
35 changes: 35 additions & 0 deletions gh-pages/_posts/release/2024-10-17-vis_1_129_0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
categories:
- Release
- Release-Visualization
tags:
- gh-pages
- release
- visualization

title: Visualization version 1.129.0
---

{{page.title}} is live and ready for [download](https://github.com/MaibornWolff/codecharta/releases/tag/vis-1.129.0).
This version brings the following:

### Added 🚀

- Add thousands separation for big numbers [#3758](https://github.com/MaibornWolff/codecharta/pull/3758)
- Add popup when comparing files with different complexity metrics [#3773](https://github.com/MaibornWolff/codecharta/pull/3773)
- Add experimental feature: dynamic floor lable height for large maps [#3778](https://github.com/MaibornWolff/codecharta/pull/3778)

### Fixed 🐞

- Remove horizontal scrollbar in the File/ Node Explorer dropdown and styling fixes [#3765](https://github.com/MaibornWolff/codecharta/pull/3765)
- Fix issue when multiple files are selected then the edge metrics in the primary metrics section are not displayed correctly. [#3753](https://github.com/MaibornWolff/codecharta/pull/3753)
- Metric Scenarios (before Metric Templates) are available again [#3762](https://github.com/MaibornWolff/codecharta/pull/3762)
- Legend Panel closes on outside click [#3770](https://github.com/MaibornWolff/codecharta/pull/3770)

### Changed

- Renaming of Metric Templates to Metric Scenarios [#3656](https://github.com/MaibornWolff/codecharta/pull/3656)

### Chore 👨‍💻 👩‍💻

- Enable View Encapsulation for components in the ribbon bar [#3779](https://github.com/MaibornWolff/codecharta/pull/3779)
2 changes: 1 addition & 1 deletion gh-pages/visualization/app/3rdpartylicenses.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,7 @@ three
MIT
The MIT License

Copyright © 2010-2023 three.js authors
Copyright © 2010-2024 three.js authors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 5 additions & 5 deletions gh-pages/visualization/app/codeCharta/assets/sample1.cc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"attributes": {
"rloc": 400,
"functions": 10,
"complexity": 100,
"sonar_complexity": 100,
"pairingRate": 32,
"avgCommits": 17
},
Expand All @@ -26,7 +26,7 @@
"attributes": {
"rloc": 100,
"functions": 10,
"complexity": 1,
"sonar_complexity": 1,
"pairingRate": 77,
"avgCommits": 56
},
Expand All @@ -43,7 +43,7 @@
"attributes": {
"rloc": 30,
"functions": 100,
"complexity": 100,
"sonar_complexity": 100,
"pairingRate": 60,
"avgCommits": 51
}
Expand All @@ -54,7 +54,7 @@
"attributes": {
"rloc": 70,
"functions": 1000,
"complexity": 10,
"sonar_complexity": 10,
"pairingRate": 65,
"avgCommits": 22
}
Expand Down Expand Up @@ -91,7 +91,7 @@
}
],
"attributeTypes": {
"nodes": { "rloc": "absolute", "functions": "absolute", "complexity": "absolute", "pairingRate": "relative" },
"nodes": { "rloc": "absolute", "functions": "absolute", "sonar_complexity": "absolute", "pairingRate": "relative" },
"edges": { "pairingRate": "relative", "avgCommits": "absolute" }
}
}
10 changes: 5 additions & 5 deletions gh-pages/visualization/app/codeCharta/assets/sample2.cc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
"name": "bigLeaf.ts",
"type": "File",
"attributes": { "rloc": 120, "functions": 10, "complexity": 1 },
"attributes": { "rloc": 120, "functions": 10, "sonar_complexity": 1 },
"link": "http://www.google.de"
},
{
Expand All @@ -22,17 +22,17 @@
{
"name": "smallLeaf.html",
"type": "File",
"attributes": { "rloc": 30, "functions": 101, "complexity": 80 }
"attributes": { "rloc": 30, "functions": 101, "sonar_complexity": 80 }
},
{
"name": "otherSmallLeaf.ts",
"type": "File",
"attributes": { "rloc": 70, "functions": 10, "complexity": 100 }
"attributes": { "rloc": 70, "functions": 10, "sonar_complexity": 100 }
},
{
"name": "sample2LeafMergedIn.kt",
"type": "File",
"attributes": { "rloc": 600, "functions": 10, "complexity": 1 },
"attributes": { "rloc": 600, "functions": 10, "sonar_complexity": 1 },
"link": "http://www.google.de"
}
]
Expand All @@ -41,6 +41,6 @@
}
],
"attributeTypes": {
"nodes": { "rloc": "absolute", "functions": "absolute", "complexity": "absolute" }
"nodes": { "rloc": "absolute", "functions": "absolute", "sonar_complexity": "absolute" }
}
}
8 changes: 4 additions & 4 deletions gh-pages/visualization/app/codeCharta/assets/sample3.cc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
"name": "bigLeaf.ts",
"type": "File",
"attributes": { "rloc": 120, "functions": 10, "complexity": 1 },
"attributes": { "rloc": 120, "functions": 10, "sonar_complexity": 1 },
"link": "http://www.google.de"
},
{
Expand All @@ -22,19 +22,19 @@
{
"name": "smallLeaf.html",
"type": "File",
"attributes": { "rloc": 30, "functions": 19, "complexity": 80 }
"attributes": { "rloc": 30, "functions": 19, "sonar_complexity": 80 }
},
{
"name": "otherSmallLeaf.ts",
"type": "File",
"attributes": { "rloc": 80, "functions": 10, "complexity": 100 }
"attributes": { "rloc": 80, "functions": 10, "sonar_complexity": 100 }
}
]
}
]
}
],
"attributeTypes": {
"nodes": { "rloc": "absolute", "functions": "absolute", "complexity": "absolute" }
"nodes": { "rloc": "absolute", "functions": "absolute", "sonar_complexity": "absolute" }
}
}
10 changes: 5 additions & 5 deletions gh-pages/visualization/app/codeCharta/assets/sample4.cc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{
"name": "aLeaf.ts",
"type": "File",
"attributes": { "rloc": 120, "functions": 10, "complexity": 1 },
"attributes": { "rloc": 120, "functions": 10, "sonar_complexity": 1 },
"link": "http://www.google.de"
},
{
Expand All @@ -22,24 +22,24 @@
{
"name": "smallLeafOne.html",
"type": "File",
"attributes": { "rloc": 100, "functions": 28, "complexity": 80 }
"attributes": { "rloc": 100, "functions": 28, "sonar_complexity": 80 }
},
{
"name": "smallLeafTwo.ts",
"type": "File",
"attributes": { "rloc": 300, "functions": 5, "complexity": 150 }
"attributes": { "rloc": 300, "functions": 5, "sonar_complexity": 150 }
},
{
"name": "smallLeafThree.ts",
"type": "File",
"attributes": { "rloc": 50, "functions": 5, "complexity": 150 }
"attributes": { "rloc": 50, "functions": 5, "sonar_complexity": 150 }
}
]
}
]
}
],
"attributeTypes": {
"nodes": { "rloc": "absolute", "functions": "absolute", "complexity": "absolute" }
"nodes": { "rloc": "absolute", "functions": "absolute", "sonar_complexity": "absolute" }
}
}
6 changes: 3 additions & 3 deletions gh-pages/visualization/app/codeCharta/assets/scenarios.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"appSettings": { },
"dynamicSettings": {
"areaMetric": "rloc",
"heightMetric": "complexity",
"colorMetric": "complexity",
"heightMetric": "sonar_complexity",
"colorMetric": "sonar_complexity",
"distributionMetric": "rloc"
}
}
Expand All @@ -29,7 +29,7 @@
"appSettings": { },
"dynamicSettings": {
"areaMetric": "rloc",
"heightMetric": "complexity",
"heightMetric": "sonar_complexity",
"colorMetric": "line_coverage",
"distributionMetric": "rloc"
}
Expand Down
4 changes: 2 additions & 2 deletions gh-pages/visualization/app/index.html

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions gh-pages/visualization/app/main.2c27668d7842f1eb.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion gh-pages/visualization/app/main.d70814d22d4fef20.js

This file was deleted.

6 changes: 3 additions & 3 deletions gh-pages/visualization/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/MaibornWolff/codecharta.git"
},
"name": "codecharta-visualization",
"version": "1.128.0",
"version": "1.129.0",
"engines": {
"node": ">=20"
},
Expand Down Expand Up @@ -99,7 +99,7 @@
"rxjs": "^7.5.1",
"safe-stable-stringify": "^2.4.3",
"shelljs": "^0.8.4",
"three": "^0.156.0",
"three": "^0.168.0",
"three-orbit-controls": "^82.1.0",
"typescript-json-schema": "0.63.0",
"zone.js": "^0.14.4"
Expand All @@ -120,7 +120,7 @@
"@types/expect-puppeteer": "^5.0.2",
"@types/jest-environment-puppeteer": "^5.0.3",
"@types/node": "^18.0.0",
"@types/three": "^0.156.0",
"@types/three": "^0.168.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"bestzip": "^2.2.0",
Expand Down
4 changes: 4 additions & 0 deletions gh-pages/visualization/app/styles.1d01e7e545a3b4a5.css

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions gh-pages/visualization/app/styles.e0f6aac8213a8ff5.css

This file was deleted.

2 changes: 2 additions & 0 deletions visualization/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/)

## [unreleased] (Added 🚀 | Changed | Removed 🗑 | Fixed 🐞 | Chore 👨‍💻 👩‍💻)

## [1.129.0] - 2024-10-17

### Added 🚀

- Add thousands separation for big numbers [#3758](https://github.com/MaibornWolff/codecharta/pull/3758)
Expand Down
4 changes: 2 additions & 2 deletions visualization/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion visualization/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/MaibornWolff/codecharta.git"
},
"name": "codecharta-visualization",
"version": "1.128.0",
"version": "1.129.0",
"engines": {
"node": ">=20"
},
Expand Down

0 comments on commit dcad73e

Please sign in to comment.