Skip to content

Commit dbe1c83

Browse files
authored
fix(plugin): downloader/updater progress (#49)
* fix(plugin): downloader/updater progress There was more than one race-condition and we fired the updates quite rapidly, they are now throttled to roughly once every 3 seconds. * fix(plugin): download/update-progress was firing way too rapidly and also reporting weird progress due to more than one race-condition.
1 parent ecc8d8d commit dbe1c83

3 files changed

Lines changed: 420 additions & 79 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ See: [lazy.nvim](https://github.com/folke/lazy.nvim)
7777
```lua
7878
{
7979
'mistweaverco/snap.nvim',
80-
version = 'v1.4.0',
80+
version = 'v1.4.1',
8181
---@type SnapUserConfig
8282
opts = {}
8383
},
@@ -93,7 +93,7 @@ See: [packer.nvim](https://github.com/wbthomason/packer.nvim)
9393
```lua
9494
use {
9595
'mistweaverco/snap.nvim',
96-
tag = 'v1.4.0',
96+
tag = 'v1.4.1',
9797
config = function()
9898

9999
---@type SnapUserConfig
@@ -112,7 +112,7 @@ use {
112112
```lua
113113
vim.pack.add({
114114
src = 'https://github.com/mistweaverco/snap.nvim.git',
115-
version = 'v1.4.0',
115+
version = 'v1.4.1',
116116
})
117117
---@type SnapUserConfig
118118
local cfg = {}
@@ -244,7 +244,7 @@ This would then translate to the following `font_settings`:
244244
```lua
245245
return {
246246
"mistweaverco/snap.nvim",
247-
version = 'v1.4.0',
247+
version = 'v1.4.1',
248248
---@type SnapUserConfig
249249
opts = {
250250
template = "linux",
@@ -373,7 +373,7 @@ by running `bun install` in the plugin directory.
373373
```lua
374374
{
375375
'mistweaverco/snap.nvim',
376-
version = 'v1.4.0',
376+
version = 'v1.4.1',
377377
opts = {
378378
timeout = 5000, -- Timeout for screenshot command in milliseconds
379379
log_level = "error", -- Log level for debugging (e.g., "trace", "debug", "info", "warn", "error", "off")

0 commit comments

Comments
 (0)