-
-
Notifications
You must be signed in to change notification settings - Fork 44
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
stsdc
committed
Aug 18, 2017
1 parent
b12f387
commit 6825dd0
Showing
14 changed files
with
77 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Michael Starkweather | ||
Stanisław Dac <[email protected]> |
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 |
---|---|---|
|
@@ -632,7 +632,7 @@ state the exclusion of warranty; and each file should have at least | |
the "copyright" line and a pointer to where the full notice is found. | ||
|
||
Manage processes and monitor system. | ||
Copyright (C) 2017 Stanisław @stsdc | ||
Copyright (C) 2017 Stanisław Dac <[email protected]> | ||
|
||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
|
@@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail. | |
If the program does terminal interaction, make it output a short | ||
notice like this when it starts in an interactive mode: | ||
|
||
Monitor Copyright (C) 2017 Stanisław @stsdc | ||
Monitor Copyright (C) 2017 Stanisław Dac <[email protected]> | ||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. | ||
This is free software, and you are welcome to redistribute it | ||
under certain conditions; type `show c' for details. | ||
|
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2017 Stanisław <@ststdc> --> | ||
<component type="desktop"> | ||
<id>com.github.stsdc.monitor.desktop</id> | ||
<metadata_license>CC0</metadata_license> | ||
<name>Monitor</name> | ||
<summary>Manage processes and monitor system resources</summary> | ||
<description> | ||
<p>A quick summary of your app's main selling points and features. Just a couple sentences per paragraph is best.</p> | ||
</description> | ||
<custom> | ||
<value key="x-appcenter-color-primary">#2196f3</value> | ||
<value key="x-appcenter-color-primary-text">rgb(255, 255, 255)</value> | ||
<value key="x-appcenter-suggested-price">0</value> | ||
</custom> | ||
</component> |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
com.github.stsdc.monitor (0.2.0) xenial; urgency=low | ||
|
||
* Initial Release. | ||
|
||
-- Stanisław Dac <[email protected]> Fri, 18 Aug 2017 12:25:26 +0200 |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Source: com.github.stsdc.monitor | ||
Section: system | ||
Priority: extra | ||
Maintainer: David Hewitt <[email protected]> | ||
Build-Depends: cmake (>= 2.8), | ||
debhelper (>= 9), | ||
libgtk-3-dev, | ||
valac (>= 0.26), | ||
libgranite-dev, | ||
libbamf3-dev, | ||
libwnck-3-dev, | ||
|
||
|
||
Standards-Version: 3.9.3 | ||
|
||
Package: com.github.stsdc.monitor | ||
Architecture: any | ||
Depends: ${misc:Depends}, ${shlibs:Depends} | ||
Description: Manage processes and monitor system resources. |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Format: http://dep.debian.net/deps/dep5 | ||
Upstream-Name: com.github.stsdc.monitor | ||
Source: https://github.com/stsdc/monitor | ||
|
||
Files: * | ||
Copyright: 2017 Stanisław Dac | ||
License: GPL-3.0+ |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/make -f | ||
# -*- makefile -*- | ||
# Sample debian/rules that uses debhelper. | ||
# This file was originally written by Joey Hess and Craig Small. | ||
# As a special exception, when this file is copied by dh-make into a | ||
# dh-make output file, you may use that output file without restriction. | ||
# This special exception was added by Craig Small in version 0.37 of dh-make. | ||
|
||
# Uncomment this to turn on verbose mode. | ||
#export DH_VERBOSE=1 | ||
|
||
%: | ||
dh $@ | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (native) |
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