-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
1,546 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# BazWare SIT - Shutdown In Time 1.0 | ||
|
||
Do you know when your computer should shutdown but are you not there to shut it down? Shutdown your computer with a timer and save precious energy. | ||
![Program](https://github.com/karusb/SIT-ShutdownInTime/blob/master/sitgui.png?raw=true) | ||
|
||
## [DOWNLOAD] | ||
|
||
- [Download V1.0 Installer for Windows](https://github.com/karusb/SIT-ShutdownInTime/releases/download/1.0/BazWareShutdownInTime-1.0-Installer.zip) | ||
- [Download V1.0 Portable for Windows](https://github.com/karusb/SIT-ShutdownInTime/releases/download/1.0/BazWareShutdownInTime-1.0-Portable.zip) | ||
- Portable Requires Microsoft .NET Framework 4.8 | ||
|
||
## [Timed Shutdown] | ||
|
||
To initiate a timed shutdown, select the amount of time you would like to wait in hours and/or minutes, then press the Start button. | ||
|
||
![Program](https://github.com/karusb/SIT-ShutdownInTime/blob/master/sitgui2.png?raw=true) | ||
|
||
- Windows likely will inform with an additional popup on the date and time of the shutdown. | ||
|
||
## [Force Shutdown Now] | ||
|
||
Immediately shutdown your computer by forcing all applications to close. Popup will appear for confirmation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<configSections> | ||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > | ||
<section name="SIT.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" /> | ||
</sectionGroup> | ||
</configSections> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/> | ||
</startup> | ||
</configuration> | ||
<userSettings> | ||
<SIT.Properties.Settings> | ||
<setting name="userHours" serializeAs="String"> | ||
<value>0</value> | ||
</setting> | ||
<setting name="userMinutes" serializeAs="String"> | ||
<value>1</value> | ||
</setting> | ||
</SIT.Properties.Settings> | ||
</userSettings> | ||
</configuration> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.