Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.2.0 #29

Merged
merged 1 commit into from
Apr 1, 2024
Merged
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: 2 additions & 2 deletions package-lock.json

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,6 +1,6 @@
{
"name": "markov-chain-plugin",
"version": "0.1.0-pre.1",
"version": "0.2.0",
"description": "Concord Consortium Markov Chain Plugin",
"main": "index.js",
"browserslist": "> 0.2%, last 5 versions, Firefox ESR, not dead, not ie > 0",
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/use-codap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import codapInterface from "../utils/codap-interface";

const PluginName = "Markov Chain";
const PluginVersion = "0.19";
const PluginVersion = "0.2.0";
const InitialDimensions = {
width: 600,
height: 420
Expand Down Expand Up @@ -143,7 +143,7 @@
"action": "get",
"resource": "dataContextList"
}).catch((reason) => {
console.log("unable to get data context list because " + reason);

Check warning on line 146 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / Build

Unexpected console statement

Check warning on line 146 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / S3 Deploy

Unexpected console statement
});
if (tListResult?.success) {
tFoundValue = tListResult.values.find((iValue: any) => {
Expand Down Expand Up @@ -174,10 +174,10 @@
]
}
}).catch((reason) => {
console.log("unable to create output dataset because " + reason);

Check warning on line 177 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / Build

Unexpected console statement

Check warning on line 177 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / S3 Deploy

Unexpected console statement
});
if (!(tCreateResult?.success)) {
console.log("unable to create output dataset");

Check warning on line 180 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / Build

Unexpected console statement

Check warning on line 180 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / S3 Deploy

Unexpected console statement
return;
}
// setOutputDatasetID(tCreateResult.values.id);
Expand All @@ -189,7 +189,7 @@
"action": "get",
"resource": "componentList"
}).catch((reason) => {
console.log("unable to get component list because " + reason);

Check warning on line 192 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / Build

Unexpected console statement

Check warning on line 192 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / S3 Deploy

Unexpected console statement
});
if (tListResult?.success) {
tFoundValue = tListResult.values.find((iValue: any) => {
Expand All @@ -208,10 +208,10 @@
position: "top"
}
}).catch((reason) => {
console.log("unable to create case table because " + reason);

Check warning on line 211 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / Build

Unexpected console statement

Check warning on line 211 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / S3 Deploy

Unexpected console statement
});
if (!(tCreateResult?.success)) {
console.log("unable to create case table");

Check warning on line 214 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / Build

Unexpected console statement

Check warning on line 214 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / S3 Deploy

Unexpected console statement
}
}
}, []);
Expand All @@ -229,7 +229,7 @@
resource: `dataContext[${OutputDatasetName}].item`,
values: requests
}).catch((reason) => {
console.log("unable to create items because " + reason);

Check warning on line 232 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / Build

Unexpected console statement

Check warning on line 232 in src/hooks/use-codap.ts

View workflow job for this annotation

GitHub Actions / S3 Deploy

Unexpected console statement
});

incrementSequenceNumber();
Expand Down
Loading