Skip to content

Commit

Permalink
Downgrade Chromium: update version list description
Browse files Browse the repository at this point in the history
  • Loading branch information
Botspot committed Feb 26, 2024
1 parent 10f16a0 commit e41cc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/Downgrade Chromium/description
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Change Chromium versions easily.
Chromium 65, 72, 74, 78, 84, 86, 88, 92, 95, 98, 101, 104, 109, 113, and 116.
Chromium 65, 72, 74, 78, 84, 86, 88, 92, 95, 98, 101, 104, 109, 113, 116, 119, 120, and 121. (on 64-bit you can only go as far back as 92)
Uninstall the app to go back to the latest Chromium version available.
Beware that downgrading Chromium versions can mess up your config folder. To be safe, this app makes a backup of Chromium's config folder. When uninstalling, you will have the opportunity to restore the backup config folder.
Using older browser versions can be a security risk, proceed with caution.
Expand Down

1 comment on commit e41cc0f

@theofficialgman
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you want to keep this automatically updated you can have a custom auto update script that simply sed replaces the current text with the detected available versions based on what is on the piOS repo.
auto update scripts run from within the corresponding app folder

apps=( .github/workflows/updates/*.sh )
for app_directory in "${apps[@]}"; do
echo
#make sure we are still in the main workspace (incase an update script left off elsewhere)
cd $GITHUB_WORKSPACE
export app_name="$(echo ${app_directory%.*} | sed 's:.*/::')"
echo "$app_name"
status "Checking $app_name for updates"
# move to app folder
cd "$GITHUB_WORKSPACE/apps/$app_name"
# run app update script
"$GITHUB_WORKSPACE/$app_directory"
done

Please sign in to comment.