Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Roque
jio
Commits
5d72e7e1
Commit
5d72e7e1
authored
Sep 09, 2019
by
Romain Courteaud
🐙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release 3.40.0
parent
750c352f
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16014 additions
and
18 deletions
+16014
-18
Makefile
Makefile
+1
-1
dist/jio-latest.js
dist/jio-latest.js
+5
-17
dist/jio-v3.40.0.js
dist/jio-v3.40.0.js
+16008
-0
No files found.
Makefile
View file @
5d72e7e1
...
...
@@ -26,7 +26,7 @@ TESTDIR = test
EXAMPLEDIR
=
examples
EXTERNALDIR
=
external
VERSION
=
3.
39
.0
VERSION
=
3.
40
.0
JIOVERSION
=
${DISTDIR}
/jio-v
${VERSION}
.js
JIOLATEST
=
${DISTDIR}
/jio-latest.js
JIONODEVERSION
=
${DISTDIR}
/jio-v
${VERSION}
-node
.js
...
...
dist/jio-latest.js
View file @
5d72e7e1
...
...
@@ -15285,8 +15285,7 @@ return new Parser;
var index = parseInt(
cursor.primaryKey.slice(key_path.length + 1),
10
),
i
;
);
if ((start !== 0) && (index < start_index)) {
// No need to fetch blobs at the start
...
...
@@ -15297,12 +15296,6 @@ return new Parser;
return;
}
i
=
index
-
start_index
;
// Extend array size
while
(
i
>
promise_list
.
length
)
{
promise_list
.
push
(
null
);
i
-=
1
;
}
// Sort the blob by their index
promise_list.splice(
index - start_index,
...
...
@@ -15336,7 +15329,7 @@ return new Parser;
{type: "application/octet-stream"});
index = Math.floor(start / UNITE) * UNITE;
if (end === undefined) {
end
=
blob
.
length
;
end = blob.
size
;
} else {
end = end - index;
}
...
...
@@ -15359,13 +15352,8 @@ return new Parser;
var index = parseInt(
cursor.primaryKey.slice(key_path.length + 1),
10
),
i
=
index
;
// Extend array size
while
(
i
>
array_buffer_list
.
length
)
{
array_buffer_list
.
push
(
null
);
i
-=
1
;
}
);
// Sort the blob by their index
array_buffer_list.splice(
index,
...
...
@@ -15407,7 +15395,7 @@ return new Parser;
blob = new Blob(array_buffer_list,
{type: attachment.info.content_type});
if
(
blob
.
length
!==
attachment
.
info
.
total_
length
)
{
if (blob.
size !== attachment.info.
length) {
throw new jIO.util.jIOError(
"IndexedDB: attachment '" +
buildKeyPath([id, name]) +
...
...
dist/jio-v3.40.0.js
0 → 100644
View file @
5d72e7e1
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment