Skip to content
This repository was archived by the owner on Sep 7, 2025. It is now read-only.

Commit 5dfee72

Browse files
authored
Merge pull request #27 from IGEL-Community/development
2 parents 8d30b15 + 477bcc2 commit 5dfee72

File tree

140 files changed

+8566
-4043
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+8566
-4043
lines changed

.gitattributes

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
#*.c text
7+
#*.h text
8+
9+
# Declare files that will always have CRLF line endings on checkout.
10+
#*.sln text eol=crlf
11+
12+
# Denote all files that are truly binary and should not be modified.
13+
*.png binary
14+
*.jpg binary

.github/workflows/test.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
# Controls when the action will run. Triggers the workflow on push or pull request
6+
# events but only for the master branch
7+
on:
8+
push:
9+
branches: [master]
10+
pull_request:
11+
branches: [master]
12+
13+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
14+
jobs:
15+
# This workflow contains a single job called "build"
16+
build:
17+
# The type of runner that the job will run on
18+
runs-on: ubuntu-latest
19+
20+
# Steps represent a sequence of tasks that will be executed as part of the job
21+
steps:
22+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23+
- uses: actions/checkout@v2
24+
25+
# Runs a single command using the runners shell
26+
- name: Run a one-line script
27+
run: echo Hello, world!
28+
29+
# Runs a set of commands using the runners shell
30+
- name: Run a multi-line script
31+
run: |
32+
echo Add other actions to build,
33+
echo test, and deploy your project.

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"igel",
44
"igelos",
55
"psigel"
6-
]
6+
],
7+
"favorites.sortDirection": "ASC"
78
}

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# PSIGEL Changelog
2+
3+
## v0.10.0 - 20200429
4+
5+
### Added
6+
7+
* cross platform support (Windows, Linux, MacOS)
8+
* support for Powershell 7
9+
* Remove-UMSAPICookie
10+
* Site, Department, CostCenter, AssetID, InServiceDate and SerialNumber to Get-UMSDevice -Filter details
11+
* support for Datatype Version in Get-UMSFirmware, Get-UMSStatus
12+
* Get-UMSDirectoryRecursive
13+
14+
### Changed
15+
16+
* set minimum Powershell Requirement for the module to 5.1
17+
* SerialNumber Length to 18
18+
19+
### Fixed
20+
21+
* reset / update empty values of devices
22+
23+
### Removed
24+
25+
* remove \*-OS\* functions

Docs/Get-OSFirmware.md

Lines changed: 0 additions & 73 deletions
This file was deleted.

Docs/Get-OSUpdateConfiguration.md

Lines changed: 0 additions & 77 deletions
This file was deleted.

Docs/Get-OSWifiConnection.md

Lines changed: 0 additions & 98 deletions
This file was deleted.

0 commit comments

Comments
 (0)