-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
790bdd4
commit 0e70ffc
Showing
10 changed files
with
497 additions
and
0 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,5 @@ | ||
indicator-emojitwo (19.10.1-0ubuntu1~eoan1.1) eoan; urgency=medium | ||
|
||
* Initial release. | ||
|
||
-- Martin Wimpress <[email protected]> Thu, 03 Oct 2019 20:53:40 +0100 |
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,23 @@ | ||
Source: indicator-emojitwo | ||
Section: misc | ||
Priority: optional | ||
Homepage: https://github.com/ubuntu-mate/indicator-emojitwo | ||
Build-Depends: debhelper-compat (=12), | ||
python3, | ||
Standards-Version: 4.4.0 | ||
Maintainer: Martin Wimpress <[email protected]> | ||
|
||
Package: indicator-emojitwo | ||
Depends: gir1.2-appindicator3-0.1, | ||
gir1.2-gtk-3.0, | ||
gir1.2-notify-0.7, | ||
gir1.2-rsvg-2.0, | ||
python3-gi, | ||
python3-setproctitle, | ||
python3, | ||
${misc:Depends}, | ||
Architecture: all | ||
Description: A emoji picker for the indicator area using Emoji Two | ||
Emoji Picker featuring several menus and a search panel. | ||
. | ||
You must paste the emojis wherever you want to use them. |
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
assets/*.glade /usr/share/indicator-emojitwo/assets/ | ||
assets/*.json /usr/share/indicator-emojitwo/assets/ | ||
assets/categories/*.svg /usr/share/indicator-emojitwo/assets/categories/ | ||
assets/icon-default* /usr/share/indicator-emojitwo/assets/ | ||
assets/icon-mono*.png /usr/share/indicator-emojitwo/assets/ | ||
assets/svg/*.svg /usr/share/indicator-emojitwo/assets/svg/ | ||
indicator-emojitwo /usr/bin | ||
indicator-emojitwo.desktop /usr/share/applications |
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,28 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
pathfind() { | ||
OLDIFS="$IFS" | ||
IFS=: | ||
for p in $PATH; do | ||
if [ -x "$p/$*" ]; then | ||
IFS="$OLDIFS" | ||
return 0 | ||
fi | ||
done | ||
IFS="$OLDIFS" | ||
return 1 | ||
} | ||
|
||
if `pathfind xdg-icon-resource` ; then | ||
for SIZE in 16 22 24 32 48 64 ; do | ||
xdg-icon-resource install --theme ubuntu-mono-dark --size ${SIZE} /usr/share/indicator-emojitwo/assets/icon-mono-dark-${SIZE}.png indicator-emojitwo || true | ||
xdg-icon-resource install --theme ubuntu-mono-light --size ${SIZE} /usr/share/indicator-emojitwo/assets/icon-mono-light-${SIZE}.png indicator-emojitwo || true | ||
done | ||
xdg-icon-resource forceupdate || true | ||
fi | ||
|
||
#DEBHELPER# | ||
|
||
exit 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,28 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
pathfind() { | ||
OLDIFS="$IFS" | ||
IFS=: | ||
for p in $PATH; do | ||
if [ -x "$p/$*" ]; then | ||
IFS="$OLDIFS" | ||
return 0 | ||
fi | ||
done | ||
IFS="$OLDIFS" | ||
return 1 | ||
} | ||
|
||
if `pathfind xdg-icon-resource` ; then | ||
for SIZE in 16 22 24 32 48 64 ; do | ||
xdg-icon-resource uninstall --theme ubuntu-mono-dark --size ${SIZE} indicator-emojitwo || true | ||
xdg-icon-resource uninstall --theme ubuntu-mono-light --size ${SIZE} indicator-emojitwo || true | ||
done | ||
xdg-icon-resource forceupdate || true | ||
fi | ||
|
||
#DEBHELPER# | ||
|
||
exit 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,10 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh ${@} | ||
|
||
override_dh_missing: | ||
dh_missing --fail-missing | ||
|
||
get-orig-source: | ||
uscan --noconf --force-download --rename --download-current-version --destdir=.. |
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 (quilt) |
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,8 @@ | ||
Name: indicator-emojitwo | ||
Bug-Database: https://github.com/ubuntu-mate/indicator-emojitwo/issues | ||
Bug-Submit: https://github.com/ubuntu-mate/indicator-emojitwo/issues/new | ||
Contact: [email protected] | ||
Donation: https://ubuntu-mate.org/donate/ | ||
Repository: https://github.com/ubuntu-mate/indicator-emojitwo.git | ||
Repository-Browse: https://github.com/ubuntu-mate/indicator-emojitwo | ||
Security-Contact: [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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
version=3 | ||
https://github.com/ubuntu-mate/indicator-emojitwo/tags .*/V?(\d\S*)\.tar\.gz |