Skip to content

Commit

Permalink
πŸ”– [RELEASE] v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-neumann-dev committed Feb 14, 2023
1 parent 0e292b6 commit 014bc89
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 9 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.2.0] - 2022-02-12
## [v1.0.0] - 2023-02-14

### ✨ Features

* Published extension in chrome web store

### πŸ“ Documentation

* Add links to chrome web store
* Add installation instructions for manual installation

## [v0.2.0] - 2023-02-12

### ✨ Features

Expand All @@ -19,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Extend readme by all necessary information

## [v0.1.0] - 2022-02-12
## [v0.1.0] - 2023-02-12

### ✨ Features

Expand All @@ -30,5 +41,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Add license, readme and changelog

[Unreleased]: https://github.com/peter-neumann-dev/responsive-image-linter/compare/v0.1.0...HEAD
[v1.0.0]: https://github.com/peter-neumann-dev/responsive-image-linter/compare/v0.2.0...v1.0.0
[v0.2.0]: https://github.com/peter-neumann-dev/responsive-image-linter/compare/v0.1.0...v0.2.0
[v0.1.0]: https://github.com/peter-neumann-dev/responsive-image-linter/commits/v0.1.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ the results at [ausi.github.io/respimagelint](https://ausi.github.io/respimageli

### Manual

1. Download the latest [Release](https://github.com/peter-neumann-dev/responsive-image-linter/releases)
1. Download the latest [release](https://github.com/peter-neumann-dev/responsive-image-linter/releases) from the assets
2. Unzip the downloaded archive to a folder
3. Open the Extension Management page by navigating to `chrome://extensions`.
4. Enable Developer Mode by clicking the toggle switch next to **Developer mode**.
5. Click the **Load unpacked** button and select the unzipped folder to install it.
4. Enable Developer Mode by clicking the toggle switch next to `Developer mode`.
5. Click the `Load unpacked` button and select the unzipped folder to install it.
6. Done! βœ…

## πŸ’Ž Credits
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": "responsive-image-linter",
"description": "A Chrome extension to test your responsive images",
"version": "0.2.0",
"version": "1.0.0",
"author": "Peter Neumann",
"license": "MIT",
"type": "module",
Expand Down
Binary file added releases/responsive-image-linter-v1.0.0.zip
Binary file not shown.
5 changes: 4 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ export default defineConfig({
simpleReloader(),
del({ targets: 'dist/*' }),
terser(),
isProduction && zip({ dir: 'releases' }),
isProduction && zip({
// eslint-disable-next-line camelcase, no-undef
file: `../releases/${process.env.npm_package_name}-v${process.env.npm_package_version}.zip`,
}),
],
})

0 comments on commit 014bc89

Please sign in to comment.