-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Add What's New entry for teams and projects #5126
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,27 @@ | ||||||
/** | ||||||
* Copyright (c) 2021 Gitpod GmbH. All rights reserved. | ||||||
* Licensed under the GNU Affero General Public License (AGPL). | ||||||
* See License-AGPL.txt in the project root for license information. | ||||||
*/ | ||||||
|
||||||
import { User } from "@gitpod/gitpod-protocol"; | ||||||
import { WhatsNewEntry } from "./WhatsNew"; | ||||||
import { switchToVSCodeAction } from "./WhatsNew-2021-04"; | ||||||
import PillLabel from "../components/PillLabel"; | ||||||
|
||||||
export const WhatsNewEntry202108: WhatsNewEntry = { | ||||||
children: (user: User, setUser: React.Dispatch<User>) => { | ||||||
|
||||||
return <> | ||||||
<div className="border-t border-b border-gray-200 dark:border-gray-800 -mx-6 px-6 pt-6 pb-4"> | ||||||
<p className="pb-2 text-gray-900 dark:text-gray-100 text-base font-medium">Teams & Projects <PillLabel>New Feature</PillLabel></p> | ||||||
<p className="pb-2 text-gray-500 dark:text-gray-400 text-sm">Hey! We're introducing <strong>Teams & Projects</strong> to surface <strong>Prebuilds</strong> in the dashboard. All existing teams will be migrated over the upcoming weeks. No action is required on your side. 🎉</p> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thoughts:
Suggestion that you can apply in one click on GitHub:
Suggested change
|
||||||
<p className="pb-2 text-gray-500 dark:text-gray-400 text-sm">You can create as many teams as you need and import repositories as projects from the top navigation. 💡</p> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
<p className="pb-2 text-gray-500 dark:text-gray-400 text-sm">We welcome any input on this first iteration in <a href="https://github.com/gitpod-io/gitpod/issues/5095" className="learn-more">the feedback issue</a>. 📝</p> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please also link to the (upcoming) blog post to learn more, and add a screenshot e.g. like this one on Slack (internal)? |
||||||
</div> | ||||||
</>; | ||||||
}, | ||||||
newsKey: 'August-2021', | ||||||
maxUserCreationDate: '2021-08-17', | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thought: Not sure what this does but I've added the target deployment date of next Tuesday (17.08.2021). 🐼 |
||||||
actionAfterSeen: switchToVSCodeAction, | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove this (this switches users from Theia to VSCode when they accept the Modal -- this is not relevant here) |
||||||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thought: I have no idea if this is needed. 😅