Attachments

Issues and / or general discussion relating to Puppy

Moderator: Forum moderators

Post Reply
User avatar
MochiMoppel
Posts: 1138
Joined: Mon Jun 15, 2020 6:25 am
Location: Japan
Has thanked: 18 times
Been thanked: 372 times

Attachments

Post by MochiMoppel »


The old M​​​​​​​​​​urga board offered the possibility to upload new versions of an attachment. This would keep the view and download counters intact. With the new board all I can do is add an attachment and then delete the old one, which resets counters to 0.
Do I miss something?

[EDIT Sep 2022] Since I haven't received a response I now use this post for occasional testing of board features. Please don't reply.
 -

This is normal text
@MochiMoppel ,This is normal text 3vw




​Keyboard Shortcuts
────────────
 Ctrl+S   Silence
 Ctrl+V   Vanish
 Alt+Up   Shut up
 Alt+Down Close & Leave

Boundaries:
────────────
U+200B ZERO WIDTH SPACE and U+200C ZERO WIDTH NON-JOINER

the end















 English 
🇬🇧 ◀ SkyNews 
🇩🇪 ◀ DW 20221111,20230309
🇫🇷 🆗 EuroNews 20230309
🇫🇷 ■ France24
🇹🇷 ◀ TRT
🇸🇬 🆗 CNA
🇮🇳 ◀ NDTV
🇨🇳 ◀ CGTN
🇨🇬 🆗 Africanews
🇰🇪 🆗 NTV Kenya 20221111 20230309
🇳🇬 🆗 TVC Nigeria 20221111 20230309
🇺🇸 ■ ABC 7

XXXXXX Dead or boring XXXXXXXXXXXXXXXXXXXX
🇶🇦 ◀ Aljazeera 20230309 embed forbidden
🇬🇧 ◀ GBNews  
🇻🇦 ◀ Vatican News
🇳🇬 ◀ TVC Nigeria
🇹🇷 ◀ A News
🇰🇪 ◀ NTV Kenya
🇯🇵 🆗 NHK
🇺🇸 🆗 Bloomberg Quicktake


 Non English 
🇫🇷 ■ France24 (French)
🇩🇪 ◀ DW     (German) 20221111 20230309
🇵🇪 ◀ OE24    (German)
🇯🇵 🆗 JapaNews24 (Japanese)
🇯🇵 ■ ANN News  (Japanese)
🇮🇳 🆗 Sakshi  (Telugu)
🇮🇳 ◀ Janta TV (Hindi)
🇵🇰 ◀ Dawn News (Urdu)
🇵🇭 ■ UNTV (Filipino)
🇲🇽 ◀ Milenio Noticias (Spanish)

🇵🇭 DZRH Philippines
🇯🇵 HTB Hokkaido (Japanese)
🇯🇵 RKB Fukuoka (Japanese)
🇮🇳 IndiaToday
🇮🇳 India TV
🇮🇳 ABP News (Hindi)
🇮🇳 News18 (Hindi) not live stream
🇮🇳 Asianet (Malayalam)
🇮🇳 Odisha TV  (Odia)
🇵🇰 Dunya News (Urdu)


 Live Cams 
🌏 NASA ISS
🇯🇵 Shibuya station crossing (birdseye)
🇯🇵 Shibuya station crossing

🇯🇵 Shibuya station crossing
🇨🇿 Prague Airport
🇯🇵 Osaka Itami Airport




root# fc-list ":charset=260e"
/usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book
/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book
/usr/share/fonts/TTF/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique
/usr/share/fonts/default/TTF/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold
/usr/share/fonts/truetype/emojione/emojione-android.ttf: Emoji One:style=Regular
/usr/share/fonts/TTF/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book
/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold
/usr/share/fonts/default/TTF/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique
/usr/share/fonts/default/TTF/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book
/usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold
/usr/share/fonts/TTF/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique
/usr/share/fonts/default/TTF/DejaVuSans.ttf: DejaVu Sans:style=Book
/usr/share/fonts/default/TTF/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique
/usr/share/fonts/TTF/DejaVuSans.ttf: DejaVu Sans:style=Book
/usr/share/fonts/TTF/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold

root# fc-list ":charset=260e" --format="%{family}\n" |sort |uniq
DejaVu Sans
DejaVu Sans Mono
Emoji One
################REM Fossapup: mm_sel shows telephone rendered in DejaVu Sans, DejaVu Sans Mono but NOT in DejaYu Serif anand Droid Sans Mono

#!/bin/bash

For each character in string find supporting font(s)

Requires fc-list, at least version 2.11.91


str='ɨɆ01ab⃹🙏'
for ((z=0; z<${#str}; z+=1)); do
CHAR=${str:$z:1}
printf -v CHEX '%04x' "'$CHAR"
FLIST=$(fc-list ":charset=$CHEX" --format="%{family}\n" |sort |uniq)
FLIST=${FLIST//$'\n'/, }
[[ $FLIST ]] || FLIST='-- no suitable glyph in installed fonts --'
RESULT+="$CHAR U+$CHEX $FLIST"$'\n'
done
echo "$RESULT" | leafpad #pipe to leafpad as console might not be able to display unicode


str='‎▶‎⏽⏾⏿◀ (東京Tōkyō)'
for ((z=0; z<${#str}; z+=1)); do
CHAR=${str:$z:1}
(( $(printf %i "'$CHAR") < 126 )) && echo -n "$CHAR" && continue #print ASCII (incl. non printable and therefore non-glyphed tab and lf) without check
[[ $(fc-list ":charset=$(printf %x "'$CHAR")") ]] && echo -n "$CHAR" #print if CHAR supported by any installed font
done


Post Reply

Return to “Users”