Skip to content

Commit

Permalink
V10/v12 cherry pick 20230912 (#541)
Browse files Browse the repository at this point in the history
* V12/generic hub (#535)

* Add ability to pass hub url to signalR hub (making it a bit more generic)

* Add obsolete marker to config changes for v13

* comment: add note to change settings dictionary in v13

* chore: remove direct reference to config.settings in DictionaryHandler (use extension)

* config - code tidy.

* don't append build onto version (we use it to find scripts)

* schema update

* beep on package.

* V12/tree nodes (#537)

* Add ability to extend child items of the uSync tree node.

* don't append build onto version (we use it to find scripts)

* schema update

* Add Ability to direct menus from the sub items.

* Fix - path seperator not using linux safe '/' value

* fix - for subtrees,return a blank menu, when they don't have a menu.

* Post cherry pick tidy.

* clean up some build warnings.
  • Loading branch information
KevinJump authored Sep 13, 2023
1 parent 1c8aab7 commit d1d315d
Show file tree
Hide file tree
Showing 26 changed files with 18,597 additions and 102 deletions.
6 changes: 5 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<!-- don't append the build onto the version -->
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>

</PropertyGroup>

<ItemGroup>
<None Include="../assets/usync-logo.png" Pack="true" PackagePath="\" Visible="false" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,6 @@
"type": "string"
}
},
"SignalRRoot": {
"type": "string",
"description": "location of SignalR hub script",
"default": ""
},
"EnableHistory": {
"type": "boolean",
"description": "Should the history view be on of off ? ",
Expand Down
4 changes: 3 additions & 1 deletion dist/build-package.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,6 @@ if ($push) {
Write-Host "uSync Packaged : $fullVersion"

Remove-Item ".\last-build-*"
Out-File -FilePath ".\last-build-$fullVersion.txt" -InputObject $fullVersion
Out-File -FilePath ".\last-build-$fullVersion.txt" -InputObject $fullVersion

[console]::beep(1984,500)
Loading

0 comments on commit d1d315d

Please sign in to comment.