Skip to content

Commit

Permalink
Merge branch 'main' into feat/windows-versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiKorla committed Jul 21, 2024
2 parents c4c91c5 + 5c597db commit e83f454
Show file tree
Hide file tree
Showing 87 changed files with 2,890 additions and 2,095 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Install deps
run: |
sudo apt update
sudo apt install \
build-essential \
git \
pkg-config \
libdbus-1-dev \
libudev-dev \
libxkbcommon-dev \
libfontconfig1-dev \
libasound2-dev
- name: Check
run: cargo check
- name: Clippy
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,15 @@ jobs:
libdbus-1-dev \
libudev-dev \
libxkbcommon-dev \
libfontconfig1-dev
libfontconfig1-dev \
libasound2-dev
- name: Build
run: ${{ matrix.target.make }}

- name: Sign macOS
if: matrix.target.target == 'macos'
env:
env:
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }}
MACOS_CERTIFICATE_NAME: ${{ secrets.MACOS_CERTIFICATE_NAME }}
Expand Down
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,28 @@

Added:

- Support for CTCP queries CLIENTINFO, PING, SOURCE, and VERSION
- Custom notification sounds. Use your own sounds or select from a few new built-in options. For more details, see [notification configuration](https://halloy.squidowl.org/configuration/notifications.html).

Fixed:

- Text input missing key presses in certain instances
- Connection timeout when UI is suspended on an offscreen workspace due to channel backpressure

# 2024.8 (2024-07-05)

Added:

- Ability to open `irc://` and `ircs://` URL schemes
- Ability to overwrite nickname colors by providing a hex string (see [buffer configuration](https://halloy.squidowl.org/configuration/buffer.html#buffernicknamecolor-section)).
- Ability to overwrite server & internal message colors by providing a hex string (see [buffer configuration](https://halloy.squidowl.org/configuration/buffer.html#bufferserver_messages-section)).
- Configurable shortcuts for "Leave Buffer" and "Toggle Sidebar" actions (see [keyboard shortcuts configuration](https://halloy.squidowl.org/configuration/keyboard.html)).
- Ability to remember window position and size when reopened.
- Ability to hide unread indicators in sidebar (see [sidemenu configuration](https://halloy.squidowl.org/configuration/sidebar.html))

Fixed:

- UTF-8 channel name rendering in sidebar and in pane title bars.

# 2024.7 (2024-05-05)

Expand Down
Loading

0 comments on commit e83f454

Please sign in to comment.