diff --git a/CHANGELOG.md b/CHANGELOG.md index 914e2b8..e1cdb51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.1.0](https://github.com/rihards-simanovics/InvoiceShelf-white-label-module/compare/v1.0.0...v1.1.0) (2024-09-28) + + +### Features + +* update namespace to App\ and add backwards compatibility ([a3f641c](https://github.com/rihards-simanovics/InvoiceShelf-white-label-module/commits/a3f641ce010bb339efb014003aeee4fceb89a865)) + + +### Documentation + +* add browser data clearing step ([26de0ca](https://github.com/rihards-simanovics/InvoiceShelf-white-label-module/commits/26de0ca646ab0eee8c8999e9dd3c82eff6735470)) + ## 1.0.0 (2024-09-03) diff --git a/README.md b/README.md index be36742..62c273e 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ Adds ability to customise your InvoiceShelf instance with logo and brand color. ## Table of Contents - [Installation](#installation) +- [Update](#update) - [Development](#development) - [Troubleshooting](#troubleshooting) - [Copyright](#copyright) @@ -17,9 +18,20 @@ Adds ability to customise your InvoiceShelf instance with logo and brand color. 2. Create `/Modules/` dir in your server InvoiceShelf project root. **NOTE:** make sure it's capitalised like in example, it's not a typo. 3. Upload the `WhiteLabel.zip` into the newly created `/Modules/` dir. 4. Unzip it. -5. In your server InvoiceShelf project `/` root dir, run `php artisan install:module WhiteLabel 1.0.0`. +5. In your server InvoiceShelf project `/` root dir, run `php artisan install:module WhiteLabel 1.1.0`. 6. (optional) If you have any issues with your installed module, try clearing your browser's `cache`, `cookies`, and/or `site data`. +## Update + +1. Download the zip with pre-built module from the latest release in this repo. Alternatively you can build from source, for that follow the steps in the [development](#development) section. +2. Upload the `WhiteLabel.zip` into the newly created `/Modules/` dir. +3. Remove old `WhiteLabel/` module folder. +4. Unzip it and visit the site. + +## Hard Stops + +- InvoiceShelf >= 1.3.0 (upgrade this module to 1.1.0) + ## Development This is a step by step guide on how to get started, with development. diff --git a/package.json b/package.json index 1f7c2d9..65fee3c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "1.0.0", + "version": "1.1.0", "scripts": { "dev": "vite", "build": "vite build", @@ -41,4 +41,4 @@ "vite-plugin-externals": "^0.3.0", "vue": "^3.2.0-beta.5" } -} \ No newline at end of file +}