Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 95be6fc899 | |||
| ab9347a52e | |||
| 0813838ce9 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,3 +2,4 @@
|
||||
/*.zip
|
||||
/pkg/
|
||||
/src/
|
||||
IFLOW.md
|
||||
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"idf.pythonInstallPath": "/opt/homebrew/bin/python3"
|
||||
}
|
||||
@@ -124,10 +124,11 @@ GeneralRequirements::checkRequirements()
|
||||
hasPower = checkHasPower();
|
||||
}
|
||||
|
||||
if ( m_entriesToCheck.contains( "internet" ) )
|
||||
{
|
||||
hasInternet = checkHasInternet();
|
||||
}
|
||||
// if ( m_entriesToCheck.contains( "internet" ) )
|
||||
// {
|
||||
// hasInternet = checkHasInternet();
|
||||
// }
|
||||
hasInternet = true;
|
||||
|
||||
if ( m_entriesToCheck.contains( "root" ) )
|
||||
{
|
||||
@@ -186,14 +187,14 @@ GeneralRequirements::checkRequirements()
|
||||
hasPower,
|
||||
required } );
|
||||
}
|
||||
else if ( entry == "internet" )
|
||||
{
|
||||
checkEntries.append( { entry,
|
||||
[] { return tr( "is connected to the Internet" ); },
|
||||
[] { return tr( "The system is not connected to the Internet." ); },
|
||||
hasInternet,
|
||||
required } );
|
||||
}
|
||||
// else if ( entry == "internet" )
|
||||
// {
|
||||
// checkEntries.append( { entry,
|
||||
// [] { return tr( "is connected to the Internet" ); },
|
||||
// [] { return tr( "The system is not connected to the Internet." ); },
|
||||
// hasInternet,
|
||||
// required } );
|
||||
// }
|
||||
else if ( entry == "root" )
|
||||
{
|
||||
checkEntries.append( { entry,
|
||||
|
||||
Reference in New Issue
Block a user