Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
a514459
Initial commit for migration to Swift
almenscorner Nov 29, 2024
f90f371
Fix typo
almenscorner Nov 29, 2024
9088943
Fix build
almenscorner Nov 29, 2024
82bf5ac
resolve package deps
almenscorner Nov 29, 2024
4625ab5
view build output
almenscorner Nov 29, 2024
cc5cb6e
add team id to build
almenscorner Nov 29, 2024
94e7672
add 2.0.0 entry in changelog
almenscorner Nov 29, 2024
7c622eb
Update README.md
almenscorner Nov 29, 2024
89e4035
fix subject
almenscorner Nov 29, 2024
a45261b
Merge remote-tracking branch 'refs/remotes/origin/SCSwift' into SCSwift
almenscorner Nov 29, 2024
32ec11d
Update README.md
almenscorner Nov 29, 2024
a083654
add option to hide support info on desktop
almenscorner Nov 29, 2024
4b814da
update config info
almenscorner Nov 29, 2024
712a37c
Merge remote-tracking branch 'refs/remotes/origin/SCSwift' into SCSwift
almenscorner Nov 29, 2024
6cba504
Update README.md
almenscorner Nov 29, 2024
b6f8d05
Remove unused dependencies and build universal
almenscorner Nov 30, 2024
1fc7f64
Merge remote-tracking branch 'refs/remotes/origin/SCSwift' into SCSwift
almenscorner Nov 30, 2024
5d23178
Make reboot button actually do something
almenscorner Nov 30, 2024
84e2b69
Update build.zsh
almenscorner Nov 30, 2024
8fd6cd7
add missing await
almenscorner Nov 30, 2024
f680d7a
Merge remote-tracking branch 'refs/remotes/origin/SCSwift' into SCSwift
almenscorner Nov 30, 2024
cd11616
add cancel option to restart
almenscorner Nov 30, 2024
3a2b5da
untrack xcuserdata
almenscorner Dec 1, 2024
d879159
do not track userdata
almenscorner Dec 1, 2024
531177c
Update README.md
almenscorner Dec 1, 2024
e17369c
Merge remote-tracking branch 'refs/remotes/origin/SCSwift' into SCSwift
almenscorner Dec 2, 2024
7b4220e
Update README
almenscorner Dec 2, 2024
8d39398
Update changelog
almenscorner Dec 2, 2024
80e304b
Add URL Scheme support
almenscorner Dec 2, 2024
67b8ec9
Add option to hide menu items
almenscorner Dec 2, 2024
1654e81
Update README.md
almenscorner Dec 2, 2024
807b32f
add custom cards example script
almenscorner Dec 2, 2024
868c0d7
Update translations
almenscorner Dec 2, 2024
bae1f4a
Set default notification interval
almenscorner Dec 2, 2024
fdd72f5
Initialize user defaults
almenscorner Dec 3, 2024
f2bda8a
Add CLI
almenscorner Dec 3, 2024
8b67af4
Change to IntuneLogParser for Intune app info
almenscorner Dec 3, 2024
68bd895
remove user defaults
almenscorner Dec 3, 2024
113009a
Fix company portal show or hide logic
almenscorner Dec 3, 2024
fcb9e7e
Update build script
almenscorner Dec 3, 2024
db54a5e
Add support info popup
almenscorner Dec 3, 2024
cf813ac
Update build.zsh
almenscorner Dec 3, 2024
cc3f83a
Fix hide cards
almenscorner Dec 4, 2024
e095f9c
Fix initial mode detection
almenscorner Dec 4, 2024
8e1a4b4
Update translations
almenscorner Dec 4, 2024
6f473e5
Update build actions
almenscorner Dec 4, 2024
1cbb916
Move MenuIcon to assets
almenscorner Dec 4, 2024
e95f812
Update Changelog
almenscorner Dec 4, 2024
9519a5f
Change apps view to cards
almenscorner Dec 4, 2024
4c3499d
Add additional app info
almenscorner Dec 4, 2024
f6583af
Sort apps
almenscorner Dec 4, 2024
ce30262
Set minSize
almenscorner Dec 4, 2024
7d29285
Update arch mapping
almenscorner Dec 4, 2024
17edf5e
Fix incorrect SelfService condition
almenscorner Dec 5, 2024
5b19005
Add light logo config and dynamic logo loading
almenscorner Dec 5, 2024
e3bbced
Correct support page url key
almenscorner Dec 5, 2024
41d8773
Hide sections
almenscorner Dec 5, 2024
b5fcf18
Capitalise
almenscorner Dec 5, 2024
faf9a1a
Update README.md
almenscorner Dec 5, 2024
5684824
Update README.md
almenscorner Dec 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 6 additions & 6 deletions .github/workflows/build_supportcompanion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
p12-password: ${{ secrets.PKG_CERTIFICATES_P12_PASSWORD_MAOS }}

- name: Run build package script
run: ./build.sh "$NOTARY_APP_PASSWORD"

run: ./build.zsh "Release" "$NOTARY_APP_PASSWORD"
- name: get environment variables
id: get_env_var
run: |
echo "SC_VERSION=$(/bin/cat ./build_info.txt)" >> $GITHUB_ENV
echo "SC_MAIN_VERSION=$(/bin/cat ./build_info_main.txt)" >> $GITHUB_ENV
echo "SC_VERSION=$(/bin/cat ./build/build_info.txt)" >> $GITHUB_ENV
echo "SC_MAIN_VERSION=$(/bin/cat ./build/build_info_main.txt)" >> $GITHUB_ENV

- name: Get Changelog Entry
id: changelog_reader
Expand Down Expand Up @@ -84,10 +84,10 @@ jobs:

# Changes
${{ steps.changelog.outputs.changelog }}
files: ${{github.workspace}}/Build/build/*.pkg
files: ${{github.workspace}}/release/*.pkg

- name: Upload packages
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: packages
path: Build/build/
path: release/
12 changes: 6 additions & 6 deletions .github/workflows/build_supportcompanion_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
p12-password: ${{ secrets.PKG_CERTIFICATES_P12_PASSWORD_MAOS }}

- name: Run build package script
run: ./build.sh "$NOTARY_APP_PASSWORD"

run: ./build.zsh "Release" "$NOTARY_APP_PASSWORD"
- name: get environment variables
id: get_env_var
run: |
echo "SC_VERSION=$(/bin/cat ./build_info.txt)" >> $GITHUB_ENV
echo "SC_MAIN_VERSION=$(/bin/cat ./build_info_main.txt)" >> $GITHUB_ENV
echo "SC_VERSION=$(/bin/cat ./build/build_info.txt)" >> $GITHUB_ENV
echo "SC_MAIN_VERSION=$(/bin/cat ./build/build_info_main.txt)" >> $GITHUB_ENV

- name: Get Changelog Entry
id: changelog_reader
Expand Down Expand Up @@ -76,10 +76,10 @@ jobs:

# Changes
${{ steps.changelog.outputs.changelog }}
files: ${{github.workspace}}/Build/build/*.pkg
files: ${{github.workspace}}/release/*.pkg

- name: Upload packages
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: packages
path: Build/build/
path: release/
10 changes: 5 additions & 5 deletions .github/workflows/build_supportcompanion_prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
p12-password: ${{ secrets.PKG_CERTIFICATES_P12_PASSWORD_MAOS }}

- name: Run build package script
run: ./build.sh "$NOTARY_APP_PASSWORD"
run: ./build.zsh "Release" "$NOTARY_APP_PASSWORD"

- name: get environment variables
id: get_env_var
run: |
echo "SC_VERSION=$(/bin/cat ./build_info.txt)" >> $GITHUB_ENV
echo "SC_MAIN_VERSION=$(/bin/cat ./build_info_main.txt)" >> $GITHUB_ENV
echo "SC_VERSION=$(/bin/cat ./build/build_info.txt)" >> $GITHUB_ENV
echo "SC_MAIN_VERSION=$(/bin/cat ./build/build_info_main.txt)" >> $GITHUB_ENV

- name: Get Changelog Entry
id: changelog_reader
Expand Down Expand Up @@ -76,10 +76,10 @@ jobs:

# Changes
${{ steps.changelog.outputs.changelog }}
files: ${{github.workspace}}/Build/build/*.pkg
files: ${{github.workspace}}/release/*.pkg

- name: Upload packages
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: packages
path: Build/build/
path: release/
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
# ignore vscode stuff
.vscode

# ignore xcode stuff
**/xcuserdata/
**/*.xcuserdatad/
default.profraw

# ignore build output
Build/build
LaunchAgent/build
Expand Down Expand Up @@ -35,4 +40,10 @@ __pycache__/
*.user
*.userosscache
*.sln.docstates
*.sln.DotSettings.user
*.sln.DotSettings.user

# ignore build and release files
build/
release/
.build/
buildServer.json
36 changes: 0 additions & 36 deletions App.axaml

This file was deleted.

191 changes: 0 additions & 191 deletions App.axaml.cs

This file was deleted.

Binary file added AppIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed Assets/Logger.dylib
Binary file not shown.
Loading