Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update master -> main, re-configure defaults #492

Merged
merged 5 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Linting
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main

permissions:
checks: write
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# SVN Blamer

A Visual Studio Code extension to SVN blame files.
When run, this extension will place an icon next to each line of your file. Each differently-coloured icon means a different revision. Hovering a line will display a tooltip, showing the committer, date, and message. Blame data will also display inline.
When run, this extension will place an icon next to each line of your file. Each icon colour refers to a different revision. Hovering a line will display a tooltip, showing the committer, date, and message. Blame data will also display inline.

<img src="src/img/marketplace/example.gif" width="700">

Expand Down Expand Up @@ -56,8 +56,8 @@ This extension contributes the following commands to the Command palette.

| Setting | Description | Default value |
| ---------------------------- | ----------------------------------------------------------------- | ------------- |
| **Auto Blame** | Automatically blames files as you open them. | `true` |
| **Enable Details** | Fetches and displays revision log data in the popup. | `false` |
| **Auto Blame** | Automatically blames files as you open them. | `false` |
| **Enable Logs** | Fetches and displays revision log data in the popup. | `true` |
| **Enable Visual Indicators** | Toggle visual indicators that sit to the left of the line number. | `true` |
| **SVN Executable Path** | Path to svn executable or alternative command. | `"svn"` |

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,24 +50,24 @@
"type": "object",
"properties": {
"svnBlamer.autoBlame": {
"default": true,
"default": false,
"description": "Automatically blames files as you open them.",
"type": "boolean"
},
"svnBlamer.enableLogs": {
"default": false,
"default": true,
"description": "Enables popup revision log data. Disabling this setting will significantly speed up blame.",
"type": "boolean"
},
"svnBlamer.svnExecutablePath": {
"type": "string",
"default": "svn",
"description": "Path to svn executable or alternative command"
},
"svnBlamer.enableVisualIndicators": {
"default": true,
"description": "Enable/Disable visual indicators that sit to the left of the line number.",
"type": "boolean"
},
"svnBlamer.svnExecutablePath": {
"type": "string",
"default": "svn",
"description": "Path to svn executable or alternative command"
}
}
},
Expand Down
Binary file removed src/img/marketplace/example.mp4
Binary file not shown.
Loading