Skip to content

Commit

Permalink
release 1.29
Browse files Browse the repository at this point in the history
  • Loading branch information
dufoli committed Sep 27, 2024
1 parent 19215d1 commit 221f205
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 17 deletions.
36 changes: 23 additions & 13 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,30 @@
# Release Notes

## Version 1.29
- fix name in saved queries [issue 159](https://github.com/dufoli/Salesforce-Inspector-Advanced/issues/159)
- make shortcut editable [issue 161](https://github.com/dufoli/Salesforce-Inspector-Advanced/issues/161)
- fix inline edit on data export [issue 158](https://github.com/dufoli/Salesforce-Inspector-Advanced/issues/158)
- fix plateform event link on popup objects tab [issue 155](https://github.com/dufoli/Salesforce-Inspector-Advanced/issues/155)
- add gear link to option from each page [issue 152](https://github.com/dufoli/Salesforce-Inspector-Advanced/issues/152)
- export option : skip technical column and date format [issue 151](https://github.com/dufoli/Salesforce-Inspector-Advanced/issues/151)
- fix copy record id [issue 143](https://github.com/dufoli/Salesforce-Inspector-Advanced/issues/143)


## Version 1.28

* #130 Fields() do not handle metadata and address field by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/133
* #84 Explore api: new ux by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/142
* #139 Flamgraph on other mesures (SOQL, Heap,...) by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/145
* #126 : suggestion on data export edit by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/146
* #138 Favicon by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/147
* #125 add roll up summary info by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/148
* #141 #140 shortcut and default action by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/149
* #135 import guess sobject based on id prefix if no type column
* Data export: select child object field remove parent (exemple: RecordType.Dev => DeveloperName = remove recordType)
* Data export : Fix __r must display all custom relationship
* Data export : field in subquery failed to suggest
* Data export, inspect: select value picklist value if already a value selected will failed to update and need to erase a letter to make it working
* Data export, apex runner: , column width grow exponentially during lateral scroll
- #130 Fields() do not handle metadata and address field by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/133
- #84 Explore api: new ux by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/142
- #139 Flamgraph on other mesures (SOQL, Heap,...) by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/145
- #126 : suggestion on data export edit by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/146
- #138 Favicon by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/147
- #125 add roll up summary info by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/148
- #141 #140 shortcut and default action by @dufoli in https://github.com/dufoli/Salesforce-Inspector-Advanced/pull/149
- #135 import guess sobject based on id prefix if no type column
- Data export: select child object field remove parent (exemple: RecordType.Dev => DeveloperName = remove recordType)
- Data export : Fix __r must display all custom relationship
- Data export : field in subquery failed to suggest
- Data export, inspect: select value picklist value if already a value selected will failed to update and need to erase a letter to make it working
- Data export, apex runner: , column width grow exponentially during lateral scroll


## Version 1.27
Expand Down
4 changes: 2 additions & 2 deletions addon/manifest-template.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "Salesforce Inspector Advanced",
"description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.",
"version": "1.28.3",
"version_name": "1.28.3",
"version": "1.29.1",
"version_name": "1.29.1",
"icons": {
"128": "icon128.png"
},
Expand Down
4 changes: 2 additions & 2 deletions addon/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "Salesforce Inspector Advanced",
"description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.",
"version": "1.28.3",
"version_name": "1.28.3",
"version": "1.29.1",
"version_name": "1.29.1",
"icons": {
"128": "icon128.png"
},
Expand Down
17 changes: 17 additions & 0 deletions docs/how-to.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,21 @@ In data Export, you run an SOSL query in order to retreive some data across mult

In data import, you can choose to use assigment rules or not for lead, case and even Account (territory management).

## SOQL editor and data export

The SOQL editor support color, suggestion over text, and we have fixed a lot of issue in suggestion of original Salesforce inspector (subquery object name, subquery field suggestion, in list suggestion, __r suggest all custom relation, ...)

Technical column (done, count, object type) can be skipped with an option.

Date format and date time format is now customizable in option. So data can fit directly to your need.
By the way, Data import date format can be customized too.

## Data export inline edit and picklist

On Data export, you can dit directly a field by double clicking on cell. Id must be present on SOQL and only field of main object is editable.
For picklist, a list of picklist value is displayed with auto suggestion.


## Use Sf Inspector with a connected app

---
Expand Down Expand Up @@ -251,4 +266,6 @@ From the option page, you can customize the default favicon by:

The customization is linked to the org, it means you can have different colors for DEV and UAT env for example.

You can choose to autogenerate color by environment. The same color will be used for Salesforce extension and Salesforce environment but salesforce inspector extension have a different icon. So you can find quickly the right envionment from tab.

![Option User experince tab](screenshots/options_ux_tab.png)

0 comments on commit 221f205

Please sign in to comment.