Skip to content

Commit

Permalink
Merge branch 'feat/spike-poc-dashboard-side-panel' of https://github.…
Browse files Browse the repository at this point in the history
…com/splunk/addonfactory-ucc-generator into feat/spike-poc-dashboard-side-panel
  • Loading branch information
rohanm-crest committed Oct 7, 2024
2 parents 712cc27 + b7b1a27 commit 08362cb
Show file tree
Hide file tree
Showing 8 changed files with 188 additions and 488 deletions.
650 changes: 171 additions & 479 deletions NOTICE

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [5.50.1](https://github.com/splunk/addonfactory-ucc-generator/compare/v5.50.0...v5.50.1) (2024-10-04)


### Bug Fixes

* use title for app conf ([#1356](https://github.com/splunk/addonfactory-ucc-generator/issues/1356)) ([adfd987](https://github.com/splunk/addonfactory-ucc-generator/commit/adfd9879832b66cd6749fb530bf575ad1a18d053))

# [5.50.0](https://github.com/splunk/addonfactory-ucc-generator/compare/v5.49.0...v5.50.0) (2024-10-02)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

[tool.poetry]
name = "splunk_add_on_ucc_framework"
version = "5.50.0"
version = "5.50.1"
description = "Splunk Add-on SDK formerly UCC is a build and code generation framework"
license = "Apache-2.0"
authors = ["Splunk <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion splunk_add_on_ucc_framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
__version__ = "5.50.0"
__version__ = "5.50.1"

import logging

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def _set_attributes(self, **kwargs: Any) -> None:
self.addon_version = kwargs["addon_version"]
self.is_visible = str(kwargs["has_ui"]).lower()
self.description = kwargs["app_manifest"].get_description()
self.title = kwargs["app_manifest"].get_title()
self.author = kwargs["app_manifest"].get_authors()[0]["name"]
self.build = str(int(time()))

Expand All @@ -65,7 +66,7 @@ def generate_conf(self) -> Dict[str, str]:
name=self.name,
build=self.build,
id=self.id,
label=self.description,
label=self.title,
is_visible=self.is_visible,
)
self.writer(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ state = enabled
[launcher]
author = Splunk Inc.
version = 5.5.8R5fd76615
description = Splunk Add-on for UCC Example
description = Some description of Splunk Add-on for UCC Example

[ui]
is_visible = true
label = Splunk Add-on for UCC Example
label = Title of Splunk Add-on for UCC Example
supported_themes = light, dark

[package]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1622,10 +1622,10 @@
"meta": {
"name": "Splunk_TA_UCCExample",
"restRoot": "splunk_ta_uccexample",
"version": "5.49.0Rcc63ee532",
"version": "5.50.0R6465f0b6a",
"displayName": "Splunk UCC test Add-on",
"schemaVersion": "0.0.8",
"_uccVersion": "5.49.0",
"_uccVersion": "5.50.0",
"supportedThemes": [
"light",
"dark"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"schemaVersion": "2.0.0",
"info": {
"title": "Splunk Add-on for UCC Example",
"title": "Title of Splunk Add-on for UCC Example",
"id": {
"group": null,
"name": "Splunk_TA_UCCExample",
Expand All @@ -15,7 +15,7 @@
}
],
"releaseDate": null,
"description": "Splunk Add-on for UCC Example",
"description": "Some description of Splunk Add-on for UCC Example",
"classification": {
"intendedAudience": null,
"categories": [],
Expand Down

0 comments on commit 08362cb

Please sign in to comment.