CARVIEW |
Navigation Menu
-
Notifications
You must be signed in to change notification settings - Fork 76
Releases: AgregoreWeb/agregore-browser
2.14.1 - New hypercore, AI improvements, bugfixes
Compare
New contributor
We got a fix for fullscreen mode not hiding the search bar and not properly recalculating the page size on exit thanks to @OmarBustamante in #297
Hypercore
This version brings a new release of hypercore which uses rocksdb for their storage engine. The first time you load a hyper://
URL might take a bit more time as existing data is updated, but going forward this should lead to massive speedups accross loading / creating data.
AI
The window.llm
API now supports streaming using async iteration
// All at once
const {content} = await llm.chat({messages})
// One word at a time
for await (const {content} of llm.chat({messages})) {
element.innerText += content
}
We also have a fix for iframes not having the LLM API available. This means you can more easily mess with AI apps in the dweb scratchpad with live updates.
Assets 14
- sha256:aa74b766c5602f081b0dc170417ed3927644c5001673188ef370bd9aed44ab9c
2025-06-24T22:23:30Z - sha256:774166f5f9fb9dceec6c94e55fda8cd34590a1adc65a7f6cb674e92e07222aa0
2025-06-24T22:24:18Z - sha256:1536111e713c311c95badf748bd0bb48c2fd6b6860b63646842ede6f35aac925
2025-06-24T22:26:17Z - sha256:2fe7ad7e082aca0414e8fc17ad564b35ad07962a54a31e772ba9c5f6a4d2bac7
2025-06-24T22:21:28Z - sha256:e3b33d838022aeea2322430296f6097f111c5d2eeb109203e15eb99d32f8bfae
2025-06-24T22:23:22Z - sha256:cf3964e56efee65fceb916f1acfdbe058b2b1ace5d78b88ff55c156d5e337413
2025-06-24T22:23:22Z - sha256:765c42fb5580cc90545a698b4f4f873604859f3e6f574d3881138a62b95808d4
2025-06-24T22:23:41Z - sha256:d796c0067d774dccc0c2495bd89563176e1158c334934574269383003b9c6622
2025-06-24T22:23:43Z - sha256:7696294360cb2ace3f4f14306191e68e9abba88767f1fa0fc87898e0acf49b55
2025-06-24T22:23:43Z - sha256:686956d38b58af1fb70f7b9a70b2be40a9b4e1baf00e0ca93372b02e31c13c9e
2025-06-24T22:26:21Z -
2025-06-24T22:19:21Z -
2025-06-24T22:19:21Z - Loading
2.12.1 - Fix up button, new FileViewer link
Compare
- The up button was busted and sometimes didn't show up
- "Going up" is reliable now and supports going up from either files or directories
- The new "Fileviewer" app is now linked to from the welcome page
Assets 14
2.12.0 - Peersky theme compat, Local AI onboarding improvements
Compare
- Pages should now use the
browser://theme/style.css
URL for adding styles across both Agregore and Peersky - The default LLM model is now
qwen2.5-coder:3B
which can run on lower end hardware - The AI flow will try to detect ollama and guide you to install it if it's missing.
- Config changes are now immediate (upon save) and you don't need to reload the browser for changes to take effect
- The welcome page got cleaned up a bit to be more focused
Assets 14
2.11.0 - New Navigation Options
Compare
- Plain text files like CSS now get syntax highlighting via the syntax highlighting font
- Built in 404 page has some styling now
- There's a new "up" button which lets you navigate up one level in whatever directory you're in. So UP on
hyper://example.com/foo/bar/baz
would take you tohyper://example.com/foo/bar/
- For folks using Gemini, agregore now properly allows sites to request user input via a basic form with a site-customizable prompt. This enables support for sites like search engines
Also we've updated some stuff on our main website so check out the explore page!
Assets 14
2.10.1 - Fixes
Compare
- Less noisy logging
- Updated extensions system to catch errors instead of crashing, should fix some of the random crashes when navigating to new links
- Forces default color scheme more effectively, prevents some pages from rendering as white text on white backgrounds
- add overflow to tables in default style to avoid messing up the layout in reader mode
Assets 14
2.10.0 - History page, better reader mode
Compare
We now finally have a "view history" page which lets you search through your history and clear items that you no longer want.
The reader mode has also had some fixes. A bunch of pages just didn't render properly before, but with the latest change most pages should work out of the box.
We also have some improvements in the default stylesheet for supporting "details" elements and tables. You can see all the styles in the example theme page at agregore://theme/example
Assets 14
2.8.2 - Font Based Syntax Highlighting
Compare
Thanks to @josephmolina256 we now have font based syntax highlighting in Agregore!
This applies to code blocks and to <textarea>
elements and is included in any site that depends on agregore://theme/style.css
.
This replaces the dependency on highlight-js which requires JS to work and was a bigger dependency.
This release also fixes a bug in the render where pages would be "double rendered" and content would get overwritten.
Assets 14
2.7.0 - Settings Page
Compare
We now finally have a way to mess with the settings in agregore like the default page and theme colors without needing to edit a text file!
Also improves some styling for forms and lists.
Assets 14
2.6.3 - Different default LLM, more styling
Compare
- Default to using Qwen2.5-Coder
- Have built in styling support for dialog and fieldset elements
- Add scroll bar styling to top level frame CSS
Assets 14
2.6.2 - LLM fixes
Compare
- Added model auto-download with consent for ollama backend