我想编辑 TestFlightApp 存档脚本,以便当它提示发布说明时,它将是一个比一行更大的文本框。现在它显示一行的大小,但允许我按 CTRL+J 添加多行。
但是,我的问题是试图查看我输入的内容很痛苦,因为我一次只能查看一行。
这就是我所拥有的。
# Bring up an AppleScript dialog in Xcode to enter the Release Notes for this (beta) build:
NOTES=`osascript -e "tell application \"Xcode\"" -e "set notes_dialog to display dialog \"Please provide some release notes:\nHint: use Ctrl-J for New Line.\" default answer \"\" buttons {\"Next\"} default button \"Next\" with icon 1" -e "set notes to text returned of notes_dialog" -e "end tell" -e "return notes"`