Skip to content

Commit 33c6c78

Browse files
committed
chore: bump version
1 parent a4e81e1 commit 33c6c78

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"brandShortName": "Glide",
2323
"brandFullName": "Glide Browser",
2424
"release": {
25-
"displayVersion": "0.1.43a",
25+
"displayVersion": "0.1.44a",
2626
"github": {
2727
"repo": "glide-browser/glide"
2828
},

src/glide/docs/changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ margin-bottom: revert !important;
1414

1515
# Changelog
1616

17+
# 0.1.44a
18+
19+
This release restructures how the config sandbox is evaluated. Previously, it was possible to access the internal `Document` and `ChromeWindow` that Firefox uses to render the browser UI itself.
20+
This is useful for accessing DOM APIs, e.g. `URL`, and allowing you to modify the UI in any way you want, however it introduces security concerns as _all_ of the Glide and Firefox internals can be accessed directly, effectively nullifying the sandbox.
21+
22+
Now, we create a hidden `Window` and a `Document` that is a bi-directional mirror of the internal browser UI `Document`. This lets you modify the `Document` however you'd like using standard DOM APIs while maintaining isolation from the internals.
23+
24+
Firefox has been bumped from `path:143.0b9` to `path:144.0b1`, the Firefox release notes can be found [here](https://www.firefox.com/en-US/firefox/143.0/releasenotes/).
25+
1726
# 0.1.43a
1827

1928
This release is mostly minor docs changes and an internal rehaul of the build system.

src/glide/docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ title="Demo video showing Glide features including keyboard navigation and confi
4141
<div class="download-platform">
4242
<span class="platform-label">macOS</span>
4343
<div class="download-buttons">
44-
<a href="https://github.com/glide-browser/glide/releases/download/0.1.43a/glide.macos-aarch64.dmg" class="download-link" target="_blank" rel="noopener">Apple Silicon</a>
45-
<a href="https://github.com/glide-browser/glide/releases/download/0.1.43a/glide.macos-x86_64.dmg" class="download-link" target="_blank" rel="noopener">Intel</a>
44+
<a href="https://github.com/glide-browser/glide/releases/download/0.1.44a/glide.macos-aarch64.dmg" class="download-link" target="_blank" rel="noopener">Apple Silicon</a>
45+
<a href="https://github.com/glide-browser/glide/releases/download/0.1.44a/glide.macos-x86_64.dmg" class="download-link" target="_blank" rel="noopener">Intel</a>
4646
</div>
4747
</div>
4848
<div class="download-platform">
4949
<span class="platform-label">Linux</span>
5050
<div class="download-buttons">
51-
<a href="https://github.com/glide-browser/glide/releases/download/0.1.43a/glide.linux-x86_64.tar.xz" class="download-link" target="_blank" rel="noopener">x64.tar</a>
52-
<a href="https://github.com/glide-browser/glide/releases/download/0.1.43a/glide.linux-aarch64.tar.xz" class="download-link" target="_blank" rel="noopener">aarch64.tar</a>
51+
<a href="https://github.com/glide-browser/glide/releases/download/0.1.44a/glide.linux-x86_64.tar.xz" class="download-link" target="_blank" rel="noopener">x64.tar</a>
52+
<a href="https://github.com/glide-browser/glide/releases/download/0.1.44a/glide.linux-aarch64.tar.xz" class="download-link" target="_blank" rel="noopener">aarch64.tar</a>
5353
</div>
5454
</div>
5555
</div>

0 commit comments

Comments
 (0)