Skip to content

Commit

Permalink
Update App Versions, run by GitHub Actions - Apps updated:
Browse files Browse the repository at this point in the history
- FF Multi Converter-all: 2.2.0 -> 2.2.2
- Marathon-all: 20231125 -> 20240119
- Microsoft Teams-arm64: 1.4.2 -> 1.4.3
- Microsoft Teams-armhf: 1.4.2 -> 1.4.3
- Min-arm64: 1.31.0 -> 1.31.1
- Min-armhf: 1.31.0 -> 1.31.1
- Node.js-all: v21.6.0 -> v21.6.1
- Oh My Posh-all: v19.6.0 -> v19.8.0
- Reaper-arm64: 708 -> 709
- Reaper-armhf: 708 -> 709
- Unciv-all: 4.9.19 -> 4.10.1
- VSCodium-arm64: 1.85.1.23348 -> 1.85.2.24019
- VSCodium-armhf: 1.85.1.23348 -> 1.85.2.24019
- WorldPainter-all: 2.22.0 -> 2.22.1
- XSnow-all: 3.7.7~pre02 -> 3.7.7
- Zoom-arm64: 5.17.1.1840 -> 5.17.5.2543
  • Loading branch information
github-actions[bot] authored and theofficialgman committed Jan 24, 2024
1 parent c172311 commit 64c0119
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion apps/FF Multi Converter/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=2.2.0
version=2.2.2

# remove deprecated files. Old installations used a multitude of install methods so the files could be in many places.
if [ -f /usr/local/bin/ffmulticonverter ] || [ -f /usr/local/share/applications/ffmulticonverter.desktop ]; then
Expand Down
2 changes: 1 addition & 1 deletion apps/Marathon/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=20231125
version=20240119

#made according to the instructions from the developer, but was not originally created for the Pi
#https://github.com/Aleph-One-Marathon/alephone/wiki/Linux%20Install%20Instructions
Expand Down
2 changes: 1 addition & 1 deletion apps/Microsoft Teams/install-32
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=1.4.2
version=1.4.3

install_packages https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v${version}/teams-for-linux_${version}_armv7l.deb || exit 1

Expand Down
2 changes: 1 addition & 1 deletion apps/Microsoft Teams/install-64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=1.4.2
version=1.4.3

install_packages https://github.com/IsmaelMartinez/teams-for-linux/releases/download/v${version}/teams-for-linux_${version}_arm64.deb || exit 1

Expand Down
2 changes: 1 addition & 1 deletion apps/Min/install-32
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=1.31.0
version=1.31.1

if ! package_installed min ;then
sudo rm -f /usr/bin/min
Expand Down
2 changes: 1 addition & 1 deletion apps/Min/install-64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=1.31.0
version=1.31.1

if ! package_installed min ;then
sudo rm -f /usr/bin/min
Expand Down
2 changes: 1 addition & 1 deletion apps/Node.js/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=v21.6.0
version=v21.6.1
version2=v0.39.7

#Checking if using armv6
Expand Down
2 changes: 1 addition & 1 deletion apps/Oh My Posh/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=v19.6.0
version=v19.8.0

#determine filename of download
if [ $arch == 32 ];then
Expand Down
2 changes: 1 addition & 1 deletion apps/Reaper/install-32
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=708
version=709
version2=1.2.4.3
base_ver="$(echo ${version} | sed -e 's/.$//' -e 's/.$//')"

Expand Down
2 changes: 1 addition & 1 deletion apps/Reaper/install-64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=708
version=709
version2=1.2.4.3
base_ver="$(echo ${version} | sed -e 's/.$//' -e 's/.$//')"

Expand Down
2 changes: 1 addition & 1 deletion apps/Unciv/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=4.9.19
version=4.10.1

### Make directory ~/Unciv if not available
mkdir -p $HOME/Unciv || error "Failed to create folder $HOME/Unciv"
Expand Down
2 changes: 1 addition & 1 deletion apps/VSCodium/install-32
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
sudo rm -f /etc/apt/sources.list.d/vscodium.list /etc/apt/trusted.gpg.d/vscodium.gpg

version=1.85.1.23348
version=1.85.2.24019

install_packages "https://github.com/VSCodium/vscodium/releases/download/${version}/codium_${version}_armhf.deb" || exit 1

2 changes: 1 addition & 1 deletion apps/VSCodium/install-64
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
sudo rm -f /etc/apt/sources.list.d/vscodium.list /etc/apt/trusted.gpg.d/vscodium.gpg

version=1.85.1.23348
version=1.85.2.24019

install_packages "https://github.com/VSCodium/vscodium/releases/download/${version}/codium_${version}_arm64.deb" || exit 1

2 changes: 1 addition & 1 deletion apps/WorldPainter/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=2.22.0
version=2.22.1

adoptium_installer || exit 1
install_packages temurin-17-jre https://www.worldpainter.net/files/worldpainter_${version}.deb || exit 1
Expand Down
2 changes: 1 addition & 1 deletion apps/XSnow/install
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=3.7.7~pre02
version=3.7.7

install_packages build-essential libx11-dev libxpm-dev libxt-dev libxext-dev pkg-config libxml2-dev libgtk-3-dev libxinerama-dev libxtst-dev libgsl-dev || exit 1

Expand Down
2 changes: 1 addition & 1 deletion apps/Zoom/install-64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=5.17.1.1840
version=5.17.5.2543

#install box64
"${DIRECTORY}/manage" install-if-not-installed 'Box64' || error "Box64 installation failed!"
Expand Down

0 comments on commit 64c0119

Please sign in to comment.