Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Merge pull request #209 from phovea/release-7.0.1
Browse files Browse the repository at this point in the history
Release 7.0.1
  • Loading branch information
Anita Steiner authored Oct 21, 2021
2 parents a1e756c + b70791d commit 7c92bc9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/idtype/IDTypeManager.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/idtype/IDTypeManager.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/provenance/LocalStorageProvenanceGraphManager.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/provenance/LocalStorageProvenanceGraphManager.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "phovea_core",
"description": "Phovea Core including plugin registry, data definition (+ common types: tables, matrix, vector, stratification), ajax, selections",
"version": "7.0.0",
"version": "7.0.1",
"author": {
"name": "The Caleydo Team",
"email": "contact@caleydo.org",
Expand Down
2 changes: 1 addition & 1 deletion src/idtype/IDTypeManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export class IDTypeManager {
return IDTypeManager.getInstance().cache.get(id);
}
IDTypeManager.getInstance().cache.set(id, idtype);
GlobalEventHandler.getInstance().fire('register.idtype', idtype);
GlobalEventHandler.getInstance().fire(IDTypeManager.EVENT_REGISTER_IDTYPE, idtype);
return idtype;
}

Expand Down
4 changes: 2 additions & 2 deletions src/provenance/LocalStorageProvenanceGraphManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export interface ILocalStorageProvenanceGraphManagerOptions extends ICommonProve

/**
* Default permissions for new graphs.
* @default ALL_READ_NONE
* @default ALL_NONE_NONE
*/
defaultPermission?: number;
}
Expand All @@ -39,7 +39,7 @@ export class LocalStorageProvenanceGraphManager implements IProvenanceGraphManag
storage: localStorage,
prefix: 'clue',
application: 'unknown',
defaultPermission: Permission.ALL_READ_NONE
defaultPermission: Permission.ALL_NONE_NONE
};

constructor(options: ILocalStorageProvenanceGraphManagerOptions = {}) {
Expand Down

0 comments on commit 7c92bc9

Please sign in to comment.