Skip to content

Commit

Permalink
Merge pull request #287 from Leleat/release-42
Browse files Browse the repository at this point in the history
Release 42
  • Loading branch information
Leleat authored Sep 2, 2023
2 parents 2378acd + ccf3180 commit 9d00524
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 30 deletions.
24 changes: 1 addition & 23 deletions .github/workflows/run-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ jobs:
grep -E "\.sh$" |
xargs -r shellcheck
# Unsure, if I really want to do cspell (for .md and .pot files)... The .pot
# file will never be touched by contributors directly. So getting a false flag
# there won't be an issue. That leaves .md files to be spell checked by
# potentional contributors. It kinda makes sense. Problem could be reliability.
spellcheck:
name: Run spell check
runs-on: ubuntu-latest
Expand All @@ -46,32 +42,14 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: "*"
- run: pip install codespell && npm install -g cspell
- run: pip install codespell
# The case sensitivity of codespeller for ignore-words seems to be buggy. See
# issue tracker. According to the help page it should be case sensitive but
# only 'allws' makes codespeller ignore 'allWs' in code files.
- name: Run codespell
run: >
git diff --name-only --diff-filter=ACMTUXB origin/${{ github.base_ref }} HEAD |
xargs -r codespell -q 3 --skip="*.po*,*.git/*" --ignore-words .github/ignore-words.txt
- name: Configure custom dictionary for cspell based on the ignore list
run: >
echo '{
"version": "0.2",
"dictionaryDefinitions": [{
"name": "dict",
"path": ".github/ignore-words.txt",
"addWords": true
}],
"dictionaries": ["dict"],
}' >> cspell.json
- name: Run cspell (*.md and *.pot)
if: success() || failure()
run: >
git diff --name-only --diff-filter=ACMTUXB origin/${{ github.base_ref }} HEAD |
grep -E "\.(md|pot)$" |
npx cspell lint --color --exclude "CHANGELOG.md" --file-list stdin \
--no-must-find-files --show-context --show-suggestions --unique
build:
name: Run build
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [42] - 2023-09-03

### Added

- Italian translation by albanobattistella (#271)

### Fixed

- Move modes update correctly when the grabbed window changes the monitor (#279)

## [41] - 2023-05-17

### Fixed
Expand Down Expand Up @@ -28,7 +38,7 @@
### Changed

- Move UserGuide.MD into the [github wiki](https://github.com/Leleat/Tiling-Assistant/wiki)
- Update Scipts and a bugfix by SubOptimal (#248, #249, #250)
- Update Scripts and a bugfix by SubOptimal (#248, #249, #250)

## [39] - 2022-11-23

Expand Down
4 changes: 2 additions & 2 deletions scripts/aur-build/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
pkgbase = gnome-shell-extension-tiling-assistant
pkgdesc = A GNOME Shell extension to expand GNOME's native 2 column design.
pkgver = 41
pkgver = 42
pkgrel = 1
url = https://github.com/Leleat/Tiling-Assistant
install = INSTALL
arch = x86_64
license = GPL
depends = gnome-shell>=40
noextract = *tiling-assistant@leleat-on-github*
source = https://github.com/Leleat/Tiling-Assistant/archive/refs/tags/v41.tar.gz
source = https://github.com/Leleat/Tiling-Assistant/archive/refs/tags/v42.tar.gz
md5sums = SKIP

pkgname = gnome-shell-extension-tiling-assistant
2 changes: 1 addition & 1 deletion scripts/aur-build/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Leleat
pkgname='gnome-shell-extension-tiling-assistant'
pkgver=41
pkgver=42
pkgrel=1
pkgdesc="A GNOME Shell extension to expand GNOME's native 2 column design."
arch=('x86_64')
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ bash scripts/build.sh

# commit changes
echo Committing version bump...
git add $METADATA $PKGBUILD scripts/aur-build/.SRCINFO translations/*.po translations/*.pot
git add $METADATA $PKGBUILD CHANGELOG.md scripts/aur-build/.SRCINFO translations/*.po translations/*.pot
git commit -m "Release: Bump version to $NEW_VERSION_NR"
echo

Expand Down
2 changes: 1 addition & 1 deletion tiling-assistant@leleat-on-github/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"url": "https://github.com/Leleat/Tiling-Assistant",
"uuid": "tiling-assistant@leleat-on-github",
"settings-schema": "org.gnome.shell.extensions.tiling-assistant",
"version": 41
"version": 42
}
2 changes: 1 addition & 1 deletion translations/main.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-17 20:30+0200\n"
"POT-Creation-Date: 2023-09-02 16:32+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down

0 comments on commit 9d00524

Please sign in to comment.