Skip to content

Commit

Permalink
🔖 Version 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yoavst committed Jun 11, 2024
1 parent 54b3800 commit b5d5051
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 12 deletions.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"python.analysis.typeCheckingMode": "basic",
"files.exclude": {
"**/*.class": true,
"**/*.pyc": true,
"**/__pycache__": true,
}
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 1.13.0

### Web

- [Feature] Middle click an arrow to reverse it

### Chrome extension

- [Feature] Support for Gitlab and Github
- [Bug] Support older OpenGrok and SourceGraph
- [Bug] Fix disconnection after 30 seconds of inactivity

### Server

- [Feature] Ignore keepalive messages

## 1.12.0

### Ghidra
Expand Down
2 changes: 1 addition & 1 deletion backends/clion/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.yoavst.graffiti"
version = "1.12.0"
version = "1.13.0"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion backends/ghidra/extension.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name=Graffiti
description=Graffiti support for ghidra
author=Yoav Sternberg
createdOn=2024-05-18
version=1.12.0
version=1.13.0
2 changes: 1 addition & 1 deletion backends/intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.yoavst.graffiti"
version = "1.12.0"
version = "1.13.0"

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions backends/vscode/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 backends/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "graffiti",
"displayName": "Graffiti",
"description": "Add nodes to call graph directly from VSCode",
"version": "1.12.0",
"version": "1.13.0",
"publisher": "yoavst",
"icon": "icon.png",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions backends/websites/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 backends/websites/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graffiti_chrome_extension",
"version": "1.12.0",
"version": "1.13.0",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion backends/websites/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Graffiti for OpenGrok and SourceGraph",
"description": "Graffiti support for opengrok and sourcegraph",
"version": "1.12.0",
"version": "1.13.0",
"manifest_version": 3,
"icons": {
"512": "images/icon.png"
Expand Down
2 changes: 1 addition & 1 deletion server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "graffiti_server"
version = "1.12.0"
version = "1.13.0"
authors = [{ name = "Yoav Sternberg", email = "[email protected]" }]
description = "The MITM server for graffiti"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.12.0
1.13.0

0 comments on commit b5d5051

Please sign in to comment.