├── .gitignore
├── README.md
├── build-aux
└── install.sh
├── chromium.sh
├── com.github.Eloston.UngoogledChromium.yaml
├── flathub.json
└── icons
├── product_logo_128.png
├── product_logo_24.png
├── product_logo_256.png
├── product_logo_48.png
└── product_logo_64.png
/.gitignore:
--------------------------------------------------------------------------------
1 | _build/
2 | .flatpak-builder/
3 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # URGENT PLEASE READ THIS
2 |
3 | ## YOU WILL NOT LOSE YOUR DATA BY UPDATING
4 |
5 | You **MUST** update to the new package name `io.github.ungoogled_software.ungoogled_chromium` to keep using Ungoogled Chromium.
6 |
7 | The old package name `com.github.Eloston.UngoogledChromium` is no longer supported and will only display this message from now on.
8 |
9 | To update, run the following command in your terminal:
10 |
11 | ```
12 | $ flatpak update -y com.github.Eloston.UngoogledChromium
13 | Looking for updates…
14 |
15 | Info: app com.github.Eloston.UngoogledChromium branch stable is end-of-life, in favor of io.github.ungoogled_software.ungoogled_chromium branch stable
16 | Updating to rebased version
17 |
18 | ...
19 |
20 | Changes complete.
21 | ```
22 |
23 | If you need any assistance or have any questions, feel free to ask in the Ungoogled Chromium Matrix room at #ungoogled-chromium:matrix.org or the GitHub issue tracker.
--------------------------------------------------------------------------------
/build-aux/install.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash -ex
2 | for size in 24 48 64 128 256; do
3 | install -Dvm 644 "product_logo_${size}.png" "/app/share/icons/hicolor/${size}x${size}/apps/io.github.ungoogled_software.ungoogled_chromium.png"
4 | done
5 | sed -i io.github.ungoogled_software.ungoogled_chromium.desktop -e '/^MimeType=/d'
6 | install -Dvm 644 io.github.ungoogled_software.ungoogled_chromium.desktop -t /app/share/applications
7 | install -Dvm 644 io.github.ungoogled_software.ungoogled_chromium.metainfo.xml -t /app/share/metainfo
8 | install -Dvm 755 chromium.sh /app/bin/chromium
9 |
--------------------------------------------------------------------------------
/chromium.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | exec zenity --info --title="Ungoogled Chromium Flatpak" --width=600 \
4 | --text="URGENT PLEASE READ THIS
5 |
6 | YOU WILL NOT LOSE YOUR DATA BY UPDATING
7 |
8 | You MUST update to the new package name io.github.ungoogled_software.ungoogled_chromium to keep using Ungoogled Chromium.
9 |
10 | The old package name com.github.Eloston.UngoogledChromium is no longer supported and will only display this message from now on.
11 |
12 | To update, run the following command in your terminal:
13 |
14 | $ flatpak update -y com.github.Eloston.UngoogledChromium
15 | Looking for updates…
16 |
17 | Info: app com.github.Eloston.UngoogledChromium branch stable is end-of-life, in favor of io.github.ungoogled_software.ungoogled_chromium branch stable
18 | Updating to rebased version
19 |
20 | ...
21 |
22 | Changes complete.
23 |
24 | If you need any assistance or have any questions, feel free to ask in the Ungoogled Chromium Matrix room at:
25 |
26 | https://matrix.to/#/#ungoogled-chromium:matrix.org
27 |
28 | or the GitHub issue tracker:
29 |
30 | https://github.com/ungoogled-software/ungoogled-chromium-flatpak/issues"
31 |
--------------------------------------------------------------------------------
/com.github.Eloston.UngoogledChromium.yaml:
--------------------------------------------------------------------------------
1 | app-id: com.github.Eloston.UngoogledChromium
2 | runtime: org.freedesktop.Platform
3 | runtime-version: '23.08'
4 | sdk: org.freedesktop.Sdk
5 | command: chromium
6 | rename-icon: io.github.ungoogled_software.ungoogled_chromium
7 | rename-desktop-file: io.github.ungoogled_software.ungoogled_chromium.desktop
8 | rename-appdata-file: io.github.ungoogled_software.ungoogled_chromium.metainfo.xml
9 | finish-args:
10 | - --require-version=1.8.2
11 | - --share=ipc
12 | - --socket=x11
13 | - --socket=wayland
14 |
15 | modules:
16 | - name: ungoogled-chromium
17 | buildsystem: simple
18 | build-commands:
19 | - ./install.sh
20 | sources:
21 | - type: git
22 | url: https://github.com/ungoogled-software/ungoogled-chromium-flatpak
23 | tag: 125.0.6422.76-1
24 | commit: 9ea3a7ccf54578d718c0b516812e53f78740d8ce
25 | - type: file
26 | path: chromium.sh
27 | - type: dir
28 | path: build-aux
29 | - type: dir
30 | path: icons
--------------------------------------------------------------------------------
/flathub.json:
--------------------------------------------------------------------------------
1 | {
2 | "end-of-life": "The application has been renamed to io.github.ungoogled_software.ungoogled_chromium",
3 | "end-of-life-rebase": "io.github.ungoogled_software.ungoogled_chromium"
4 | }
5 |
--------------------------------------------------------------------------------
/icons/product_logo_128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/flathub/com.github.Eloston.UngoogledChromium/6b930ceeb6e03ea18ec5aadd00fa53c08925ae95/icons/product_logo_128.png
--------------------------------------------------------------------------------
/icons/product_logo_24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/flathub/com.github.Eloston.UngoogledChromium/6b930ceeb6e03ea18ec5aadd00fa53c08925ae95/icons/product_logo_24.png
--------------------------------------------------------------------------------
/icons/product_logo_256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/flathub/com.github.Eloston.UngoogledChromium/6b930ceeb6e03ea18ec5aadd00fa53c08925ae95/icons/product_logo_256.png
--------------------------------------------------------------------------------
/icons/product_logo_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/flathub/com.github.Eloston.UngoogledChromium/6b930ceeb6e03ea18ec5aadd00fa53c08925ae95/icons/product_logo_48.png
--------------------------------------------------------------------------------
/icons/product_logo_64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/flathub/com.github.Eloston.UngoogledChromium/6b930ceeb6e03ea18ec5aadd00fa53c08925ae95/icons/product_logo_64.png
--------------------------------------------------------------------------------