Skip to content

Commit

Permalink
authme 1.1.0
Browse files Browse the repository at this point in the history
* Check projects ad releases for updates
  • Loading branch information
Levminer committed Oct 13, 2020
1 parent 731ea33 commit 5857115
Showing 27 changed files with 461 additions and 1,233 deletions.
6 changes: 1 addition & 5 deletions .GITIGNORE
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
node_modules
__pycache__
build

exported.txt
hash.md
pass.md
build
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
# Authme

- A 2FA app for desktop built with Electron.
- A simple 2FA app for desktop built with Electron and Node.js.

# How to use

- Check out `extract/README.md`

# Build

`electron-packager . Authme --overwrite --platform=all --arch=x64 --icon=img/icon.icns --out=build`

# NPM Pacages used

### Dev

- electron
- electron-packager

### Main

- auto-launch
- bcrypt
- cryptr
- speakeasy

# How to use

- Check out `extract/readme.txt`

# License

- MIT
14 changes: 8 additions & 6 deletions app/application/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Authme</title>
<meta charset="UTF-8" />
<title>Authme</title>
<!-- js -->
<script defer src="./index.js"></script>
<script defer src="./convert.js"></script>
<script defer src="./save.js"></script>
<script defer src="./src/js/convert.js"></script>
<script defer src="./src/js/index.js"></script>
<script defer src="./src/js/save.js"></script>
<!-- css -->
<link rel="stylesheet" href="./dragonfly@1.1.0.css" />
<link rel="stylesheet" href="./index.css" />
<link rel="stylesheet" href="../.././src/dragonfly@1.1.0.css" />
<link rel="stylesheet" href="./src/css/index.css" />
<!-- favicon -->
<link rel="shortcut icon" href="../../img/icon.ico" type="image/x-icon" />
</head>
@@ -382,7 +384,7 @@ <h3>Time</h3>
<button class="button1" id="copy19">Copy code</button>
</div>
</div>
<h4 id="version">Authme 1.0.0</h4>
<h4 id="version">Authme 1.1.0</h4>
</div>
<!-- grid -->
</div>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 5857115

Please sign in to comment.