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

Version 0.4 #59

Merged
merged 3 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ body:
label: MyButton version
description: Which version of MyButton are you using?
options:
- MyButton 0.4
- MyButton 0.3
- MyButton 0.2
- MyButton 0.1
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4] - 2024-12-23
### Added
- Support `Hacker News`
- Support `Yahoo Mail`
Expand Down Expand Up @@ -45,7 +46,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `Telegram` support
- Choose direct or indirect sharing mode

[Unreleased]: https://github.com/openscilab/mybutton/compare/v0.3...dev
[Unreleased]: https://github.com/openscilab/mybutton/compare/v0.4...dev
[0.4]: https://github.com/openscilab/mybutton/compare/v0.3...v0.4
[0.3]: https://github.com/openscilab/mybutton/compare/v0.2...v0.3
[0.2]: https://github.com/openscilab/mybutton/compare/v0.1...v0.2
[0.1]: https://github.com/openscilab/mybutton/compare/c6df6cc...v0.1
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 0.3 | :white_check_mark: |
| < 0.3 | :x: |
| 0.4 | :white_check_mark: |
| < 0.4 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
MYBUTTON_VERSION = "0.3"
MYBUTTON_VERSION = "0.4"


CHANGELOG_ITEMS = [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mybutton",
"description": "Effortless link sharing across your desired platforms",
"version": "0.3",
"version": "0.4",
"author": "MyButton Development Team",
"license": "MIT",
"homepage": "https://mybutton.click",
Expand Down
2 changes: 1 addition & 1 deletion src/App/Config/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const BaseConfig = {
APP_NAME: 'MyButton',
APP_SHORT_NAME: 'MyBTN',
VERSION: 0.3,
VERSION: 0.4,
};

const LOCAL = {
Expand Down
Loading