Skip to content

Commit

Permalink
Fix the app closing on notebooks. (#30)
Browse files Browse the repository at this point in the history
* Update the recommended extensions list.
  • Loading branch information
dima-iholkin authored Jan 1, 2023
1 parent f3a38df commit f6a450f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"slevesque.vscode-autohotkey",
"mark-wiemer.vscode-autohotkey-plus-plus",
"yzhang.markdown-all-in-one",
"davidanson.vscode-markdownlint"
"ms-vscode.powershell"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
Expand Down
12 changes: 1 addition & 11 deletions src/Installer/SwitchApps_Installer/SwitchApps_Installer.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:2.0.0"
"ProductVersion" = "8:2.0.1"
"Manufacturer" = "8:Dima Iholkin"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://github.com/dima-iholkin/SwitchApps"
Expand Down Expand Up @@ -1609,13 +1609,3 @@
}
}
}










Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public Task CreateTask()
td.Settings.AllowDemandStart = true;
td.Settings.AllowHardTerminate = true;
td.Settings.DisallowStartIfOnBatteries = false;
td.Settings.StopIfGoingOnBatteries = false;
td.Settings.ExecutionTimeLimit = TimeSpan.Zero;
td.Settings.MultipleInstances = TaskInstancesPolicy.IgnoreNew;

Expand Down

0 comments on commit f6a450f

Please sign in to comment.