Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 ui/desktop/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 ui/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "goose-app",
"productName": "Goose",
"version": "1.0.28",
"version": "1.0.29",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

did you mean to add this part?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, my understanding is that we already released version 1.0.28, so this would need to go out with the next version.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but the team will update that when they are ready to cut a release. let's leave it at 28

Suggested change
"version": "1.0.29",
"version": "1.0.28",

@blackgirlbytes blackgirlbytes Jun 15, 2025

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, i think we bump the version during the release

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didnt refresh the page so I didn't see Angie's comment. Sorry about that

"description": "Goose App",
"engines": {
"node": "^22.9.0"
Expand Down
26 changes: 26 additions & 0 deletions ui/desktop/src/components/settings/app/AppSettingsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,32 @@ export default function AppSettingsSection({ scrollToSection }: AppSettingsSecti
)}
</div>

{/* Help & Feedback Section */}
<div className="mt-8 pt-8 border-t border-gray-200 dark:border-gray-700">
<h3 className="text-lg font-medium text-textStandard mb-1">Help & Feedback</h3>
<p className="text-sm text-textSubtle mb-4">
Help us improve Goose by reporting issues or requesting new features.
</p>
<div className="flex space-x-4">
<a
href="https://github.com/block/goose/issues/new?template=bug_report.md"
target="_blank"
rel="noopener noreferrer"
className="text-sm text-blue-600 dark:text-blue-400 hover:underline"
>
Report a Bug
</a>
<a
href="https://github.com/block/goose/issues/new?template=feature_request.md"
target="_blank"
rel="noopener noreferrer"
className="text-sm text-blue-600 dark:text-blue-400 hover:underline"
>
Request a Feature
</a>
</div>
</div>

{/* Update Section */}
{UPDATES_ENABLED && (
<div ref={updateSectionRef} className="mt-8 pt-8 border-t border-gray-200">
Expand Down