mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-08-20 13:23:27 -07:00
Updated msys2 to msys2-base-x86_64-20200903
This commit is contained in:
parent
5bc8dbdc75
commit
2307d54cb1
18501 changed files with 1684082 additions and 720361 deletions
205
msys2/usr/share/mintty/emojis/getemojis
Normal file
205
msys2/usr/share/mintty/emojis/getemojis
Normal file
|
@ -0,0 +1,205 @@
|
|||
#! /bin/sh
|
||||
|
||||
trace () {
|
||||
# echo $* >&2
|
||||
true
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
-sh) postproc=cat
|
||||
shift;;
|
||||
*) postproc=sh;;
|
||||
esac
|
||||
|
||||
case `basename "$PWD"` in
|
||||
mintty)
|
||||
echo "You seem to be in a mintty config directory:" >&2
|
||||
echo " $PWD" >&2
|
||||
echo "For direct emoji deployment, run this script from its subdirectory 'emojis'." >&2
|
||||
exit;;
|
||||
esac
|
||||
|
||||
emojisurl0=http://www.unicode.org/emoji/charts/full-emoji-list.html
|
||||
emojisurl1=http://www.unicode.org/emoji/charts/full-emoji-modifiers.html
|
||||
|
||||
download () {
|
||||
if type curl
|
||||
then curl -RO -z `basename $1` $1
|
||||
else wget -N -t 1 $1
|
||||
fi
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
""|-h|--help)
|
||||
echo "Usage: `basename $0` [-d | DIR | .../full-emoji-list.html] [EMOJI_STYLE]..." >&2
|
||||
echo >&2
|
||||
echo "This script extracts emojis graphics (.png format) from a downloaded copy of" >&2
|
||||
echo " $emojisurl0" >&2
|
||||
echo " $emojisurl1" >&2
|
||||
echo "for the selected emoji style sets, or (if none selected) all of them:" >&2
|
||||
echo " apple google facebook windows twitter emojione samsung" >&2
|
||||
echo "and always extracts common emoji graphics." >&2
|
||||
echo >&2
|
||||
echo "Options:" >&2
|
||||
echo " -d Download the chart files" >&2
|
||||
echo " DIR Expect the chart files in given directory" >&2
|
||||
echo >&2
|
||||
echo "Warning: with all styles selected, this may take a while." >&2
|
||||
echo >&2
|
||||
echo "Note: for direct deployment, first go into subdirectory 'emojis' of one of the" >&2
|
||||
echo "mintty config directories:" >&2
|
||||
echo ' ~/.mintty' >&2
|
||||
echo ' ~/.config/mintty' >&2
|
||||
echo ' $APPDATA/mintty' >&2
|
||||
echo ' /usr/share/mintty' >&2
|
||||
exit;;
|
||||
-d|--download)
|
||||
if download $emojisurl0 && download $emojisurl1
|
||||
then emojis0=full-emoji-list.html
|
||||
emojis1=full-emoji-modifiers.html
|
||||
else echo Download failed >&2
|
||||
exit
|
||||
fi
|
||||
shift;;
|
||||
*.html) emojis1=`dirname "$1"`/full-emoji-modifiers.html
|
||||
if [ -r "$1" -a -r "$emojis1" ]
|
||||
then emojis0="$1"
|
||||
else echo Not readable: "$1" "$emojis1" >&2
|
||||
exit
|
||||
fi
|
||||
shift;;
|
||||
*) if [ -d "$1" ]
|
||||
then emojis0="$1"/full-emoji-list.html
|
||||
emojis1="$1"/full-emoji-modifiers.html
|
||||
if [ -r "$emojis0" -a -r "$emojis1" ]
|
||||
then true
|
||||
else echo Not readable: "$emojis0" "$emojis1" >&2
|
||||
exit
|
||||
fi
|
||||
shift
|
||||
else echo Missing file name of full emoji list >&2
|
||||
exit
|
||||
fi;;
|
||||
esac
|
||||
|
||||
echo -n "Using " >&2
|
||||
cat "$emojis0" | sed -e "s,<title>\(.*\)</title>,\1," -e t -e d >&2
|
||||
|
||||
#cat "$emojis0" |
|
||||
#sed -e "/^<\/tr/ q" -e "s/.*<th.*#col-vendor.>\([^.<]*\).*/\1/" -e t -e d |
|
||||
#pr -t -n | sed -e "s,^,vendor ," -e 7q
|
||||
# 11.0:
|
||||
# vendor 1 Appl
|
||||
# vendor 2 Goog
|
||||
# vendor 3 Twtr
|
||||
# vendor 4 One
|
||||
# vendor 5 FB
|
||||
# vendor 6 Sams
|
||||
# vendor 7 Wind
|
||||
# 12.0:
|
||||
# vendor 1 Appl
|
||||
# vendor 2 Goog
|
||||
# vendor 3 FB
|
||||
# vendor 4 Wind
|
||||
# vendor 5 Twtr
|
||||
# vendor 6 Joy
|
||||
# vendor 7 Sams
|
||||
|
||||
seli=0
|
||||
for vendor in `cat "$emojis0" |
|
||||
sed -e "/^<\/tr/ q" -e "s/.*<th.*#col-vendor.>\([^.<]*\).*/\1/" -e t -e d |
|
||||
sed -e 7q`
|
||||
do seli=`expr $seli + 1`
|
||||
case "$vendor" in
|
||||
Appl) apple=$seli;;
|
||||
Goog) google=$seli;;
|
||||
FB) facebook=$seli;;
|
||||
Wind) windows=$seli;;
|
||||
Twtr) twitter=$seli;;
|
||||
One|Joy) emojione=$seli;;
|
||||
Sams) samsung=$seli;;
|
||||
esac
|
||||
done
|
||||
|
||||
case "$1" in
|
||||
"") set - apple google facebook windows twitter emojione samsung;;
|
||||
esac
|
||||
sel=
|
||||
while case "$1" in
|
||||
apple) seli="$apple";;
|
||||
google) seli="$google";;
|
||||
facebook) seli="$facebook";;
|
||||
windows) seli="$windows";;
|
||||
twitter) seli="$twitter";;
|
||||
joy|emojione) seli="$emojione";;
|
||||
samsung) seli="$samsung";;
|
||||
"") false;;
|
||||
*) echo emoji set "$1" not known; exit;;
|
||||
esac
|
||||
do sel="$sel$seli"
|
||||
mkdir -p "$1"
|
||||
[ -e "$seli" ] || ln -s "$1" "$seli"
|
||||
shift
|
||||
done
|
||||
mkdir -p common
|
||||
[ -e 0 ] || ln -s common 0
|
||||
|
||||
export sel
|
||||
|
||||
echo "Warning: this may take a few hours on Cygwin" >&2
|
||||
|
||||
LC_ALL=C
|
||||
export LC_ALL
|
||||
|
||||
total=`grep -e "name='\([^']*\)'.*U+" "$emojis0" "$emojis1" | wc -l`
|
||||
export total
|
||||
|
||||
(
|
||||
echo "Extracting $total emojis " >&2
|
||||
|
||||
echo LC_ALL=C
|
||||
echo export LC_ALL
|
||||
echo total=$total
|
||||
echo sel=$sel
|
||||
|
||||
cat <<\/EOS
|
||||
n=0
|
||||
|
||||
name () {
|
||||
ename=$1
|
||||
style=0
|
||||
n=$(( $n + 1 ))
|
||||
p=$(( ${n}00 / $total ))
|
||||
echo "emoji $ename (${p}%)" >&2
|
||||
}
|
||||
|
||||
img0 () {
|
||||
echo " common 0/$ename.png" >&2
|
||||
echo "$1" | base64 -d > 0/$ename.png
|
||||
}
|
||||
|
||||
img () {
|
||||
style=$(( $style + 1 ))
|
||||
case $sel in
|
||||
*$style*) echo "$1" | base64 -d > $style/$ename.png;;
|
||||
esac
|
||||
}
|
||||
|
||||
imgskip () {
|
||||
style=$(( $style + 1 ))
|
||||
case $sel in
|
||||
*$style*) echo " skip $style/$ename.png" >&2;;
|
||||
esac
|
||||
}
|
||||
|
||||
/EOS
|
||||
|
||||
cat "$emojis0" "$emojis1" |
|
||||
sed -e "s/^.*name='\([^']*\)'.*U+.*/name \1/" -e "t name" \
|
||||
-e "s/.*—.*/imgskip/" -e t \
|
||||
-e "s@^.*….*src='data:image/png;base64,\([^']*\)'.*@img0 \1@" -e t \
|
||||
-e "s@^.*src='data:image/png;base64,\([^']*\)'.*@img \1@" -e t \
|
||||
-e d \
|
||||
-e ": name" \
|
||||
-e "s,_,-,g"
|
||||
) | $postproc
|
File diff suppressed because it is too large
Load diff
|
@ -138,3 +138,6 @@ msgstr "Colors"
|
|||
msgid "Show &bold as colour"
|
||||
msgstr "Show &bold as color"
|
||||
|
||||
msgid "as colour"
|
||||
msgstr "as color"
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1358
msys2/usr/share/mintty/lang/hr.po
Normal file
1358
msys2/usr/share/mintty/lang/hr.po
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1351
msys2/usr/share/mintty/lang/nb.po
Normal file
1351
msys2/usr/share/mintty/lang/nb.po
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
1347
msys2/usr/share/mintty/lang/sv.po
Normal file
1347
msys2/usr/share/mintty/lang/sv.po
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
BIN
msys2/usr/share/mintty/sounds/BOING.WAV
Normal file
BIN
msys2/usr/share/mintty/sounds/BOING.WAV
Normal file
Binary file not shown.
24
msys2/usr/share/mintty/sounds/README.md
Normal file
24
msys2/usr/share/mintty/sounds/README.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
This directory contains sound files for deployment as mintty bell sounds.
|
||||
|
||||
### Mintty bell sounds ###
|
||||
|
||||
The BOING sound
|
||||
is available on [YouTube, BOING.WAV](http://kunalsdatabase.com/ebooks/computer_ebooks/Hacking%20eBooks%20Collection/Hacking/Hacking%20Tools/Hacking%20Tools/HO2K%20v0.1.8.1/HO2K%20v0.1.8.1/).
|
||||
|
||||
Other nice boing sounds could be extracted from
|
||||
[YouTube, Boing 0](https://www.youtube.com/watch?v=iew9op9aPLQ)
|
||||
or
|
||||
[YouTube, Boing 2](https://www.youtube.com/watch?v=d7vfbyFl5kc).
|
||||
|
||||
Further sounds are selected from a contribution of “naknak”, with some instructions
|
||||
[how to make bell sounds](https://github.com/mintty/mintty/issues/711#issuecomment-483074839)
|
||||
from sound sources that may be useful to others.
|
||||
The sounds are provided under the creative commons license.
|
||||
See the subfolder `archive` in the mintty repository for the complete set.
|
||||
|
||||
Suitable Windows sounds may be `Windows Default.wav`, `Windows Ding.wav`,
|
||||
`Windows Critical Stop.wav`, from the Windows subfolder `Media`.
|
||||
|
||||
To deploy a sound file to be listed in the Options dialog,
|
||||
simply copy a .wav file into the config subfolder `sounds`
|
||||
(e.g. in `$HOME/.config/mintty` or `$APPDATA/mintty`).
|
BIN
msys2/usr/share/mintty/sounds/ambient-drip-lo.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/ambient-drip-lo.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/ambient-drop.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/ambient-drop.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/ambient-glass.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/ambient-glass.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/ambient-splash.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/ambient-splash.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/ambient-swoosh.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/ambient-swoosh.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/ambient-uncork.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/ambient-uncork.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/percussive-bongo-hi.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/percussive-bongo-hi.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/percussive-bongo-lo.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/percussive-bongo-lo.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/percussive-gong.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/percussive-gong.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/percussive-knock.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/percussive-knock.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/percussive-synthkick-lo.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/percussive-synthkick-lo.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/resonant-flute.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/resonant-flute.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/resonant-organ.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/resonant-organ.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/resonant-reverb.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/resonant-reverb.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/resonant-twang.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/resonant-twang.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-bass.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-bass.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-gib.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-gib.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-honk.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-honk.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-intruder.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-intruder.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-rave.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-rave.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-select.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-select.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-spike.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-spike.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-sproing.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-sproing.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/synthetic-square.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/synthetic-square.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/vocal-boo.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/vocal-boo.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/vocal-hah.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/vocal-hah.wav
Normal file
Binary file not shown.
BIN
msys2/usr/share/mintty/sounds/vocal-yip.wav
Normal file
BIN
msys2/usr/share/mintty/sounds/vocal-yip.wav
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue