From 746f6bde4846b74cfc797af0a1a97661b3509b82 Mon Sep 17 00:00:00 2001 From: phil294 Date: Sun, 14 May 2023 10:31:42 +0200 Subject: [PATCH] v0.1.3 --- README.md | 14 ++++++++++++++ package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e95bed..43f622a 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,20 @@ Please consider opening an issue or PR if you think a certain action warrants a Entries usually sorted by importance. +### 0.1.3 2023-05-14 +- [`7f85e51`](https://github.com/phil294/git-log--graph/commit/7f85e51) Keep extension open on vscode restart - so just like any other "editor" (tab), it will keep its position, pin status etc. Not the scroll position within the view though, as it doesn't seem like a good idea (?) +- [`7e0f5c2`](https://github.com/phil294/git-log--graph/commit/7e0f5c2) Fix merging a remote branch: Falsely tried to merge the local counterpart instead +- [`2139e8b`](https://github.com/phil294/git-log--graph/commit/2139e8b) Improve scroll snapping so it's less annoying (#7) +- [`b957be9`](https://github.com/phil294/git-log--graph/commit/b957be9) Make scroll snapping optional with new option `git-log--graph.disable-scroll-snapping` (#7) +- [`8988e6c`](https://github.com/phil294/git-log--graph/commit/8988e6c) Refresh main view on external changes, most notably when doing commits +- [`244f353`](https://github.com/phil294/git-log--graph/commit/244f353) Force single instance: Switches to previously opened instance when attempting to open twice +- [`8c9d8e5`](https://github.com/phil294/git-log--graph/commit/8c9d8e5) Make selected commit side bar's hash selectable again +- [`441a4da`](https://github.com/phil294/git-log--graph/commit/441a4da) Start up slightly later to not slow initial vscode startup down +- [`3fa388e`](https://github.com/phil294/git-log--graph/commit/3fa388e) Fix extension crash when folder loading took too long, and increase timeout for it from 200 to 2000ms +- [`f3fdf62`](https://github.com/phil294/git-log--graph/commit/f3fdf62) Folder detection fallback for when initial folder scan took too long (>2s) +- [`91ca149`](https://github.com/phil294/git-log--graph/commit/91ca149) Fix error message prompt on git log error + + ### 0.1.2 2023-05-11 - [`3024d97`](https://github.com/phil294/git-log--graph/commit/3024d97) Add status bar shortcut (#5), so now you can also click on the `Git Log` menu instead of running the command. - [`bbbaa8f`](https://github.com/phil294/git-log--graph/commit/bbbaa8f) Fix diff view (was the wrong way left/right) diff --git a/package.json b/package.json index 9febd41..35eda30 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "git-log--graph", "description": "git log --graph, an interactive Git Graph frontend", - "version": "0.1.2", + "version": "0.1.3", "icon": "logo.png", "publisher": "phil294", "private": false,