Skip to content

Commit 1f81eec

Browse files
authored
1 parent 72cbdca commit 1f81eec

19 files changed

Lines changed: 28 additions & 28 deletions

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ graph TD
8787

8888
### Testing your changes
8989

90-
* To test to see if your changes work as intended run following commands in a powershell teminal as admin:
90+
* To test to see if your changes work as intended run following commands in a powershell terminal as admin:
9191

9292
* Change the directory where you are running the commands to the forked project.
9393
* `cd {path to the folder with the compile.ps1}`

config/applications.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2699,7 +2699,7 @@
26992699
"category": "Utilities",
27002700
"choco": "ultravnc",
27012701
"content": "UltraVNC",
2702-
"description": "UltraVNC is a powerful, easy to use and free - remote pc access softwares - that can display the screen of another computer (via internet or network) on your own screen. The program allows you to use your mouse and keyboard to control the other PC remotely. It means that you can work on a remote computer, as if you were sitting in front of it, right from your current location.",
2702+
"description": "UltraVNC is a powerful, easy to use and free - remote pc access software - that can display the screen of another computer (via internet or network) on your own screen. The program allows you to use your mouse and keyboard to control the other PC remotely. It means that you can work on a remote computer, as if you were sitting in front of it, right from your current location.",
27032703
"link": "https://uvnc.com/",
27042704
"winget": "uvncbvba.UltraVnc"
27052705
},

config/themes.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"AppEntryWidth": "130",
44
"AppEntryFontSize": "11",
55
"AppEntryMargin": "1,1,1,1",
6-
"AppEntryBorderTickness": "0",
6+
"AppEntryBorderThickness": "0",
77
"CustomDialogFontSize": "12",
88
"CustomDialogFontSizeHeader": "14",
99
"CustomDialogLogoSize": "25",

config/tweaks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
Write-Host \"Turn off Hibernation\"
100100
Start-Process -FilePath powercfg -ArgumentList \"/hibernate off\" -NoNewWindow -Wait
101101

102-
# Set standby to detault values
102+
# Set standby to default values
103103
Start-Process -FilePath powercfg -ArgumentList \"/change standby-timeout-ac 15\" -NoNewWindow -Wait
104104
Start-Process -FilePath powercfg -ArgumentList \"/change standby-timeout-dc 15\" -NoNewWindow -Wait
105105
Start-Process -FilePath powercfg -ArgumentList \"/change monitor-timeout-ac 15\" -NoNewWindow -Wait

functions/microwin/Microwin-NewCheckInstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function Microwin-NewCheckInstall {
22

3-
# using here string to embedd firstrun
3+
# using here string to embed firstrun
44
$checkInstall = @'
55
@echo off
66
if exist "%HOMEDRIVE%\windows\cpu.txt" (

functions/microwin/Microwin-NewFirstRun.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
function Microwin-NewFirstRun {
22

3-
# using here string to embedd firstrun
3+
# using here string to embed firstrun
44
$firstRun = @'
55
# Set the global error action preference to continue
66
$ErrorActionPreference = "Continue"

functions/private/Add-SelectedAppsMenuItem.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
$selectedAppRemoveButton.Add_MouseEnter({ $this.Foreground = "Red" })
4242
$selectedAppRemoveButton.Add_MouseLeave({ $this.SetResourceReference([Windows.Controls.Control]::ForegroundProperty, "MainForegroundColor") })
4343
$selectedAppRemoveButton.Add_Click({
44-
$sync.($this.Tag).isChecked = $false # On click of the remove button, we only have to uncheck the corresponding checkbox. This will kick of all neccessary changes to update the UI
44+
$sync.($this.Tag).isChecked = $false # On click of the remove button, we only have to uncheck the corresponding checkbox. This will kick of all necessary changes to update the UI
4545
})
4646
[System.Windows.Controls.Grid]::SetColumn($selectedAppRemoveButton, 1)
4747
$selectedAppGrid.Children.Add($selectedAppRemoveButton)

functions/private/Get-LocalizedYesNo.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function Get-LocalizedYesNo {
1313
#>
1414

1515
# Run choice and capture its options as output
16-
# The output shows the options for Yes and No as "[Y,N]?" in the (partitially) localized format.
16+
# The output shows the options for Yes and No as "[Y,N]?" in the (partially) localized format.
1717
# eg. English: [Y,N]?
1818
# Dutch: [Y,N]?
1919
# German: [J,N]?

functions/private/Initialize-InstallAppArea.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Also creates an overlay with a progress bar and text to indicate that an install or uninstall is in progress
99
1010
.PARAMETER TargetElement
11-
The element to which the AppArea shoud be added
11+
The element to which the AppArea should be added
1212
1313
#>
1414
param($TargetElement)

functions/private/Initalize-InstallAppEntry.ps1 renamed to functions/private/Initialize-InstallAppEntry.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function Initialize-InstallAppEntry {
22
<#
33
.SYNOPSIS
4-
Creates the app entry to be placed on the isntall tab for a given app
4+
Creates the app entry to be placed on the install tab for a given app
55
Used to as part of the Install Tab UI generation
66
.PARAMETER TargetElement
77
The Element into which the Apps should be placed

0 commit comments

Comments
 (0)