Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[general] Notify users on extension update #51

Closed
tprouvot opened this issue Apr 3, 2023 · 1 comment
Closed

[general] Notify users on extension update #51

tprouvot opened this issue Apr 3, 2023 · 1 comment
Assignees
Labels
enhancement New feature or request

Comments

@tprouvot
Copy link
Owner

tprouvot commented Apr 3, 2023

Is your feature request related to a problem? Please describe.
When the version has been updated, display a message showing new release

// Check whether new version is installed
chrome.runtime.onInstalled.addListener(function(details){
    if(details.reason == "install"){
        console.log("This is a first install!");
    }else if(details.reason == "update"){
        var thisVersion = chrome.runtime.getManifest().version;
        console.log("Updated from " + details.previousVersion + " to " + thisVersion + "!");
    }
});
@tprouvot tprouvot added the enhancement New feature or request label Apr 3, 2023
@tprouvot tprouvot self-assigned this Apr 3, 2023
@tprouvot tprouvot added the help wanted You can work on this issue if you want to ! label Jul 6, 2023
@tprouvot tprouvot removed the help wanted You can work on this issue if you want to ! label Jan 9, 2024
@tprouvot tprouvot changed the title [general] Redirect to changes.md on update [general] Notify users on extension update Jan 9, 2024
tprouvot pushed a commit that referenced this issue Jan 23, 2024
## Describe your changes
- Added AlertBanner component for alerts (info, warning, error, offline)
to follow [SLDS Alert style
guidelines](https://www.lightningdesignsystem.com/components/alert/).
- Added missing classes to slds.css for banner support
- Added notification of new Release Notes with optional close/ignore
using AlertBanner
- Converted Session lost/Generate Key to AlertBanner
- Refactored onShortcutKey for easier management of shortcuts and
actions
- Added sf command to test framework and noted sfdx as legacy

## Issue ticket number and link
[Issue
#51](#51)

## Checklist before requesting a review
- [ x ] I have read and understand the [Contributions
section](https://github.com/tprouvot/Salesforce-Inspector-reloaded#contributions)
- [ x ] Target branch is releaseCandidate and not master
- [ x ] I have performed a self-review of my code
- [ x ] I ran the [unit
tests](https://github.com/tprouvot/Salesforce-Inspector-reloaded#unit-tests)
and my PR does not break any tests
- [ x ] I documented the changes I've made on the
[CHANGES.md](https://github.com/tprouvot/Salesforce-Inspector-reloaded/blob/master/CHANGES.md)
and followed actual conventions
- [ n/a ] I added a new section on
[how-to.md](https://github.com/tprouvot/Salesforce-Inspector-reloaded/blob/master/docs/how-to.md)
(optional)

---------

Co-authored-by: nshulman <nathan@shulman.ne>
Co-authored-by: Nathan Shulman <nshulman@salesforce.com>
@tprouvot
Copy link
Owner Author

tprouvot commented Feb 5, 2024

Will be delivered in 1.22

@tprouvot tprouvot closed this as completed Feb 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant