Replies: 2 comments 7 replies
-
|
Just compiled and tested successfully Eschecs and DocView. While writing the following script (my DocView updater), I wondered if it wouldn't a good idea to add docview.inf to FPGUI/docview/target. ## up-docview.sh
printf "This is $BASH_SOURCE\n"
## My desktop file for DocView
SHORTCUT=~/Desktop/docview.desktop
## DocView help file
INF=docview.inf
if [ ! -v FPGUI ]; then
printf "[ERROR] Variable not defined: FPGUI\n"
exit 0
elif [ ! -d $FPGUI ]; then
printf "[ERROR] Directory not found: %s\n" $FPGUI
exit 0
elif [ ! -f $SHORTCUT ]; then
printf "[ERROR] File not found: %s\n" $SHORTCUT
exit 0
elif [ ! -f $INF ]; then
printf "[ERROR] File not found: %s\n" $INF
exit 0
fi
printf "[INFO] fpGUI directory: %s\n" $FPGUI
pushd $FPGUI
printf "[INFO] Pull\n"
git pull
printf "[INFO] Build\n"
pasbuild clean
pasbuild compile -p unix
popd
DATE=$(date +"%y%m%d")
DIR="docview-$DATE"
printf "[INFO] Copy %s/docview to %s\n" $FPGUI $DIR
cp -rf $FPGUI/docview $DIR
printf "[INFO] Update %s\n" $SHORTCUT
sed -i -E "s/apps\/docview-[0-9]+/apps\/$DIR/g" $SHORTCUT
printf "[INFO] Copy %s\n" $INF
cp $INF $DIR/target
printf "[INFO] Done\n" |
Beta Was this translation helpful? Give feedback.
5 replies
-
That's a huge list! There are (maybe were) some oddities with the way copy paste/selection works. Like pasting text is left selected. I don't know if that got changed. I hadn't updated in a bit so I'll look. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I’ve merged the IDE work along with a few other updates. If you have a moment, any last-minute testing would be greatly appreciated before I roll out the 2.1.0 release this Sunday.
For a sneak peek at the changelogs, follow this link.
And for the adventurous ones 😅, here is the IDE merge commit:
Regards,
Graeme
Beta Was this translation helpful? Give feedback.
All reactions