Revert "update copyright notices to reflect GPL-3.0 licensing" - #178
Revert "update copyright notices to reflect GPL-3.0 licensing"#178breadddevv wants to merge 1 commit into
Conversation
This reverts commit d7ad22d.
📝 WalkthroughWalkthroughThe copyright dialog updates the Orbit and Original Tovy Project notices from GPL-3.0 licensing text to “All rights reserved.” ChangesCopyright Notice Updates
Estimated code review effort: 1 (Trivial) | ~2 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with 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.
Inline comments:
In `@components/HelpFloatingButton.tsx`:
- Around line 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.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro Plus
Run ID: b486fead-894d-43a0-83fe-749ea221502e
📒 Files selected for processing (1)
components/HelpFloatingButton.tsx
| <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> |
There was a problem hiding this comment.
🔒 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.
Reverts #176
Summary by CodeRabbit