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

feature: support decompress and list archive file with password #646

Merged
merged 24 commits into from
Sep 7, 2024

Commits on Sep 1, 2024

  1. Configuration menu
    Copy the full SHA
    9043fbc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2e2233 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3e05417 View commit details
    Browse the repository at this point in the history
  4. style: lint the code

    ttys3 committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    2ae3295 View commit details
    Browse the repository at this point in the history
  5. test: fix warning: use of deprecated macro ui (it's alias, actual i…

    …s insta::assert_display_snapshot): use assert_snapshot!() instead
    ttys3 committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    2fa2852 View commit details
    Browse the repository at this point in the history
  6. chore: fix tests

    ttys3 committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    687662c View commit details
    Browse the repository at this point in the history
  7. style: cargo fmt

    ttys3 committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    86d855b View commit details
    Browse the repository at this point in the history
  8. ci: use newer gcc version for cross target aarch64-unknown-linux-gnu …

    …and armv7-unknown-linux-gnueabihf
    ttys3 committed Sep 1, 2024
    Configuration menu
    Copy the full SHA
    9ff7309 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. Configuration menu
    Copy the full SHA
    c31cf0f View commit details
    Browse the repository at this point in the history
  2. fix(password): update password handling for archives

    Refactor password handling in archive functions to use &[u8] instead of impl AsRef<[u8]>. Include better error reporting for invalid UTF-8 passwords in 7z archives.
    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    287940d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c19edd0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cae0bed View commit details
    Browse the repository at this point in the history
  5. fix: fix windows build

    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    116d0b4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fb4d1d2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5f11600 View commit details
    Browse the repository at this point in the history
  8. fix(archive): handle errors for unsupported formats

    Handle errors for unsupported formats in RAR and 7z archives by returning appropriate error messages.
    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    534d338 View commit details
    Browse the repository at this point in the history
  9. fix: replace UnsupportedFormat error with UnrarError

    Update error handling for unrar-specific issues to use the new UnrarError type.
    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    acc751c View commit details
    Browse the repository at this point in the history
  10. fix(archive): handle mangled zip file names properly

    Replace enclosed_name with mangled_name fallback for robustness.
    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    164f800 View commit details
    Browse the repository at this point in the history
  11. fix(error): return result in list_archive

    Refactor list_archive functions to return results directly for better error handling.
    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    1a52c3c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    0c52765 View commit details
    Browse the repository at this point in the history
  13. refactor(zip): remove redundant password byte conversion

    Simplify password handling by removing platform-specific code and utilizing ByteSlice for all conversions.
    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    a469bc6 View commit details
    Browse the repository at this point in the history
  14. style: cargo fmt

    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    271ac72 View commit details
    Browse the repository at this point in the history
  15. refactor(rar): simplify list_archive logic and remove UnrarError

    Simplify the list_archive function by combining archive creation and listing steps.
    Remove the UnrarError variant from the Error enum as it's no longer used.
    ttys3 committed Sep 6, 2024
    Configuration menu
    Copy the full SHA
    259f854 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    d37d22d View commit details
    Browse the repository at this point in the history