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
final primaryPreRelease = pub.Version.primary(preReleases);
510
507
511
508
if (primaryRelease > packageVersion) {
512
-
print(red('A new version ('+
513
-
primaryRelease.toString() +
514
-
') of font_awesome_flutter is available. Please update before reporting any errors. You can update via `git pull` or by downloading the source code from github. (https://github.com/'+
515
-
repositoryName +
516
-
')'));
509
+
print(red(
510
+
'A new version ($primaryRelease) of font_awesome_flutter is available. Please update before reporting any errors. You can update via `git pull` or by downloading the source code from github. (https://github.com/$repositoryName)'));
517
511
}
518
512
if (primaryPreRelease > packageVersion &&
519
513
primaryPreRelease > primaryRelease) {
520
-
print(yellow('A pre-release version ('+
521
-
primaryPreRelease.toString() +
522
-
') of font_awesome_flutter is available. Should you encounter any problems, have a look if it fixes them.'));
514
+
print(yellow(
515
+
'A pre-release version ($primaryPreRelease) of font_awesome_flutter is available. Should you encounter any problems, have a look if it fixes them.'));
0 commit comments