Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
## 1.0.0 (2022-09-25)

### Features

* **chrome-extension:** add chrome extension ([834958b](834958b))
* **native-app:** add inno setup installer ([43e905e](43e905e))
* **native-app:** add native-app ([b02ab2f](b02ab2f))
* **native-app:** implement windows service wrappers ([249dd02](249dd02))
* **native-app:** migrate to tracing library for logging ([e4f522f](e4f522f))

### Bug Fixes

* **chrome-extension:** remove iframe after its use ([5197033](5197033))
* **chrome-extension:** restore state on tab close ([e018168](e018168))
* **native-app:** enable very permissive cors handling ([4b2867d](4b2867d))
* **native-app:** store logs in ProgramData ([d6ed5d8](d6ed5d8))

### Performance

* **native-app:** optimize binaries output size ([cfeceba](cfeceba))

### Chores

* add basic gitignore ([df51077](df51077))
* **chrome-extension:** update eslint config ([25aef55](25aef55))

### Code Refactoring

* **native-app:** change the way the logging, sdk and server is instantiated ([7a8e980](7a8e980))
* **native-app:** generate graphql schema from a separate bin ([b0df1ef](b0df1ef))
* **native-app:** move windows service code to library ([5bd0430](5bd0430))

### Continuous Integration

* init ci ([c9d99e1](c9d99e1))
  • Loading branch information
semantic-release-bot committed Sep 25, 2022
1 parent c9d99e1 commit 59e689a
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
## 1.0.0 (2022-09-25)


### Features

* **chrome-extension:** add chrome extension ([834958b](https://github.com/meskill/mystic-light-browser-cinema/commit/834958bfedaaec93ab069f080cbfe8f2ad8d681d))
* **native-app:** add inno setup installer ([43e905e](https://github.com/meskill/mystic-light-browser-cinema/commit/43e905edd11bc1f6f388c683054968a8ddcb57c5))
* **native-app:** add native-app ([b02ab2f](https://github.com/meskill/mystic-light-browser-cinema/commit/b02ab2f25b8ad5fec6183518b4c6fbd4ca9ccf70))
* **native-app:** implement windows service wrappers ([249dd02](https://github.com/meskill/mystic-light-browser-cinema/commit/249dd02e21f8452c263c08b2cfc5dbe47af3a52c))
* **native-app:** migrate to tracing library for logging ([e4f522f](https://github.com/meskill/mystic-light-browser-cinema/commit/e4f522fe4d853c71e98ed30a1c9efff90328f287))


### Bug Fixes

* **chrome-extension:** remove iframe after its use ([5197033](https://github.com/meskill/mystic-light-browser-cinema/commit/51970339c9dbeaad6d14e0af9705f0acb324b933))
* **chrome-extension:** restore state on tab close ([e018168](https://github.com/meskill/mystic-light-browser-cinema/commit/e018168e1ddd9e43f86f1d7d2fa0b0c5933d8fab))
* **native-app:** enable very permissive cors handling ([4b2867d](https://github.com/meskill/mystic-light-browser-cinema/commit/4b2867dd3d6d3e983f428684524c86cb0131b10f))
* **native-app:** store logs in ProgramData ([d6ed5d8](https://github.com/meskill/mystic-light-browser-cinema/commit/d6ed5d8ae06916c3dc8fd15b971de41a320c9fd1))


### Performance

* **native-app:** optimize binaries output size ([cfeceba](https://github.com/meskill/mystic-light-browser-cinema/commit/cfeceba2ba28614c22ef462f473b18fb2cf8dd72))


### Chores

* add basic gitignore ([df51077](https://github.com/meskill/mystic-light-browser-cinema/commit/df51077fe49797ba8600e0cfb73f3ba0d614fc00))
* **chrome-extension:** update eslint config ([25aef55](https://github.com/meskill/mystic-light-browser-cinema/commit/25aef55dcbbf97df1e99ab530a275f83c2894dc0))


### Code Refactoring

* **native-app:** change the way the logging, sdk and server is instantiated ([7a8e980](https://github.com/meskill/mystic-light-browser-cinema/commit/7a8e980ceaf66b73e4688b05b4256804a59180ff))
* **native-app:** generate graphql schema from a separate bin ([b0df1ef](https://github.com/meskill/mystic-light-browser-cinema/commit/b0df1ef7028d0937b05050f4f5865b5722da8bbc))
* **native-app:** move windows service code to library ([5bd0430](https://github.com/meskill/mystic-light-browser-cinema/commit/5bd043043492da2e260145b03a2e976e1bb91ac8))


### Continuous Integration

* init ci ([c9d99e1](https://github.com/meskill/mystic-light-browser-cinema/commit/c9d99e144c11c127a0bcac63102ac2f45bd51780))
2 changes: 1 addition & 1 deletion chrome-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mystic-light-browser-cinema",
"displayName": "MysticLight Browser Cinema",
"version": "0.0.0",
"version": "1.0.0",
"description": "Allows to subscribe to browser fullscreen event to control mystic light gears lighting",
"author": "meskill <8974488+meskill@users.noreply.github.com>",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion native-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mystic_light_browser_cinema"
version = "0.1.0"
version = "1.0.0"
edition = "2021"
default-run = "app"

Expand Down

0 comments on commit 59e689a

Please sign in to comment.