Skip to content

Commit 3691938

Browse files
Release 0.1.3
1 parent 2d9d8ac commit 3691938

File tree

6 files changed

+70
-15
lines changed

6 files changed

+70
-15
lines changed

.github/workflows/deploy.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Deploy
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 12
15+
- run: npm ci
16+
- run: npm run setup
17+
- run: npm run build
18+
- run: npm test
19+
20+
deploy:
21+
needs: build
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v2
25+
- uses: actions/setup-node@v1
26+
with:
27+
node-version: 12
28+
registry-url: https://registry.npmjs.org/
29+
- run: npm ci
30+
- run: npm run setup
31+
- run: npm run build
32+
- name: Deploy
33+
uses: burnett01/rsync-deployments@4.1
34+
with:
35+
switches: -avzr --delete
36+
path: build/
37+
remote_path: mon.arbre.app
38+
remote_host: mon.arbre.app
39+
remote_user: github
40+
remote_key: ${{ secrets.DEPLOY_KEY }}
41+
- name: Archive production artifacts
42+
uses: actions/upload-artifact@v2
43+
with:
44+
name: build
45+
path: build

.github/workflows/npm-publish.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,3 @@ jobs:
3232
- run: npm publish
3333
env:
3434
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
35-
- name: Archive production artifacts
36-
uses: actions/upload-artifact@v2
37-
with:
38-
name: build
39-
path: build

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "browse-gedcom",
33
"description": "Gedcom file browser",
4-
"version": "0.1.2",
4+
"version": "0.1.3",
55
"keywords": [
66
"gedcom",
77
"genealogy",
@@ -37,7 +37,7 @@
3737
"react-router-bootstrap": "^0.25.0",
3838
"react-router-dom": "^5.2.0",
3939
"react-scripts": "^4.0.3",
40-
"read-gedcom": "^0.1.2",
40+
"read-gedcom": "^0.2.0",
4141
"redux": "^4.0.5",
4242
"redux-thunk": "^2.3.0",
4343
"worker-loader": "^3.0.8"

src/pages/mixed/PageChangelog/changelog.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
{
2+
"0.1.3": {
3+
"date": "2021-07-02",
4+
"fixes": [
5+
{
6+
"en": "Upgrade of the Gedcom parsing library, minor fixes",
7+
"fr": "Mise à jour de la bibliothèque de lecture des fichiers Gedcom, corrections mineures"
8+
}
9+
],
10+
"additions": [
11+
{
12+
"en": "The file loads asynchronously and the progress is reported",
13+
"fr": "Le chargement du fichier se fait désormais de manière asynchrone et l'avancement est affiché"
14+
}
15+
]
16+
},
217
"0.1.2": {
318
"date": "2021-02-05",
419
"fixes": [

src/pages/private/PageIndividual/PageIndividual.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ export class PageIndividual extends Component {
483483
pathname: AppRoutes.print,
484484
state: { initialIndividualId: individualOpt[0].pointer },
485485
}}>
486-
<Dropdown.Item>
486+
<Dropdown.Item disabled>
487487
<Printer className="icon mr-2" />
488488
<FormattedMessage id="page.individual.actions.print"/>
489489
</Dropdown.Item>

0 commit comments

Comments
 (0)