Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/EssentialsPlugins-builds-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build Essentials Plugin

on:
push:
branches:
- '**'

jobs:
getVersion:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-getversion.yml@main
secrets: inherit
build-3Series:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-3Series-builds.yml@main
secrets: inherit
needs: getVersion
if: needs.getVersion.outputs.newVersion == 'true'
with:
newVersion: ${{ needs.getVersion.outputs.newVersion }}
version: ${{ needs.getVersion.outputs.version }}
tag: ${{ needs.getVersion.outputs.tag }}
channel: ${{ needs.getVersion.outputs.channel }}
build-4Series:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-4Series-builds.yml@main
secrets: inherit
needs: getVersion
if: needs.getVersion.outputs.newVersion == 'true'
with:
newVersion: ${{ needs.getVersion.outputs.newVersion }}
version: ${{ needs.getVersion.outputs.version }}
tag: ${{ needs.getVersion.outputs.tag }}
channel: ${{ needs.getVersion.outputs.channel }}
22 changes: 0 additions & 22 deletions .github/workflows/essentialsplugins-betabuilds-caller.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/essentialsplugins-releasebuilds-caller.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/essentialsplugins-updatereadme-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

name: Generate README

on:
push:
branches-ignore:
- 'robot-docs'

jobs:
call-update-readme:
uses: PepperDash/workflow-templates/.github/workflows/update-readme.yml@development
with:
target-branch: ${{ github.ref_name }}

35 changes: 35 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{ "scope": "force-patch", "release": "patch" },
{ "scope": "no-release", "release": false }
]
}
],
"@semantic-release/release-notes-generator",
["@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/exec",
{
"verifyReleaseCmd": "echo \"newVersion=true\" >> $GITHUB_OUTPUT",
"publishCmd": "echo \"version=${nextRelease.version}\" >> $GITHUB_OUTPUT && echo \"tag=${nextRelease.gitTag}\" >> $GITHUB_OUTPUT && echo \"type=${nextRelease.type}\" >> $GITHUB_OUTPUT && echo \"channel=${nextRelease.channel}\" >> $GITHUB_OUTPUT"
}
]
],
"branches": [
"main",
{"name": "release", "prerelease": "rc", "channel": "rc"},
{
"name": "replace-me-feature-branch",
"prerelease": "replace-me-prerelease",
"channel": "replace-me-prerelease"
}
]
}
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Internal Essentials Plugin Template (c) 2022

## License
Provided under MIT license

Expand Down
File renamed without changes.
42 changes: 0 additions & 42 deletions epi-utilities-custom-values/CustomValuesConfigObject.cs

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PDT.CustomValues.EPI", "PDT.CustomValues.EPI.csproj", "{9D249E47-8F95-4437-A6BB-563510287AD1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "epi-utilities-customvalues.3Series", "src\epi-utilities-customvalues.3Series.csproj", "{9D249E47-8F95-4437-A6BB-563510287AD1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
22 changes: 22 additions & 0 deletions epi-utilities-customvalues.4series.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.12.35527.113
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "epi-utilities-customvalues.4Series", "src\epi-utilities-customvalues.4Series.csproj", "{41543F44-1EFC-4D69-A08A-5BF5CD36F1BB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{41543F44-1EFC-4D69-A08A-5BF5CD36F1BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{41543F44-1EFC-4D69-A08A-5BF5CD36F1BB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{41543F44-1EFC-4D69-A08A-5BF5CD36F1BB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{41543F44-1EFC-4D69-A08A-5BF5CD36F1BB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion packages.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<packages>
<package id="PepperDashEssentials" version="1.10.1-alpha-1813" targetFramework="net35" allowedVersions="[1.0,2.0)"/>
<package id="PepperDashEssentials" version="1.16.0" targetFramework="net35" allowedVersions="[1.0,2.0)"/>
</packages>
20 changes: 20 additions & 0 deletions src/CustomValuesConfigObject.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using Newtonsoft.Json.Linq;
using Newtonsoft.Json;

namespace Essentials.Plugin.CustomValues
{
/// <summary>
/// Plugin device configuration object
/// </summary>
public class CustomValuesConfigObject
{
[JsonProperty("seed")]
public JObject Seed { get; set; }

[JsonProperty("filePath")]
public string FilePath { get; set; }

[JsonProperty("data")]
public JObject Data { get; set; }
}
}
Loading