mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-07-01 10:32:35 -05:00
Compare commits
7 Commits
24.09.10
...
revert-270
Author | SHA1 | Date | |
---|---|---|---|
655324b927 | |||
8e5fcceddb | |||
19a3c7070a | |||
343a72f528 | |||
0b13ca4b11 | |||
215de06a58 | |||
80555d945e |
6
.github/release-drafter.yml
vendored
6
.github/release-drafter.yml
vendored
@ -1,6 +1,4 @@
|
|||||||
name-template: '$RESOLVED_VERSION'
|
tag-prefix: ''
|
||||||
tag-template: '$RESOLVED_VERSION'
|
|
||||||
tag-prefix: ""
|
|
||||||
categories:
|
categories:
|
||||||
- title: '🚀 Features'
|
- title: '🚀 Features'
|
||||||
labels:
|
labels:
|
||||||
@ -56,3 +54,5 @@ replacers:
|
|||||||
replace: ''
|
replace: ''
|
||||||
exclude-labels:
|
exclude-labels:
|
||||||
- 'skip-changelog'
|
- 'skip-changelog'
|
||||||
|
|
||||||
|
filter-by-commitish: true
|
||||||
|
6
.github/workflows/pre-release.yaml
vendored
6
.github/workflows/pre-release.yaml
vendored
@ -81,14 +81,14 @@ jobs:
|
|||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
config-name: release-drafter.yml
|
config-name: release-drafter.yml
|
||||||
version: ${{ env.version }}
|
version: ${{ env.VERSION }} # Pass the version variable
|
||||||
|
|
||||||
- name: Create and Upload Release
|
- name: Create and Upload Release
|
||||||
id: create_release
|
id: create_release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ env.version }}
|
tag_name: ${{ env.VERSION }}
|
||||||
name: Pre-Release ${{ env.version }}
|
name: Pre-Release ${{ env.VERSION }}
|
||||||
body: |
|
body: |
|
||||||
${{ steps.generate_notes.outputs.body }}
|
${{ steps.generate_notes.outputs.body }}
|
||||||
|
|
||||||
|
10
Compile.ps1
10
Compile.ps1
@ -93,17 +93,11 @@ Get-ChildItem "config" | Where-Object {$psitem.extension -eq ".json"} | ForEach-
|
|||||||
$script_content.Add($(Write-output "`$sync.configs.$($psitem.BaseName) = '$json' `| convertfrom-json" ))
|
$script_content.Add($(Write-output "`$sync.configs.$($psitem.BaseName) = '$json' `| convertfrom-json" ))
|
||||||
}
|
}
|
||||||
|
|
||||||
# Read the entire XAML file as a single string, preserving line breaks
|
$xaml = (Get-Content "xaml\inputXML.xaml").replace("'","''")
|
||||||
$xaml = Get-Content "$workingdir\xaml\inputXML.xaml" -Raw
|
|
||||||
|
|
||||||
Update-Progress "Adding: Xaml " 90
|
Update-Progress "Adding: Xaml " 90
|
||||||
|
|
||||||
# Add the XAML content to $script_content using a here-string
|
$script_content.Add($(Write-output "`$inputXML = '$xaml'"))
|
||||||
$script_content.Add(@"
|
|
||||||
`$inputXML = @'
|
|
||||||
$xaml
|
|
||||||
'@
|
|
||||||
"@)
|
|
||||||
|
|
||||||
$script_content.Add($(Get-Content "scripts\main.ps1"))
|
$script_content.Add($(Get-Content "scripts\main.ps1"))
|
||||||
|
|
||||||
|
@ -416,7 +416,7 @@ $sync["SearchBar"].Add_TextChanged({
|
|||||||
# Retrieve the corresponding text block based on the generated name
|
# Retrieve the corresponding text block based on the generated name
|
||||||
$textBlock = $sync[$textBlockName]
|
$textBlock = $sync[$textBlockName]
|
||||||
|
|
||||||
if ($CheckBox.Value.Content.ToLower().Contains($textToSearch)) {
|
if ($CheckBox.Value.Content.ToString().ToLower().Contains($textToSearch)) {
|
||||||
$CheckBox.Value.Visibility = "Visible"
|
$CheckBox.Value.Visibility = "Visible"
|
||||||
$activeApplications += $sync.configs.applications.$checkboxName
|
$activeApplications += $sync.configs.applications.$checkboxName
|
||||||
# Set the corresponding text block visibility
|
# Set the corresponding text block visibility
|
||||||
|
Reference in New Issue
Block a user