Bump version to 1.6.3

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ryan Ward
2026-06-12 14:17:06 -05:00
co-authored by Claude Opus 4.6
parent 4ba9706e35
commit 59cfd0e2f5
152 changed files with 8276 additions and 1664 deletions
+1 -1
View File
@@ -21,6 +21,7 @@ use crate::{
cloud_object::model::persistence::CloudModel,
context_chips::prompt::Prompt,
experiments,
galaxy_managed_paths_watcher::GalaxyManagedPathsWatcher,
network::NetworkStatus,
notebooks::{
editor::keys::NotebookKeybindings, manager::NotebookManager, notebook::NotebookView,
@@ -49,7 +50,6 @@ use crate::{
},
test_util::settings::initialize_settings_for_tests,
undo_close::UndoCloseStack,
galaxy_managed_paths_watcher::GalaxyManagedPathsWatcher,
workflows::local_workflows::LocalWorkflows,
workspace::{
sync_inputs::SyncedInputState, ActiveSession, OneTimeModalModel, WorkspaceRegistry,
+4 -12
View File
@@ -418,9 +418,7 @@ impl PaneContent for TerminalPane {
if ambient_model.is_ambient_agent() {
let task_id = ambient_model.task_id();
log::info!(
"[session-save] pane=viewer/ambient task_id={task_id:?}"
);
log::info!("[session-save] pane=viewer/ambient task_id={task_id:?}");
return LeafContents::AmbientAgent(AmbientAgentPaneSnapshot {
uuid: self.uuid.clone(),
task_id,
@@ -428,9 +426,7 @@ impl PaneContent for TerminalPane {
}
let cwd = view.pwd_if_local(app);
log::info!(
"[session-save] pane=viewer cwd={cwd:?} is_active={is_active}"
);
log::info!("[session-save] pane=viewer cwd={cwd:?} is_active={is_active}");
LeafContents::Terminal(TerminalPaneSnapshot {
uuid: self.uuid.clone(),
cwd,
@@ -448,18 +444,14 @@ impl PaneContent for TerminalPane {
// can be restored via the ambient agent task if one exists.
let task_id = view.model.lock().ambient_agent_task_id();
if task_id.is_some() {
log::info!(
"[session-save] pane=transcript/ambient task_id={task_id:?}"
);
log::info!("[session-save] pane=transcript/ambient task_id={task_id:?}");
LeafContents::AmbientAgent(AmbientAgentPaneSnapshot {
uuid: self.uuid.clone(),
task_id,
})
} else {
let cwd = view.pwd_if_local(app);
log::info!(
"[session-save] pane=transcript cwd={cwd:?} is_active={is_active}"
);
log::info!("[session-save] pane=transcript cwd={cwd:?} is_active={is_active}");
LeafContents::Terminal(TerminalPaneSnapshot {
uuid: self.uuid.clone(),
cwd,