Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xxdk-wasm
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elixxir
xxdk-wasm
Commits
5222eebb
Commit
5222eebb
authored
2 years ago
by
Jono Wenger
Browse files
Options
Downloads
Patches
Plain Diff
Increase version and add versions to web workers
parent
09e0827f
No related branches found
No related tags found
2 merge requests
!67
fix for latest client release
,
!52
XX-4382 / Move indexedDb databases to web workers
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
indexedDb/impl/channels/main.go
+4
-0
4 additions, 0 deletions
indexedDb/impl/channels/main.go
indexedDb/impl/dm/main.go
+4
-0
4 additions, 0 deletions
indexedDb/impl/dm/main.go
storage/version.go
+1
-1
1 addition, 1 deletion
storage/version.go
with
9 additions
and
1 deletion
indexedDb/impl/channels/main.go
+
4
−
0
View file @
5222eebb
...
...
@@ -17,11 +17,15 @@ import (
"syscall/js"
)
// SEMVER is the current semantic version of the xxDK channels web worker.
const
SEMVER
=
"0.1.0"
func
init
()
{
// Set up Javascript console listener set at level INFO
ll
:=
wasm
.
NewJsConsoleLogListener
(
jww
.
LevelInfo
)
jww
.
SetLogListeners
(
ll
.
Listen
)
jww
.
SetStdoutThreshold
(
jww
.
LevelFatal
+
1
)
jww
.
INFO
.
Printf
(
"xxDK channels web worker version: v%s"
,
SEMVER
)
}
func
main
()
{
...
...
This diff is collapsed.
Click to expand it.
indexedDb/impl/dm/main.go
+
4
−
0
View file @
5222eebb
...
...
@@ -17,11 +17,15 @@ import (
"syscall/js"
)
// SEMVER is the current semantic version of the xxDK DM web worker.
const
SEMVER
=
"0.1.0"
func
init
()
{
// Set up Javascript console listener set at level INFO
ll
:=
wasm
.
NewJsConsoleLogListener
(
jww
.
LevelInfo
)
jww
.
SetLogListeners
(
ll
.
Listen
)
jww
.
SetStdoutThreshold
(
jww
.
LevelFatal
+
1
)
jww
.
INFO
.
Printf
(
"xxDK DM web worker version: v%s"
,
SEMVER
)
}
func
main
()
{
...
...
This diff is collapsed.
Click to expand it.
storage/version.go
+
1
−
1
View file @
5222eebb
...
...
@@ -20,7 +20,7 @@ import (
)
// SEMVER is the current semantic version of xxDK WASM.
const
SEMVER
=
"0.2.
0
"
const
SEMVER
=
"0.2.
1
"
// Storage keys.
const
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment