Skip to content

Conversation

@Simpaqt
Copy link
Contributor

@Simpaqt Simpaqt commented Sep 15, 2025

Should clear the issues in 1073

Summary by CodeRabbit

  • Bug Fixes

    • Image previews no longer fail due to a strict dimension pre-check; rendering and fallback behavior unchanged.
  • Chores

    • Fixed a typo in a debug log and adjusted comments/formatting for clarity.
  • Tests

    • Internal test utilities simplified and many tests updated to use the streamlined test helper.

Should clear the issues in 1073
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 15, 2025

Caution

Review failed

The pull request is closed.

Walkthrough

Removed an early positive-dimension pre-check from ImagePreviewWithRenderer; minor comment/formatting edits in kitty helpers; fixed a tmux testsuite log typo; simplified test utilities by changing TeaUpdate signature and replacing TeaUpdateWithErrCheck call sites across many tests. No exported API changes.

Changes

Cohort / File(s) Summary
Image preview flow
src/pkg/file_preview/image_preview.go
Removed the early maxWidth > 0 / maxHeight > 0 validation in ImagePreviewWithRenderer; remaining stat/read/prepare and Kitty/ANSI rendering (with fallback) unchanged.
Kitty helper edits
src/pkg/file_preview/kitty.go
Minor comment change in generateKittyClearCommands and reflow of renderWithKittyUsingTermCap parameter list; no behavioral or signature changes.
Tmux testsuite logging fix
testsuite/core/tmux_manager.py
Fixed debug log message typo in TmuxSPFManager._send_key ("sendind" → "sending").
Test utilities refactor
src/internal/test_utils.go
TeaUpdate signature changed from (tea.Cmd, error)tea.Cmd; removed TeaUpdateWithErrCheck. Call sites updated to use new TeaUpdate.
Unit tests (call-site updates)
src/internal/handle_file_operation_test.go, src/internal/model_file_operations_test.go, src/internal/model_navigation_test.go, src/internal/model_prompt_test.go, src/internal/model_test.go, ...
Replaced TeaUpdateWithErrCheck(...) calls with TeaUpdate(...) across many tests; call semantics adjusted to single-return tea.Cmd (error checking removed).

Sequence Diagram(s)

sequenceDiagram
  autonumber
  participant Caller
  participant ImagePreview as ImagePreviewWithRenderer
  participant FS as FileSystem
  participant Renderer

  Caller->>ImagePreview: Render(path, maxWidth, maxHeight, renderer)
  Note over ImagePreview: Early positive-dimension validation removed
  ImagePreview->>FS: stat(path)
  FS-->>ImagePreview: file info
  ImagePreview->>FS: read file bytes
  FS-->>ImagePreview: bytes
  ImagePreview->>ImagePreview: prepare/validate image size & decode
  alt Terminal supports Kitty/ANSI
    ImagePreview->>Renderer: render via Kitty/ANSI (with fallback)
    Renderer-->>ImagePreview: render result
  else Fallback
    ImagePreview->>Renderer: fallback render
    Renderer-->>ImagePreview: result
  end
  ImagePreview-->>Caller: status/result
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Possibly related issues

Possibly related PRs

Suggested labels

pr needs work

Suggested reviewers

  • yorukot

Poem

I nibbled at checks and let pixels roam,
Tweaked a comment and fixed a log at home.
Tests now call simply, no extra fuss,
Little rabbit hops — previews for us. 🥕🐇

Pre-merge checks and finishing touches

❌ Failed checks (1 inconclusive)
Check name Status Explanation Resolution
Title Check ❓ Inconclusive The PR title "fix(#1073): Tech debt fix" is too generic and does not convey the primary change; the diff removes an early image-dimension validation in src/pkg/file_preview/image_preview.go and also includes minor formatting/comment and logging-typo fixes, so a reviewer cannot tell the main intent from the title alone. Please update the title to clearly state the main change, for example: "Remove early image-dimension validation in image preview (fix #1073)" or "Fix image-preview validation and minor formatting/typo fixes (fix #1073)".
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6e2cb86 and a4c9b1f.

📒 Files selected for processing (6)
  • src/internal/handle_file_operation_test.go (1 hunks)
  • src/internal/model_file_operations_test.go (1 hunks)
  • src/internal/model_navigation_test.go (2 hunks)
  • src/internal/model_prompt_test.go (6 hunks)
  • src/internal/model_test.go (7 hunks)
  • src/internal/test_utils.go (4 hunks)

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

codescene-delta-analysis[bot]

This comment was marked as outdated.

@lazysegtree
Copy link
Collaborator

Can you also apply do go fmt ./... to solve these build errors.

@Simpaqt
Copy link
Contributor Author

Simpaqt commented Sep 18, 2025

Can you also apply do go fmt ./... to solve these build errors.

Yeah I'll do that 👍

go fmt ./...

and removal of alacritty in kitty.go knownterminals
codescene-delta-analysis[bot]

This comment was marked as outdated.

@lazysegtree
Copy link
Collaborator

I will check the lint failures and merge it this weekend

@Simpaqt
Copy link
Contributor Author

Simpaqt commented Sep 18, 2025

Alright 👍

lazysegtree
lazysegtree previously approved these changes Sep 19, 2025
codescene-delta-analysis[bot]

This comment was marked as outdated.

Copy link

@codescene-delta-analysis codescene-delta-analysis bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Health Improved (1 files improve in Code Health)

Gates Passed
3 Quality Gates Passed

See analysis details in CodeScene

View Improvements
File Code Health Impact Categories Improved
image_preview.go 9.10 → 9.39 Complex Method

Quality Gate Profile: The Bare Minimum
Want more control? Customize Code Health rules or catch issues early with our IDE extension and CLI tool.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
src/pkg/file_preview/kitty.go (1)

24-41: Update terminal-capability heuristic — remove iTerm2; mark Konsole partial; keep kitty/WezTerm/Warp with caveats

  • Remove "iTerm2" from knownTerminals — iTerm2 uses OSC 1337/File, not the Kitty graphics protocol (incompatible).
  • Treat "Konsole" as partial support — it implements a subset of Kitty graphics; enable only via runtime probe or explicit opt-in.
  • Keep "kitty" and "xterm-kitty" (reference). Retain "WezTerm" (substantial but not identical support) and "WarpTerminal" (full support added May 14, 2025) but document caveats.
  • Action: either restrict the heuristic to full/native implementers or add a runtime capability probe / user opt-in. Location: src/pkg/file_preview/kitty.go:24-41.
🧹 Nitpick comments (3)
src/pkg/file_preview/kitty.go (3)

114-122: Guard against zero cell size to avoid div-by-zero/NaN sizing.

If PixelsPerRow/Column come back 0 (cap not detected), the ratio math can produce Inf/NaN and 0/huge dims later.

Apply this minimal guard:

   cellSize := p.terminalCap.GetTerminalCellSize()
-  pixelsPerColumn := cellSize.PixelsPerColumn
-  pixelsPerRow := cellSize.PixelsPerRow
+  pixelsPerColumn := cellSize.PixelsPerColumn
+  pixelsPerRow := cellSize.PixelsPerRow
+  if pixelsPerColumn <= 0 || pixelsPerRow <= 0 {
+    slog.Debug("invalid terminal cell size; falling back to 1x1",
+      "pixelsPerColumn", pixelsPerColumn, "pixelsPerRow", pixelsPerRow)
+    if pixelsPerColumn <= 0 {
+      pixelsPerColumn = 1
+    }
+    if pixelsPerRow <= 0 {
+      pixelsPerRow = 1
+    }
+  }

125-135: Clamp computed rows/cols to at least 1.

Extreme aspect ratios can round down to 0 and yield empty output.

   if imgRatio > termRatio {
     dstCols := maxWidth
     dstRows := int(float64(dstCols*pixelsPerColumn) / imgRatio / float64(pixelsPerRow))
+    if dstCols < 1 { dstCols = 1 }
+    if dstRows < 1 { dstRows = 1 }
     opts.DstCols = uint32(dstCols)
     opts.DstRows = uint32(dstRows)
   } else {
     dstRows := maxHeight
     dstCols := int(float64(dstRows*pixelsPerRow) * imgRatio / float64(pixelsPerColumn))
+    if dstRows < 1 { dstRows = 1 }
+    if dstCols < 1 { dstCols = 1 }
     opts.DstRows = uint32(dstRows)
     opts.DstCols = uint32(dstCols)
   }

55-62: Deduplicate ClearKittyImages implementations.

The method repeats the capability check/logic; call the package func instead.

 func (p *ImagePreviewer) ClearKittyImages() string {
-  if !p.IsKittyCapable() {
-    return "" // No need to clear if terminal doesn't support Kitty protocol
-  }
-
-  return generateKittyClearCommands()
+  return ClearKittyImages()
 }
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b8b9e6d and 6e2cb86.

📒 Files selected for processing (2)
  • src/pkg/file_preview/image_preview.go (0 hunks)
  • src/pkg/file_preview/kitty.go (2 hunks)
💤 Files with no reviewable changes (1)
  • src/pkg/file_preview/image_preview.go
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: lazysegtree
PR: yorukot/superfile#0
File: :0-0
Timestamp: 2025-04-12T12:00:32.688Z
Learning: In PR #767 for yorukot/superfile, the focus is on moving code (especially sidebar-related functionality) to a more organized structure without changing functionality. Pre-existing issues should be ignored since the purpose is code reorganization, not fixing existing problems.
Learnt from: lazysegtree
PR: yorukot/superfile#967
File: src/internal/key_function.go:45-47
Timestamp: 2025-08-02T11:47:07.713Z
Learning: lazysegtree prefers to track technical debt and architectural improvements in dedicated GitHub issues when they are identified during PR reviews but are beyond the scope of the current PR, particularly for complex refactoring needs like input handling architecture that would require significant changes.
Learnt from: lazysegtree
PR: yorukot/superfile#1013
File: src/internal/utils/file_utils.go:252-275
Timestamp: 2025-08-24T03:25:10.117Z
Learning: In PR #1013 for yorukot/superfile, when reviewing the ReadFileContent utility function, lazysegtree chose to implement only the parameter renaming fix (filepath → filePath) to avoid shadowing and declined buffer size increases and optional truncation enhancements, preferring to keep the utility function scope focused and avoid over-engineering when the additional features aren't immediately needed.
Learnt from: lazysegtree
PR: yorukot/superfile#963
File: src/internal/handle_file_operations.go:567-570
Timestamp: 2025-07-27T08:49:09.687Z
Learning: lazysegtree prefers to defer technical debt issues like model mutation concerns to later PRs when the current PR has already grown too large, maintaining focus on the primary objectives while acknowledging the need to track such issues for future work.
Learnt from: lazysegtree
PR: yorukot/superfile#1011
File: src/internal/handle_modal.go:145-203
Timestamp: 2025-08-29T13:56:33.955Z
Learning: lazysegtree identified that help menu navigation functions (helpMenuListUp and helpMenuListDown) in src/internal/handle_modal.go are too complicated, can be simplified, are similar to sidebar navigation but inconsistent, and lack unit tests. He prefers to track such technical debt in separate GitHub issues rather than addressing it in the current PR scope.
Learnt from: lazysegtree
PR: yorukot/superfile#1044
File: src/internal/utils/file_utils.go:149-149
Timestamp: 2025-09-09T13:29:11.771Z
Learning: lazysegtree prefers to keep PR scope focused on the primary objectives and considers pre-existing technical debt issues as out of scope for migration/refactoring PRs, preferring to defer such issues to separate GitHub issues rather than expanding the current PR scope.
Learnt from: lazysegtree
PR: yorukot/superfile#1021
File: .gitignore:37-37
Timestamp: 2025-08-27T11:32:17.326Z
Learning: In PR #1021 for yorukot/superfile, the preview panel refactoring created duplicate ImagePreviewer instances (one in defaultModelConfig and another in preview.New()), which caused image preview crashes. The refactoring also renamed SetContextWithRenderText to SetContentWithRenderText, and moved global batCmd to per-instance batCmd initialization, all contributing to crashes during image preview and test failures.
Learnt from: lazysegtree
PR: yorukot/superfile#1021
File: .gitignore:37-37
Timestamp: 2025-08-27T11:32:17.326Z
Learning: In PR #1021 for yorukot/superfile, lazysegtree reported image preview crashes and rename test failures after refactoring FilePreviewPanel to a separate preview package. The crashes were likely caused by: 1) imagePreviewer initialization differences between old global variable and new per-instance creation, 2) method name changes from SetContextWithRenderText to SetContentWithRenderText, and 3) batCmd initialization moving from global to per-instance without preserving the original configuration.
📚 Learning: 2025-09-14T05:34:28.184Z
Learnt from: lazysegtree
PR: yorukot/superfile#841
File: src/pkg/file_preview/kitty.go:78-79
Timestamp: 2025-09-14T05:34:28.184Z
Learning: lazysegtree correctly identified that `\x1b[0m` is an ANSI reset sequence that resets text formatting to default, not a delay command as incorrectly commented in the Kitty graphics protocol clearing code in src/pkg/file_preview/kitty.go.

Applied to files:

  • src/pkg/file_preview/kitty.go
🔇 Additional comments (2)
src/pkg/file_preview/kitty.go (2)

76-77: Correct comment: ESC[0m resets formatting.

Nice fix; this aligns with prior feedback that it’s not a delay escape.


97-98: Signature reflow + trailing comma are fine.

No behavior change; this is gofmt‑friendly for multi‑line params.

@lazysegtree lazysegtree merged commit fc41251 into yorukot:main Sep 19, 2025
6 of 7 checks passed
tmeijn pushed a commit to tmeijn/dotfiles that referenced this pull request Oct 15, 2025
This MR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [yorukot/superfile](https://github.com/yorukot/superfile) | minor | `v1.3.3` -> `v1.4.0` |

MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot).

**Proposed changes to behavior should be submitted there as MRs.**

---

### Release Notes

<details>
<summary>yorukot/superfile (yorukot/superfile)</summary>

### [`v1.4.0`](https://github.com/yorukot/superfile/releases/tag/v1.4.0)

[Compare Source](yorukot/superfile@v1.3.3...v1.4.0)

Hey folks. Releasing v1.4.0 with many new features, improvements, and bug fixes.

We have an async file preview now, a zoxide panel, and various new features improving UX.

#### Install:

[**Click me to know how to install**](https://github.com/yorukot/superfile?tab=readme-ov-file#installation)

#### Highlights

- We have the Zoxide Panel now. Ensure zoxide is installed on your system, set `zoxide_support` to `true` in the config, and press `z` to use zoxide. <img width="645" height="295" alt="Image" src="https://github.com/user-attachments/assets/238f6549-5318-49d1-a3a0-14cf8a686955" />

- File previewing is now async, meaning reduced lag while scrolling through images, or on slow systems.

- Many bug fixes. See 'Detailed Change Summary'

##### Internal Updates

- Most file operations are now truly async with the usage of the recommended `tea.Cmd` pattern.
- Enabled many new linters to improve code quality.
- Moved golangci-lint to v2. Now developers don't need to keep the old v1 in their systems.
- Refactored file preview in its own package for better maintainability and readability.
- Fixed flaky unit tests.

#### Detailed Change Summary

<details><summary>Details</summary>
<p>

##### Update
- feat: File operation via tea cmd [#&#8203;963](yorukot/superfile#963) by @&#8203;lazysegtree
- feat: processbar improvements, package separation, better channel management [#&#8203;973](yorukot/superfile#973) by @&#8203;lazysegtree
- feat: enable lll and recvcheck linter, fix tests, more refactors [#&#8203;977](yorukot/superfile#977) by @&#8203;lazysegtree
- feat: Remove channel for notification models [#&#8203;979](yorukot/superfile#979) by @&#8203;lazysegtree
- feat: enable cyclop, funlen, gocognit, gocyclo linters, and refactor large functions [#&#8203;984](yorukot/superfile#984) by @&#8203;lazysegtree
- feat: Add a new hotkey to handle cd-on-quit whenever needed [#&#8203;924](yorukot/superfile#924) by @&#8203;ahmed-habbachi
- feat: added option to permanently delete files [#&#8203;987](yorukot/superfile#987) by @&#8203;hupender
- feat: Preview panel separation [#&#8203;1021](yorukot/superfile#1021) by @&#8203;lazysegtree
- feat: Add search functionality to help menu [#&#8203;1011](yorukot/superfile#1011) by @&#8203;iZarrios
- feat: Use zoxide lib [#&#8203;1036](yorukot/superfile#1036) by @&#8203;lazysegtree
- feat: Add zoxide directory tracking on navigation [#&#8203;1041](yorukot/superfile#1041) by @&#8203;lazysegtree
- feat: Zoxide integration [#&#8203;1039](yorukot/superfile#1039) by @&#8203;lazysegtree
- feat: Select mode with better feedback [#&#8203;1074](yorukot/superfile#1074) by @&#8203;lazysegtree
- feat: owner/group in the metadata [#&#8203;1093](yorukot/superfile#1093) by @&#8203;xelavopelk
- feat: Async zoxide [#&#8203;1104](yorukot/superfile#1104) by @&#8203;lazysegtree

##### Bug Fix
- fix: sorting in searchbar [#&#8203;985](yorukot/superfile#985) by @&#8203;hupender
- fix: Async rendering, Include clipboard check in paste items, and update linter configs [#&#8203;997](yorukot/superfile#997) by @&#8203;lazysegtree
- fix: Move utility functions to utils package [#&#8203;1012](yorukot/superfile#1012) by @&#8203;lazysegtree
- fix: Refactoring and separation of preview panel and searchbar in help menu [#&#8203;1013](yorukot/superfile#1013) by @&#8203;lazysegtree
- fix(filePanel): allow focusType to be set correctly [#&#8203;1033](yorukot/superfile#1033) by @&#8203;faisal-990
- fix(ci): Update gomod2nix.toml, allow pre release in version output, release 1.4.0-rc1, bug fixes, and improvements [#&#8203;1054](yorukot/superfile#1054) by @&#8203;lazysegtree
- fix(nix): resolve build failures in the nix flake [#&#8203;1068](yorukot/superfile#1068) by @&#8203;Frost-Phoenix
- fix: Retry the file deletion to prevent flakies (#&#8203;938) [#&#8203;1076](yorukot/superfile#1076) by @&#8203;lazysegtree
- fix(issue-1066): Fixed issue where enter was not searchable [#&#8203;1078](yorukot/superfile#1078) by @&#8203;Simpaqt
- fix(#&#8203;1073): Tech debt fix [#&#8203;1077](yorukot/superfile#1077) by @&#8203;Simpaqt
- fix: fix deleted directory not able to remove from pins (#&#8203;1067) [#&#8203;1081](yorukot/superfile#1081) by @&#8203;yorukot
- fix: fix child process spawning attached [#&#8203;1084](yorukot/superfile#1084) by @&#8203;guemidiborhane
- fix: always clear images when showing a FullScreenStyle [#&#8203;1094](yorukot/superfile#1094) by @&#8203;snikoletopoulos
- fix: Allow j and k keys in zoxide [#&#8203;1102](yorukot/superfile#1102) by @&#8203;lazysegtree
- fix: Zoxide improvements and 1.4.0-rc2 [#&#8203;1105](yorukot/superfile#1105) by @&#8203;lazysegtree
- fix: rename cursor beginning on wrong character because of multiple dots in name (#&#8203;813) [#&#8203;1112](yorukot/superfile#1112) by @&#8203;SyedAsadK
- fix: check and fix file panel scroll position on height changes [#&#8203;1095](yorukot/superfile#1095) by @&#8203;snikoletopoulos

##### Optimization
- perf(website): optimize font loading and asset organization [#&#8203;1089](yorukot/superfile#1089) by @&#8203;yorukot

##### Documentation
- docs: fix incorrect zoxide plugin config name [#&#8203;1049](yorukot/superfile#1049) by @&#8203;shree-xvi
- docs(hotkeys): Fix typo in vimHotkeys.toml comments [#&#8203;1080](yorukot/superfile#1080) by @&#8203;wleoncio
- docs: add section for core maintainers in README.md [#&#8203;1088](yorukot/superfile#1088) by @&#8203;yorukot
- chore: add winget install instruction to readme and website [#&#8203;943](yorukot/superfile#943) by @&#8203;claykom

##### Dependencies
- chore(deps): update dependency go to v1.25.0, golangci-lint to v2, golangci-lint actions to v8 [#&#8203;750](yorukot/superfile#750) by @&#8203;renovate[bot]
- chore(deps): update amannn/action-semantic-pull-request action to v6 [#&#8203;1006](yorukot/superfile#1006) by @&#8203;renovate[bot]
- chore(deps): update actions/first-interaction action to v3 [#&#8203;1005](yorukot/superfile#1005) by @&#8203;renovate[bot]
- chore(deps): update actions/checkout action to v5 [#&#8203;1004](yorukot/superfile#1004) by @&#8203;renovate[bot]
- chore(deps): bump astro from 5.10.1 to 5.12.8 [#&#8203;982](yorukot/superfile#982) by @&#8203;dependabot[bot]
- fix(deps): update module golang.org/x/mod to v0.27.0 [#&#8203;989](yorukot/superfile#989) by @&#8203;renovate[bot]
- fix(deps): update dependency @&#8203;expressive-code/plugin-collapsible-sections to v0.41.3 [#&#8203;990](yorukot/superfile#990) by @&#8203;renovate[bot]
- fix(deps): update dependency sharp to v0.34.3 [#&#8203;992](yorukot/superfile#992) by @&#8203;renovate[bot]
- fix(deps): update dependency @&#8203;expressive-code/plugin-line-numbers to v0.41.3 [#&#8203;991](yorukot/superfile#991) by @&#8203;renovate[bot]
- chore(deps): update dependency go to v1.25.0 [#&#8203;994](yorukot/superfile#994) by @&#8203;renovate[bot]
- fix(deps): update astro monorepo [#&#8203;995](yorukot/superfile#995) by @&#8203;renovate[bot]
- fix(deps): update dependency @&#8203;astrojs/starlight to ^0.35.0 [#&#8203;1000](yorukot/superfile#1000) by @&#8203;renovate[bot]
- fix(deps): update module github.com/urfave/cli/v3 to v3.4.1 [#&#8203;1001](yorukot/superfile#1001) by @&#8203;renovate[bot]
- fix(deps): update module golang.org/x/text to v0.28.0 [#&#8203;1003](yorukot/superfile#1003) by @&#8203;renovate[bot]

##### Misc
- chore: migrate from superfile.netlify.app to superfile.dev [#&#8203;1087](yorukot/superfile#1087) by @&#8203;yorukot
- refactor(filepanel): replace filePanelFocusType with isFocused boolean [#&#8203;1040](yorukot/superfile#1040) by @&#8203;faisal-990
- refactor(ansi): Migrate from github.com/charmbracelet/x/exp/term/ansi to github.com/charmbracelet/x/ansi [#&#8203;1044](yorukot/superfile#1044) by @&#8203;faisal-990
- refactor: common operation on pinned directory file using PinnedManager [#&#8203;1085](yorukot/superfile#1085) by @&#8203;Manaswa-S
- test: unit tests for pinned manager [#&#8203;1090](yorukot/superfile#1090) by @&#8203;Manaswa-S

</p>
</details> 

#### New Contributors
* @&#8203;hupender made their first contribution in yorukot/superfile#985
* @&#8203;ahmed-habbachi made their first contribution in yorukot/superfile#924
* @&#8203;iZarrios made their first contribution in yorukot/superfile#1011
* @&#8203;faisal-990 made their first contribution in yorukot/superfile#1033
* @&#8203;shree-xvi made their first contribution in yorukot/superfile#1049
* @&#8203;Simpaqt made their first contribution in yorukot/superfile#1078
* @&#8203;wleoncio made their first contribution in yorukot/superfile#1080
* @&#8203;guemidiborhane made their first contribution in yorukot/superfile#1084
* @&#8203;Manaswa-S made their first contribution in yorukot/superfile#1085
* @&#8203;xelavopelk made their first contribution in yorukot/superfile#1093
* @&#8203;snikoletopoulos made their first contribution in yorukot/superfile#1094
* @&#8203;SyedAsadK made their first contribution in yorukot/superfile#1112

**Full Changelog**: <yorukot/superfile@v1.3.3...v1.4.0>

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this MR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box

---

This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDYuMCIsInVwZGF0ZWRJblZlciI6IjQxLjE0Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiXX0=-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants