Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **12.03.25:** - Clear singletons one launch to properly support persistance.
* **13.02.24:** - Remove manual codecs ingestion.
* **10.02.24:** - Update Readme with new env vars and ingest proper PWA icon.
* **06.01.24:** - Rebase to Debian Bookworm.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ init_diagram: |
"opera:latest" <- Base Images
# changelog
changelogs:
- {date: "12.03.25:", desc: "Clear singletons one launch to properly support persistance."}
- {date: "13.02.24:", desc: "Remove manual codecs ingestion."}
- {date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon."}
- {date: "06.01.24:", desc: "Rebase to Debian Bookworm."}
Expand Down
5 changes: 5 additions & 0 deletions root/usr/bin/opera
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#! /bin/bash

# Cleanup
if ! pgrep opera > /dev/null;then
rm -f $HOME/.config/opera/Singleton*
fi

BIN=/usr/bin/opera-real
LANG=$(echo $LC_ALL| sed 's/\.UTF-8//g'| sed 's/_/-/g')
LANG_SHORT=$(echo $LANG | awk -F'-' '{print $1}')
Expand Down