Skip to content

Commit

Permalink
Relase Authme 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Feb 13, 2024
1 parent b70b99e commit 483112a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
5 changes: 2 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@
1. Use NPM
1. Use VS Code
1. Use ESLint and Prettier
1. Variable names: snake_case
1. Function names: camelCase
1. Don't use new node modules
1. Variable and function names: camelCase
1. Don't use new npm modules
1. Make your PR to the dev branch

## Notes
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ body:
- type: textarea
attributes:
label: Authme/System information
description: Paste the version information here (Top menu > Info > About Dialog > Copy) or Ctrl/Cmd + O.
description: Paste the version information here (Settings > About > About Authme > Copy).
placeholder: "Authme: 2.6.0 ..."
validations:
required: true
- type: textarea
attributes:
label: Authme log
description: Paste the latest log here (Top menu > Settings > Settings Window > Logs > Latest log).
placeholder: "[AUTHME LOG] {2021. 07. 31. 10:00:00} Authme 2.6.0 release.210713.092658 ..."
description: Paste the latest log here (Settings > About > Logs > Show logs).
placeholder: "[AUTHME LOG] {2023. 07. 31. 10:00:00} Authme 3.0.0 release.220713.092658 ..."
- type: textarea
attributes:
label: Describe the bug
Expand Down
3 changes: 2 additions & 1 deletion .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
| 1.x.x | No | 2020. October 10. | 2020. December 1. |
| 2.x.x | No | 2020. December 1. | 2021. December 28. |
| 3.x.x | No | 2021. December 28. | 2022. November 8. |
| 4.x.x | Yes | 2022. November 8. | - |
| 4.x.x | No | 2022. November 8. | 2024. February 13. |
| 5.x.x | Yes | 2024. February 13. | - |

## Reporting a Vulnerability

Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
include:
- os: macos-latest
NAME: mac
NAME: macos
- os: ubuntu-latest
NAME: linux
- os: windows-latest
Expand All @@ -37,22 +37,23 @@ jobs:
workspaces: "./core -> target"

- name: "Apple silicon target"
if: matrix.NAME == 'mac'
if: runner.os == 'macOS'
run: |
rustup target add aarch64-apple-darwin
rustup target add x86_64-apple-darwin
- name: Install webkit2gtk (ubuntu only)
if: matrix.NAME == 'linux'
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: Install app dependencies and build it
if: matrix.NAME == 'linux' || matrix.NAME == 'windows'
if: runner.os == 'Linux' || runner.os == 'Windows'
run: npm ci && npm run build

- name: Install app dependencies and build it
if: matrix.NAME == 'mac'
if: runner.os == 'macOS'
run: npm ci && npm run build -- --target universal-apple-darwin

- name: Remove useless folders
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@

## Migration

Tutorial on how to migrate to Authme 4 from Authme 3:
Tutorial on how to migrate to Authme 4 or 5 from Authme 3:

1. Inside Authme: Top menu > Tools > Export.
1. Click confirm, and export the .authme file.
1. Go to the settings: Top menu > File > Settings.
1. Inside the general options: Click Clear data and confirm.
1. Now uninstall Authme from you computer.
1. Download [Authme 4](https://authme.levminer.com/#downloads) and install it.
1. Download [Authme 5](https://authme.levminer.com/#downloads) and install it.
1. Go through the getting started wizard.
1. In the codes page select Choose file and choose the .authme file you saved.

Expand Down

0 comments on commit 483112a

Please sign in to comment.