author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
378,366
09.03.2022 08:14:42
21,600
0acc68d7448844c8e94cd8aba4a29cadecc4bf70
OpenMP corrected detection
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/modes/openmp/device.cpp", "new_path": "src/occa/internal/modes/openmp/device.cpp", "diff": "#include <occa/internal/core/kernel.hpp>\n+#include <occa/internal/utils/env.hpp>\n#include <occa/internal/io/output.hpp>\n#include <occa/internal/lan...
C++
MIT License
libocca/occa
OpenMP corrected detection (#555)
378,341
11.04.2022 16:12:48
-7,200
afb6ff07479f5ad62335dfdd838613d18cd6ae29
Improve occa preprocessor error messages
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/lang/loaders/typeLoader.cpp", "new_path": "src/occa/internal/lang/loaders/typeLoader.cpp", "diff": "@@ -69,11 +69,11 @@ namespace occa {\nsuccess = false;\n} else if (qualifier == union_) {\n// TODO: type = loadUnion();\n- token->printError(\...
C++
MIT License
libocca/occa
Improve occa preprocessor error messages (#572)
378,351
12.04.2022 11:10:40
18,000
9aad33380a287ee7d3a088041e24ec310fc3f05c
Change loop-bounds inequalities to strict inequalities for nested `@tile` loops.
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/lang/builtins/attributes/tile.cpp", "new_path": "src/occa/internal/lang/builtins/attributes/tile.cpp", "diff": "@@ -271,11 +271,28 @@ namespace occa {\n);\nconst binaryOperator_t &checkOp = (const binaryOperator_t&) checkExpr.op;\n- expr chec...
C++
MIT License
libocca/occa
Change loop-bounds inequalities to strict inequalities for nested `@tile` loops.
378,341
12.04.2022 18:39:42
-7,200
eea8fe0c1ce58a5c86cbb41ed9e2a454d8a937ac
Fix unreachable statement that makes the PGI compiler unhappy
[ { "change_type": "MODIFY", "old_path": "src/types/primitive.cpp", "new_path": "src/types/primitive.cpp", "diff": "@@ -250,7 +250,7 @@ namespace occa {\ncase primitiveType::float_ : str = occa::toString(value.float_); break;\ncase primitiveType::double_ : str = occa::toString(value.double_); break;\n...
C++
MIT License
libocca/occa
Fix unreachable statement that makes the PGI compiler unhappy (#575)
378,351
01.06.2022 16:55:59
18,000
82fd28df4966ed6b9d71e1c704ff660a6a67700e
Fix broken links for libocca webpage.
[ { "change_type": "MODIFY", "old_path": "docs/_navbar.md", "new_path": "docs/_navbar.md", "diff": "- [Home](/) &nbsp; &nbsp;\n-- [Guide](/guide/user-guide/introduction) &nbsp; &nbsp;\n+- [Guide](guide/user-guide/introduction.md) &nbsp; &nbsp;\n-- [API](/api/) &nbsp; &nbsp;\n+- [API](api/README.md) &n...
C++
MIT License
libocca/occa
Fix broken links for libocca webpage.
378,351
01.06.2022 17:13:29
18,000
746680bafc3ab6b34003515c3e8ed4144878c9ed
Update instructions for support and feedback.
[ { "change_type": "MODIFY", "old_path": "docs/guide/_sidebar.md", "new_path": "docs/guide/_sidebar.md", "diff": "- **User Guide**\n- [Introduction](user-guide/introduction.md)\n- - [Python Setup](user-guide/python-setup.md)\n- [Command-Line Interface](user-guide/command-line-interface.md)\n- - [Need ...
C++
MIT License
libocca/occa
Update instructions for support and feedback.
378,351
01.06.2022 17:24:14
18,000
6289743eeb20436ed95d9d9994fbaeb76f393a1a
Update version string (doh!)
[ { "change_type": "MODIFY", "old_path": "include/occa/defines/occa.hpp", "new_path": "include/occa/defines/occa.hpp", "diff": "#include <occa/defines/compiledDefines.hpp>\n#define OCCA_MAJOR_VERSION 1\n-#define OCCA_MINOR_VERSION 2\n+#define OCCA_MINOR_VERSION 3\n#define OCCA_PATCH_VERSION 0\n-#defin...
C++
MIT License
libocca/occa
Update version string (doh!)
378,355
12.07.2022 09:43:51
18,000
7447dd6befa652c7685bf76f910e31770e6350d8
[SYS] Fix frequency units
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/utils/sys.cpp", "new_path": "src/occa/internal/utils/sys.cpp", "diff": "@@ -545,7 +545,7 @@ namespace occa {\nconst float frequency = parseFloat(\ngetSystemInfoField(systemInfo, \"CPU max MHz\")\n);\n- return (udim_t) (frequency * 1e3);\n+ re...
C++
MIT License
libocca/occa
[SYS] Fix frequency units (#601)
378,341
03.06.2022 18:09:02
-7,200
7602447fdb064aedb92f34d6dc44b1073792ee80
Fix cache write races when transformking OKL + Serial/OpenMP kernels
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/io/cache.cpp", "new_path": "src/occa/internal/io/cache.cpp", "diff": "@@ -79,9 +79,15 @@ namespace occa {\nstd::stringstream ss;\nss << header << '\\n'\n<< io::read(expFilename);\n- io::write(sourceFile, ss.str());\n+ io::stageFile(\n+ source...
C++
MIT License
libocca/occa
Fix cache write races when transformking OKL + Serial/OpenMP kernels (#594)
378,341
05.07.2022 19:36:54
-7,200
5a9d31ed33caeaa7634efc015ae43da0d9c8267c
[CMake] Add MPIEXEC_PREFLAGS and MPIEXEC_POSTFLAGS to examples This is recommended by CMake (https://cmake.org/cmake/help/latest/module/FindMPI.html#usage-of-mpiexec) and allows some extra control for different MPI setups.
[ { "change_type": "MODIFY", "old_path": "examples/CMakeLists.txt", "new_path": "examples/CMakeLists.txt", "diff": "macro(add_test_with_mode_and_nranks exe mode device nranks)\nif (${nranks} GREATER 1)\n- add_test(NAME ${exe}-${mode} COMMAND ${MPIEXEC_EXECUTABLE} ${MPIEXEC_NUMPROC_FLAG} ${nranks} ./${...
C++
MIT License
libocca/occa
[CMake] Add MPIEXEC_PREFLAGS and MPIEXEC_POSTFLAGS to examples (#604) This is recommended by CMake (https://cmake.org/cmake/help/latest/module/FindMPI.html#usage-of-mpiexec) and allows some extra control for different MPI setups.
378,341
01.08.2022 18:43:37
-7,200
ea25a893b31c0d09ecc74bbb0407e3929ef9fe32
[CMake/Make/bin] Remove vestigial MPI support
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -90,7 +90,6 @@ MAKE_COMPILED_DEFINES := $(shell cat \"$(OCCA_DIR)/scripts/build/compiledDefinesT\nsed \"s,@@OCCA_OS@@,$(OCCA_OS),g;\\\ns,@@OCCA_USING_VS@@,$(OCCA_USING_VS),g;\\\ns,@@OCCA_UNSAFE@@,$(OCCA_UNSAFE),g;...
C++
MIT License
libocca/occa
[CMake/Make/bin] Remove vestigial MPI support (#611)
378,362
15.08.2022 22:06:32
25,200
b0e3385bf0dd74213ca358d64933e3b43601e213
Correction to OKL documentation on using multiple inner loops
[ { "change_type": "MODIFY", "old_path": "docs/guide/okl/loops-in-depth.md", "new_path": "docs/guide/okl/loops-in-depth.md", "diff": "@@ -32,7 +32,7 @@ Similar to outer loops, writing multiple inner loops is completely legal.\nfor (...; @outer) {\nfor (int i = 0; i < 10; ++i; @inner) {\n}\n- for (int ...
C++
MIT License
libocca/occa
Correction to OKL documentation on using multiple inner loops (#613)
378,351
16.08.2022 00:39:23
18,000
6b0d5f2eb4070e0d0c0b98562d949652d65157c5
Update loops-in-depth.md
[ { "change_type": "MODIFY", "old_path": "docs/guide/okl/loops-in-depth.md", "new_path": "docs/guide/okl/loops-in-depth.md", "diff": "@@ -32,7 +32,7 @@ Similar to outer loops, writing multiple inner loops is completely legal.\nfor (...; @outer) {\nfor (int i = 0; i < 10; ++i; @inner) {\n}\n- for (int ...
C++
MIT License
libocca/occa
Update loops-in-depth.md
378,351
16.08.2022 15:07:22
18,000
2e576e69e07627a516b568079e047965a9bd8d24
[bugfix] OKL for loop init statement
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/lang/modes/oklForStatement.cpp", "new_path": "src/occa/internal/lang/modes/oklForStatement.cpp", "diff": "@@ -52,7 +52,7 @@ namespace occa {\nif (!(0 < loop_range)) {\nvalid = false;\nif(printErrors_)\n- forSmnt_.printError(\"OKL for loop is ...
C++
MIT License
libocca/occa
[bugfix] OKL for loop init statement (#618)
378,341
15.08.2022 19:01:50
-7,200
7c7b296eacc8fa6fea1c37f1a519f16b04afba02
[OKL] Extend allowed loop index types to include `size_t` and `ptrdiff_t`
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/lang/modes/oklForStatement.cpp", "new_path": "src/occa/internal/lang/modes/oklForStatement.cpp", "diff": "@@ -120,16 +120,17 @@ namespace occa {\nreturn false;\n}\ninitValue = decl.value;\n-\n- // Valid types: {char, short, int, long}\n+ // V...
C++
MIT License
libocca/occa
[OKL] Extend allowed loop index types to include `size_t` and `ptrdiff_t` (#614)
378,351
16.08.2022 23:12:25
0
a04249dfc1c1a10f89b35370a5d18b63c6323898
Add Fortran to CI pipeline.
[ { "change_type": "MODIFY", "old_path": ".github/workflows/build.yml", "new_path": ".github/workflows/build.yml", "diff": "@@ -26,8 +26,10 @@ jobs:\nCC: gcc-9\nCXX: g++-9\nCXXFLAGS: -Wno-maybe-uninitialized -Wno-cpp\n+ FC: gfortran-9\nGCOV: gcov-9\nOCCA_COVERAGE: 1\n+ OCCA_FORTRAN_ENABLED: 1\nuseCMak...
C++
MIT License
libocca/occa
Add Fortran to CI pipeline.
378,341
18.08.2022 18:47:55
-7,200
b3a6b2d45308d8734d6c45550f5b0de332b60b68
Show compiler output for kernel if verbose is true This behaviour was changed for CUDA in the v1.3 release, but getting e.g. information about register spilling is very useful. Also implement similar behaviour for HIP and Metal.
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/modes/cuda/device.cpp", "new_path": "src/occa/internal/modes/cuda/device.cpp", "diff": "@@ -319,6 +319,8 @@ namespace occa {\n<< \"Output:\\n\\n\"\n<< commandOutput << \"\\n\"\n);\n+ } else if (verbose) {\n+ io::stdout << \"Output:\\n\\n\" <<...
C++
MIT License
libocca/occa
Show compiler output for kernel if verbose is true (#619) This behaviour was changed for CUDA in the v1.3 release, but getting e.g. information about register spilling is very useful. Also implement similar behaviour for HIP and Metal.
378,355
03.10.2022 11:06:35
18,000
fc52c1056a2103c189e25dcfc8b414443135e1fa
[CUDA][HIP][DPC++] Fix an issue with double frees when OKL has multiple kernels
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/modes/cuda/device.cpp", "new_path": "src/occa/internal/modes/cuda/device.cpp", "diff": "@@ -348,6 +348,7 @@ namespace occa {\nkernel &k = *(new kernel(this,\nkernelName,\nsourceFilename,\n+ cuModule,\nkernelProps));\nk.launcherKernel = buildL...
C++
MIT License
libocca/occa
[CUDA][HIP][DPC++] Fix an issue with double frees when OKL has multiple kernels (#624)
378,355
03.10.2022 11:12:24
18,000
a789e9f46746a90cc9e78d9bfd3f0adc1901c792
[Serial] Add dynamic exclusive variable sizes
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/lang/modes/serial.cpp", "new_path": "src/occa/internal/lang/modes/serial.cpp", "diff": "#include <occa/internal/lang/modes/serial.hpp>\n#include <occa/internal/lang/modes/okl.hpp>\n+#include <occa/internal/lang/modes/oklForStatement.hpp>\n#in...
C++
MIT License
libocca/occa
[Serial] Add dynamic exclusive variable sizes (#625)
378,355
17.10.2022 13:31:15
18,000
219dbf1b0cc715efae2722f2d712d66771c6a112
[OpenMP] Fix bug with cancelling hash
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/modes/openmp/device.cpp", "new_path": "src/occa/internal/modes/openmp/device.cpp", "diff": "@@ -14,14 +14,14 @@ namespace occa {\nhash_t device::hash() const {\nreturn (\nserial::device::hash()\n- ^ occa::hash(\"openmp\")\n+ ^ occa::hash(\"op...
C++
MIT License
libocca/occa
[OpenMP] Fix bug with cancelling hash (#626)
378,351
07.11.2022 12:26:01
21,600
b6332e0c116965a396d26daa072df6075028edae
Removes call to `occa info` during build. Calling `occa info` during the CMake build causes some CI pipelines to fail and issues when cross-compiling (e.g., on the login-node of an HPC system). Users can manually call `occa info` from the command line during an interactive build to check that everything went as expected.
[ { "change_type": "MODIFY", "old_path": "bin/CMakeLists.txt", "new_path": "bin/CMakeLists.txt", "diff": "@@ -5,5 +5,3 @@ target_include_directories(occa PRIVATE\n$<BUILD_INTERFACE:${OCCA_SOURCE_DIR}/src>)\ninstall(TARGETS occa EXPORT occaExport DESTINATION bin)\n-\n-add_custom_command(TARGET occa POS...
C++
MIT License
libocca/occa
Removes call to `occa info` during build. Calling `occa info` during the CMake build causes some CI pipelines to fail and issues when cross-compiling (e.g., on the login-node of an HPC system). Users can manually call `occa info` from the command line during an interactive build to check that everything went as expected.
378,351
07.11.2022 14:24:16
21,600
8608a2c868591494d73d6302b455bbbb07ed5186
Updates `actions/checkout` to version 3. Older versions of `actions/checkout` used node12, which is now deprecated on GitHub. Version 3 onward use node16.
[ { "change_type": "MODIFY", "old_path": ".github/workflows/build.yml", "new_path": ".github/workflows/build.yml", "diff": "@@ -89,7 +89,7 @@ jobs:\nFORTRAN_EXAMPLES: ${{ matrix.OCCA_FORTRAN_ENABLED }}\nsteps:\n- - uses: actions/checkout@v2\n+ - uses: actions/checkout@v3\n- name: add oneAPI to apt\nif...
C++
MIT License
libocca/occa
Updates `actions/checkout` to version 3. (#631) Older versions of `actions/checkout` used node12, which is now deprecated on GitHub. Version 3 onward use node16.
378,355
14.11.2022 09:57:02
21,600
9866ea5e318641e59c07bbcd354e235571a57bed
[MemPool] Fix a bug in reservation tracking in memory pools
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/core/memoryPool.hpp", "new_path": "src/occa/internal/core/memoryPool.hpp", "diff": "@@ -12,8 +12,9 @@ namespace occa {\npublic:\nstruct compare {\nbool operator()(const modeMemory_t* a, const modeMemory_t* b) const {\n- return (a->offset < b-...
C++
MIT License
libocca/occa
[MemPool] Fix a bug in reservation tracking in memory pools (#634)
378,351
02.12.2022 13:51:43
21,600
d00dd31dc4365961b774e9c512ffdbd0daf41c30
Adds option to control barrier insertion via kernel properties.
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/lang/modes/withLauncher.cpp", "new_path": "src/occa/internal/lang/modes/withLauncher.cpp", "diff": "@@ -16,6 +16,7 @@ namespace occa {\nparser_t(settings_),\nlauncherParser(settings[\"launcher\"]) {\nlauncherParser.settings[\"okl/validate\"] ...
C++
MIT License
libocca/occa
Adds option to control barrier insertion via kernel properties. (#637)
378,351
16.12.2022 16:55:20
0
0d8fbfa7a817a4cd65c9f5ded52baca2fef692c1
Updates GitHub build workflow to be compatible with new runner images.
[ { "change_type": "MODIFY", "old_path": ".github/workflows/build.yml", "new_path": ".github/workflows/build.yml", "diff": "@@ -11,67 +11,53 @@ jobs:\nstrategy:\nmatrix:\ninclude:\n- - name: \"[Ubuntu] gcc-9\"\n- os: ubuntu-latest\n- CC: gcc-9\n- CXX: g++-9\n+ - name: \"[Ubuntu] gcc-12\"\n+ os: ubuntu...
C++
MIT License
libocca/occa
Updates GitHub build workflow to be compatible with new runner images.
378,351
19.12.2022 21:18:25
0
abff9735090109898cf3168ce9ee9295912a65e5
Updates DPCPP polyfill and function calls.
[ { "change_type": "MODIFY", "old_path": "src/occa/internal/modes/dpcpp/device.cpp", "new_path": "src/occa/internal/modes/dpcpp/device.cpp", "diff": "@@ -323,7 +323,7 @@ namespace occa\ndim device::maxInnerDims() const\n{\n- ::sycl::id<3> max_wi_sizes{dpcppDevice.get_info<::sycl::info::device::max_wor...
C++
MIT License
libocca/occa
Updates DPCPP polyfill and function calls.
675,373
03.01.2017 16:13:38
-10,800
94b7c78b4136f755e92dda320694cd0e845b5013
Add test to listen network changes
[ { "change_type": "MODIFY", "old_path": "plugin.xml", "new_path": "plugin.xml", "diff": "<source-file src=\"src/android/java/io/jxcore/node/StreamCopyingThread.java\" target-dir=\"src/io/jxcore/node/\" />\n<source-file src=\"src/android/java/io/jxcore/node/TestHelper.java\" target-dir=\"src/io/jxcore...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add test to listen network changes
675,381
29.12.2016 18:27:18
-10,800
2e8b0eba14d5fc92d7658e3f2e33494409e58fdf
Tests linting
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -248,7 +248,7 @@ test('#start subscribes to the WiFi infrastructure events and #stop ' +\nvar router = express.Router();\n- ThaliMobile.start(r...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Tests linting
675,373
09.01.2017 13:01:30
-10,800
84fcb1f694bcfc57402313c6a505e291dc20a170
Add documentation for state observer
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/SurroundingStateObserver.java", "new_path": "src/android/java/io/jxcore/node/SurroundingStateObserver.java", "diff": "@@ -8,9 +8,20 @@ import org.thaliproject.p2p.btconnectorlib.PeerProperties;\npublic interface SurroundingState...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add documentation for state observer
675,375
10.01.2017 16:09:20
-3,600
a470a85a59bb0bf9a5ab259850c0890e64dbe58d
Extended test and teadown timeouts, implement retry logic which is based on timer, because of possible race condition (see explanation in comments)
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -33,7 +33,11 @@ var test = tape({\nverifyCombinedResultSuccess(t, combinedResult);\nt.end();\n});\n- }\n+ },\n+ // Extend test and teardown tim...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Extended test and teadown timeouts, implement retry logic which is based on timer, because of possible race condition (see explanation in comments)
675,383
11.01.2017 11:37:47
-10,800
c3f654c8de81842e830b4afec1cd459e4211a788
Remove unnecessary getInstance call
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "new_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "diff": "@@ -97,7 +97,6 @@ public class JXcoreExtension implements SurroundingStateObserver {\n}\npublic static void LoadExtensions() {\n...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Remove unnecessary getInstance call
675,375
13.01.2017 12:33:11
-3,600
a7ebc487d47dd8873f9ce5056de478b0a24721ac
Put issues numbers in comments to track the bugs
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -34,8 +34,10 @@ var test = tape({\nt.end();\n});\n},\n- // Extend test and teardown timeouts. Sometimes it takes quite\n- // long to establish ...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Put issues numbers in comments to track the bugs
675,373
13.01.2017 18:22:20
-10,800
ad481fb0bfe6c5a774ec673a63df618607758350
Fix onPeerLost test
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "new_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "diff": "@@ -92,7 +92,7 @@ public class JXcoreExtension implements SurroundingStateObserver {\nprivate JXcoreExtension() {\n}\n- static S...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fix onPeerLost test
675,383
13.01.2017 20:43:07
-10,800
fc039716029f4b27f6526fef0fd1f11ff0702e9a
Fix onPeerDiscovered test
[ { "change_type": "MODIFY", "old_path": "src/android/test/com/test/thalitest/RegisterExecuteUT.java", "new_path": "src/android/test/com/test/thalitest/RegisterExecuteUT.java", "diff": "@@ -32,7 +32,7 @@ public final class RegisterExecuteUT {\nbreak;\ncase \"onPeerDiscovered\":\nConnectionHelperTest.m...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fix onPeerDiscovered test
675,373
16.01.2017 13:35:53
-10,800
a486bdc2327457fb7a6784632b1b157f1bbc2e3b
Always send null in generation when peer is not available
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "new_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "diff": "@@ -545,11 +545,8 @@ public class JXcoreExtension implements SurroundingStateObserver {\ntry {\njsonObject.put(EVENT_VALUE_PEER_...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Always send null in generation when peer is not available
675,381
17.01.2017 14:31:19
-10,800
23852488fbab61dc78dbb2a949f94d1ee700adca
Refactor "calls correct starts" test Remove platform dependent checks and add update comments
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -36,6 +36,7 @@ var test = tape({\n}\n});\n+\nvar testIdempotentFunction = function (t, functionName) {\nThaliMobile.start(express.Router())\n.t...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Refactor "calls correct starts" test Remove platform dependent checks and add update comments
675,381
18.01.2017 18:47:36
-10,800
4cc1998ecf53373efbd8f15163d03f7212f2c919
Rewrite some test in testThaliMobile.js. Cosmetic changes
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -12,6 +12,7 @@ var validations = require('thali/validations');\nvar sinon = require('sinon');\nvar uuid = require('uuid');\nvar nodessdp = requ...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Rewrite some test in testThaliMobile.js. Cosmetic changes
675,381
18.01.2017 18:55:21
-10,800
c45299ab0d22b2160c8bd35b359b6cabeba67491
disable android-only test on ios
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -1830,6 +1830,10 @@ test('network changes not emitted in stopped state',\n});\ntest('calls correct starts when network changes',\n+ function ()...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
disable android-only test on ios
675,381
18.01.2017 20:27:06
-10,800
0e54424c231040bbaeb9ead8025ec81fb208a137
Add logging for multiconnect
[ { "change_type": "MODIFY", "old_path": "thali/NextGeneration/thaliMobileNativeWrapper.js", "new_path": "thali/NextGeneration/thaliMobileNativeWrapper.js", "diff": "@@ -657,10 +657,14 @@ module.exports._multiConnect = function (peerIdentifier) {\nreturn gPromiseQueue.enqueue(function (resolve, reject...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add logging for multiconnect
675,381
18.01.2017 21:17:55
-10,800
801caae7ae27cd843fb3236670b603648f0b900f
Improve multiconnect logging
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobileNative.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobileNative.js", "diff": "@@ -363,8 +363,9 @@ test('Can shift large amounts of data', function (t) {\nvar client = null;\n// We're happy here if we make a conne...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Improve multiconnect logging
675,373
21.01.2017 18:26:45
-10,800
579949a5815932eea8e83fb3ffd58fc6793acb06
Add null sending in JSON between Android and Node
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "new_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "diff": "@@ -538,17 +538,16 @@ public class JXcoreExtension implements SurroundingStateObserver {\n});\n}\n-\npublic void notifyPeerAvail...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add null sending in JSON between Android and Node
675,373
23.01.2017 17:00:55
-10,800
d0c19504dff0333dd6be82be7baef54fd1513242
Process primitive types in JSON the same way as reference types
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "new_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "diff": "@@ -573,15 +573,13 @@ public class JXcoreExtension implements SurroundingStateObserver {\npublic void notifyDiscoveryAdvertising...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Process primitive types in JSON the same way as reference types
675,381
24.01.2017 16:39:06
-10,800
ae00b6189321206a3a08fd5c6193210960fa6add
Add docs, fix lint warnings Add docs, fix lint warnings Clean up thaliMobile.js and testThaliMobile.js
[ { "change_type": "MODIFY", "old_path": ".eslintrc", "new_path": ".eslintrc", "diff": "}\n],\n\"no-new\": 2,\n+ \"no-extra-semi\": 2,\n\"no-extra-parens\": 2,\n\"no-use-before-define\": [\n2,\n" }, { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add docs, fix lint warnings (#1746) Add docs, fix lint warnings Clean up thaliMobile.js and testThaliMobile.js
675,379
26.10.2016 17:50:09
-10,800
32bf52d1d86a30d31708011c48811dd59c4717da
Separate thread for NSStream events. Improve handling events in VirtualSocket.swift.
[ { "change_type": "MODIFY", "old_path": "lib/ios/ThaliCore/ThaliCore.xcodeproj/project.pbxproj", "new_path": "lib/ios/ThaliCore/ThaliCore.xcodeproj/project.pbxproj", "diff": "1C6D71411DAF9BDB00802569 /* StringRandomTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AD347541D9FEED9006F1126 /*...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Separate thread for NSStream events. Improve handling events in VirtualSocket.swift.
675,379
27.10.2016 11:03:07
-10,800
224f8f7b0ab89cc63a48b9161cb49b0aa9f32423
Small updates in code.
[ { "change_type": "MODIFY", "old_path": "lib/ios/ThaliCore/ThaliCore/SocketConnection/NSStreamEventsThread.swift", "new_path": "lib/ios/ThaliCore/ThaliCore/SocketConnection/NSStreamEventsThread.swift", "diff": "@@ -11,11 +11,11 @@ import Foundation\nclass NSStreamEventsThread: NSThread {\n- private l...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Small updates in code.
675,381
27.01.2017 13:00:44
-10,800
00c7de53d92ec12f9db1e76580c6785e2e557377
Fix missed review comments and linter warnings
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobileNativeWrapper.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobileNativeWrapper.js", "diff": "@@ -201,11 +201,19 @@ var connectionTester = function(port, reversed) {\nreturn new Promise(function(resolve, reject) {\...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fix missed review comments and linter warnings
675,381
27.01.2017 13:00:44
-10,800
403f811ea13ca4fb76e1084037a37139f4bdffae
Update from iOS_squid48_1611 branch.
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobileNativeWrapper.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobileNativeWrapper.js", "diff": "@@ -201,11 +201,19 @@ var connectionTester = function(port, reversed) {\nreturn new Promise(function(resolve, reject) {\...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update from iOS_squid48_1611 branch.
675,379
27.01.2017 15:35:42
-10,800
fd1d69c897b7fea48bcb0ae9ff7ffe6a03a11c61
Temporary disable desktop tests.
[ { "change_type": "MODIFY", "old_path": "build.sh", "new_path": "build.sh", "diff": "@@ -59,13 +59,13 @@ fi\necho \"\"\necho \"run desktop tests\"\n-jx runTests.js --networkType WIFI\n-jx runTests.js --networkType NATIVE\n-jx runTests.js --networkType BOTH\n-jx npm run test-meta\n-jx runCoordinatedTe...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Temporary disable desktop tests.
675,381
26.01.2017 15:00:14
-10,800
c52ce6d79d1ced9ada005967f9ef5edf3e0147d1
Disable android-only tests on iOS platform
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -1552,8 +1552,12 @@ test('#disconnect delegates native peers to the native wrapper',\ntest('network changes emitted correctly',\nfunction () {\...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Disable android-only tests on iOS platform
675,381
27.01.2017 16:24:57
-10,800
9efdf73a66ec81699debeaa58dd2e8337e2ce223
Update multiConnect invalid syncValue handling. Update tests, update mobile mock, update spec
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobileNativeiOS.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobileNativeiOS.js", "diff": "@@ -122,23 +122,14 @@ test('multiConnect properly fails on legal but non-existent peerID',\ntest('cannot call multiConnect with ...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update multiConnect invalid syncValue handling. (#1756) Update tests, update mobile mock, update spec
675,377
30.01.2017 09:03:21
-3,600
b3084c7d25ee85404b562363b63271eabed8e1c0
Set android build tools to 25.0.2
[ { "change_type": "MODIFY", "old_path": "thali/package.json", "new_path": "thali/package.json", "diff": "},\n\"androidConfig\": {\n\"minSdkVersion\": \"21\",\n- \"buildToolsVersion\": \"25.0.0\",\n+ \"buildToolsVersion\": \"25.0.2\",\n\"compileSdkVersion\": \"android-23\"\n},\n\"btconnectorlib2\": \"...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Set android build tools to 25.0.2
675,373
31.01.2017 17:04:03
-10,800
b3b02b33874060b0cb3cfe005afa95aaf404a7db
Add check if radio is on before starting the advertising and listening
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "new_path": "src/android/java/io/jxcore/node/JXcoreExtension.java", "diff": "@@ -758,6 +758,9 @@ public class JXcoreExtension implements SurroundingStateObserver {\nfinal ArrayList<Object> args = new Array...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add check if radio is on before starting the advertising and listening
675,381
31.01.2017 11:15:03
-10,800
ee4b025b4cef0b999412549a967a62cb046af58c
Update node-ssdp version New version fixes callback invocation in the server's start method
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/package.json", "new_path": "test/www/jxcore/package.json", "diff": "\"minimist\": \"1.2.0\",\n\"multiplex\": \"6.7.0\",\n\"nock\": \"2.12.0\",\n- \"node-ssdp\": \"https://github.com/thaliproject/node-ssdp.git#caf1a75aa54fb47a9e51b72bf4c902c3665...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update node-ssdp version New version fixes callback invocation in the server's start method
675,381
31.01.2017 12:25:41
-10,800
c83cb35bb6d6da387a7e0f332cdc3fd319505718
Implement radio errors in mock, fix tests
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobileNativeWrapper.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobileNativeWrapper.js", "diff": "@@ -669,10 +669,23 @@ test('calls correct starts when network changes',\nreturn testUtils.ensureBluetooth(false);\n})\n....
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Implement radio errors in mock, fix tests
675,381
30.01.2017 13:55:31
-10,800
8cfecf071f7b01b92d4454f34a5cba1e6e643ecd
Restart ssdp server on bssid change
[ { "change_type": "MODIFY", "old_path": "thali/NextGeneration/thaliWifiInfrastructure.js", "new_path": "thali/NextGeneration/thaliWifiInfrastructure.js", "diff": "@@ -352,7 +352,6 @@ WifiAdvertiser.prototype.stop = function () {\n});\n};\n-\nWifiAdvertiser.prototype._errorStop = function (error) {\nt...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Restart ssdp server on bssid change
675,381
01.02.2017 14:26:01
-10,800
b2af177be45ba7ec65a37b62666c999e248fb9f2
Add SSDP server restart test
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testSSDPServer.js", "new_path": "test/www/jxcore/bv_tests/testSSDPServer.js", "diff": "@@ -10,6 +10,11 @@ var ThaliMobile = require('thali/NextGeneration/thaliMobile');\nvar ThaliMobileNativeWrapper = require('thali/NextGeneration/thal...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add SSDP server restart test
675,373
01.02.2017 17:53:37
-10,800
c47ddeba2199749151e0ec93aa315b772bdabd5b
Update jxcore to 0.3.1.9
[ { "change_type": "MODIFY", "old_path": "readme.md", "new_path": "readme.md", "diff": "@@ -317,14 +317,14 @@ Download [Xcode 6](https://developer.apple.com/xcode/), or later.\n### Install latest JXCore\n-The installation guide for JXCore 3.1.8 on Mac OS and Windows can be found [here](https://github....
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update jxcore to 0.3.1.9
675,381
02.02.2017 18:40:35
-10,800
98b4517e1f555420433526f1da5f69c057d2e2ba
Do not restart ssdp client and server if they are stopped
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testSSDPServer.js", "new_path": "test/www/jxcore/bv_tests/testSSDPServer.js", "diff": "@@ -104,12 +104,6 @@ test(\n}\n);\n-test(\n- 'ssdp server and client should be restarted when bssid changed',\n- function () {\n- return global.NETW...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Do not restart ssdp client and server if they are stopped
675,381
08.02.2017 16:08:55
-10,800
31c49c3810e6f10213fbccd94e1231521730fa28
Update forever-agent to the newest version Fixes and
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/package.json", "new_path": "test/www/jxcore/package.json", "diff": "\"concat-map\": \"0.0.1\",\n\"express\": \"4.13.3\",\n\"express-pouchdb\": \"1.0.6-thali\",\n- \"forever-agent\": \"https://github.com/thaliproject/forever-agent.git#f1078b5095...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update forever-agent to the newest version (#1777) Fixes #1771 and #1744
675,381
09.02.2017 14:19:27
-10,800
29f0ec82551f4fb37b7a6bfc44ee97a2e408cd56
Add logging. Update waiting logic
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliManagerCoordinated.js", "new_path": "test/www/jxcore/bv_tests/testThaliManagerCoordinated.js", "diff": "@@ -53,6 +53,13 @@ var test = tape({\nteardownTimeout: 3 * 60 * 1000\n});\n+function log() {\n+ var prefix = new Date().to...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add logging. Update waiting logic
675,381
09.02.2017 14:52:04
-10,800
78851432be7bd28c9dbb1cf42fb6ea21e198aaf9
Increase replication action idle period
[ { "change_type": "MODIFY", "old_path": "thali/NextGeneration/replication/thaliReplicationPeerAction.js", "new_path": "thali/NextGeneration/replication/thaliReplicationPeerAction.js", "diff": "@@ -84,7 +84,7 @@ ThaliReplicationPeerAction.ACTION_TYPE = 'ReplicationAction';\n* @readonly\n* @type {numbe...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Increase replication action idle period
675,381
09.02.2017 18:23:01
-10,800
ea489f2c92549c5871049b24947158d1f571906f
Disable iOS native specific tests in WiFi mode
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -1921,7 +1921,10 @@ test('calls correct starts when network changes',\ntest('We properly fire peer unavailable and then available when ' +\n'co...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Disable iOS native specific tests in WiFi mode
675,381
10.02.2017 13:05:07
-10,800
7716eff6a935123a6f09a74136ebed8e038d206c
Disable PouchDB checkpoints plugin tests
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testPouchDBCheckpointPlugin.js", "new_path": "test/www/jxcore/bv_tests/testPouchDBCheckpointPlugin.js", "diff": "@@ -39,7 +39,13 @@ var Doc = function () {\nthis._id = prefix + '-' + Date.now();\n};\n-test('Call of onCheckpointReached ...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Disable PouchDB checkpoints plugin tests
675,373
13.02.2017 11:31:10
-10,800
2a9649bbcef57609375ecfc40e2b1406157ecf2a
Update jxcore to 0.3.1.10
[ { "change_type": "MODIFY", "old_path": "readme.md", "new_path": "readme.md", "diff": "@@ -317,14 +317,14 @@ Download [Xcode 6](https://developer.apple.com/xcode/), or later.\n### Install latest JXCore\n-The installation guide for JXCore 3.1.9 on Mac OS and Windows can be found [here](https://github....
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update jxcore to 0.3.1.10
675,381
13.02.2017 18:01:44
-10,800
b75019cda7041fd2294906fc01e6f752a04ceb46
Fix race conditions. Code cleanup Fix most of the race conditions by wrapping public methods into `PromiseQueue#enqueue`.
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "new_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "diff": "@@ -732,7 +732,7 @@ test('network changes are ignored while stopping', function (t) {\n})\n.then(function (networkStatus) ...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fix race conditions. Code cleanup Fix most of the race conditions by wrapping public methods into `PromiseQueue#enqueue`.
675,373
15.02.2017 18:00:14
-10,800
5403141246ec79c621da8f788a18c058e52908ae
Fix null pointer exception. The initialization of the thread was moved before adding the thread to collection
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/ConnectionHelper.java", "new_path": "src/android/java/io/jxcore/node/ConnectionHelper.java", "diff": "@@ -674,12 +674,12 @@ public class ConnectionHelper\n}\nif (newOutgoingSocketThread != null) {\n- if (mConnectionModel.addConn...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fix null pointer exception. The initialization of the thread was moved before adding the thread to collection
675,373
16.02.2017 13:52:18
-10,800
457c3ab71a002cdad7aadd7628099513d1a7f1d7
Remove the extra synchronized word
[ { "change_type": "MODIFY", "old_path": "src/android/java/io/jxcore/node/ConnectionModel.java", "new_path": "src/android/java/io/jxcore/node/ConnectionModel.java", "diff": "@@ -146,7 +146,7 @@ public class ConnectionModel {\n* @param incomingSocketThread An incoming (connection) socket thread instanc...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Remove the extra synchronized word
675,381
17.02.2017 17:49:54
-10,800
d2f007e9ffa2ee60addbaa082799b3ba184b7baa
Fix null checks in tests Android couldn't properly serialize null values before. But since it has been already fixed I can update tests with proper null checks
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testNativeMethod.js", "new_path": "test/www/jxcore/bv_tests/testNativeMethod.js", "diff": "@@ -33,7 +33,7 @@ test('onPeerLost calls jxcore',\nt.equal(callbackPeer.peerIdentifier, '11:22:33:22:11:00',\n'check if callback was fired by on...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fix null checks in tests Android couldn't properly serialize null values before. But since it has been already fixed I can update tests with proper null checks
675,373
20.02.2017 16:22:38
-10,800
b9e18a996b1379969f473a54201e300ea39380a2
Rollback to java 1.6 version
[ { "change_type": "MODIFY", "old_path": "src/android/java/build-extras.gradle", "new_path": "src/android/java/build-extras.gradle", "diff": "ext.postBuildExtras = {\nandroid {\ncompileOptions {\n- sourceCompatibility JavaVersion.VERSION_1_7\n- targetCompatibility JavaVersion.VERSION_1_7\n+ sourceComp...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Rollback to java 1.6 version
675,381
17.02.2017 19:28:40
-10,800
c182d5d330bb33c59f2f4ea1744ca6a0e0a2ff2d
"Fix" race conditions in ssdp restart tests
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testSSDPServer.js", "new_path": "test/www/jxcore/bv_tests/testSSDPServer.js", "diff": "@@ -137,7 +137,8 @@ test(\nclientStopStub.reset();\nreturn new Promise(function (resolve) {\nchangeBssid(newBssid);\n- setImmediate(function () {\n+...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
"Fix" race conditions in ssdp restart tests
675,379
02.03.2017 12:59:25
-10,800
7b828d4a548f66aabbd5a6f41c47724a7f705fae
Fixing build-time issues in ThaliCore.
[ { "change_type": "MODIFY", "old_path": "lib/ios/ThaliCore/ThaliCore/MultipeerConnectivity/AdvertiserManager.swift", "new_path": "lib/ios/ThaliCore/ThaliCore/MultipeerConnectivity/AdvertiserManager.swift", "diff": "@@ -93,7 +93,7 @@ public final class AdvertiserManager {\nCalled when startUpdateAdver...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fixing build-time issues in ThaliCore.
675,379
02.03.2017 13:01:03
-10,800
8ad10c79659d9b9d7c4c34aab5cdf7603d8344c6
Swift 3.0 migration for ThaliCore (ThaliCore module itself).
[ { "change_type": "MODIFY", "old_path": "lib/ios/ThaliCore/ThaliCore.xcodeproj/project.pbxproj", "new_path": "lib/ios/ThaliCore/ThaliCore.xcodeproj/project.pbxproj", "diff": "TargetAttributes = {\nCCA571BB1D4787A900FBEC41 = {\nCreatedOnToolsVersion = 7.3.1;\n+ LastSwiftMigration = 0820;\n};\nCCA571C5...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Swift 3.0 migration for ThaliCore (ThaliCore module itself).
675,381
02.03.2017 13:15:41
-10,800
53ae008b37e26c49ca3f5e08d3159d52546b019c
Eslint: ignore valid long jsdoc lines
[ { "change_type": "RENAME", "old_path": ".eslintrc", "new_path": ".eslintrc.js", "diff": "-{\n+module.exports = {\n\"env\": {\n\"node\": true\n},\n2,\n{\n\"ignoreTrailingComments\": true,\n+ \"ignoreUrls\": true,\n\"ignoreStrings\": true,\n- \"ignoreUrls\": true\n+ \"ignorePattern\": getMaxLenPattern...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Eslint: ignore valid long jsdoc lines (#1815)
675,379
02.03.2017 13:20:09
-10,800
5ad9f4983d2b0a1cc38e60666743f0ef2be0bf3c
Update project to recommended settings. Enable recommended warnings. Turn on whole module optimization
[ { "change_type": "MODIFY", "old_path": "lib/ios/ThaliCore/ThaliCore.xcodeproj/project.pbxproj", "new_path": "lib/ios/ThaliCore/ThaliCore.xcodeproj/project.pbxproj", "diff": "isa = PBXProject;\nattributes = {\nLastSwiftUpdateCheck = 0730;\n- LastUpgradeCheck = 0730;\n+ LastUpgradeCheck = 0820;\nORGAN...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update project to recommended settings. Enable recommended warnings. Turn on whole module optimization
675,379
02.03.2017 16:22:56
-10,800
051bd1db4e6f0ede15f4e7cc8c21f5d9b1dea21e
Update AppContext.swift and AppContextTests.swift files to Swift 3.0.
[ { "change_type": "MODIFY", "old_path": "src/ios/AppContext.swift", "new_path": "src/ios/AppContext.swift", "diff": "@@ -11,20 +11,20 @@ import CoreBluetooth\nimport Foundation\nimport ThaliCore\n-func jsonValue(object: AnyObject) -> String {\n+func jsonValue(_ object: AnyObject) -> String {\nguard l...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update AppContext.swift and AppContextTests.swift files to Swift 3.0.
675,379
02.03.2017 17:46:30
-10,800
fe848caf215660c34f8c730600f1256c2dceb4ac
Fixing critical SwiftLint issues.
[ { "change_type": "ADD", "old_path": null, "new_path": "lib/ios/Cartfile", "diff": "+github \"thaliproject/thali-ios\" \"master\"\n" }, { "change_type": "MODIFY", "old_path": "src/ios/AppContext.swift", "new_path": "src/ios/AppContext.swift", "diff": "//\n-// Thali CordovaPlugin\n...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fixing critical SwiftLint issues.
675,378
03.03.2017 17:53:37
-10,800
b04069281aa4bf21c6d59512e822dce0707aa72a
Fixing thaliWifiInfrastructure.startUpdateAdvertisingAndListening should not restart the SSDP server
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "new_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "diff": "@@ -826,3 +826,23 @@ function (t) {\n});\ntestUtils.toggleWifi(false);\n});\n+\n+test('SSDP server should not restart afte...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fixing thaliWifiInfrastructure.startUpdateAdvertisingAndListening should not restart the SSDP server
675,383
06.03.2017 13:19:11
-10,800
d0ae79d916d713cc75ba9a0cfd14490a4755229f
Update jxcore version
[ { "change_type": "MODIFY", "old_path": "thali/install/validateBuildEnvironment.js", "new_path": "thali/install/validateBuildEnvironment.js", "diff": "@@ -21,7 +21,7 @@ const versions =\nbrew: '1.1.',\nruby: '2.3.0p0',\nwget: '1.18',\n- jxcore: '0.3.1.8',\n+ jxcore: '0.3.1.10',\nandroidHome: ' ',\nan...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update jxcore version
675,381
27.02.2017 21:38:59
-10,800
5b8d96fb1a87ffd10bc59946804b7eadad40921b
Fix inconsistent ThaliPeerPool enqueue API 1. Makes all ThaliPeerPoolInterface implementations to always throw when invalid action is being enqueued. 2. Updates thaliNotificationClient to use `try-catch` instead of checking returned value Fixes
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliPeerPoolDefault.js", "new_path": "test/www/jxcore/bv_tests/testThaliPeerPoolDefault.js", "diff": "@@ -216,9 +216,12 @@ test('#ThaliPeerPoolDefault - stop', function (t) {\nvar testAction3 = new TestPeerAction(\npeerIdentifier,...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fix inconsistent ThaliPeerPool enqueue API 1. Makes all ThaliPeerPoolInterface implementations to always throw when invalid action is being enqueued. 2. Updates thaliNotificationClient to use `try-catch` instead of checking returned value Fixes #1813.
675,381
28.02.2017 16:14:57
-10,800
8d951ef7ae1c0b7565895e9823e6378ad051efab
Add errors handling test for notification client
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliNotificationClient.js", "new_path": "test/www/jxcore/bv_tests/testThaliNotificationClient.js", "diff": "@@ -446,6 +446,37 @@ test('Resolves an action locally', function (t) {\nnotificationClient._peerAvailabilityChanged(global...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Add errors handling test for notification client
675,381
02.03.2017 20:29:55
-10,800
24a1dd69852805e6367b41134926d0c1003a508f
Improve actions enqueuing errors handling. thaliNotificationClient and thaliPullReplicationFromNotification don't ignore enqueue errors anymore, these errors are emitted with 'error' event
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliNotificationClient.js", "new_path": "test/www/jxcore/bv_tests/testThaliNotificationClient.js", "diff": "@@ -446,7 +446,12 @@ test('Resolves an action locally', function (t) {\nnotificationClient._peerAvailabilityChanged(global...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Improve actions enqueuing errors handling. thaliNotificationClient and thaliPullReplicationFromNotification don't ignore enqueue errors anymore, these errors are emitted with 'error' event
675,379
06.03.2017 15:13:15
-10,800
4fcb1a955423f16a1c3909c7ff3f89b3a062bc86
Update thaliCoreProjectFolder in after_plugin_install.js hook.
[ { "change_type": "MODIFY", "old_path": "thali/install/cordova-hooks/ios/after_plugin_install.js", "new_path": "thali/install/cordova-hooks/ios/after_plugin_install.js", "diff": "@@ -61,7 +61,7 @@ module.exports = function (context) {\n// We need to build ThaliCore.framework before embedding it into ...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update thaliCoreProjectFolder in after_plugin_install.js hook.
675,378
06.03.2017 16:03:33
-10,800
9a5471846a3571a0d6f349d550bd1f47b4009bc3
Remove addAvailabilityWatcherToPeerIfNotExist for peer type (Bluetooth)
[ { "change_type": "MODIFY", "old_path": "thali/NextGeneration/mux/createNativeListener.js", "new_path": "thali/NextGeneration/mux/createNativeListener.js", "diff": "@@ -190,7 +190,6 @@ module.exports = function (self) {\n'<-> Mux - %d - error %s', localIncomingConnectionId, err);\n});\n- incoming.set...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Remove addAvailabilityWatcherToPeerIfNotExist for peer type (Bluetooth)
675,378
06.03.2017 17:32:43
-10,800
941266d0e3b57f79a78c73b8e0650272abe4c79c
Writing test ssdp client receives correct USN after we call startUpdateAdvertisingAndListening(), update according to the PR 1817
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "new_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "diff": "@@ -830,8 +830,11 @@ function (t) {\ntest('SSDP server should not restart after Wifi Client changed generation',\nfunction...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Writing test ssdp client receives correct USN after we call startUpdateAdvertisingAndListening(), update according to the PR 1817
675,378
07.03.2017 15:54:49
-10,800
9d3cf8c206b5afb8892233a2f3b57772cb846c78
Implement and update tests for
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -193,9 +193,11 @@ test('#stop should clear watchers and change peers', function (t) {\n});\n})\n.then(function () {\n+ if (connectionType !== c...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Implement and update tests for #1457
675,378
09.03.2017 15:13:20
-10,800
c449fe45b1cca2ea9640735e773bbdca6d48e846
Update test for startUpdateAdvertisingAndListening does not send ssdp:byebye notifications
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "new_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "diff": "@@ -856,42 +856,52 @@ test('startUpdateAdvertisingAndListening does not send ssdp:byebye notifications\nssdpIp: thaliConfi...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update test for startUpdateAdvertisingAndListening does not send ssdp:byebye notifications
675,379
09.03.2017 15:36:01
-10,800
8d5282cec41582bc608978d36c719d6db5ac9c75
Update Cartfile.resolved.
[ { "change_type": "MODIFY", "old_path": "lib/ios/Cartfile.resolved", "new_path": "lib/ios/Cartfile.resolved", "diff": "github \"robbiehanson/CocoaAsyncSocket\" \"7.6.0\"\n-github \"thaliproject/swift-corelibs-xctest\" \"4d2bb86a6767d696b1fcdad075d015bd74869f6f\"\n-github \"thaliproject/thali-ios\" \"...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update Cartfile.resolved.
675,371
06.03.2017 11:26:20
-3,600
8c14202a8c5177a23a1d66d697218c7a939fb921
Update validateBuildEnvironment.js.
[ { "change_type": "MODIFY", "old_path": "thali/install/validateBuildEnvironment.js", "new_path": "thali/install/validateBuildEnvironment.js", "diff": "@@ -33,7 +33,8 @@ const versions =\ncordova: '6.4.0',\njava: '1.8.0_102',\ngit: '2.10.0',\n- swiftlint: '0.13.0',\n+ swiftlint: '0.16.1',\n+ carthage:...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update validateBuildEnvironment.js.
675,379
09.03.2017 15:56:56
-10,800
75b1ce0c16dcdc8e6fcf8da2efd58af997aa3af4
Update Xcode version and jxcore version in validateBuildEnvironment.js.
[ { "change_type": "MODIFY", "old_path": "thali/install/validateBuildEnvironment.js", "new_path": "thali/install/validateBuildEnvironment.js", "diff": "@@ -13,7 +13,7 @@ const assert = require('assert');\nconst versions =\n{\n- xcode: '7.3.1',\n+ xcode: '8.2.1',\nxcodeCommandLineTools: ' ',\nmacOS: '1...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update Xcode version and jxcore version in validateBuildEnvironment.js.
675,378
10.03.2017 15:16:49
-10,800
b7e0a27c69e229c62eb0dc6e329a362e27198c8a
Update test for pr
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "new_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "diff": "@@ -846,6 +846,7 @@ test('SSDP server should not restart after Wifi Client changed generation',\nt.fail(err);\n})\n.then(f...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update test for pr #1817
675,378
10.03.2017 17:31:31
-10,800
c6dfe2c78ec56998fad6bdf3fb39031e609e3dac
Update peerAvailabilityWatchers, thaliMobile and ThaliWifiInfrastructure and test for it.
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -314,74 +314,6 @@ test('can get the network status', function (t) {\n});\n});\n-test('wifi peer is marked unavailable if announcements stop',\n...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update peerAvailabilityWatchers, thaliMobile and ThaliWifiInfrastructure and test for it.
675,378
13.03.2017 12:18:11
-10,800
e9dd7bfd8578614dd30fea01cf68e0869addb376
Update tests for thaliWifiInfrastructure after updates peerAvailabilityWatchers structure.
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "new_path": "test/www/jxcore/bv_tests/testThaliWifiInfrastructure.js", "diff": "@@ -816,9 +816,6 @@ test('#stop should clear watchers', function (t) {\n});\ntest('wifi peer is marked unavailable if anno...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update tests for thaliWifiInfrastructure after updates peerAvailabilityWatchers structure.
675,381
13.03.2017 13:18:46
-10,800
052ba7297bbc1e3186df444c8e31d9e668ed567a
Fix WiFi connection check ThaliWifiInfrastructure did not check the case when WiFi is enabled but device is not connected to any access point
[ { "change_type": "MODIFY", "old_path": "thali/NextGeneration/thaliWifiInfrastructure.js", "new_path": "thali/NextGeneration/thaliWifiInfrastructure.js", "diff": "@@ -682,6 +682,13 @@ ThaliWifiInfrastructure.prototype._setUpEvents = function() {\ninherits(ThaliWifiInfrastructure, EventEmitter);\n+Tha...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Fix WiFi connection check ThaliWifiInfrastructure did not check the case when WiFi is enabled but device is not connected to any access point
675,381
13.03.2017 15:42:13
-10,800
79243628f9e032a040e434b67f89cbe143ce44cc
Update WiFi network change handling tests
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testSSDPServer.js", "new_path": "test/www/jxcore/bv_tests/testSSDPServer.js", "diff": "@@ -115,43 +115,56 @@ function changeBssid (value) {\n});\n}\n-test(\n- 'ssdp server and client should be restarted when bssid changed',\n- function...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update WiFi network change handling tests
675,381
13.03.2017 20:35:34
-10,800
996b5ffe93eafd0274a61b5a1125400e78037e3c
WiFi network state handling refactoring
[ { "change_type": "MODIFY", "old_path": "thali/NextGeneration/thaliWifiInfrastructure.js", "new_path": "thali/NextGeneration/thaliWifiInfrastructure.js", "diff": "@@ -682,46 +682,33 @@ ThaliWifiInfrastructure.prototype._setUpEvents = function() {\ninherits(ThaliWifiInfrastructure, EventEmitter);\n-Th...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
WiFi network state handling refactoring
675,378
14.03.2017 16:49:03
-10,800
0dae79c821876735480f950422102a8ff5657574
Update thaliMobile "discoveryDOS" event , implement tests.
[ { "change_type": "MODIFY", "old_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "new_path": "test/www/jxcore/bv_tests/testThaliMobile.js", "diff": "@@ -2213,6 +2213,69 @@ test('does not fire duplicate events after peer listener recreation',\n}\n);\n+test('If there are more then PERS_LIMIT peer...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update thaliMobile "discoveryDOS" event , implement tests.
675,379
14.03.2017 16:54:25
-10,800
8432681c42750457e408109f7d482be610a6601f
Update iOS deployment target in build-ci.xcconfig from 9.0 to 10.0.
[ { "change_type": "MODIFY", "old_path": "thali/install/ios/build-ci.xcconfig", "new_path": "thali/install/ios/build-ci.xcconfig", "diff": "//\nHEADER_SEARCH_PATHS = \"$(TARGET_BUILD_DIR)/usr/local/lib/include\" \"$(OBJROOT)/UninstalledProducts/include\" \"$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAM...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update iOS deployment target in build-ci.xcconfig from 9.0 to 10.0.
675,379
14.03.2017 16:55:11
-10,800
13659c8267f1f6d2eba4c106e28ec79440642d71
Rename environment vars to avoid collisions.
[ { "change_type": "MODIFY", "old_path": "thali/install/setUpTests.sh", "new_path": "thali/install/setUpTests.sh", "diff": "@@ -19,9 +19,9 @@ trap 'log_error $LINENO' ERR\ncd `dirname $0`\ncd ../..\nREPO_ROOT_DIR=$(pwd)\n-PROJECT_NAME=${TEST_PROJECT_NAME:-ThaliTest}\n+PROJECT_NAME=${THALI_TEST_PROJECT...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Rename environment vars to avoid collisions.
675,379
14.03.2017 17:14:36
-10,800
88bc2ecd1c21276afad78a83d35dce43e76f76d1
Update nativeInstaller.js in order to support carthage.
[ { "change_type": "MODIFY", "old_path": "thali/install/cordova-hooks/ios/after_plugin_install.js", "new_path": "thali/install/cordova-hooks/ios/after_plugin_install.js", "diff": "@@ -59,13 +59,12 @@ module.exports = function (context) {\n}\n// We need to build ThaliCore.framework before embedding it ...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update nativeInstaller.js in order to support carthage.
675,379
14.03.2017 17:24:19
-10,800
a606133f8590c42b2f22d3374e216a9aec941f7c
Update build dir for SwiftXCTest/CocoaAsyncSocket frameworks.
[ { "change_type": "MODIFY", "old_path": "thali/install/ios/nativeInstaller.js", "new_path": "thali/install/ios/nativeInstaller.js", "diff": "@@ -149,7 +149,7 @@ function addFramework(\nconsole.log('Checkouting done!');\nvar checkoutDir = path.join(frameworkOutputDir, 'Carthage', 'Checkouts');\n- var ...
JavaScript
MIT License
thaliproject/thali_cordovaplugin
Update build dir for SwiftXCTest/CocoaAsyncSocket frameworks.