We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9985f51 commit 1f4348fCopy full SHA for 1f4348f
7 files changed
CHANGELOG.md
@@ -1,4 +1,19 @@
1
# GG Changelog
2
+
3
+## [0.29.1](releases/tag/v0.29.1)
4
5
+### Added
6
+- "New inserted parent" menu item (thanks to @brk).
7
+- Move sub-file hunks from the right pane (thanks to @nightscape).
8
+- Show recent workspaces if opening a workspace failed (thanks to @Natural-selection1).
9
+- Change and commit ID can be selected for copying.
10
11
+### Fixed
12
+- Fix overscroll on MacOS (thanks to @mernen).
13
+- Compress path and action info when window is too narrow (thanks to @Natural-selection1).
14
+- Use from_utf8_lossy to prevent invalid utf-8 sequence errors (thanks to @jmole).
15
+- Enabled LTO for release builds, smaller and faster binary (thanks to @berkus).
16
17
## [0.29.0](releases/tag/v0.29.0)
18
This version is based on Jujutsu 0.29.
19
package-lock.json
package.json
@@ -1,7 +1,7 @@
{
"name": "gg",
"private": true,
- "version": "0.29.0",
+ "version": "0.29.1",
"type": "module",
"scripts": {
"dev": "vite",
src-tauri/Cargo.lock
src-tauri/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gg"
-version = "0.29.0"
+version = "0.29.1"
description = "GG - Gui for JJ"
authors = ["Thomas Castiglione"]
edition = "2024"
src-tauri/Tauri.toml
@@ -1,5 +1,5 @@
productName = "gg"
identifier = "au.gulbanana.gg"
[build]
src-tauri/src/worker/mutations.rs
@@ -28,10 +28,10 @@ use jj_lib::{
28
use pollster::block_on;
29
30
use crate::messages::{
31
- AbandonRevisions, BackoutRevisions, CheckoutRevision, CopyChanges, CreateRef, CreateRevision,
32
- CreateRevisionBetween, DeleteRef, DescribeRevision, DuplicateRevisions, GitFetch, GitPush,
33
- InsertRevision, MoveChanges, MoveHunk, MoveRef, MoveRevision, MoveSource, MutationResult,
34
- RenameBranch, StoreRef, TrackBranch, TreePath, UndoOperation, UntrackBranch,
+ AbandonRevisions, BackoutRevisions, CheckoutRevision, CopyChanges, CopyHunk, CreateRef,
+ CreateRevision, CreateRevisionBetween, DeleteRef, DescribeRevision, DuplicateRevisions,
+ GitFetch, GitPush, InsertRevision, MoveChanges, MoveHunk, MoveRef, MoveRevision, MoveSource,
+ MutationResult, RenameBranch, StoreRef, TrackBranch, TreePath, UndoOperation, UntrackBranch,
35
};
36
37
use super::Mutation;
0 commit comments