-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix missing commas Add build tag Additional items commas Fix appindicator reference Can't have - in executable name Tons of meta data changes Extra references Renamed again
- Loading branch information
Showing
45 changed files
with
138 additions
and
158 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
build/* | ||
debian/build/* | ||
debian/com.github.kjlaw89.web-watcher.debhelper.log | ||
debian/com.github.kjlaw89.web-watcher.substvars | ||
debian/com.github.kjlaw89.web-watcher/ | ||
debian/com.github.kjlaw89.webwatcher.debhelper.log | ||
debian/com.github.kjlaw89.webwatcher.substvars | ||
debian/com.github.kjlaw89.webwatcher/ | ||
debian/debhelper-build-stamp | ||
debian/files | ||
debian/files |
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 was deleted.
Oops, something went wrong.
26 changes: 22 additions & 4 deletions
26
...om.github.kjlaw89.web-watcher.appdata.xml → ...com.github.kjlaw89.webwatcher.appdata.xml
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,22 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Copyright 2018 KJ Lawrence <[email protected]> --> | ||
<component type="desktop-application"> | ||
<id>com.github.kjlaw89.web-watcher</id> | ||
<id>com.github.kjlaw89.webwatcher</id> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-3.0+</project_license> | ||
<name>App Template</name> | ||
<summary>Template for vala apps</summary> | ||
<name>Web Watcher</name> | ||
<summary>Know when your websites are misbehaving!</summary> | ||
<developer_name>KJ Lawrence</developer_name> | ||
<releases> | ||
<release version="1.0.0" date="2018-05-04"/> | ||
</releases> | ||
<provides> | ||
<binary>com.github.kjlaw89.web-watcher</binary> | ||
<binary>com.github.kjlaw89.webwatcher</binary> | ||
</provides> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://raw.githubusercontent.com/kjlaw89/web-watcher/master/data/images/screenshot1.png</image> | ||
</screenshot> | ||
<screenshot type="default"> | ||
<image>https://raw.githubusercontent.com/kjlaw89/web-watcher/master/data/images/screenshot2.png</image> | ||
</screenshot> | ||
</screenshots> | ||
<description> | ||
<p>Know when your websites are misbehaving!</p> | ||
|
||
<h2>Features</h2> | ||
|
||
<ul> | ||
<li>Easily add as many sites as you wish to monitor</li> | ||
<li>All sites are checked every minute</li> | ||
<li>Extra meta-data (title and icon) are automatically grabbed</li> | ||
<li>Get a notification if a site goes down or comes back up</li> | ||
<li>View all historical data for the past 2 hours (with eventual capabilities to export all data)</li> | ||
<li>Does not require an external service (uses local network to check sites)</li> | ||
<li>Runs in background automatically once started via System tray indicator</li> | ||
</ul> | ||
</description> | ||
<url type="homepage">https://kjlaw89.github.io/web-watcher/</url> | ||
<url type="bugtracker">https://github.com/kjlaw89/web-watcher/issues</url> | ||
|
6 changes: 3 additions & 3 deletions
6
data/com.github.kjlaw89.web-watcher.desktop → data/com.github.kjlaw89.webwatcher.desktop
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,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<gresources> | ||
|
||
<gresource prefix="/com/github/kjlaw89/webwatcher/css"> | ||
<file alias="style.css" compressed="true">css/style.css</file> | ||
</gresource> | ||
|
||
<gresource prefix="/com/github/webwatcher/images"> | ||
<file alias="com.github.kjlaw89.webwatcher.svg" compressed="true" preprocess="xml-stripblanks">images/com.github.kjlaw89.webwatcher.svg</file> | ||
|
||
<file alias="16-com.github.kjlaw89.webwatcher.svg" compressed="true" preprocess="xml-stripblanks">images/icons/16/com.github.kjlaw89.webwatcher.svg</file> | ||
|
||
<file alias="24-com.github.kjlaw89.webwatcher.svg" compressed="true" preprocess="xml-stripblanks">images/icons/24/com.github.kjlaw89.webwatcher.svg</file> | ||
|
||
<file alias="32-com.github.kjlaw89.webwatcher.svg" compressed="true" preprocess="xml-stripblanks">images/icons/32/com.github.kjlaw89.webwatcher.svg</file> | ||
|
||
<file alias="48-com.github.kjlaw89.webwatcher.svg" compressed="true" preprocess="xml-stripblanks">images/icons/48/com.github.kjlaw89.webwatcher.svg</file> | ||
|
||
<file alias="64-com.github.kjlaw89.webwatcher.svg" compressed="true" preprocess="xml-stripblanks">images/icons/64/com.github.kjlaw89.webwatcher.svg</file> | ||
|
||
<file alias="128-com.github.kjlaw89.webwatcher.svg" compressed="true" preprocess="xml-stripblanks">images/icons/128/com.github.kjlaw89.webwatcher.svg</file> | ||
</gresource> | ||
|
||
</gresources> |
2 changes: 1 addition & 1 deletion
2
...om.github.kjlaw89.web-watcher.gschema.xml → ...com.github.kjlaw89.webwatcher.gschema.xml
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,15 +1,20 @@ | ||
Source: com.github.kjlaw89.web-watcher | ||
Source: com.github.kjlaw89.webwatcher | ||
Section: x11 | ||
Priority: extra | ||
Maintainer: KJ Lawrence <[email protected]> | ||
Build-Depends: meson (>= 0.40), | ||
valac (>= 0.26), | ||
debhelper (>= 9), | ||
libgranite-dev (>= 0.3.0), | ||
libgtk-3-dev | ||
libgtk-3-dev, | ||
libsqlite3-dev, | ||
libunity-dev, | ||
libappindicator3-dev, | ||
libsoup2.4-dev, | ||
libjson-glib-dev | ||
Standards-Version: 3.9.3 | ||
|
||
Package: com.github.kjlaw89.web-watcher | ||
Package: com.github.kjlaw89.webwatcher | ||
Architecture: any | ||
Depends: ${misc:Depends}, ${shlibs:Depends} | ||
Description: Template for vala apps | ||
Description: Know when your websites are misbehaving! |
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,9 +1,9 @@ | ||
Format: http://dep.debian.net/deps/dep5 | ||
Upstream-Name: App Template | ||
Upstream-Name: Web Watcher | ||
Source: https://github.com/kjlaw89/web-watcher | ||
|
||
Files: * | ||
Copyright: 2017 KJ Lawrence <[email protected]> | ||
Copyright: 2018 KJ Lawrence <[email protected]> | ||
License: GPL-3.0+ | ||
|
||
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
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 +0,0 @@ | ||
pt_BR | ||
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 +0,0 @@ | ||
src/configs/Properties.vala | ||
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,17 @@ | ||
# Copyright (c) 2018 KJ Lawrence <[email protected]> | ||
# This file is distributed under the same license as the com.github.kjlaw89.webwatcher package. | ||
# KJ Lawrence <[email protected]>, 2018. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: com.github.kjlaw89.webwatcher\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2018-05-03 12:00-0000\n" | ||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"Language: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,5 +1,5 @@ | ||
/* | ||
* Copyright (c) 2017 KJ Lawrence <[email protected]> | ||
* Copyright (c) 2018 KJ Lawrence <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public | ||
|
@@ -35,7 +35,7 @@ namespace App { | |
/** | ||
* Constructs a new {@code Application} object. | ||
* | ||
* @see web-watcher.Configs.Constants | ||
* @see webwatcher.Configs.Constants | ||
*/ | ||
public Application () { | ||
Object ( | ||
|
Oops, something went wrong.