-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New: - added Sync progress field - added Notifications for incoming transactions - added Elections Changed: - added 1 API entrypoint Bugs: - fixed invisible Labels in create Contact - fixed a bug for QRCode Reader
- Loading branch information
Showing
54 changed files
with
1,764 additions
and
750 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,4 @@ src/model/blockchain/*.js | |
src/pages/*.js | ||
src/providers/*.js | ||
src/utils/*.js | ||
src/workers/*.js | ||
src/workers/*.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
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,34 @@ | ||
/* | ||
* Copyright (c) 2018, Gnock | ||
* Copyright (c) 2018, The Masari Project | ||
* | ||
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | ||
* | ||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
* | ||
* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
const workboxBuild = require('workbox-build'); | ||
|
||
// NOTE: This should be run *AFTER* all your assets are built | ||
const buildSW = () => { | ||
// This will return a Promise | ||
return workboxBuild.injectManifest({ | ||
swSrc: 'src/service-worker-raw.js', | ||
swDest: 'src/service-worker.js', | ||
globDirectory: 'src', | ||
globPatterns: [ | ||
'**\/*.{js,css,html,json,png,ico,jpg}', | ||
], | ||
globIgnores: [ | ||
'd/Vue.js', 'src/service-worker-raw.js' | ||
] | ||
}); | ||
}; | ||
|
||
buildSW(); |
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 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 |
---|---|---|
@@ -1 +1 @@ | ||
declare function saveAs(block : any, filename:string) : void; | ||
declare function saveAs(block: any, filename: string): void; |
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 @@ | ||
declare var JSBigInt : any; | ||
declare var JSBigInt: any; |
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,24 +1,33 @@ | ||
type VueConstructObject = {el:string,data:any, watch?:any, computed?:any, updated?:any, mounted?:any, methods?:any, i18n?:any}; | ||
type VueConstructObject = { | ||
el: string, | ||
data: any, | ||
watch ? : any, | ||
computed ? : any, | ||
updated ? : any, | ||
mounted ? : any, | ||
methods ? : any, | ||
i18n ? : any | ||
}; | ||
type VueComponentObject = { | ||
template:string, | ||
props?:Array<string>, | ||
data?:Function, | ||
computed:any | ||
template: string, | ||
props ? : Array < string > , | ||
data ? : Function, | ||
computed: any | ||
} | ||
|
||
|
||
// declare var Vue : any; | ||
class Vue{ | ||
constructor(any : VueConstructObject|string|null){} | ||
class Vue { | ||
constructor(any: VueConstructObject | string | null) {} | ||
|
||
$nextTick(callback : Function){} | ||
$forceUpdate(){} | ||
$nextTick(callback: Function) {} | ||
$forceUpdate() {} | ||
|
||
static component(componentName : string, data : VueComponentObject) : void{} | ||
static filter(name : string, callback : Function) : void{} | ||
static component(componentName: string, data: VueComponentObject): void {} | ||
static filter(name: string, callback: Function): void {} | ||
|
||
static options : { | ||
components:any, | ||
filters:any | ||
static options: { | ||
components: any, | ||
filters: any | ||
}; | ||
} |
Oops, something went wrong.