forked from signalapp/Signal-Desktop
-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #284 from loki-project/development
Merge dev into master
- Loading branch information
Showing
409 changed files
with
110,613 additions
and
49,533 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
**Screenshots or Logs** | ||
If applicable, add screenshots or log files to help explain your problem. | ||
|
||
**Other information (please complete the following information):** | ||
- Device: [e.g. PC, Mac] | ||
- OS: [e.g. Ubuntu 16.04, Windows 10] | ||
- Loki messenger Version or Git commit hash: |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# TODO: Figure out a way to use nvm in the linux build | ||
linux: | ||
image: node:10.13.0 | ||
tags: | ||
- docker | ||
script: | ||
- whoami | ||
- node -v | ||
- yarn -v | ||
- yarn install --frozen-lockfile | ||
- export SIGNAL_ENV=production | ||
- yarn generate | ||
- $(yarn bin)/build --config.extraMetadata.environment=$SIGNAL_ENV --config.mac.bundleVersion='$CI_COMMIT_REF_SLUG' --publish=never --config.directories.output=release | ||
cache: | ||
paths: | ||
- node_modules/ | ||
artifacts: | ||
paths: | ||
- release/ | ||
|
||
osx: | ||
tags: | ||
- osx | ||
script: | ||
- nvm install | ||
- npm install --global yarn | ||
- yarn install --frozen-lockfile | ||
- export SIGNAL_ENV=production | ||
- yarn generate | ||
- $(yarn bin)/build --config.extraMetadata.environment=$SIGNAL_ENV --config.mac.bundleVersion='$CI_COMMIT_REF_SLUG' --publish=never --config.directories.output=release | ||
cache: | ||
paths: | ||
- node_modules/ | ||
artifacts: | ||
paths: | ||
- release/ | ||
|
||
windows: | ||
tags: | ||
- windows-cmd | ||
script: | ||
# install | ||
- set PATH=%PATH%;C:\Users\Administrator\AppData\Local\nvs\ | ||
- set SIGNAL_ENV=production | ||
- set /p NVMRC_VER=<.nvmrc | ||
- call nvs add %NVMRC_VER% | ||
- call nvs use %NVMRC_VER% | ||
- call "C:\\PROGRA~2\\MICROS~1\\2017\\BuildTools\\Common7\\Tools\\VsDevCmd.bat" | ||
- call yarn install --frozen-lockfile | ||
# build | ||
- call yarn generate | ||
- call node build\grunt.js | ||
- call yarn prepare-beta-build | ||
- call node_modules\.bin\build --config.extraMetadata.environment=%SIGNAL_ENV% --publish=never --config.directories.output=release | ||
- call node build\grunt.js test-release:win | ||
cache: | ||
paths: | ||
- node_modules/ | ||
artifacts: | ||
paths: | ||
- release/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
8.9.3 | ||
10.13.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,44 @@ | ||
language: node_js | ||
cache: | ||
yarn: true | ||
directories: | ||
- node_modules | ||
node_js: | ||
- '8.9.3' | ||
os: | ||
- linux | ||
dist: trusty | ||
- '10.13.0' | ||
install: | ||
- yarn install --frozen-lockfile | ||
- travis_wait 30 yarn install --frozen-lockfile --network-timeout 1000000 | ||
script: | ||
- yarn generate | ||
- yarn lint | ||
- yarn test-node | ||
- yarn nsp check | ||
- yarn prepare-beta-build | ||
- $(yarn bin)/build --config.extraMetadata.environment=$SIGNAL_ENV --config.mac.bundleVersion='$TRAVIS_BUILD_NUMBER' --publish=never | ||
- ./travis.sh | ||
- yarn lint-windows | ||
- yarn test | ||
env: | ||
global: | ||
- SIGNAL_ENV: production | ||
sudo: false | ||
notifications: | ||
email: false | ||
|
||
matrix: | ||
include: | ||
- name: 'Linux' | ||
os: linux | ||
dist: trusty | ||
before_install: | ||
- sudo apt-get install -y libgtk2.0-0 libgtk-3-0 libgconf-2-4 libasound2 libxtst6 libxss1 libnss3 xvfb hunspell-en-us | ||
before_script: | ||
- Xvfb -ac -screen scrn 1280x2000x24 :9.0 & | ||
- export DISPLAY=:9.0 | ||
- export LC_ALL=en_US | ||
- name: 'OSX' | ||
os: osx | ||
- name: 'Windows' | ||
os: windows | ||
cache: false | ||
env: | ||
- YARN_GPG=no | ||
before_install: | ||
- cd ../.. | ||
- mv $TRAVIS_REPO_SLUG _old | ||
- git config --global core.autocrlf false | ||
- git clone --depth=50 _old $TRAVIS_REPO_SLUG | ||
- cd $TRAVIS_REPO_SLUG |
Oops, something went wrong.