Skip to content

Commit

Permalink
Merge branch 'chatterino7' into feat/regular-build
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerixyz committed Sep 17, 2023
2 parents e49524d + 97bc0d8 commit 2abb9c3
Show file tree
Hide file tree
Showing 52 changed files with 926 additions and 614 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/changelog-category-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Changelog Category Check

on:
pull_request:
types:
- labeled
- unlabeled
- opened
- synchronize
- reopened

jobs:
changelog-category-check:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
id: label-checker
with:
result-encoding: "string"
script: |
const response = await github.rest.issues.listLabelsOnIssue({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo
});
if (new Set(response.data.map(label => label.name)).has("skip-changelog-checker")) {
return "skip";
}
return "";
- uses: pajlads/changelog-checker@v1.0.0
if: steps.label-checker.outputs.result != 'skip'
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
## Unversioned

- Minor: Migrate to the new Get Channel Followers Helix endpoint, fixing follower count not showing up in usercards. (#4809)
- Minor: The account switcher is now styled to match your theme. (#4817)
- Minor: Add an invisible resize handle to the bottom of frameless user info popups and reply thread popups. (#4795)
- Bugfix: Fixed a performance issue when displaying replies to certain messages. (#4807)
- Bugfix: Fixed a data race when disconnecting from Twitch PubSub. (#4771)
- Bugfix: Fixed `/shoutout` command not working with usernames starting with @'s (e.g. `/shoutout @forsen`). (#4800)
- Bugfix: Fixed Usercard popup not floating on tiling WMs on Linux when "Automatically close user popup when it loses focus" setting is enabled. (#3511)
- Bugfix: Fixed selection of tabs after closing a tab when using "Live Tabs Only". (#4770)
- Bugfix: Fixed input in reply thread popup losing focus when dragging. (#4815)
- Bugfix: Fixed too much text being copied when copying chat messages. (#4812)
- Dev: Fixed UTF16 encoding of `modes` file for the installer. (#4791)
- Dev: Temporarily disable High DPI scaling on Qt6 builds on Windows. (#4767)
- Dev: Tests now run on Ubuntu 22.04 instead of 20.04 to loosen C++ restrictions in tests. (#4774)
Expand All @@ -16,6 +20,8 @@
- Dev: Fix clang-tidy `cppcoreguidelines-pro-type-member-init` warnings. (#4426)
- Dev: Immediate layout for invisible `ChannelView`s is skipped. (#4811)
- Dev: Refactor `Image` & Image's `Frames`. (#4773)
- Dev: Add `WindowManager::getLastSelectedWindow()` to replace `getMainWindow()`. (#4816)
- Dev: Clarify signal connection lifetimes where applicable. (#4818)

## 2.4.5

Expand Down
Loading

0 comments on commit 2abb9c3

Please sign in to comment.