This repository was archived by the owner on Jul 7, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +23
-25
lines changed Expand file tree Collapse file tree 6 files changed +23
-25
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,26 @@ The following CSS rule changes the font size of all Buttons that have the
24
24
25
25
Page {
26
26
background-color : lightgrey;
27
+ color : black;
27
28
}
28
29
button {
29
30
font-size : 20 ;
30
31
horizontal-align : center;
31
32
}
32
33
33
34
.one {
34
- background-color : greenyellow;
35
+ background-color : black;
36
+ color : white;
35
37
}
36
38
37
39
.two {
38
- background-color : cyan;
40
+ background-color : lightgrey;
41
+ color : black;
42
+ }
43
+
44
+ .entry {
45
+ background-color : lightgrey;
46
+ color : black;
39
47
}
40
48
41
49
.copyright {
Original file line number Diff line number Diff line change 11
11
</Repeater >
12
12
</ScrollView >
13
13
<GridLayout row =" 1" rows =" *,auto" columns =" *,auto" class =" border" >
14
- <TextField id =" entry" hint =" Type a new name" text =" " />
14
+ <TextField class = " entry " id =" entry" hint =" Type a new name" text =" " />
15
15
<Button id =" go" col =" 1" text =" Add" tap =" addNewName" />
16
16
<Label row =" 1" colSpan =" 2" text =" (c) 2015-2021, Master Technology" class =" copyright" android : tap =" openMT" />
17
17
</GridLayout >
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " @ nativescript/template-hello-world " ,
2
+ "name" : " nativescript-sqlite-demo " ,
3
3
"main" : " app/app.js" ,
4
- "version" : " 8.0.3 " ,
5
- "author" : " NativeScript Team <oss@nativescript.org> " ,
6
- "description" : " NativeScript Application " ,
7
- "license" : " SEE LICENSE IN <your-license-filename> " ,
4
+ "version" : " 8.0.0 " ,
5
+ "author" : " Nathan Anderson <nathan@master.technology " ,
6
+ "description" : " SQLite Demo App " ,
7
+ "license" : " MIT " ,
8
8
"publishConfig" : {
9
9
"access" : " public"
10
10
},
18
18
" jsconfig.json"
19
19
],
20
20
"keywords" : [
21
- " nstudio" ,
22
21
" nativescript" ,
23
- " mobile" ,
24
- " {N}" ,
25
- " tns" ,
26
- " template"
22
+ " SQLite" ,
23
+ " Master Technology"
27
24
],
28
- "repository" : " <fill-your-repository-here>" ,
29
- "bugs" : {
30
- "url" : " https://github.com/NativeScript/NativeScript/issues"
31
- },
32
- "homepage" : " https://github.com/NativeScript/nativescript-app-templates" ,
33
25
"dependencies" : {
34
26
"@nativescript/core" : " ~8.0.0" ,
35
27
"@nativescript/theme" : " ~3.0.1" ,
36
- "nativescript-sqlite" : " file:../src" ,
37
- "nativescript-sqlite-commercial" : " file:../commercial" ,
38
- "nativescript-sqlite-encrypted" : " file:../encrypted"
28
+ "nativescript-sqlite" : " file:../src"
39
29
},
40
30
"devDependencies" : {
41
31
"@nativescript/android" : " 8.0.0" ,
42
32
"@nativescript/webpack" : " ^5.0.0-beta.16"
43
- },
44
- "private" : " true" ,
45
- "readme" : " NativeScript Application"
33
+ }
46
34
}
Original file line number Diff line number Diff line change @@ -42,3 +42,4 @@ v2.7.0 - Add NS 8 Webpack support
42
42
v2.8.0 - Fixes for Webpack / Webworkers
43
43
v2.8.1 - More fixes for WebWorker/Webpacking issues
44
44
v2.8.2 - Fixes for iOS 14.5+ issues on opening database
45
+ v2.8.3 - Add missing Commercial feature exclusion to Webpack 5
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ module.exports = webpack => {
33
33
if ( ! fs . existsSync ( dirname + "/nativescript-sqlite-commercial" ) ) {
34
34
console . warn ( "NativeScript-SQLite Commercial not detected, disabling support!" ) ;
35
35
externals . push ( 'nativescript-sqlite-commercial' ) ;
36
+ externals . push ( 'nativescript-sqlite-commercial/commercial-multi' ) ;
36
37
} else {
37
38
hasCom = true ;
38
39
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " nativescript-sqlite" ,
3
- "version" : " 2.8.2 " ,
3
+ "version" : " 2.8.3 " ,
4
4
"description" : " A sqlite NativeScript module for Android and iOS" ,
5
5
"main" : " sqlite" ,
6
6
"nativescript" : {
You can’t perform that action at this time.
0 commit comments