Skip to content

Commit

Permalink
Initial v1.0.9 branch update. Includes updating the version number in…
Browse files Browse the repository at this point in the history
… the message display, package.json and added a starting file for the v1.0.9 changelog (to be updated as we go)
  • Loading branch information
downiec committed Jun 10, 2023
1 parent 8b6a989 commit 79f742b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "1.0.8-beta",
"version": "1.0.9-beta",
"private": true,
"scripts": {
"build:local": "env-cmd -f .envs/.react react-scripts build",
Expand Down
7 changes: 7 additions & 0 deletions frontend/public/changelog/v1.0.9-beta.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Summary

This is the 'Globus Download' update! You now have the ability to select Globus as a download option within the data cart (for select available datasets). When downloading with Globus, you will be redirected to provide permission and to select your desired endpoint. Then you'll be able to save your endpoint as default and start the Globus download process. Since this is a brand new feature, there is a chance things will not work perfectly but we hope to address issues and make future improvements and updates as we move forward.

**Changes**

1. Added ability to download datasets (when available) through Globus.
4 changes: 2 additions & 2 deletions frontend/public/messages/metagrid_messages.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Welcome to the Metagrid Beta test v1.0.8
# Welcome to the Metagrid Beta test v1.0.9

Use the Help link to find information on how to contact support or report any issues you find.

Expand All @@ -10,4 +10,4 @@ Metagrid uses an updated user accounts system. Unfortunately for anyone looking

We are excited to be planning to have an "official" release of the Metagrid platform onto scalable infrastructure. In the meantime we will be testing new features.

- Globus Transfer feature planned to be released in v1.0.9.
- Globus Transfer feature updates planned to be released in v1.1.0.
3 changes: 0 additions & 3 deletions frontend/public/messages/test_message.md

This file was deleted.

11 changes: 10 additions & 1 deletion frontend/src/components/Messaging/messageDisplayData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,23 @@ export const rightDrawerMessages: MarkdownMessage[] = [
];

export const rightDrawerChanges: MarkdownMessage[] = [
{ title: 'V1.0.9', fileName: 'changelog/v1.0.9-beta.md' },
{ title: 'V1.0.8', fileName: 'changelog/v1.0.8-beta.md' },
{ title: 'V1.0.7', fileName: 'changelog/v1.0.7-beta.md' },
];

const startupMessages: StartPopupData = {
messageToShow: 'v1.0.8-beta',
messageToShow: 'v1.0.9-beta',
defaultMessageId: 'welcome',
messageData: [
{
messageId: 'v1.0.9-beta',
template: MessageTemplates.ChangeLog,
data: {
changesFile: 'changelog/v1.0.9-beta.md',
version: '1.0.9 Beta',
},
},
{
messageId: 'v1.0.8-beta',
template: MessageTemplates.ChangeLog,
Expand Down

0 comments on commit 79f742b

Please sign in to comment.