1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-28 11:17:46 +00:00

Step 8: Rename other involved file extensions

- qb64*.bat, .sh, .command, .desktop, .sym to qb64pe*.* respectively
- Excludes mentions in the help (*.txt) files
This commit is contained in:
Roland Heyder 2022-08-11 22:53:01 +02:00
parent e68582b6f2
commit db6081b1ae
4 changed files with 13 additions and 13 deletions

View file

@ -8,8 +8,8 @@ SUCCESS=$?
rm qb64_bootstrap
rm internal/source/*
rm internal/temp/debug_* internal/temp/recompile_*
rm internal/temp/qb64.sym
rm internal/temp/qb64_bootstrap.sym
rm internal/temp/qb64pe.sym
rm internal/temp/qb64pe_bootstrap.sym
mv internal/temp/* internal/source/

4
.gitignore vendored
View file

@ -11,7 +11,7 @@ internal/commit.txt
tempfoldersearch.bin
internal/c/qbx[2-9].cpp
*.ttf
/run_qb64.sh
/qb64
/run_qb64pe.sh
/qb64pe
mingw32.exe
mingw64.exe

View file

@ -115,20 +115,20 @@ make OS=lnx BUILD_QB64=y -j3
if [ -e "./qb64" ]; then
echo "Done compiling!!"
echo "Creating ./run_qb64.sh script..."
echo "Creating ./run_qb64pe.sh script..."
_pwd=`pwd`
echo "#!/bin/sh" > ./run_qb64.sh
echo "cd $_pwd" >> ./run_qb64.sh
echo "./qb64 &" >> ./run_qb64.sh
echo "#!/bin/sh" > ./run_qb64pe.sh
echo "cd $_pwd" >> ./run_qb64pe.sh
echo "./qb64 &" >> ./run_qb64pe.sh
chmod +x ./run_qb64.sh
chmod +x ./run_qb64pe.sh
#chmod -R 777 ./
echo "Adding QB64 menu entry..."
cat > ~/.local/share/applications/qb64.desktop <<EOF
cat > ~/.local/share/applications/qb64pe.desktop <<EOF
[Desktop Entry]
Name=QB64 Programming IDE
GenericName=QB64 Programming IDE
Exec=$_pwd/run_qb64.sh
Exec=$_pwd/run_qb64pe.sh
Icon=$_pwd/$QB64_ICON_PATH/$QB64_ICON_NAME
Terminal=false
Type=Application
@ -144,7 +144,7 @@ EOF
echo "QB64 is located in this folder:"
echo "`pwd`"
echo "There is a ./run_qb64.sh script in this folder that should let you run qb64 if using the executable directly isn't working."
echo "There is a ./run_qb64pe.sh script in this folder that should let you run qb64 if using the executable directly isn't working."
echo
echo "You should also find a QB64 option in the Programming/Development section of your menu you can use."
else

View file

@ -82,7 +82,7 @@ IF _DIREXISTS("internal") = 0 THEN
PRINT "QB64 cannot locate the 'internal' folder"
PRINT
PRINT "Check that QB64 has been extracted properly."
PRINT "For MacOSX, launch 'qb64_start.command' or enter './qb64' in Terminal."
PRINT "For MacOSX, launch 'qb64pe_start.command' or enter './qb64' in Terminal."
PRINT "For Linux, in the console enter './qb64'."
DO
_LIMIT 1