Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: New release v5.11.0 #1363

Merged
merged 2 commits into from
Mar 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/renderer/js/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ export class ServerManagerView {

await tab.destroy();

delete this.tabs[index];
delete this.tabs[index]; // eslint-disable-line @typescript-eslint/no-array-delete
this.functionalTabs.delete(name);

// Issue #188: If the functional tab was not focused, do not activate another tab.
Expand Down
3 changes: 1 addition & 2 deletions app/renderer/js/pages/preference/base-section.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ export function generateOptionHtml(
disabled?: boolean,
): Html {
const labelHtml = disabled
? // eslint-disable-next-line unicorn/template-indent
html`<label
? html`<label
class="disallowed"
title="Setting locked by system administrator."
></label>`
Expand Down
4 changes: 0 additions & 4 deletions app/renderer/js/pages/preference/preference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@ export class PreferenceView {
});
break;
}

default: {
((n: never) => n)(navigationItem);
}
}

window.location.hash = `#${navigationItem}`;
Expand Down
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to the Zulip desktop app are documented in this file.

### v5.11.0 --2024-03-22

**Fixes**:

- Removed the popup dialog for certificate errors when loading subresources such as images.
- Allowed hiding the window from full screen mode on macOS.

**Enhancements**:

- Enabled zooming with Ctrl+mouse wheel on Linux and Windows.

**Dependencies**:

- Upgraded all dependencies, including Electron 29.1.5.

### v5.10.5 --2024-01-25

**Dependencies**:
Expand Down
Loading