You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,25 @@
1
1
NativeScript CLI Changelog
2
2
================
3
3
4
+
4.0.0rc (2018, March 23)
5
+
==
6
+
7
+
### New
8
+
*[Implemented #3243](https://github.com/NativeScript/nativescript-cli/issues/3243) 'Scss' file changes trigger app refresh instead reloading the view and apply generated 'css'
9
+
*[Implemented #3248](https://github.com/NativeScript/nativescript-cli/issues/3248) Support JDK_HOME and JAVA_HOME
10
+
*[Implemented #3257](https://github.com/NativeScript/nativescript-cli/issues/3257) Make {N} project structure configurable
11
+
*[Implemented #3317](https://github.com/NativeScript/nativescript-cli/issues/3317) Support livesync with webpack
12
+
*[Implemented #3449](https://github.com/NativeScript/nativescript-cli/pull/3449) Track Vue.js project type
13
+
*[Implemented #3496](https://github.com/NativeScript/nativescript-cli/issues/3496) Generate assets for the mobile application
14
+
*[Implemented #3497](https://github.com/NativeScript/nativescript-cli/issues/3497) Command to migrate Android resources to 4.0.0 structure
15
+
16
+
### Fixed
17
+
*[Fixed #3151](https://github.com/NativeScript/nativescript-cli/issues/3151): Install fails if user setting file is not valid json
18
+
*[Fixed #3324](https://github.com/NativeScript/nativescript-cli/issues/3324): Error when iOS simulator's window is closed
19
+
*[Fixed #3442](https://github.com/NativeScript/nativescript-cli/issues/3442): Unnecessary second build upon `tns run android`
20
+
*[Fixed #3451](https://github.com/NativeScript/nativescript-cli/issues/3451): `tns plugin remove` fails with : Cannot convert undefined or null to object
Copy file name to clipboardExpand all lines: docs/man_pages/project/configuration/resources/resources-generate-splashes.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,16 @@ position: 12
6
6
7
7
Usage | Synopsis
8
8
------|-------
9
-
`$ tns resources generate splashes <Path to image> [<background>]` | Generate all splashscreens for Android and iOS based on the specified image.
9
+
`$ tns resources generate splashes <Path to image> [--background <Color>]` | Generate all splashscreens for Android and iOS based on the specified image.
10
10
11
-
Generates all icons for Android and iOS platforms and places the generated images in the correct directories under `App_Resources/<platform>` directory.
11
+
Generates all splashscreens for Android and iOS platforms and places the generated images in the correct directories under `App_Resources/<platform>` directory.
12
+
13
+
### Options
14
+
*`--background` Sets the background color of the splashscreen. Defaults to white in case it is not specified.
12
15
13
16
### Attributes
14
17
*`<Path to image>` is a valid path to an image that will be used to generate all splashscreens.
15
-
*`<background>` is a valid path to an image that will be used as a background of the splashscreen. Defaults to white in case it is not specified.
18
+
*`<Color>` is a valid color. It can be represented with string, like `white`, `black`, `blue`, etc. or its HEX representation, for example `#FFFFFF`, `#000000`, `#0000FF`. NOTE: As the `#` is special symbol in some terminals, make sure to place the value in quotes, for example `$ tns resources generate splashes ../myImage.png --background "#FF00FF"`.
this.$logger.printMarkdown("NOTE: Local builds require additional setup of your environment. You can find more information here: `https://docs.nativescript.org/start/quick-setup`");
29
+
30
+
// Add a new line just to ensure separation between local builds and cloud builds info.
31
+
this.$logger.info("");
32
+
this.$logger.info("To build your project in the cloud you can use:".green);
this.$logger.printMarkdown("NOTE: Cloud builds require Telerik account. You can find more information here: `https://docs.nativescript.org/sidekick/intro/requirements`");
35
+
36
+
this.$logger.info("");
37
+
this.$logger.printMarkdown("In case you want to experiment quickly with NativeScript, you can try the Playground: `https://play.nativescript.org`");
38
+
39
+
this.$logger.info("");
40
+
this.$logger.printMarkdown("In case you have any questions, you can check our forum: `https://forum.nativescript.org` and our public Slack channel: `https://nativescriptcommunity.slack.com/`");
0 commit comments