Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gitg
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
192
Issues
192
List
Boards
Labels
Service Desk
Milestones
Merge Requests
27
Merge Requests
27
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
gitg
Commits
a1f43c1c
Commit
a1f43c1c
authored
Jan 18, 2015
by
Ignacio Casal Quinteiro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix api breaks from libgit2-glib
parent
ece73d4d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
7 deletions
+3
-7
gitg/gitg-author-details-dialog.vala
gitg/gitg-author-details-dialog.vala
+0
-1
gitg/gitg-clone-dialog.vala
gitg/gitg-clone-dialog.vala
+1
-4
gitg/gitg-remote-manager.vala
gitg/gitg-remote-manager.vala
+1
-1
libgitg/gitg-remote.vala
libgitg/gitg-remote.vala
+1
-1
No files found.
gitg/gitg-author-details-dialog.vala
View file @
a1f43c1c
...
...
@@ -81,7 +81,6 @@ namespace Gitg
try
{
d_config
.
refresh
();
author_name
=
d_config
.
get_string
(
"user.name"
);
}
catch
{}
...
...
gitg/gitg-clone-dialog.vala
View file @
a1f43c1c
...
...
@@ -80,9 +80,8 @@ public class CloneDialog : Gtk.Dialog
d_entry_url
.
changed
.
connect
((
e
)
=>
{
string
?
tooltip_text
=
null
;
string
?
icon_name
=
null
;
bool
url_supported
=
Ggit
.
Remote
.
is_supported_url
(
d_entry_url
.
get_text
());
if
(
!
url_supported
&&
(
d_entry_url
.
text
!=
""
)
)
if
(
d_entry_url
.
text
!=
""
)
{
icon_name
=
"dialog-warning-symbolic"
;
tooltip_text
=
_
(
"The URL introduced is not supported"
);
...
...
@@ -90,8 +89,6 @@ public class CloneDialog : Gtk.Dialog
d_entry_url
.
set_icon_from_icon_name
(
Gtk
.
EntryIconPosition
.
SECONDARY
,
icon_name
);
d_entry_url
.
set_icon_tooltip_text
(
Gtk
.
EntryIconPosition
.
SECONDARY
,
tooltip_text
);
set_response_sensitive
(
Gtk
.
ResponseType
.
OK
,
url_supported
);
});
}
}
...
...
gitg/gitg-remote-manager.vala
View file @
a1f43c1c
...
...
@@ -115,7 +115,7 @@ class RemoteManager : Object, GitgExt.RemoteLookup
try
{
remote
=
d_window
.
repository
.
get
_remote
(
name
)
as
Gitg
.
Remote
;
remote
=
d_window
.
repository
.
lookup
_remote
(
name
)
as
Gitg
.
Remote
;
}
catch
{
return
null
;
}
var
url
=
remote
.
get_url
();
...
...
libgitg/gitg-remote.vala
View file @
a1f43c1c
...
...
@@ -177,7 +177,7 @@ public class Remote : Ggit.Remote
try
{
yield
Async
.
thread
(()
=>
{
base
.
download
();
base
.
download
(
null
);
if
(
signature
!=
null
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment