Skip to content

add tech review panel for AI branch diff - #10

Open
R0MADEV wants to merge 9 commits into
mainfrom
feat/tech-review-panel
Open

add tech review panel for AI branch diff#10
R0MADEV wants to merge 9 commits into
mainfrom
feat/tech-review-panel

Conversation

@R0MADEV

@R0MADEV R0MADEV commented Jul 31, 2026

Copy link
Copy Markdown
Owner

No description provided.

@R0MADEV
R0MADEV force-pushed the feat/tech-review-panel branch from 1d0e1ef to e61806b Compare July 31, 2026 22:44
Comment thread src-tauri/src/git.rs
Comment on lines +1002 to +1012
#[tauri::command]
pub async fn git_ref_diff(path: String, base: String, target: String) -> Result<String, String> {
if !is_safe_branch(&base) { return Err(format!("unsafe base: {base}")); }
if !is_safe_branch(&target) { return Err(format!("unsafe target: {target}")); }
tauri::async_runtime::spawn_blocking(move || {
if !is_git_repo(&path) { return Err("not a git repository".into()); }
git_output(&path, &["diff", &format!("{base}...{target}")])
})
.await
.map_err(|e| e.to_string())?
}

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

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

este bloque

@R0MANDEV R0MANDEV Aug 1, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

hola xdd soy otro tests desde otra cuenta xd

Comment thread src/panels/review/i18n.ts
Comment on lines +6 to +8
export function reviewT(key: ReviewMessageKey, values: TranslationValues = {}): string {
return catalogT('review', key, values)
}

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

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

Innecesario

Comment thread src-tauri/src/git.rs
Comment on lines +306 to +312
#[tauri::command]
pub async fn git_current_branch(path: String) -> Result<String, String> {
tauri::async_runtime::spawn_blocking(move || current_branch(&path))
.await
.map_err(|e| e.to_string())?
}

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

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

jelllo

@R0MADEV

R0MADEV commented Aug 1, 2026

Copy link
Copy Markdown
Owner Author

ajjaja porque

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants