-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e867ac6
commit 14d03fd
Showing
7 changed files
with
63 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2021 Dave M <[email protected]> --> | ||
<component type="desktop"> | ||
<id>clamtk.desktop</id> | ||
<component type="desktop-application"> | ||
<id>com.github.davetheunsub.clamtk</id> | ||
<metadata_license>FSFAP</metadata_license> | ||
<project_license>GPL-2.0+</project_license> | ||
<name>ClamTk</name> | ||
|
@@ -70,18 +70,24 @@ | |
<description> | ||
<p>ClamTk is intended to be an easy to use, light-weight, on-demand scanner for Linux systems.</p> | ||
</description> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<caption>An easy to use virus scanner for Linux systems.</caption> | ||
<image type="source" width="300" height="300">https://github.com/dave-theunsub/clamtk/raw/master/images/clamtk_300x300.png</image> | ||
</screenshot> | ||
</screenshots>. | ||
<categories> | ||
|
||
<categories> | ||
<category>System</category> | ||
</categories> | ||
<icon type="local" width="128" height="128">/usr/share/pixmaps/clamtk.png</icon> | ||
|
||
<screenshots> | ||
<screenshot type="default"> | ||
<caption>The initial screen</caption> | ||
<image>https://davem.fedorapeople.org/images/clamtk-1-screenshot.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<caption>Program settings dialog</caption> | ||
<image>https://davem.fedorapeople.org/images/clamtk-2-screenshot.png</image> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<releases> | ||
<release version="6.09" date="2021-02-27"> | ||
<release version="6.12" date="2021-06-05"> | ||
<description> | ||
<p>Bug fixes</p> | ||
</description> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ sub start_gui { | |
$top_box->set_homogeneous( FALSE ); | ||
$eb->add( $top_box ); | ||
|
||
$hb->set_title( _( 'Virus Scanner' ) ); | ||
$hb->set_title( _( 'ClamTk Virus Scanner' ) ); | ||
$hb->set_decoration_layout( 'menu,icon:minimize,close' ); | ||
$hb->set_show_close_button( TRUE ); | ||
|
||
|
@@ -716,7 +716,10 @@ sub about { | |
$dialog->set_program_name( 'ClamTk' ); | ||
$dialog->set_authors( [ 'Dave M', '[email protected]' ] ); | ||
$dialog->set_comments( | ||
_( 'ClamTk is a graphical front-end for Clam Antivirus' ) ); | ||
_( 'ClamTk is a graphical front-end for Clam Antivirus' ) . "\n" | ||
. '(ClamAV ' | ||
. ClamTk::App->get_AV_version() | ||
. ')' ); | ||
|
||
$dialog->run; | ||
$dialog->destroy; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters