Skip to content

Commit e22d1db

Browse files
authored
Merge pull request #8 from flathub/1.2.1
Prepare version 1.2.1
2 parents 1710e84 + cb56338 commit e22d1db

File tree

3 files changed

+75
-20
lines changed

3 files changed

+75
-20
lines changed

com.jetpackduba.Gitnuro.metainfo.xml

Lines changed: 55 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,69 @@
2020
</screenshot>
2121
</screenshots>
2222
<releases>
23+
<release version="1.2.1" date="2023-05-14">
24+
<url>https://github.com/JetpackDuba/Gitnuro/releases/tag/v1.2.1</url>
25+
<description>
26+
<p>Fixes and improvements</p>
27+
<ul>
28+
<li>Added missing SSH support for submodules.</li>
29+
<li>Enabled support by default for all supported formats by libssh (such as RSA).</li>
30+
<li>Fixed crash on clicking "show password" button for SSH/GPG credentials.</li>
31+
<li>Fixed size of text field in SSH/GPG credentials dialog to match the rest of the UI.</li>
32+
<li>Added "show password" button to HttpAuthentication dialog.</li>
33+
<li>Fixed scroll state behavior for commited changes not being preserved across tabs changes nor being reset when changing between commits.</li>
34+
<li>Fixed diff scroll position not resetting when selecting different files.</li>
35+
<li>Temporary files are now always removed when closing the app instead of relying on the OS to do it.</li>
36+
<li>Added missing reference to LibSSH in the section of used libraries projects to create Gitnuro.</li>
37+
<li>Updated libssh to 0.10.5.</li>
38+
</ul>
39+
</description>
40+
</release>
41+
<release version="1.2.0" date="2023-05-03">
42+
<url>https://github.com/JetpackDuba/Gitnuro/releases/tag/v1.2.0</url>
43+
<description>
44+
<p>New features</p>
45+
<ul>
46+
<li>Submodules support.</li>
47+
<li>SignOff support.</li>
48+
<li>GPG support.</li>
49+
<li>Option to change upstream branch.</li>
50+
<li>LibSSH integration to support SSH-Agent.</li>
51+
<li>Button to open terminal.</li>
52+
<li>Option to edit message when amending.</li>
53+
<li>Search options for files and branches.</li>
54+
<li>Option to set pull with rebase as default.</li>
55+
<li>Added support for ARM.</li>
56+
</ul>
57+
<p>Bugfixes</p>
58+
<ul>
59+
<li>Fix external credentials manager on Flatpak version</li>
60+
</ul>
61+
</description>
62+
</release>
2363
<release version="1.1.1" date="2022-11-15">
24-
<url>https://github.com/JetpackDuba/Gitnuro/releases/tag/v1.1.1</url>
64+
<url>https://github.com/JetpackDuba/Gitnuro/releases/tag/v1.1.1</url>
2565
<description>
2666
<p>UI</p>
2767
<ul>
28-
<li>Improved graph visualization so it's easier to follow branches.</li>
29-
<li>Added noto sans to be the default mono font</li>
68+
<li>Improved graph visualization so it's easier to follow branches.</li>
69+
<li>Added noto sans to be the default mono font</li>
3070
</ul>
31-
71+
3272
<p>Bugfixes</p>
3373
<ul>
34-
<li>Fixed tabs scrollbar handling clicks when it isn't visible. Now clicking on the top part of a tab will work as expected.</li>
35-
<li>Fixed repository state not refreshing if branch checkout has failed after creation.</li>
36-
<li>Fixed images opening in system default image viewer not working.</li>
37-
<li>Fixed log splitter over-dragging when having density higher than 100%.</li>
74+
<li>Fixed tabs scrollbar handling clicks when it isn't visible. Now clicking on
75+
the top part of a tab will work as expected.</li>
76+
<li>Fixed repository state not refreshing if branch checkout has failed after
77+
creation.</li>
78+
<li>Fixed images opening in system default image viewer not working.</li>
79+
<li>Fixed log splitter over-dragging when having density higher than 100%.</li>
3880
</ul>
3981
</description>
4082
</release>
41-
<release version="1.1.0" date="2022-10-29"/>
42-
<release version="1.0.1" date="2022-08-07"/>
43-
<release version="1.0.0" date="2022-08-06"/>
44-
<release version="0.1.1" date="2022-04-07"/>
83+
<release version="1.1.0" date="2022-10-29" />
84+
<release version="1.0.1" date="2022-08-07" />
85+
<release version="1.0.0" date="2022-08-06" />
86+
<release version="0.1.1" date="2022-04-07" />
4587
</releases>
46-
</component>
47-
88+
</component>

com.jetpackduba.Gitnuro.yml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,44 @@ finish-args:
99
- --socket=x11
1010
- --share=ipc
1111
- --share=network
12-
- --filesystem=home
12+
- --filesystem=host
13+
- --filesystem=xdg-run/gnupg
1314
- --device=dri
15+
- --socket=gpg-agent
16+
- --talk-name=org.freedesktop.Flatpak
17+
- --socket=ssh-auth
1418
modules:
1519
- name: openjdk
1620
buildsystem: simple
1721
build-commands:
1822
- /usr/lib/sdk/openjdk17/install.sh
23+
- name: libssh
24+
cleanup:
25+
- /include
26+
- /share
27+
buildsystem: cmake-ninja
28+
builddir: true
29+
sources:
30+
- type: archive
31+
url: https://git.libssh.org/projects/libssh.git/snapshot/libssh-0.10.5.tar.gz
32+
sha256: 2ae3a73b146440b22c5251077859f21a9efbcdd7269fc9c7a98271355e729a07
1933
- name: gitnuro
2034
buildsystem: simple
2135
build-commands:
2236
- install -D gitnuro /app/bin/gitnuro
23-
- install -D Gitnuro-linux-1.1.1.jar /app/share/Gitnuro.jar
37+
- install -D Gitnuro-linux-1.2.1.jar /app/share/Gitnuro.jar
2438
- install -D com.jetpackduba.Gitnuro.desktop /app/share/applications/com.jetpackduba.Gitnuro.desktop
2539
- install -D icon.png /app/share/icons/hicolor/512x512/apps/com.jetpackduba.Gitnuro.png
2640
- install -D com.jetpackduba.Gitnuro.metainfo.xml /app/share/appdata/com.jetpackduba.Gitnuro.metainfo.xml
2741
sources:
2842
- type: file
2943
path: gitnuro
3044
- type: file
31-
url: https://github.com/JetpackDuba/Gitnuro/releases/download/v1.1.1/Gitnuro-linux-1.1.1.jar
32-
sha256: ba064193f690da98cbf7163aea0db4328ac0434d861c87494eff1e8da75a0606
45+
url: https://github.com/JetpackDuba/Gitnuro/releases/download/v1.2.1/Gitnuro-linux-1.2.1.jar
46+
sha256: 24cc7dc4a417450eef08d8c2642651d2d75ce65a0e214972072f18cb18491c40
3347
- type: file
3448
path: com.jetpackduba.Gitnuro.desktop
3549
- type: file
3650
path: icon.png
3751
- type: file
38-
path: com.jetpackduba.Gitnuro.metainfo.xml
52+
path: com.jetpackduba.Gitnuro.metainfo.xml

gitnuro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#/bin/sh
2-
/app/jre/bin/java -jar /app/share/Gitnuro.jar
2+
/app/jre/bin/java -jar /app/share/Gitnuro.jar --flatpak

0 commit comments

Comments
 (0)