Skip to content

Commit 7c17e74

Browse files
committed
New UI with bulma and fontawesome
1 parent e48c877 commit 7c17e74

18 files changed

+5834
-282
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2+
dist
23
decrypt

.travis.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: node_js
2+
node_js:
3+
- "10"
4+
cache: npm
5+
before_script:
6+
- npm run install
7+
script:
8+
- npm run build
9+
deploy:
10+
- provider: pages
11+
local-dir: dist
12+
skip-cleanup: true
13+
github-token: $GITHUB_TOKEN
14+
keep-history: true
15+
on:
16+
branch: master

README.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
# Lua 简单异或加密
1+
# Lua Simple XOR Encrypt
2+
3+
[![Build Status](https://travis-ci.com/ganlvtech/lua-simple-encrypt.svg?branch=master)](https://travis-ci.com/ganlvtech/lua-simple-encrypt)
4+
5+
Ask user to input the decrypt key. XOR each bytes with the given key. eval the decrypted script.
6+
7+
## Usage
8+
9+
Open the web page with browser. Select the file and press the button. The encrypted file will be downloaded.
10+
11+
[Try it Online](https://ganlvtech.github.io/lua-simple-encrypt/)
12+
13+
## Build
14+
15+
```bash
16+
npm run install
17+
npm run build
18+
```
19+
20+
## Development
21+
22+
```bash
23+
npm run build
24+
```
25+
26+
Visit <http://localhost:8080/>
227

328
## LICENSE
429

dist/bundle.js

-40
This file was deleted.

dist/index.html

-7
This file was deleted.

0 commit comments

Comments
 (0)