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
Drop support for macOS Sierra and below as we are no longer testing this OS. Drop a line on stderr on each CLI command and inform the user that this OS is not supported.
Change the public API (getSystemWarnings) to return objects with information about the severity of the warnings. This way the consumer can decide how to handle the warnings.
Fix an issue when getting macOS version from System Profile - the code was not working when version has two numbers (10.14 for example).
Add new method in logger that allows printing to stderr. It should be used instead of `console.error`, so we can make the code testable.
@@ -161,6 +162,12 @@ export class DebugIOSCommand implements ICommand {
161
162
this.$errors.fail(`Timeout option specifies the seconds NativeScript CLI will wait to find the inspector socket port from device's logs. Must be a number.`);
Copy file name to clipboardExpand all lines: lib/constants.ts
+2-1
Original file line number
Diff line number
Diff line change
@@ -178,9 +178,10 @@ export class AssetConstants {
178
178
exportclassMacOSVersions{
179
179
publicstaticSierra="10.12";
180
180
publicstaticHighSierra="10.13";
181
+
publicstaticMojave="10.14";
181
182
}
182
183
183
-
exportconstMacOSDeprecationStringFormat="Support for macOS %s is deprecated and will be removed in one of the next releases of NativeScript. Please, upgrade to the latest macOS version.";
184
+
exportconstMacOSDeprecationStringFormat="NativeScript does not support macOS %s and some functionality may not work. Please, upgrade to the latest macOS version.";
publicstaticAgreeToReceiveEmailMsg="I agree".green.bold+" to receive email communications from Progress Software or its Partners (`https://www.progress.com/partners/partner-directory`),"+
0 commit comments