├── .gitignore ├── LICENSE ├── README.md ├── _load_vars.py ├── agregore_patch_order.txt ├── apply_agregore_patches.py ├── apply_bromite_patches.py ├── bromite_tag.txt ├── checkout_bromite_tag.py ├── daemon_tag.txt ├── download_ipfs_daemon.py ├── download_wifi_autoconnect.py ├── excluded_patches.txt ├── generate_patch.py ├── patches ├── 0001-AG-Handle-IPFS-and-IPNS-URLs.patch ├── 0001-AG-IPFS-Daemon.patch ├── 0001-AG-Improve-plain-text-rendering-on-mobile.patch ├── 0001-AG-Rebrand-to-Agregore.patch └── 0001-AG-Wifi-Auto-Connect.patch ├── prebuild.py ├── setup.py ├── undo_last_patch.py └── wifi_auto_connect_tag.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/README.md -------------------------------------------------------------------------------- /_load_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/_load_vars.py -------------------------------------------------------------------------------- /agregore_patch_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/agregore_patch_order.txt -------------------------------------------------------------------------------- /apply_agregore_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/apply_agregore_patches.py -------------------------------------------------------------------------------- /apply_bromite_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/apply_bromite_patches.py -------------------------------------------------------------------------------- /bromite_tag.txt: -------------------------------------------------------------------------------- 1 | 101.0.4951.53 2 | -------------------------------------------------------------------------------- /checkout_bromite_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/checkout_bromite_tag.py -------------------------------------------------------------------------------- /daemon_tag.txt: -------------------------------------------------------------------------------- 1 | v1.0.5 2 | -------------------------------------------------------------------------------- /download_ipfs_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/download_ipfs_daemon.py -------------------------------------------------------------------------------- /download_wifi_autoconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/download_wifi_autoconnect.py -------------------------------------------------------------------------------- /excluded_patches.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/excluded_patches.txt -------------------------------------------------------------------------------- /generate_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/generate_patch.py -------------------------------------------------------------------------------- /patches/0001-AG-Handle-IPFS-and-IPNS-URLs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/patches/0001-AG-Handle-IPFS-and-IPNS-URLs.patch -------------------------------------------------------------------------------- /patches/0001-AG-IPFS-Daemon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/patches/0001-AG-IPFS-Daemon.patch -------------------------------------------------------------------------------- /patches/0001-AG-Improve-plain-text-rendering-on-mobile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/patches/0001-AG-Improve-plain-text-rendering-on-mobile.patch -------------------------------------------------------------------------------- /patches/0001-AG-Rebrand-to-Agregore.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/patches/0001-AG-Rebrand-to-Agregore.patch -------------------------------------------------------------------------------- /patches/0001-AG-Wifi-Auto-Connect.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/patches/0001-AG-Wifi-Auto-Connect.patch -------------------------------------------------------------------------------- /prebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/prebuild.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/setup.py -------------------------------------------------------------------------------- /undo_last_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgregoreWeb/agregore-mobile/HEAD/undo_last_patch.py -------------------------------------------------------------------------------- /wifi_auto_connect_tag.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | --------------------------------------------------------------------------------