Skip to content

Commit 946338d

Browse files
authored
Merge pull request #16 from BradLugo/improve-docs
Improve documentation
2 parents 3c95ff0 + 3730653 commit 946338d

File tree

2 files changed

+88
-20
lines changed

2 files changed

+88
-20
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com), and this
6+
project adheres to [Semantic Versioning](https://semver.org/).
7+
8+
## [Unreleased]
9+
### Added
10+
* GitHub website - https://matt1484.github.io/bl3_auto_vip/
11+
* Go modules ([#1])
12+
* GitHub Actions CI pipeline ([#6])
13+
* Change log
14+
15+
### Changed
16+
* Improve README
17+
18+
## v2.0.0 - 2019-09-11
19+
### Changed
20+
* Rewrote all code in go to add future mobile support (also more maintainable
21+
and smaller executable)
22+
23+
## v1.2.1 - 2019-08-28
24+
### Fixed
25+
* Fixed bug where tables in comments would count as codes
26+
27+
### Added
28+
* Password masking
29+
30+
## v1.2.0 - 2019-08-27
31+
### Added
32+
* Timer so it does not immediately close when done
33+
* Support for codes with multiple types
34+
35+
### Fixed
36+
* Bad logging around/error handling involving code type setup
37+
38+
## v1.1.0 - 2019-08-25
39+
### Added
40+
* Support for command line args (email and
41+
password)
42+
43+
### Changed
44+
* Now uses REST endpoints and JSON parsing rather than headless browser
45+
* Utilize .net core 3.0
46+
47+
### Fixed
48+
* Timeout issues and added
49+
50+
## v1.0.0 - 2019-08-22
51+
* Initial release

README.md

Lines changed: 37 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,55 @@
11
# BL3 Auto VIP
22

3-
Cross platform Go app for automatically redeeming VIP codes for Borderlands 3
3+
Cross platform Go app for automatically redeeming VIP codes
4+
for Borderlands 3
45

5-
Current zips of standalone executable can be found at
6-
https://github.com/matt1484/bl3_auto_vip/releases
6+
## Getting Started
77

8-
### Getting Started:
98
1. Make a VIP account at https://borderlands.com/en-US/vip/
109
2. Download program from above link
1110
3. Unzip the folder
1211
4. Run it, you will be prompted for username and password
13-
5. Enter username and password (we don’t Store this information)
12+
5. Enter username and password (we only use this info to sign into borderlands)
1413
6. Watch it do it’s magic
1514
7. Repeat when more codes come out
1615

17-
### To run from source:
16+
17+
Run it with `--help` to view command line args that are supported.
18+
19+
### Installing
20+
21+
#### Using go
22+
```sh
23+
go get -u github.com/matt1484/bl3_auto_vip
24+
```
25+
26+
#### Docker
27+
To run from source:
1828
1. install docker
1929
2. download project
2030
3. navigate to project
2131
4. run `docker build -t bl3 .`
2232
5. run `docker run -it bl3`
2333

24-
Run it with `--help` to view command line args that are supported.
34+
#### Using the prebuilt releases
35+
The binaries/executables are released
36+
[here](https://github.com/matt1484/bl3_auto_vip/releases)
37+
38+
## FAQs
39+
40+
### Why does my operating system say it's an unrecgonized app?
41+
Telling the operating system that we're a trusted source is expensive.
42+
This is a small open source project and we don't have the funds to correctly
43+
sign the app.
44+
45+
### Why does my antivirus flag this program?
46+
It's a false positive. If you don't trust us, you can look at the code and
47+
compile it yourself. That's one of the beauties of an open source project!
48+
49+
### It's not working. What should I do?
50+
File an issue here with as much detail as you can provide. We're working on
51+
adding additional logging and a bug template to better assist with any issues.
2552

26-
### Update Log:
27-
* v1.0: Initial release
28-
* v1.1: Fixed timeout issues and added support for command line args (email and password) p.s. it is also much faster
29-
* v1.2: Added a timer so it does not immediately close when done and also added support for codes with multiple types
30-
* v1.2.1: Fixed bug where tables in comments would count as codes and add password masking
31-
* v1.3: Rewrote all code in go to add future mobile support (also more maintainable and smaller executable)
32-
33-
### To do:
34-
* shift codes redemption
35-
* auto facebook/instagram/twitter weekly points (cant watch videos but can read the articles maybe)
36-
* fake emails for referral points (captcha is making this hard, so maybe not...)
37-
* look into other login types (PSN, Xbox, etc.)
38-
* android/ios version
53+
## License
54+
This project is licensed under the Apache-2.0 License - see the
55+
[LICENSE](LICENSE) file for details

0 commit comments

Comments
 (0)