Skip to content

Commit

Permalink
Switched out .webp icon for .png to ensure IE11 support (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkelM authored Aug 1, 2023
1 parent af8e0a5 commit 2d3833a
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Changelog

## v1.2.1
## v1.2.2

<!--Releasenotes start-->
- Updated the settings icon's file format to ensure cross-browser compatibility.
<!--Releasenotes end-->

## v1.2.1

- Only relevant customization options - depending on other chosen settings - will now be shown.
- Added descriptions next to the category customization inputs in the settings menu.
- Clicking anywhere outside of it will now close a colour picker.
<!--Releasenotes end-->

## v1.2.0

Expand Down
Binary file added assets/settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/settings.webp
Binary file not shown.
2 changes: 1 addition & 1 deletion manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp">
<Id>4d810708-b23f-4105-bfab-6301f6d3a8ba</Id>
<Version>1.2.1</Version>
<Version>1.2.2</Version>
<ProviderName>Nikkel Mollenhauer</ProviderName>
<DefaultLocale>en-GB</DefaultLocale>
<DisplayName DefaultValue="Mail Notes"/>
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "outlook-mail-notes",
"description": "Easily add notes to e-mails, senders & conversations in Outlook!",
"version": "1.2.1",
"version": "1.2.2",
"author": "Nikkel Mollenhauer",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/taskpane.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ <h2>This isn't the page you're looking for...</h2>
<div id="settingsDiv" class="settings-div">
<p id="versionNumber" class="version-number"></p>
<button id="settingsButton" title="Toggle the settings menu" class="settings-button">
<img src="../assets/settings.webp" width="20px" height="20px"/>
<img src="../assets/settings.png" width="20px" height="20px"/>
</button>
<div id="settingContentDiv" class="settings-content align-center">
<h3>Settings</h3>
Expand Down

0 comments on commit 2d3833a

Please sign in to comment.