Skip to content
Open
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 components/HelpFloatingButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ export function HelpProvider({ children }: { children: React.ReactNode }) {
</div>
<div className="mb-4">
<p className="text-sm font-medium text-zinc-900 dark:text-white mb-1">Orbit</p>
<p className="text-sm text-zinc-500 dark:text-zinc-400">© 2025 Planetary — Licensed under GPL-3.0.</p>
<p className="text-sm text-zinc-500 dark:text-zinc-400">© 2025 Planetary — All rights reserved.</p>
</div>
<div className="border-t border-zinc-200 dark:border-zinc-700 my-4" />
<div>
<p className="text-sm font-medium text-zinc-900 dark:text-white mb-1">Original Tovy Project</p>
<p className="text-sm text-zinc-500 dark:text-zinc-400">© 2022 Tovy — Licensed under GPL-3.0.</p>
<p className="text-sm text-zinc-500 dark:text-zinc-400">© 2022 Tovy — All rights reserved.</p>
Comment on lines +78 to +83

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🔒 Security & Privacy | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -eu

fd -HI -t f '^(LICENSE|COPYING)(\..*)?$|^(package\.json|pyproject\.toml|setup\.py)$' .
rg -n -i 'GPL-3\.0|all rights reserved|license|licen[cs]e' \
  --glob 'LICENSE*' --glob 'COPYING*' --glob 'package.json' \
  --glob 'pyproject.toml' --glob 'setup.py' .

Repository: PlanetaryOrbit/orbit

Length of output: 50377


🏁 Script executed:

#!/bin/bash
set -eu

echo "== root license and package metadata =="
sed -n '1,120p' LICENSE 2>/dev/null || true
echo
sed -n '1,80p' package.json 2>/dev/null | jq -r '[.name, .version, .license, .author, .repository] | `@json`' 2>/dev/null || true

echo
echo "== all-right-reserved occurrences outside node_modules, excluding comments =="
rg -n -i 'all rights reserved|gpl-3\.0|license|licen[cs]e' --glob '!node_modules/**' . \
  | sed -n '1,160p'

echo
echo "== file count/stat =="
git ls-files | rg -n '(^|/)(LICENSE|COPYING|package\.json)$' | sed -n '1,80p'

Repository: PlanetaryOrbit/orbit

Length of output: 18150


Restore the GPL-appropriate legal notices in the help dialog.

LICENSE and README still declare PlanetaryOrbit/orbit under GPL-3.0, and the dialog does not include required GPL statements (no warranty, license conveyance terms, and a way to view the license). “All rights reserved” only changes copyright wording; restore the project-specific GPL wording terms or update the authoritative license/documentation consistently.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@components/HelpFloatingButton.tsx` around lines 78 - 83, Update the help
dialog content around the Planetary and Original Tovy notices to use
GPL-appropriate wording consistent with the authoritative LICENSE and README:
include the no-warranty statement, license conveyance terms, and a way to view
the GPL-3.0 license. Remove the conflicting “All rights reserved” notices, or
update the authoritative license and documentation consistently if those notices
are intentionally retained.

</div>
</Dialog.Panel>
</div>
Expand Down
Loading