mirror of
https://github.com/sbopkg/sbopkg
synced 2024-12-31 10:23:25 +01:00
Update ChangeLog-current.txt; also toss in a little something for Mauro :-)
This commit is contained in:
parent
c584e7d765
commit
16bed7ec9f
2 changed files with 7 additions and 3 deletions
|
@ -40,4 +40,8 @@ enhancements:
|
|||
translation for sbopkg. I am sure folks will appreciate the work she put
|
||||
into it. If anyone else wants to follow her lead and provide some other
|
||||
translations, I would be happy to include them. Thanks Marie-Claude!
|
||||
* Add in several patches from slakmagik that lets user choose from saved
|
||||
queues, modifies how the saved queues and backup queues work, and modifies
|
||||
several other queue-related functions and menus. Many thanks to slakmagik
|
||||
for his continually excellent contributions.
|
||||
+--------------------------+
|
||||
|
|
|
@ -1110,7 +1110,7 @@ load_user_queue () {
|
|||
leave this menu.")"
|
||||
|
||||
for ((i=0; i<${#USERQUEUE[*]}; i++)); do
|
||||
FILE=$QUEUEDIR/${USERQUEUE[$i]//\"/}
|
||||
FILE=$QUEUEDIR/${USERQUEUE[$i]//\"/} #"} # FIXME workaround for kate
|
||||
if [ -r $FILE ]; then
|
||||
# this inhibits add_item_to_queue's msgbox for each added app
|
||||
touch $TMP/sbopkg_user_queue.lck
|
||||
|
@ -1134,7 +1134,7 @@ delete_user_queue() {
|
|||
leave this menu.")"
|
||||
|
||||
for ((i=0; i<${#USERQUEUE[*]}; i++)); do
|
||||
FILE=$QUEUEDIR/${USERQUEUE[$i]//\"/}
|
||||
FILE=$QUEUEDIR/${USERQUEUE[$i]//\"/} #"} # FIXME workaround for kate
|
||||
if ! rm -f $FILE 2>/dev/null; then
|
||||
dialog --title "ERROR" --msgbox \
|
||||
"You do not have permission to remove $FILE" 0 0
|
||||
|
@ -1174,7 +1174,7 @@ rename_user_queue() {
|
|||
# I have to assign to this because I shrink the array later
|
||||
COUNTER=${#USERQUEUE[*]}
|
||||
for ((i=0; i<$COUNTER; i++)); do
|
||||
FILE=$QUEUEDIR/${USERQUEUE[$i]//\"/}
|
||||
FILE=$QUEUEDIR/${USERQUEUE[$i]//\"/} #"} # FIXME workaround for kate
|
||||
if [ -w "${FILE%/*}" ]; then
|
||||
# This loops so the user can be brought back to the inputbox on a
|
||||
# failure (continue) or back to the dir lister on success (break)
|
||||
|
|
Loading…
Reference in a new issue