feat: Add copy log into ConsoleView - #113
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR addresses Issue #96 by adding a “click a log entry to copy it to the clipboard” interaction to ConsoleView, including a brief visual feedback indicator, and updates tests accordingly. It also includes broad, mechanical formatting/BOM cleanup across runtime and test files.
Changes:
- Add click-to-copy behavior for individual
ConsoleViewlog entries (clipboard copy + temporary visual feedback). - Add a playmode/editor test validating the click-to-copy behavior and feedback styling.
- Apply repository-wide code formatting/BOM normalization in several files (no behavioral change intended).
Reviewed changes
Copilot reviewed 22 out of 22 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| Packages/jp.andantetribe.debugtoolkit/Runtime/ProfileUtils.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/Internal/ValueStringBuilder.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/Internal/UnityInitializer.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/Internal/SafeAreaContainer.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/Internal/ExternalResources.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/Internal/DragManipulator.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/Internal/DebugWindow.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/Internal/ConsoleView.cs | Implement per-log-entry click-to-copy and visual feedback; refactor log formatting into helper. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/Internal/BindListViewController.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/HistoryTextField.cs | Minor using-order/format normalization. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/DebugViewBase.cs | Minor formatting/whitespace normalization. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/DebugExtensions.cs | Minor formatting/whitespace normalization. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/DebugConst.cs | BOM/format normalization only. |
| Packages/jp.andantetribe.debugtoolkit/Runtime/AssemblyInfo.cs | BOM removal/format normalization. |
| Assets/Tests/WindowTest.cs | Using-order/format normalization. |
| Assets/Tests/UssTest.cs | Using-order/format normalization (and trailing whitespace cleanup). |
| Assets/Tests/TestBase.cs | Using-order/format normalization. |
| Assets/Tests/TabTest.cs | BOM/format normalization only. |
| Assets/Tests/DebugViewWindowTest.cs | BOM removal + minor formatting normalization. |
| Assets/Tests/DebugViewTestBase.cs | BOM removal/format normalization. |
| Assets/Tests/DebugViewTabTest.cs | BOM removal + minor formatting normalization. |
| Assets/Tests/CustomElementTest.cs | Add click-to-copy test for ConsoleView + minor formatting normalization. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
syogakusya
approved these changes
Jul 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#96