# Ceno Browser — Share the Web!

> Peer-to-peer web browser for shared internet experiences. (iPhone/iPad app by EQUALIT.IE ORG.)

- Source: https://appshunter.io/ios/app/ceno-browser/id6673915387 (this page in markdown: same URL + `.md`)
- Developer: [EQUALIT.IE ORG](https://appshunter.io/developer/1713275494)
- Category: News, Utilities
- Price: Free
- Rating: 5.00/5 from 8 App Store ratings · 5 written reviews indexed
- Age rating: +17
- Requires: iOS 15.0 · 113 MB
- Languages: Brazilian Portuguese, German (Germany), Czech, European Spanish, French (France), Greek, Hebrew, Dutch, Hungarian, Indonesian and 7 more
- Released: 2025-11-13
- Data updated: 2026-09-07
- Monetization: free
- User reviews in markdown: https://appshunter.io/ios/app/ceno-browser/id6673915387/reviews.md

## What is Ceno Browser?

Share the Web! Ceno is the world's first web browser that gets better with every installation. Offering a common Internet browsing experience, it relies on a peer-to-peer technology to deliver and share websites among all participants.

Ceno is a completely open source browser that doesn’t require registration.

Contact us at support@ceno.app. We love receiving feedback and are continuously improving Ceno for its users!

Ceno is developed by eQualitie

## Key features

- Peer-to-peer website sharing
- Open source
- No registration required
- Continuously improving technology
- Common internet browsing experience

## Recent user reviews (5 of 5)

All indexed reviews: https://appshunter.io/ios/app/ceno-browser/id6673915387/reviews.md

### 5/5 — great job!

*2026-03-01*

expect quisync

### 5/5 — Great concept but keeps crashing!

*2026-01-27*

Great concept but keeps crashing! I could not use it in Iran’s internet blackout. Keep the updates coming!

### 5/5 — Great concept but keeps crashing!

*2026-01-25*

Great concept but keeps crashing!

### 5/5 — Thank you for supporting us

*2026-01-23*

Public mode works

### 1/5 — Ceno browser

*2026-01-07*

The app doesn’t work

## Frequently asked questions about Ceno Browser

### What is Ceno Browser?

Ceno Browser is an open-source web browser that uses peer-to-peer technology to share and deliver websites among its users, offering a unique, community-driven browsing experience.

### Does Ceno Browser require registration?

No, Ceno Browser is a completely open-source browser that does not require any registration to use.

### How does Ceno Browser get better?

Ceno Browser is designed to improve with every installation, leveraging peer-to-peer technology to enhance the delivery and sharing of websites among all participants.

### What devices does Ceno Browser support?

Ceno Browser is available for iPhone, iPad, and iPod devices.

### What is the age rating for Ceno Browser?

Ceno Browser has an age rating of 17+.

### When was Ceno Browser last updated?

Ceno Browser was last updated on February 11, 2026, with version 0.0.15.

### How can I provide feedback for Ceno Browser?

You can contact the developers of Ceno Browser at support@ceno.app. They actively welcome feedback for continuous improvement.

### Does Ceno Browser have ads?

No, Ceno Browser does not contain advertisements.

## Version history (last 5 releases)

### 0.2.0 — 2026-07-23

### Added
 - **Extra BitTorrent Bootstraps** picker in Settings → Network Details — lets the user supply additional BitTorrent bootstrap nodes so Ouinet can connect on networks where the default bootstraps are blocked; new `BootstrapPickerView` in `CenoUI` backed by `BootstrapState` in `CenoCore`
 - `ExtraBootstrapEnvironment` / `OuinetBootstrapEnvironment` and a `BootstrapProperties.template.plist` resource holding the default bootstrap configuration
 - `RemoveSavedOuinetConfIntentProd` — intent that clears the saved Ouinet conf file

### Changed
 - Extra bootstraps are now applied via `OuinetConfig` (rather than posted as sources), with the previously saved conf cleared on apply
 - Applying extra bootstraps restarts the Ouinet client from the Bootstrap picker so the change takes effect immediately
 - Sentry debug logging disabled to reduce log noise

### 0.1.2 — 2026-05-18

### Changed
 - Adopted unidirectional data flow (MVI/TCA): a single `ApplicationState` root 
   holding `@Observable` states replaces the ViewModel layer as the source of truth for the entire UI,
   injected into the SwiftUI environment at the scene boundary
 - All side effects (browser, bookmark, ouinet, cache operations) are now expressed
   as named intents dispatched through `IntentLibrary`, with explicit production
   implementations
   
### Added 
 - Add toggle for bridge mode in Ceno iOS
   
### Fixed
 - Granular cache-clearing UI — new sheet lets the user choose between clearing
   cache only or clearing cache and all app data, replacing the previous
   single-option alert 
 - Opens a new public tab via top-level application intent
 - Clear Ceno via top-level application intent
 - Show blank URL in address bar when a new tab selected

### Removed
 - `BrowserViewModel`, `HomeViewModel`, `BrowserToolbarViewModel`, `SceneViewModel`
   — superseded by State/Intent layer
 - `BrowserToolbarDelegate` — replaced by Intent dispatch

### 0.1.1 — 2026-04-14

### Added

 - Bookmark favicon fetching, icons are fetched via FaviconFinder and displayed in the home screen grid and bookmarks list; Google Favicon service used as fallback routed through the Ouinet proxy
 - `BookmarkExistsUseCase`, checks whether a bookmark for a given URL already exists before saving
 - `SaveBookmarkUseCase` and `RemoveBookmarkUseCase`, dedicated use cases for persisting bookmark changes, keeping `Settings.bookmarks` in sync as the shared observable source of truth
 - Bookmark reordering in the bookmarks list, drag-to-reorder persists order via a new `order: Double` field; order is calculated as a midpoint between neighbours, `first.order − 86400` when moved to top, or current timestamp when moved to bottom
 - `HttpDataClient` protocol in CenoCore, minimal `data(from:)` abstraction implemented by both `URLSession` and `HTTPClient` (Ouinet), enabling dependency injection for network calls
 - CoreData model v0.0.17, adds indexed `order Double` field and `byUrl` fetch index to `BookmarkCoreData`; lightweight migration from v0.0.16
 - "Want to learn more?" button in personal mode now opens `ceno.app/user-manual/[locale]/public-or-personal.html` via `PersonalModeLearnMoreTapUseCase`
 - `CenoL10n` Swift package, build-time localization with a code-gen plugin that produces a type-safe `R.key.localized` API from `.strings` files, replacing all `NSLocalizedString` call sites
 - `LocalePickerView`, SwiftUI language-picker sheet; selected locale is persisted via `CenoLocale.current` and applied immediately without relaunching the app
 - `CenoLocale` propagated through the SwiftUI `Environment`, so all views react to locale changes automatically

### Changed

 - Bookmarks migrated from legacy `Bookmark.all` static array to `CenoCore.Bookmark` with CoreData persistence;
 - `BookmarksViewController` decoupled from `BrowserViewModel`, navigation now handled by `OpenBookmarkUseCase`; swipe-to-delete wired to `RemoveBookmarkUseCase`
 - `BrowserViewModel` and `HomeViewModel` initializers replaced with no-arg inits and a `BrowserViewModel.default` singleton, removing cascading dependency passing
 - "Add bookmark" toolbar action now uses `BookmarkExistsUseCase` + `SaveBookmarkUseCase` replacing legacy `Bookmark.add/store` calls
 - Sentry dSYM upload restricted to archive builds only
 - Migrated every raw localised string across `CenoBrowser`, `CenoUI`, `CenoCore`, and helper modules from `NSLocalizedString` to `R.key.localized`

### 0.0.15 — 2026-02-11

### Added

 - DNS over HTTPS configuration option in Network Details settings
 - Dynamic proxy endpoint display in Network Details screen
 - Pop up for observing source counts is now functional in default mode

### Changed

 - Updated Ouinet client to version 1.6.2
 - Migrated to dynamic proxy endpoint allocation
 - Refactored search bar functionality
 - Enhanced Clear Ceno functionality
 - Improved toast notification UX
 - Update app icons to match new Ceno branding
 - Update reference to website to ceno.app
 - Update about page text to match Android 

### Fixed

 - Toolbar auto-hide behavior now correctly responds to scroll velocity
 - Fixed guard condition in showToolbar for proper visibility state checking
 - Fixed toolbar button colors for better theme consistency
 - App crashes after phone wakes from sleep
 - Links in Settings page (e.g., eQualitie link) not working
 - Crash observed when installing certificate while app is already running in default modeFixed standby screen to be disabled in .degraded state

### 0.0.12 — 2025-12-23

- Refactored and improved reliability tab management
 - Added Settings and Bookmarks to bottom menu for improved accessibility
 - Simplified theme switching logic

## Apps similar to Ceno Browser

| App | Rating | Price | Category |
| --- | --- | --- | --- |
| [RFE/RL](https://appshunter.io/ios/app/rferl/id475986784) | 4.2 (69) | Free | News |
| [Save Links: Collect & Read](https://appshunter.io/ios/app/save-links-collect-and-read/id6739863087) | 5.0 (2) | Free | News |
| [AppleInsider](https://appshunter.io/ios/app/appleinsider/id578462575) | 3.3 (49) | Free | News |
| [Tech4Peace: News, Image, Video](https://appshunter.io/ios/app/tech4peace-news-image-video/id1318896273) | 4.8 (389) | Free | News |
| [All the News - USA](https://appshunter.io/ios/app/all-the-news-usa/id6446886632) | 4.3 (30) | Free | News |
| [The True Story](https://appshunter.io/ios/app/the-true-story/id6444387612) | 5.0 (3) | Free | News |

## Related topics

[ceno browser](https://appshunter.io/ios/topics/ceno-browser) · [ceno](https://appshunter.io/ios/topics/ceno) · [goclever](https://appshunter.io/ios/topics/goclever) · [ocsn](https://appshunter.io/ios/topics/ocsn) · [joseph bartels](https://appshunter.io/ios/topics/joseph-bartels) · [ianalyzer](https://appshunter.io/ios/topics/ianalyzer) · [meawow](https://appshunter.io/ios/topics/meawow) · [ezystamp](https://appshunter.io/ios/topics/ezystamp) · [eweb](https://appshunter.io/ios/topics/eweb)

---

*Data collected daily from the US App Store and indexed by [AppsHunter](https://appshunter.io/). User reviews are verbatim App Store reviews. Ratings, prices and chart positions refresh continuously; this snapshot is from 2026-09-07.*
