Skip to content

Commit 503a8aa

Browse files
authored
Merge pull request #1354 from session-foundation/dev
Session 1.15.1
2 parents 986d50b + 115b10e commit 503a8aa

File tree

283 files changed

+9626
-9692
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

283 files changed

+9626
-9692
lines changed

.eslintignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,10 @@ compiled.d.ts
1717
playwright.config.js
1818

1919
ts/localization/locales.ts
20+
21+
about_preload.js
22+
commitlint.config.js
23+
libsession.worker.config.js
24+
password_preload.js
25+
sass.config.js
26+
utils.worker.config.js

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Remember, you can preview this before saving it.
1414
### Contributor checklist:
1515

1616
- [ ] My commits are in nice logical chunks with [good commit messages](http://chris.beams.io/posts/git-commit/)
17-
- [ ] My changes are [rebased](https://blog.axosoft.com/golden-rule-of-rebasing-in-git/) on the latest [`unstable`](https://github.com/session-foundation/session-desktop/tree/unstable) branch
17+
- [ ] My changes are [rebased](https://blog.axosoft.com/golden-rule-of-rebasing-in-git/) on the latest [`dev`](https://github.com/session-foundation/session-desktop/tree/dev) branch
1818
- [ ] A `yarn ready` run passes successfully ([more about tests here](https://github.com/session-foundation/session-desktop/blob/master/CONTRIBUTING.md#tests))
1919
- [ ] My changes are ready to be shipped to users
2020

.github/workflows/build-binaries.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ on:
88
push:
99
branches:
1010
- master
11-
- unstable
11+
- dev
1212
- 'release/**'
1313
- 'ci/**'
1414
pull_request:
1515
branches:
16-
- unstable
16+
- dev
1717
- 'release/**'
1818
- 'ci/**'
1919

@@ -52,7 +52,6 @@ jobs:
5252
run: yarn lint-full
5353

5454
- name: Enforce yarn.lock has no duplicates
55-
# no need to dedup yarn.lock on all platforms
5655
uses: ./actions/deduplicate_fail
5756

5857
# we want to test on all platforms since some are testing the rendered menus (and are dependent on the platform)
@@ -63,7 +62,7 @@ jobs:
6362
# we want this to run always, except on "push" to "master"
6463
if: ${{ env.SHOULD_PUBLISH == 'false' }}
6564
run: |
66-
sed -i 's/"target": \["deb"\]/"target": "${{ matrix.pkg_to_build }}"/g' package.json && yarn build-release
65+
sed -i 's/"target": "deb"/"target": "${{ matrix.pkg_to_build }}"/g' package.json && yarn build-release
6766
6867
- name: Upload artefacts ${{ matrix.pkg_to_build }}
6968
# we want this to run always, except on "push" to "master"
@@ -76,7 +75,7 @@ jobs:
7675
# we want this to run only when on "push" to "master"
7776
if: ${{ env.SHOULD_PUBLISH == 'true' }}
7877
run: |
79-
sed -i 's/"target": \["deb"\]/"target": "${{ matrix.pkg_to_build }}"/g' package.json && yarn build-release-publish
78+
sed -i 's/"target": "deb"/"target": "${{ matrix.pkg_to_build }}"/g' package.json && yarn build-release-publish
8079
8180
build_windows:
8281
runs-on: windows-2022

.husky/commit-msg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npx --no -- commitlint --edit "$1"

.husky/pre-commit

Lines changed: 0 additions & 5 deletions
This file was deleted.

.mocharc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ spec:
99
- './ts/test/**/*_test.js' # the positional arguments!
1010
timeout: 1000
1111
watch: false
12+
reporter: min

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.15.0
1+
20.18.2

.pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
indent-string=" "

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Of course we encourage community developers to work on ANY issue filed on our Gi
2121

2222
### Node.js
2323

24-
You'll need a [Node.js](https://nodejs.org/) version which matches our current version. You can check [`.nvmrc` in the `unstable` branch](https://github.com/session-foundation/session-desktop/blob/unstable/.nvmrc) to see what the current version is.
24+
You'll need a [Node.js](https://nodejs.org/) version which matches our current version. You can check [`.nvmrc` in the `dev` branch](https://github.com/session-foundation/session-desktop/blob/dev/.nvmrc) to see what the current version is.
2525

2626
If you use other node versions you might have or need a node version manager.
2727

@@ -31,7 +31,7 @@ If you use other node versions you might have or need a node version manager.
3131

3232
### Python
3333

34-
You will need a [Python](https://www.python.org) version which matches our current version. You can check [`.tool-versions` in the `unstable` branch](https://github.com/session-foundation/session-desktop/blob/unstable/.tool-versions) to see what the current version is.
34+
You will need a [Python](https://www.python.org) version which matches our current version. You can check [`.tool-versions` in the `dev` branch](https://github.com/session-foundation/session-desktop/blob/dev/.tool-versions) to see what the current version is.
3535

3636
If you use other python versions you might have or need a python version manager.
3737

@@ -382,10 +382,10 @@ So you wanna make a pull request? Please observe the following guidelines.
382382
- Please do not submit pull requests for pure translation fixes. Anyone can update
383383
the translations at [Crowdin](https://getsession.org/translate).
384384
- [Rebase](https://nathanleclaire.com/blog/2014/09/14/dont-be-scared-of-git-rebase/) your
385-
changes on the latest `unstable` branch, resolving any conflicts.
385+
changes on the latest `dev` branch, resolving any conflicts.
386386
This ensures that your changes will merge cleanly when you open your PR.
387387
- Be sure to add and run tests!
388-
- Make sure the diff between `unstable` and your branch contains only the
388+
- Make sure the diff between `dev` and your branch contains only the
389389
minimal set of changes needed to implement your feature or bug fix. This will
390390
make it easier for the person reviewing your code to approve the changes.
391391
Please do not submit a PR with commented out code or unfinished features.
@@ -424,6 +424,6 @@ The binaries will be placed inside the `release/` folder.
424424
<details>
425425
<summary>Linux</summary>
426426

427-
You can change in [package.json](./package.json) `"target": ["deb"],` to any of the [electron-builder targets](https://www.electron.build/linux#target) to build for another target.
427+
You can change in [package.json](./package.json) `"target": "deb",` to any of the [electron-builder targets](https://www.electron.build/linux#target) to build for another target.
428428

429429
</details>

INTERNALBUILDS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ The binaries will be placed inside the `release/` folder.
9696
<details>
9797
<summary>Linux</summary>
9898
99-
You can change in [package.json](./package.json) `"target": ["deb"],` to any of the [electron-builder targets](https://www.electron.build/linux#target) to build for another target.
99+
You can change in [package.json](./package.json) `"target": "deb",` to any of the [electron-builder targets](https://www.electron.build/linux#target) to build for another target.
100100
101101
</details>

0 commit comments

Comments
 (0)