Skip to content

Commit

Permalink
Merge pull request #329 from fairdataihub/staging
Browse files Browse the repository at this point in the history
fix: 15.0.1 fixes fresh agent installs causing upload failure
  • Loading branch information
aaronm-2112 authored May 30, 2024
2 parents a068473 + d837f6e commit dcdbe22
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "soda-for-sparc",
"procductName": "SODA for SPARC",
"version": "15.0.0",
"version": "15.0.1",
"description": "Keep Calm and Curate",
"main": "./out/main/index.js",
"author": "SODA Team",
Expand Down
4 changes: 3 additions & 1 deletion src/pyflask/startup/minimumApiVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ def get_api_version():
Returns the version of the API
"""

return {'version': os.getenv('API_VERSION', "15.0.0")}

return {'version': os.getenv('API_VERSION', "15.0.1")}

8 changes: 8 additions & 0 deletions src/renderer/src/scripts/meta/announcements.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"15.0.1": {
"announcements": {
"bug-fixes": [
"Fixed a bug where the 'Upload Dataset' feature would fail for fresh Pennsieve Agent installs."
],
"features": []
}
},
"15.0.0": {
"announcements": {
"bug-fixes": [],
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/src/scripts/others/tab-effects.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ const fill_info_details = () => {
true
);
let workspace = $("#bf-organization-curate-first-question").text();
addCardDetail("Selected workspace", workspace, 1, "Question-generate-dataset-BF-account", true);
addCardDetail("Pennsieve workspace", workspace, 1, "Question-generate-dataset-BF-account", true);
addCardDetail(
"Dataset name",
"Pennsieve dataset name",
$("#inputNewNameDataset-upload-dataset").val().trim(),
1,
"inputNewNameDataset",
Expand Down
9 changes: 5 additions & 4 deletions src/renderer/src/sections/curate/curate.html
Original file line number Diff line number Diff line change
Expand Up @@ -1014,12 +1014,13 @@ <h2>Skip</h2>
style="
text-align: center;
color: var(--color);
font-size: 16px;
font-size: 15px;
margin-top: 20px;
font-weight: 200;
">
To create a local copy of the manifest files, click the button below.
You can create a local copy of your manifest files for review. Click <a id="ffm-button-generate-manifest-files-locally">here</a> to do so if needed.
</h5>
<button
<!-- <button
class="ui primary button dataset-card-button-confirm"
id="ffm-button-generate-manifest-files-locally"
style="
Expand All @@ -1029,7 +1030,7 @@ <h2>Skip</h2>
"
>
Generate manifest files locally
</button>
</button> -->
</div>
</div>
<div id="manifest-creation-prohibited" class="info-dropdown mt-lg" style="justify-content: center;">
Expand Down

0 comments on commit dcdbe22

Please sign in to comment.