Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
xfce4-windowck-plugin
Manage
Activity
Members
Labels
Plan
Issues
12
Issue boards
Milestones
External wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Panel Plugins
xfce4-windowck-plugin
Merge requests
!88
Update About dialog
代码
评审变更
检出分支
下载
补丁
文本差异
Merged
Update About dialog
qarkai/xfce4-windowck-plugin:about
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Arkadiy Illarionov
requested to merge
qarkai/xfce4-windowck-plugin:about
into
master
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Let GtkAboutDialog use original icon size
Update copyright year
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
083a0471
1 commit,
2 years ago
1 file
+
11
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
common/wck-plugin.c
+
11
−
20
Options
@@ -54,11 +54,7 @@ wck_properties_get_channel (GObject *object_for_weak_ref, const gchar *channel_n
void
wck_about
(
XfcePanelPlugin
*
plugin
,
const
gchar
*
icon_name
)
{
/* about dialog code. you can use the GtkAboutDialog
* or the XfceAboutInfo widget */
GdkPixbuf
*
icon
;
const
gchar
*
auth
[]
=
const
gchar
*
authors
[]
=
{
"Alessio Piccoli <alepic@geckoblu.net>"
,
"Cedric Leporcq <cedl38@gmail.com>"
,
@@ -70,22 +66,17 @@ wck_about (XfcePanelPlugin *plugin, const gchar *icon_name)
NULL
};
icon
=
xfce_panel_pixbuf_from_source
(
icon_name
,
NULL
,
32
);
/* TODO: add translators. */
gtk_show_about_dialog
(
NULL
,
"logo"
,
icon
,
"license"
,
xfce_get_license_text
(
XFCE_LICENSE_TEXT_GPL
),
"version"
,
PACKAGE_VERSION
,
"program-name"
,
xfce_panel_plugin_get_display_name
(
plugin
),
"comments"
,
xfce_panel_plugin_get_comment
(
plugin
),
"website"
,
PACKAGE_URL
,
"copyright"
,
"Copyright
\302\251
2013-2015
\n
"
,
"authors"
,
auth
,
NULL
);
// TODO: add translators.
if
(
icon
)
g_object_unref
(
G_OBJECT
(
icon
)
);
"logo-icon-name"
,
icon_name
,
"license"
,
xfce_get_license_text
(
XFCE_LICENSE_TEXT_GPL
),
"version"
,
PACKAGE_VERSION
,
"program-name"
,
xfce_panel_plugin_get_display_name
(
plugin
),
"comments"
,
xfce_panel_plugin_get_comment
(
plugin
),
"website"
,
PACKAGE_URL
,
"copyright"
,
"Copyright
\302\251
2013-2022
\n
"
,
"authors"
,
authors
,
NULL
);
}
Loading