Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
Updated stuff. Fixed some bugs and filled the 2nd page.
Browse files Browse the repository at this point in the history
  • Loading branch information
DuckDuckG0ose committed Jul 28, 2023
1 parent 7b49434 commit aeb706e
Show file tree
Hide file tree
Showing 16 changed files with 815 additions and 9 deletions.
Binary file modified Frontier.exe
Binary file not shown.
Binary file removed Frontier.zip
Binary file not shown.
30 changes: 24 additions & 6 deletions Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def logo():
f = open('logo.txt', 'r')
print(crayons.yellow(f.read()))
f.close()
print(crayons.blue(" Welcome to "), crayons.green("Frontier"), crayons.blue(". When your friends call out your aim and you blame it on your fps..."))
print(crayons.blue(" Welcome to "), crayons.green("Frontier"), crayons.blue(". Uncover the power within. Put it to use."))

def logo_red():
os.system("cls")
Expand All @@ -136,7 +136,7 @@ def logo_red():

def countdown_timer(seconds):
for i in range(seconds, 0, -1):
sys.stdout.write(f"\r Proceeding in in {i} seconds")
sys.stdout.write(f"\r Proceeding in in {i} seconds")
sys.stdout.flush()
time.sleep(1)

Expand Down Expand Up @@ -174,6 +174,14 @@ def secondpage():
print(" Its useless basically Computer crashing? Use this option to try Sets your CPU Timer Rsolution")
print(" Might aswell uninstall it and fix the corrupted stuff inside your C: drive to a custom value to boost the speed")
print(f'\n \n')
print(crayons.cyan(" [4.] Enable Teredo tecnologie [5.] Clear DNS client cache [6.] Enable WinStock"))
print(" Enables Teredo Options to allocate more Refreshes DNS resolutions and clears out Enables the Windows operating system's")
print(" resources to the network adapters Old , unused and/or broken ones. autotuning feature for the TCP/IP stack")
print(f'\n \n')
print(crayons.cyan(" [7.] Non Sack Rtt Resiliency [8.] TCP memory pressure protection [9.] SYN Retransmissions"))
print(" enhances internet performance by improving helps ensure that a computer continues normal operation Sets the number of times to attempt to")
print(" congestion control and recovery from packet loss when low on memory due to denial of service attacks. reestablish a connection with SYN packets.")
print(f'\n \n')

print()
try:
Expand All @@ -192,7 +200,19 @@ def secondpage():

elif action == 3:
timerr()

elif action == 4:
os.system("netsh interface teredo set state client")
elif action == 5:
os.system("powershell.exe Clear-DnsClientCache")
elif action == 6:
os.system("netsh winsock set autotuning on")
elif action == 7:
os.system("netsh int tcp set global nonsackrttresiliency=enabled")
elif action == 8:
os.system("powershell.exe Set-NetTCPSetting -MemoryPressureProtection Enabled")
elif action == 9:
os.system("powershell.exe Set-NetTCPSetting -SettingName InternetCustom -MaxSynRetransmissions 3")

elif action == 10:
selectionmenu()
break
Expand Down Expand Up @@ -238,9 +258,7 @@ def selectionmenu():
break

elif action == 2:
display_menu()
main_menu()
break
os.system('call %systemroot%\System32\SystemPropertiesProtection.exe')
elif action == 3:
debloat()
elif action == 4:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ If you need to install it either use
and then run Frontier.exe or use the installer contained in [Github Releases](https://github.com/VisualDeVenture/Frontier/releases)

### TO DO
- [x] Make an installer
- [ ] Make a functioning restore point system
- [x] Make a compiled version
- [x] Make a version checking feature
Expand Down
785 changes: 785 additions & 0 deletions WindowsModTool.bat

Large diffs are not rendered by default.

Binary file modified __pycache__/TimerResolution.cpython-310.pyc
Binary file not shown.
Binary file modified __pycache__/debloat.cpython-310.pyc
Binary file not shown.
Binary file modified __pycache__/honesponsor.cpython-310.pyc
Binary file not shown.
Binary file modified __pycache__/modules.cpython-310.pyc
Binary file not shown.
Binary file modified __pycache__/powerplan.cpython-310.pyc
Binary file not shown.
Binary file modified __pycache__/restorepoint.cpython-310.pyc
Binary file not shown.
Binary file modified __pycache__/softreboot.cpython-310.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"first_launch": false
"first_launch": true
}
4 changes: 4 additions & 0 deletions images/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
crayons
requests
colorama
psutil
Binary file removed output/Installer.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.4

0 comments on commit aeb706e

Please sign in to comment.