Skip to content

Commit aed20df

Browse files
committed
Versi├│n 1.0
0 parents  commit aed20df

File tree

15 files changed

+1260
-0
lines changed

15 files changed

+1260
-0
lines changed

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Set default behaviour, in case users don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Try to ensure that po files in the repo does not include
5+
# source code line numbers.
6+
# Every person expected to commit po files should change their personal config file as described here:
7+
# https://mail.gnome.org/archives/kupfer-list/2010-June/msg00002.html
8+
*.po filter=cleanpo
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Upload on new tags
2+
3+
on:
4+
push:
5+
tags:
6+
'*'
7+
8+
jobs:
9+
buildAndUpload:
10+
runs-on: windows-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v3
14+
- name: Set up Python 3.7
15+
uses: actions/[email protected]
16+
with:
17+
python-version: "3.7"
18+
architecture: "x86"
19+
- name: Install dependencies
20+
run: pip install scons markdown
21+
- name: Build add-on
22+
run: scons
23+
- name: Build pot template
24+
run: scons pot
25+
- name: Calculate sha256
26+
run: sha256sum *.nvda-addon >> changelog.md
27+
- name: Release
28+
uses: softprops/action-gh-release@v1
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
with:
32+
files: |
33+
*.nvda-addon
34+
*.json
35+
*.pot
36+
body_path: changelog.md
37+
prerelease: ${{ endsWith(github.ref, '-dev') }}

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
addon/doc/*.css
2+
addon/doc/en/
3+
*_docHandler.py
4+
*.html
5+
*.ini
6+
*.mo
7+
*.pot
8+
*.py[co]
9+
*.nvda-addon
10+
.sconsign.dblite

COPYING.txt

Lines changed: 340 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)