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 #1833 from Bilb/network-clear-all
Network clear all
- Loading branch information
Showing
58 changed files
with
3,464 additions
and
359 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,4 +43,6 @@ proxy.pub | |
yarn-error.log | ||
|
||
# editor | ||
.vscode/ | ||
.vscode/ | ||
|
||
libloki/test/test.js |
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,30 @@ | ||
#!/bin/sh | ||
if [ -z "$husky_skip_init" ]; then | ||
debug () { | ||
[ "$HUSKY_DEBUG" = "1" ] && echo "husky (debug) - $1" | ||
} | ||
|
||
readonly hook_name="$(basename "$0")" | ||
debug "starting $hook_name..." | ||
|
||
if [ "$HUSKY" = "0" ]; then | ||
debug "HUSKY env variable is set to 0, skipping hook" | ||
exit 0 | ||
fi | ||
|
||
if [ -f ~/.huskyrc ]; then | ||
debug "sourcing ~/.huskyrc" | ||
. ~/.huskyrc | ||
fi | ||
|
||
export readonly husky_skip_init=1 | ||
sh -e "$0" "$@" | ||
exitCode="$?" | ||
|
||
if [ $exitCode != 0 ]; then | ||
echo "husky - $hook_name hook exited with code $exitCode (error)" | ||
exit $exitCode | ||
fi | ||
|
||
exit 0 | ||
fi |
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
Empty file.
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,83 @@ | ||
# Do not edit. File was generated by node-gyp's "configure" step | ||
{ | ||
"target_defaults": { | ||
"cflags": [], | ||
"default_configuration": "Release", | ||
"defines": [], | ||
"include_dirs": [], | ||
"libraries": [] | ||
}, | ||
"variables": { | ||
"asan": 0, | ||
"build_v8_with_gn": "false", | ||
"coverage": "false", | ||
"dcheck_always_on": 0, | ||
"debug_nghttp2": "false", | ||
"debug_node": "false", | ||
"enable_lto": "false", | ||
"enable_pgo_generate": "false", | ||
"enable_pgo_use": "false", | ||
"error_on_warn": "false", | ||
"force_dynamic_crt": 0, | ||
"gas_version": "2.30", | ||
"host_arch": "x64", | ||
"icu_data_in": "../../deps/icu-tmp/icudt67l.dat", | ||
"icu_endianness": "l", | ||
"icu_gyp_path": "tools/icu/icu-generic.gyp", | ||
"icu_path": "deps/icu-small", | ||
"icu_small": "false", | ||
"icu_ver_major": "67", | ||
"is_debug": 0, | ||
"llvm_version": "0.0", | ||
"napi_build_version": "7", | ||
"node_byteorder": "little", | ||
"node_debug_lib": "false", | ||
"node_enable_d8": "false", | ||
"node_install_npm": "true", | ||
"node_module_version": 83, | ||
"node_no_browser_globals": "false", | ||
"node_prefix": "/", | ||
"node_release_urlbase": "https://nodejs.org/download/release/", | ||
"node_section_ordering_info": "", | ||
"node_shared": "false", | ||
"node_shared_brotli": "false", | ||
"node_shared_cares": "false", | ||
"node_shared_http_parser": "false", | ||
"node_shared_libuv": "false", | ||
"node_shared_nghttp2": "false", | ||
"node_shared_openssl": "false", | ||
"node_shared_zlib": "false", | ||
"node_tag": "", | ||
"node_target_type": "executable", | ||
"node_use_bundled_v8": "true", | ||
"node_use_dtrace": "false", | ||
"node_use_etw": "false", | ||
"node_use_node_code_cache": "true", | ||
"node_use_node_snapshot": "true", | ||
"node_use_openssl": "true", | ||
"node_use_v8_platform": "true", | ||
"node_with_ltcg": "false", | ||
"node_without_node_options": "false", | ||
"openssl_fips": "", | ||
"openssl_is_fips": "false", | ||
"ossfuzz": "false", | ||
"shlib_suffix": "so.83", | ||
"target_arch": "x64", | ||
"v8_enable_31bit_smis_on_64bit_arch": 0, | ||
"v8_enable_gdbjit": 0, | ||
"v8_enable_i18n_support": 1, | ||
"v8_enable_inspector": 1, | ||
"v8_enable_lite_mode": 0, | ||
"v8_enable_object_print": 1, | ||
"v8_enable_pointer_compression": 0, | ||
"v8_no_strict_aliasing": 1, | ||
"v8_optimized_debug": 1, | ||
"v8_promise_internal_field_count": 1, | ||
"v8_random_seed": 0, | ||
"v8_trace_maps": 0, | ||
"v8_use_siphash": 1, | ||
"want_separate_host_toolset": 0, | ||
"nodedir": "/home/warrick/.cache/node-gyp/14.16.0", | ||
"standalone_static_library": 1 | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.