Skip to content

Commit

Permalink
Release 1.2.3 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rii0 authored Sep 5, 2024
1 parent ebcc50d commit bde96a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.2] - 2023-01-1113
## [1.2.3] - 2024-09-05

### Fixed

- Broken header selector after GitHub added new [Issue Types](https://github.com/orgs/community/discussions/112806) and [Sub-issues](https://github.com/orgs/community/discussions/131957)

## [1.2.2] - 2023-01-13

### Fixed

Expand Down Expand Up @@ -95,6 +101,7 @@ A fresh installation is required to use the new remote name and get updates auto

- First release

[1.2.3]: https://github.com/m4rii0/github-helper/tree/1.2.3
[1.2.2]: https://github.com/m4rii0/github-helper/tree/1.2.2
[1.2.1]: https://github.com/m4rii0/github-helper/tree/1.2.1
[1.2.0]: https://github.com/m4rii0/github-helper/tree/1.2.0
Expand Down
4 changes: 2 additions & 2 deletions src/helper.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Github helper
// @namespace https://github.com/m4rii0
// @version 1.2.2
// @version 1.2.3
// @description Github helper to speed up your work
// @author m4rii0
// @match https://github.com/*
Expand Down Expand Up @@ -43,7 +43,7 @@
}

const createButton = () => {
const header = document.querySelector('.gh-header-actions');
const header = document.querySelector('[data-component=\'PH_Actions\'] > div, .gh-header-actions');
if (!header) return;

let button = document.createElement('button');
Expand Down

0 comments on commit bde96a4

Please sign in to comment.