Skip to content

Commit 3d98e9b

Browse files
committed
Fix import error in unrar/rarvm, v1.2.4
1 parent ebfb787 commit 3d98e9b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [1.2.4] - 2024-12-08
6+
7+
### Fixed
8+
9+
- Fixed import error in unrar/rarvm.
10+
511
## [1.2.3] - 2024-02-04
612

713
### Added

archive/rarvm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ class VM_PreparedProgram {
336336

337337
/**
338338
*/
339-
class UnpackFilter {
339+
export class UnpackFilter {
340340
constructor() {
341341
/** @type {number} */
342342
this.BlockStart = 0;

archive/unrar.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
import { BitStream } from '../io/bitstream.js';
1515
import { ByteStream } from '../io/bytestream.js';
1616
import { ByteBuffer } from '../io/bytebuffer.js';
17-
import { RarVM, VM_GLOBALMEMADDR, VM_GLOBALMEMSIZE, VM_FIXEDGLOBALSIZE, MAXWINMASK } from './rarvm.js';
17+
import { RarVM, UnpackFilter, VM_GLOBALMEMADDR, VM_GLOBALMEMSIZE,
18+
VM_FIXEDGLOBALSIZE, MAXWINMASK } from './rarvm.js';
1819

1920
const UnarchiveState = {
2021
NOT_STARTED: 0,

0 commit comments

Comments
 (0)