Glossy passport variant

This commit is contained in:
2026-03-07 16:57:15 +01:00
parent ea4760a81e
commit f89d5248f3
6 changed files with 377 additions and 4 deletions

View File

@@ -302,6 +302,7 @@ function askReg() {
MAXLENGTH[jhp]=25
MAXLENGTH[bounddipl]=17
MAXLENGTH[stapleddipl]=17
MAXLENGTH[stapled_glossy_dipl]=17
askStr ${MAXLENGTH[$1]} "Forename/Nickname" "Enter forename/nickname"
if [ $? -eq 1 ]; then
@@ -482,8 +483,9 @@ while [ true ]; do
dialog --backtitle "$BT" \
--menu "Select ID type:" 12 40 3 \
1 "Stapled diplomatic passport" \
2 "Junghackerpass" \
3 "Bound diplomatic passport" \
2 "Stapled glossy paper diplomatic passport" \
3 "Junghackerpass" \
4 "Bound diplomatic passport" \
9 "Logout" 2> $TMP
if [ $? -eq 9 ]; then
@@ -496,9 +498,11 @@ while [ true ]; do
case $TYPE in
1) menuFor stapleddipl
;;
2) menuFor jhp
2) menuFor stapled_glossy_dipl
;;
3) menuFor bounddipl
3) menuFor jhp
;;
4) menuFor bounddipl
;;
9) break
;;