diff --git a/.github/ISSUE_TEMPLATE/app-request.md b/.github/ISSUE_TEMPLATE/app-request.md new file mode 100644 index 0000000..6e92b25 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/app-request.md @@ -0,0 +1,14 @@ +--- +name: App request +about: Suggest an app to be added to Pi-Apps (not an app submission) +title: '' +labels: App Request +assignees: '' + +--- + +Can this app run on RPi? If so, please provide a link to a tutorial if applicable. +Is this app something many GUI users would find useful? +Is this app installable with `sudo apt install`? + +If you've created a zip file for this app, upload it here. diff --git a/.github/ISSUE_TEMPLATE/suggestion.md b/.github/ISSUE_TEMPLATE/suggestion.md new file mode 100644 index 0000000..0d71349 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/suggestion.md @@ -0,0 +1,10 @@ +--- +name: Suggestion +about: Have an idea for Pi-Apps and it's not a bug or app request? +title: '' +labels: suggestion +assignees: '' + +--- + + diff --git a/apps/Minecraft Bedrock/credits b/apps/Minecraft Bedrock/credits index 29bda86..30fe3ff 100644 --- a/apps/Minecraft Bedrock/credits +++ b/apps/Minecraft Bedrock/credits @@ -1,2 +1,3 @@ Install script written by RaspberryPiNews on YT -Original program made by ChristopherHX on Github \ No newline at end of file +Appimage made by ChristopherHX on Github +Program made by everyone at [minecraft-linux](https://github.com/minecraft-linux) on Github diff --git a/apps/Minecraft Bedrock/install-32 b/apps/Minecraft Bedrock/install-32 index fba9ce9..fe80980 100755 --- a/apps/Minecraft Bedrock/install-32 +++ b/apps/Minecraft Bedrock/install-32 @@ -11,9 +11,9 @@ function error { #Download file cd ~ -curl -L https://github.com/ChristopherHX/linux-packaging-scripts/releases/download/ng.appimage/Minecraft_Bedrock_Launcher-arm.0.0.619.AppImage --output MCBedrock.AppImage +curl -L https://www.dropbox.com/s/561zph65hlh6lbm/Minecraft_Bedrock_Launcher-arm.0.0.626.AppImage --output MCBedrock.AppImage chmod +x MCBedrock.AppImage -sudo mv MCBedrock.AppImage /usr/bin/MCBedrock.AppImage +sudo mv MCBedrock.AppImage /opt/MCBedrock.AppImage #Make Desktop file echo '[Desktop Entry] @@ -22,7 +22,7 @@ Type=Application Name=Minecraft Bedrock Launcher Comment=A Minecraft: Bedrock Edition Icon=$(dirname "$0")/icon-64.png -Exec=bash -c "sudo modprobe fuse ; GALLIUM_HUD=simple,fps /usr/bin/MCBedrock.AppImage" +Exec=bash -c "sudo modprobe fuse ; GALLIUM_HUD=simple,fps /opt/MCBedrock.AppImage" Categories=Game; Terminal=false StartupNotify=true' > ~/.local/share/applications/minecraftbedrock.desktop diff --git a/apps/Minecraft Bedrock/install-64 b/apps/Minecraft Bedrock/install-64 index 428f6ec..96d261e 100755 --- a/apps/Minecraft Bedrock/install-64 +++ b/apps/Minecraft Bedrock/install-64 @@ -12,9 +12,9 @@ sudo dpkg --add-architecture armhf #Download file cd ~ -curl -L https://github.com/ChristopherHX/linux-packaging-scripts/releases/download/ng.appimage/Minecraft_Bedrock_Launcher-arm_aarch64.0.0.619.AppImage --output MCBedrock.AppImage +curl -L https://www.dropbox.com/s/ewkdoylatsmvjgb/Minecraft_Bedrock_Launcher-arm_aarch64.0.0.626.AppImage --output MCBedrock.AppImage chmod +x MCBedrock.AppImage -sudo mv MCBedrock.AppImage /usr/bin/MCBedrock.AppImage +sudo mv MCBedrock.AppImage /opt/MCBedrock.AppImage #Make Desktop file echo '[Desktop Entry] @@ -23,8 +23,7 @@ Type=Application Name=Minecraft Bedrock Launcher Comment=A Minecraft: Bedrock Edition Icon=$(dirname "$0")/icon-64.png -Exec=bash -c "GALLIUM_HUD=simple,fps /usr/bin/MCBedrock.AppImage" +Exec=bash -c "GALLIUM_HUD=simple,fps /opt/MCBedrock.AppImage" Categories=Game; Terminal=false -StartupNotify=true' > ~/.local/share/applications/minecraftbedrock.desktop - +StartupNotify=true' > ~/.local/share/applications/minecraftbedrock.desktop \ No newline at end of file diff --git a/apps/Minecraft Bedrock/uninstall b/apps/Minecraft Bedrock/uninstall index a084ade..503fe45 100755 --- a/apps/Minecraft Bedrock/uninstall +++ b/apps/Minecraft Bedrock/uninstall @@ -6,8 +6,7 @@ function error { exit 1 } -#Remove app -sudo rm /usr/bin/MCBedrock.AppImage +sudo rm /opt/MCBedrock.AppImage rm -rf ~/.cache/Minecraft\ Linux\ Launcher && rm -rf ~/.cache/mcpelauncher && rm -rf ~/.cache/mcpelauncher-webview && rm -rf ~/.cache/msa && rm -rf ~/.cache/msa-ui-qt && rm -rf ~/.local/share/msa #Dialog @@ -36,5 +35,4 @@ case $CHOICE in 2) echo "Removing ALL game data! Press [CTRL+C within the next 10 seconds to cancel]" && sleep 10 && echo "REMOVING DATA!" && rm -rf ~/.config/Minecraft\ Linux\ Launcher && rm -rf ~/.cache/Minecraft\ Linux\ Launcher && rm -rf ~/.cache/mcpelauncher && rm -rf ~/.cache/mcpelauncher-webview && rm -rf ~/.cache/msa && rm -rf ~/.cache/msa-ui-qt && rm -rf ~/.local/share/mcpelauncher && rm -rf ~/.local/share/msa ;; -esac - +esac \ No newline at end of file