Skip to content

Commit

Permalink
Fix import error in unrar/rarvm, v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
codedread committed Dec 9, 2024
1 parent ebfb787 commit 3d98e9b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [1.2.4] - 2024-12-08

### Fixed

- Fixed import error in unrar/rarvm.

## [1.2.3] - 2024-02-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion archive/rarvm.js
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ class VM_PreparedProgram {

/**
*/
class UnpackFilter {
export class UnpackFilter {
constructor() {
/** @type {number} */
this.BlockStart = 0;
Expand Down
3 changes: 2 additions & 1 deletion archive/unrar.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
import { BitStream } from '../io/bitstream.js';
import { ByteStream } from '../io/bytestream.js';
import { ByteBuffer } from '../io/bytebuffer.js';
import { RarVM, VM_GLOBALMEMADDR, VM_GLOBALMEMSIZE, VM_FIXEDGLOBALSIZE, MAXWINMASK } from './rarvm.js';
import { RarVM, UnpackFilter, VM_GLOBALMEMADDR, VM_GLOBALMEMSIZE,
VM_FIXEDGLOBALSIZE, MAXWINMASK } from './rarvm.js';

const UnarchiveState = {
NOT_STARTED: 0,
Expand Down

0 comments on commit 3d98e9b

Please # to comment.