Skip to content

Commit 8a6011f

Browse files
committed
chore: bump version
1 parent d3f041e commit 8a6011f

4 files changed

Lines changed: 58 additions & 6 deletions

File tree

firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"brands": {
1111
"glide": {
1212
"release": {
13-
"displayVersion": "0.1.56a",
13+
"displayVersion": "0.1.57a",
1414
"github": {
1515
"repo": "glide-browser/glide"
1616
}

src/glide/browser/base/content/docs.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ interface SidebarEntry {
3030
target?: string;
3131
}
3232

33-
const IGNORE_CODE_LANGS = new Set(["glide", "about", "file", "stderr", "auto_activate", "action"]);
33+
const IGNORE_CODE_LANGS = new Set(["glide", "about", "file", "stderr", "auto_activate", "action", "bootstrap"]);
3434

3535
// GitHub-style admonition types
3636
const ADMONITION_TYPES = new Set([

src/glide/docs/changelog.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,58 @@ padding: 0.3em;
1717

1818
# Changelog
1919

20+
# 0.1.57a
21+
22+
## Search engine configuration {% id="0.1.57a-search-engine-configuration" %}
23+
24+
You can now configure new search engines directly in the Glide config, for example:
25+
26+
```typescript
27+
glide.search_engines.add({
28+
name: "Discogs",
29+
keyword: "disc",
30+
search_url:
31+
"https://www.discogs.com/search/?q={searchTerms}",
32+
33+
// optional
34+
favicon_url: "https://www.discogs.com/favicon.ico",
35+
is_default: false,
36+
});
37+
```
38+
39+
With this example you could search using Discogs by focusing the address bar and typing `disc<space>`!
40+
41+
The [`glide.search_engines.add()`](api.md#glide.search_engines.add) function takes the same arguments as the `chrome_settings_overrides.search_provider` web extension manifest v2 [object](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/chrome_settings_overrides#browser_compatibility).
42+
43+
## Changes {% id="0.1.57a-changes" %}
44+
45+
- Bumped Firefox from 147.0b3 to 147.0b8
46+
- [Improved](https://github.com/glide-browser/glide/pull/193) type inference for [`ts:glide.content.execute()`](api.md#glide.content.execute) params
47+
- Thanks [@TomerAberbach](https://github.com/TomerAberbach) for the contribution!
48+
- Added support for [hiding](https://github.com/glide-browser/glide/pull/156) the native tab bar with [`ts:glide.o.native_tabs = "hide"`](api.md#glide.o.native_tabs), or with `"autohide"` to show the tab bar on hover on Linux
49+
- Thanks [@45Hnri](https://github.com/45Hnri) for the contribution!
50+
- Added [`ts:glide.styles.has()`](api.md#glide.styles.has)
51+
- Added [`ts:glide.styles.get()`](api.md#glide.styles.get)
52+
- Added support for overwriting existing styles with [`ts:glide.styles.add('css', { id: '...', overwrite: true })`](api.md#glide.styles.add)
53+
- Added `:tab_pin` and `:tab_unpin` commands
54+
- Thanks [@suveshmoza](https://github.com/suveshmoza) for the contribution!
55+
- Updated `:config_reload` to apply across all open windows
56+
- Updated the commandline to show [suggested](https://github.com/glide-browser/glide/pull/170#issuecomment-3691684770) commands first
57+
- Thanks [@jyn514](https://github.com/jyn514) for the contribution!
58+
- Updated hint generation to clear previous "No hints found" notifications when hints are eventually found
59+
- Thanks [@suveshmoza](https://github.com/suveshmoza) for the contribution!
60+
- Removed Perplexity as a default search engine
61+
- Fixed usage of the `browser` API on privileged pages
62+
- Fixed permissions error when creating or updating tabs with a privileged URI, e.g. `browser.tabs.create({ url: "resource://glide-docs/index.html" })`
63+
- Fixed [`glide.bo.hint_size`](api.md#glide.o.hint_size) so that it correctly applies the styling for the current buffer
64+
- Fixed `i` sending an unnecessary `<left>` key event
65+
- Fixed serialisation of the [`browser.contentScripts.register()`](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/contentScripts/register) return value. You can now access it, and call [`script.unregister()`](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/contentScripts/RegisteredContentScript).
66+
- Misc
67+
- Many thanks to [@jyn514](https://github.com/jyn514) for updating lots of docs and improving the contributing experience!
68+
- Set up a [Zulip chat](https://glide.zulipchat.com) for realtime discussion
69+
- [Reduced](https://github.com/glide-browser/glide/pull/157) the number of redundant DOM mutations inside the commandline
70+
- Thanks [@suveshmoza](https://github.com/suveshmoza) for the contribution!
71+
2072
# 0.1.56a
2173

2274
## Breaking changes {% id="0.1.56a-breaking-changes" %}

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.56a/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.56a/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.57a/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.57a/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.56a/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.56a/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.57a/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.57a/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)