Skip to content

Commit

Permalink
Update CHANGELOG.md for v 7.0.0 (#774)
Browse files Browse the repository at this point in the history
* Update CHANGELOG.md

* Update CHANGELOG.md

removed wrong info

* Add syntax & spell CHANGELOG.md check (#770)

* Add syntax & spell CHANGELOG.md check

* Add aspell personal dictionary

* Fix typos

* Fix workflow

* Fix md formatting

* Small fix

* Small fix

* Fix typos

* Trigger only push on paths

* Update CHANGELOG.md

* Update CHANGELOG.md

* Fix spellchecker exeption

* Run spellcheker on dictionary change

Co-authored-by: Semyon Bezrukov <[email protected]>
Co-authored-by: svetlana maleeva <[email protected]>
Co-authored-by: Alexey Golubev <[email protected]>
  • Loading branch information
4 people authored Jan 17, 2022
1 parent 9f6b8df commit bd3db03
Show file tree
Hide file tree
Showing 4 changed files with 458 additions and 55 deletions.
221 changes: 221 additions & 0 deletions .aspell.en.pws
Original file line number Diff line number Diff line change
@@ -0,0 +1,221 @@
personal_ws-1.1 en 218 utf-8
ACOT
ACOTH
ASC
aspose
autocolor
autocomplete
AutoCorrect
autocorrection
autofill
Autofilter
autofilter
autofilters
Autofit
autofit
AutoFormat
Autorun
AVERAGEA
AVERAGEIFS
BETADIST
BETAINV
BINOM
blocklevelstd
BMP
br
brower
bugfix
cff
CHIDIST
CHIINV
chinese
CHISQ
CJK
ClipArt
CNumberingLvlLegacy
coedit
COMBINA
compatibilityMode
CONCAT
COnOfftype
Convertion
convertion
COTH
COUNTIFS
CSC
CSCH
CSV
csv
Ctrl
ctrl
dataset
Decryptor
DesktopEditors
Deutsch
DMS
DocumentServer
DOCX
Docx
docx
DOTX
drag'n'drop
endnotes
ePub
EQ
Español
ETS
EXC
EXPON
fb
FDIST
FINV
fodp
fods
fodt
FORMULATEXT
FTEST
GAMMADIST
GAMMAINV
glyphs
gridlines
hideContentControlTrack
HiDPI
HLOOKUP
html
HYPGEOM
icu
IFNA
IMCOSH
IMCOT
IMCSC
IMCSCH
IMSEC
IMSECH
IMSINH
IMTAN
InsertContent
INV
japanese
JPG
JS
js
kDrive
korean
Liferay
LINEST
linux
LOGEST
LOGNORM
MacOS
MacOs
macOS
MathType
mathType
metafile
mht
multichart
multiselect
México
Nederland
Nederlands
Nextcloud
Num
num
numberings
NUMBERVALUE
ODF
odf
OdfFormat
ODP
ods
ODT
odt
onDocumentStateChange
ONLYOFFICE
ooxml
OpenFormat
OTP
OTS
OTT
overwright
ownCloud
pageDown
ParaDrawing
param
params
pdf
PDURATION
PERCENTRANK
PhotoEditor
PNG
POTX
ppt
pptx
PptxFormat
Preseentation
RANDARRAY
rastr
ReadFromBinary
Realtime
rect
republika
RTF
rtf
savefile
Schweiz
Seafile
SECH
selectwheel
SharedWorker
SheetView
si
Slovenská
Slovenčina
spanish
sparkline
Sparklines
sparklines
Spellcheker
SSO
stirkeout
SUMIFS
Svenska
Sverige
SVG
tabSelected
TDIST
thai
TINV
TOC
tooltip
trackpad
TXT
txt
UI
uncalculated
undelete
undocking
Ungroup
ungroup
updocked
url
usersfiles
UTF
ViewAll
VLOOKUP
vml
VSRedis
wav
WMF
wmf
xfIndexNumber
XLOOKUP
XLS
xls
XLSX
xlsx
XLTX
Yandex
yy
YYYY
yyyy
32 changes: 32 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: check
on:
workflow_dispatch:
push:
paths:
- 'CHANGELOG.md'
- '.aspell.*.pws'
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Run markdownlint linter
run: |
npm install -g markdownlint-cli
markdownlint CHANGELOG.md
spellchecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup aspell
run: sudo apt-get -y update && sudo apt-get -y install aspell aspell-en
- name: Run spellchecker
run: |
SPELLCHECK_OUT=$(cat CHANGELOG.md \
| aspell --lang=en --encoding=utf-8 --personal=./.aspell.en.pws list)
echo $SPELLCHECK_OUT
test $(echo -n $SPELLCHECK_OUT | wc -c) -eq 0
3 changes: 3 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"MD024": { "siblings_only": true }
}
Loading

0 comments on commit bd3db03

Please sign in to comment.