Skip to content

Commit 0940abf

Browse files
committed
11.02.2023 — 6.3.2
1 parent 1c9078b commit 0940abf

File tree

26 files changed

+65
-63
lines changed

26 files changed

+65
-63
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5656
* Switched .NET Desktop Runtime 6 to the 7th version;
5757
* Minor changes.
5858

59-
Wrapper
59+
## Wrapper
60+
6061
* Removed annoying pop-up notification while importing preset;
6162
* @BenchTweakGaming.
6263

@@ -77,7 +78,8 @@ Wrapper
7778
* Fixed #406;
7879
* Minor changes.
7980

80-
Wrapper version bumped to 2.5.8
81+
## Wrapper version bumped to 2.5.8
82+
8183
* Minor changes and added link to Discord channel;
8284
* Wrapper 3.0 is on the way.
8385

sophia_script_versions.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"Sophia_Script_Windows_10_PowerShell_5_1": "5.15.1",
3-
"Sophia_Script_Windows_10_PowerShell_7": "5.15.1",
4-
"Sophia_Script_Windows_10_LTSC2019": "5.5.1",
5-
"Sophia_Script_Windows_10_LTSC2021": "5.15.1",
6-
"Sophia_Script_Windows_11_PowerShell_5_1": "6.3.1",
7-
"Sophia_Script_Windows_11_PowerShell_7": "6.3.1",
8-
"Sophia_Script_Wrapper": "2.6.2"
2+
"Sophia_Script_Windows_10_PowerShell_5_1": "5.15.2",
3+
"Sophia_Script_Windows_10_PowerShell_7": "5.15.2",
4+
"Sophia_Script_Windows_10_LTSC2019": "5.5.2",
5+
"Sophia_Script_Windows_10_LTSC2021": "5.15.2",
6+
"Sophia_Script_Windows_11_PowerShell_5_1": "6.3.2",
7+
"Sophia_Script_Windows_11_PowerShell_7": "6.3.2",
8+
"Sophia_Script_Wrapper": "2.6.3"
99
}

src/Sophia_Script_for_Windows_10/Functions.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
The TAB completion for functions and their arguments
44
5-
Version: v5.15.1
6-
Date: 06.02.2023
5+
Version: v5.15.2
6+
Date: 11.02.2023
77
88
Copyright (c) 2014—2023 farag
99
Copyright (c) 2019—2023 farag & Inestic
@@ -50,7 +50,7 @@ function Sophia
5050

5151
Clear-Host
5252

53-
$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.15.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2023"
53+
$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.15.2 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2023"
5454

5555
Remove-Module -Name Sophia -Force -ErrorAction Ignore
5656
Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force

src/Sophia_Script_for_Windows_10/Manifest/Sophia.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = '..\Module\Sophia.psm1'
3-
ModuleVersion = '5.15.1'
3+
ModuleVersion = '5.15.2'
44
GUID = '109cc881-c42b-45af-a74a-550781989d6a'
55
Author = 'Dmitry "farag" Nefedov'
66
Copyright = '(c) 2014—2023 farag & Inestic. All rights reserved'

src/Sophia_Script_for_Windows_10/Module/Sophia.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks
44
5-
Version: v5.15.1
6-
Date: 06.02.2023
5+
Version: v5.15.2
6+
Date: 11.02.2023
77
88
Copyright (c) 2014—2023 farag
99
Copyright (c) 2019—2023 farag & Inestic

src/Sophia_Script_for_Windows_10/Sophia.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
Default preset file for "Sophia Script for Windows 10"
44
5-
Version: v5.15.1
6-
Date: 06.02.2023
5+
Version: v5.15.2
6+
Date: 11.02.2023
77
88
Copyright (c) 2014—2023 farag
99
Copyright (c) 2019—2023 farag & Inestic
@@ -70,7 +70,7 @@ param
7070

7171
Clear-Host
7272

73-
$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.15.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2023"
73+
$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 v5.15.2 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2023"
7474

7575
Remove-Module -Name Sophia -Force -ErrorAction Ignore
7676
Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force

src/Sophia_Script_for_Windows_10_LTSC_2019/Functions.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
The TAB completion for functions and their arguments
44
5-
Version: v5.5.1
6-
Date: 06.02.2023
5+
Version: v5.5.2
6+
Date: 11.02.2023
77
88
Copyright (c) 2014—2023 farag
99
Copyright (c) 2019—2023 farag & Inestic
@@ -50,7 +50,7 @@ function Sophia
5050

5151
Clear-Host
5252

53-
$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.5.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2023"
53+
$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.5.2 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2023"
5454

5555
Remove-Module -Name Sophia -Force -ErrorAction Ignore
5656
Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force

src/Sophia_Script_for_Windows_10_LTSC_2019/Manifest/Sophia.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
RootModule = '..\Module\Sophia.psm1'
3-
ModuleVersion = '5.5.1'
3+
ModuleVersion = '5.5.2'
44
GUID = 'a36a65ca-70f9-43df-856c-3048fc5e7f01'
55
Author = 'Dmitry "farag" Nefedov'
66
Copyright = '(c) 2014—2023 farag & Inestic. All rights reserved'

src/Sophia_Script_for_Windows_10_LTSC_2019/Module/Sophia.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
Sophia Script is a PowerShell module for Windows 10 & Windows 11 fine-tuning and automating the routine tasks
44
5-
Version: v5.5.1
6-
Date: 06.02.2023
5+
Version: v5.5.2
6+
Date: 11.02.2023
77
88
Copyright (c) 2014—2023 farag
99
Copyright (c) 2019—2023 farag & Inestic

src/Sophia_Script_for_Windows_10_LTSC_2019/Sophia.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.SYNOPSIS
33
Default preset file for "Sophia Script for Windows 10 LTSC 2019"
44
5-
Version: v5.5.1
6-
Date: 06.02.2023
5+
Version: v5.5.2
6+
Date: 11.02.2023
77
88
Copyright (c) 2014—2023 farag
99
Copyright (c) 2019—2023 farag & Inestic
@@ -70,7 +70,7 @@ param
7070

7171
Clear-Host
7272

73-
$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.5.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2023"
73+
$Host.UI.RawUI.WindowTitle = "Sophia Script for Windows 10 LTSC 2019 v5.5.2 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows | $([char]0x00A9) farag & Inestic, 2014$([char]0x2013)2023"
7474

7575
Remove-Module -Name Sophia -Force -ErrorAction Ignore
7676
Import-Module -Name $PSScriptRoot\Manifest\Sophia.psd1 -PassThru -Force

0 commit comments

Comments
 (0)