diff --git a/CHANGELOG.md b/CHANGELOG.md index e76d6e0..3cc1130 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.10.0 +### Web +* [Feature] Create new tab from existing node (thanks @YanirLA) +* [Feature] Now "override text node" has a shortcut - ctrl+e +### IDA +* [Feature] Use demangled name instead of original name +* [Feature] Now it's plugin instead of script. See new installation's instructions. +* [Feature] Now clicking a node will make IDA focused. +### Opengrok +* [Rewrite] Rewrite opengrok plugin in typescript +### Sourcegraph +* [Feautre] Support for Java and C/C++! + ## 1.9.0 ### Web * [Feature] Add documentations and downloads to the web frontend. Now you can use `?` to download all backends. diff --git a/backends/Clion/build.gradle.kts b/backends/Clion/build.gradle.kts index 356a9a7..0353cc8 100644 --- a/backends/Clion/build.gradle.kts +++ b/backends/Clion/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } group = "com.yoavst.graffiti" -version = "1.9.0" +version = "1.10.0" repositories { mavenCentral() diff --git a/backends/intellij/build.gradle.kts b/backends/intellij/build.gradle.kts index 1dc1851..9d28721 100644 --- a/backends/intellij/build.gradle.kts +++ b/backends/intellij/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } group = "com.yoavst.graffiti" -version = "1.9.0" +version = "1.10.0" repositories { mavenCentral() diff --git a/backends/opengrok_sourcegraph/package-lock.json b/backends/opengrok_sourcegraph/package-lock.json index d2be58b..12b051f 100644 --- a/backends/opengrok_sourcegraph/package-lock.json +++ b/backends/opengrok_sourcegraph/package-lock.json @@ -1,12 +1,12 @@ { "name": "graffiti_chrome_extension", - "version": "1.0.0", + "version": "1.10.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "graffiti_chrome_extension", - "version": "1.0.0", + "version": "1.10.0", "license": "ISC", "dependencies": { "@lezer/cpp": "^1.1.2", diff --git a/backends/opengrok_sourcegraph/package.json b/backends/opengrok_sourcegraph/package.json index ede0288..b35e74b 100644 --- a/backends/opengrok_sourcegraph/package.json +++ b/backends/opengrok_sourcegraph/package.json @@ -1,6 +1,6 @@ { "name": "graffiti_chrome_extension", - "version": "1.0.0", + "version": "1.10.0", "description": "", "main": "index.js", "scripts": { diff --git a/backends/opengrok_sourcegraph/public/manifest.json b/backends/opengrok_sourcegraph/public/manifest.json index afae89a..ec5fc5e 100644 --- a/backends/opengrok_sourcegraph/public/manifest.json +++ b/backends/opengrok_sourcegraph/public/manifest.json @@ -1,7 +1,7 @@ { "name": "Graffiti for OpenGrok and SourceGraph", "description": "Graffiti support for opengrok and sourcegraph", - "version": "1.9", + "version": "1.10.0", "manifest_version": 3, "icons": { "512": "images/icon.png" diff --git a/backends/vscode/package.json b/backends/vscode/package.json index c725717..9059e14 100644 --- a/backends/vscode/package.json +++ b/backends/vscode/package.json @@ -2,7 +2,7 @@ "name": "graffiti", "displayName": "Graffiti", "description": "Add nodes to call graph directly from VSCode", - "version": "1.9.0", + "version": "1.10.0", "publisher": "yoavst", "icon": "icon.png", "author": { diff --git a/docs/platforms/IDA.md b/docs/platforms/IDA.md index b2dce11..e915c9e 100644 --- a/docs/platforms/IDA.md +++ b/docs/platforms/IDA.md @@ -1,5 +1,5 @@ ## Installation -* Copy `backends/ida/graffiti.py` to ida plugins directory (default for MacOS is `~/.idapro/plugins/`) +* Copy `backends/ida/graffiti.py` to ida plugins directory (default for MacOS/Linux is `~/.idapro/plugins/`, and for windows is `%APPDATA%\Hex-Rays\IDA Pro\plugins`). * Also can clone the repository and add a symlink. diff --git a/version.txt b/version.txt index abb1658..ed21137 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.9.0 \ No newline at end of file +1.10.0 \ No newline at end of file