Skip to content

Commit 9d00524

Browse files
authored
Merge pull request #287 from Leleat/release-42
Release 42
2 parents 2378acd + ccf3180 commit 9d00524

File tree

7 files changed

+18
-30
lines changed

7 files changed

+18
-30
lines changed

.github/workflows/run-ci.yml

+1-23
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ jobs:
3232
grep -E "\.sh$" |
3333
xargs -r shellcheck
3434
35-
# Unsure, if I really want to do cspell (for .md and .pot files)... The .pot
36-
# file will never be touched by contributors directly. So getting a false flag
37-
# there won't be an issue. That leaves .md files to be spell checked by
38-
# potentional contributors. It kinda makes sense. Problem could be reliability.
3935
spellcheck:
4036
name: Run spell check
4137
runs-on: ubuntu-latest
@@ -46,32 +42,14 @@ jobs:
4642
- uses: actions/setup-node@v3
4743
with:
4844
node-version: "*"
49-
- run: pip install codespell && npm install -g cspell
45+
- run: pip install codespell
5046
# The case sensitivity of codespeller for ignore-words seems to be buggy. See
5147
# issue tracker. According to the help page it should be case sensitive but
5248
# only 'allws' makes codespeller ignore 'allWs' in code files.
5349
- name: Run codespell
5450
run: >
5551
git diff --name-only --diff-filter=ACMTUXB origin/${{ github.base_ref }} HEAD |
5652
xargs -r codespell -q 3 --skip="*.po*,*.git/*" --ignore-words .github/ignore-words.txt
57-
- name: Configure custom dictionary for cspell based on the ignore list
58-
run: >
59-
echo '{
60-
"version": "0.2",
61-
"dictionaryDefinitions": [{
62-
"name": "dict",
63-
"path": ".github/ignore-words.txt",
64-
"addWords": true
65-
}],
66-
"dictionaries": ["dict"],
67-
}' >> cspell.json
68-
- name: Run cspell (*.md and *.pot)
69-
if: success() || failure()
70-
run: >
71-
git diff --name-only --diff-filter=ACMTUXB origin/${{ github.base_ref }} HEAD |
72-
grep -E "\.(md|pot)$" |
73-
npx cspell lint --color --exclude "CHANGELOG.md" --file-list stdin \
74-
--no-must-find-files --show-context --show-suggestions --unique
7553
7654
build:
7755
name: Run build

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [42] - 2023-09-03
4+
5+
### Added
6+
7+
- Italian translation by albanobattistella (#271)
8+
9+
### Fixed
10+
11+
- Move modes update correctly when the grabbed window changes the monitor (#279)
12+
313
## [41] - 2023-05-17
414

515
### Fixed
@@ -28,7 +38,7 @@
2838
### Changed
2939

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

3343
## [39] - 2022-11-23
3444

scripts/aur-build/.SRCINFO

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
pkgbase = gnome-shell-extension-tiling-assistant
22
pkgdesc = A GNOME Shell extension to expand GNOME's native 2 column design.
3-
pkgver = 41
3+
pkgver = 42
44
pkgrel = 1
55
url = https://github.com/Leleat/Tiling-Assistant
66
install = INSTALL
77
arch = x86_64
88
license = GPL
99
depends = gnome-shell>=40
1010
noextract = *tiling-assistant@leleat-on-github*
11-
source = https://github.com/Leleat/Tiling-Assistant/archive/refs/tags/v41.tar.gz
11+
source = https://github.com/Leleat/Tiling-Assistant/archive/refs/tags/v42.tar.gz
1212
md5sums = SKIP
1313

1414
pkgname = gnome-shell-extension-tiling-assistant

scripts/aur-build/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: Leleat
22
pkgname='gnome-shell-extension-tiling-assistant'
3-
pkgver=41
3+
pkgver=42
44
pkgrel=1
55
pkgdesc="A GNOME Shell extension to expand GNOME's native 2 column design."
66
arch=('x86_64')

scripts/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ bash scripts/build.sh
4343

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

tiling-assistant@leleat-on-github/metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"url": "https://github.com/Leleat/Tiling-Assistant",
99
"uuid": "tiling-assistant@leleat-on-github",
1010
"settings-schema": "org.gnome.shell.extensions.tiling-assistant",
11-
"version": 41
11+
"version": 42
1212
}

translations/main.pot

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2023-05-17 20:30+0200\n"
11+
"POT-Creation-Date: 2023-09-02 16:32+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"

0 commit comments

Comments
 (0)