Skip to content

Commit b193579

Browse files
committed
Merge branch 'release/v8.19'
2 parents 9a82d04 + b10928d commit b193579

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+3050
-1453
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Opensource Git GUI client.
2121
* Tags
2222
* Stashes
2323
* Submodules
24+
* Worktrees
2425
* Archive
2526
* Diff
2627
* Save as patch/apply
@@ -105,7 +106,8 @@ This app supports open repository in external tools listed in the table below.
105106
| Color.ToolBar | Tool bar background color |
106107
| Color.Popup | Popup panel background color |
107108
| Color.Contents | Background color used in inputs, data grids, file content viewer, change lists, text diff viewer, etc. |
108-
| Color.Badage | Badage background color |
109+
| Color.Badge | Badge background color |
110+
| Color.BadgeFG | Badge foreground color |
109111
| Color.Conflict | Conflict panel background color |
110112
| Color.ConflictForeground | Conflict panel foreground color |
111113
| Color.Border0 | Border color used in some controls, like Window, Tab, Toolbar, etc. |

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.18
1+
8.19

build/build.linux.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ rm -f SourceGit/sourcegit.icns
1717

1818
# Debain/Ubuntu package
1919
mkdir -p resources/deb/opt/sourcegit/
20-
mkdir -p resources/deb/usr/bin
2120
mkdir -p resources/deb/usr/share/applications
2221
mkdir -p resources/deb/usr/share/icons
2322
cp -f SourceGit/* resources/deb/opt/sourcegit/
24-
cp -r resources/_common/usr resources/deb/
25-
chmod -R 755 resources/deb
23+
cp -r resources/_common/applications resources/deb/usr/share/
24+
cp -r resources/_common/icons resources/deb/usr/share/
25+
chmod +x -R resources/deb/opt/sourcegit
2626
sed -i "2s/.*/Version: ${version}/g" resources/deb/DEBIAN/control
2727
dpkg-deb --build resources/deb ./sourcegit_${version}-1_amd64.deb
2828

File renamed without changes.
File renamed without changes.

build/resources/_common/usr/bin/sourcegit

Lines changed: 0 additions & 2 deletions
This file was deleted.

build/resources/deb/DEBIAN/control

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: sourcegit
2-
Version: 8.8
2+
Version: 8.18
33
Priority: optional
44
Depends: libx11-6, libice6, libsm6
55
Architecture: amd64
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!bin/sh
2+
3+
echo 'Create link on /usr/bin'
4+
ln -s /opt/sourcegit/sourcegit /usr/bin/sourcegit
5+
exit 0

build/resources/deb/DEBIAN/postrm

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!bin/sh
2+
3+
rm -f /usr/bin/sourcegit
4+
exit 0

build/resources/rpm/SPECS/build.spec

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,23 @@ Open-source & Free Git Gui Client
1515

1616
%install
1717
mkdir -p $RPM_BUILD_ROOT/opt/sourcegit
18-
mkdir -p $RPM_BUILD_ROOT/usr/bin
1918
mkdir -p $RPM_BUILD_ROOT/usr/share/applications
2019
mkdir -p $RPM_BUILD_ROOT/usr/share/icons
21-
cp -r ../../_common/usr $RPM_BUILD_ROOT/
20+
cp -r ../../_common/applications $RPM_BUILD_ROOT/usr/share/
21+
cp -r ../../_common/icons $RPM_BUILD_ROOT/usr/share/
2222
cp -f ../../../SourceGit/* $RPM_BUILD_ROOT/opt/sourcegit/
23-
chmod 755 -R $RPM_BUILD_ROOT
23+
chmod 755 -R $RPM_BUILD_ROOT/opt/sourcegit
24+
chmod 755 $RPM_BUILD_ROOT/usr/share/applications/sourcegit.desktop
2425

2526
%files
26-
/opt
27-
%attr(555,root,root)/usr/bin
27+
/opt/sourcegit
2828
/usr/share
2929

30+
%post
31+
ln -s /opt/sourcegit/sourcegit /usr/bin/sourcegit
32+
33+
%postun
34+
rm -f /usr/bin/sourcegit
35+
3036
%changelog
3137
# skip

0 commit comments

Comments
 (0)