Skip to content

Commit

Permalink
Release 1.2.2 (#12)
Browse files Browse the repository at this point in the history
* fix: update selector to the issue title

* chore: bump version

* chore: update changelog

* fix: changelog link
  • Loading branch information
m4rii0 authored Jan 13, 2023
1 parent 0521447 commit ebcc50d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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

### Fixed

- Broken selector after GitHub updated the issue details page

## [1.2.1] - 2022-08-11

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

- First release

[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
[1.1.2]: https://github.com/m4rii0/github-helper/tree/1.1.2
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.1
// @version 1.2.2
// @description Github helper to speed up your work
// @author m4rii0
// @match https://github.com/*
Expand Down Expand Up @@ -101,7 +101,7 @@
}

const getBranchName = () => {
let title = document.querySelector('h1 > span.js-issue-title').innerText;
let title = document.querySelector('h1 > bdi.js-issue-title').innerText;
title = title
.trim()
.toLowerCase()
Expand Down

0 comments on commit ebcc50d

Please sign in to comment.