Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history

## v0.2.11
Added a method on Gordon's Stream class to retrieve remaining buffer data
Removed irrelevant comment

## v0.2.10
Framerate value in exported meta data is now matching original files framerate
Jeff version in exported meta data is now dynamic
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jeff",
"description": "Extracts Json meta-data and images from a SWF Flash file.",
"version": "0.2.10",
"version": "0.2.11",
"private": false,
"author": {
"name": "Brice Chevalier",
Expand Down
1 change: 0 additions & 1 deletion src/Gordon/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ SwfParser.prototype = {
// exported, otherwise the number of exported classes can be really high.
// However this function should not appear in this component as it is meant
// to extract regular swf files.
// It should possible to determine the symbols of the swl table from the dofus database

// Special table at the head of a ".swl" file; we did not find why this is useful...
// Maybe to be able to easily look for which symbols are defined in a .swf without
Expand Down
4 changes: 4 additions & 0 deletions src/Gordon/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,10 @@ module.exports = Stream;
self._nBytes = self._buffer.length;
whenDone();
});
},

getRemainingData: function () {
return this._buffer.slice(this.offset);
}
};
})();