Skip to content

Commit

Permalink
Add CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
FrenchYeti committed Mar 18, 2020
1 parent c4b4a7e commit c42289a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ CHANGELOG

# Version 0.6

## Lastest
## 0.6.3

* Add DEXCALIBUR_TEST environment variable : a way to turn some part of code into test mode
* Add additional colors to Logger.debug : Logger.debugPink(), Logger.debugBgRed()
* Add some unit test (Configuration, Logger, AdbWrapper, DeviceManager, ...)
* Extend minimalist smali VM, add support of : invoke-super
* PseudoCode maker can be turn off
* Add this file
* Create CHANGELOG file

## 0.6.2

Expand Down
7 changes: 5 additions & 2 deletions src/Project.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ const Path = require("path");
const Fs = require("fs");

var CoreConst = require('./CoreConst.js');
var PACKAGE_JSON = require("../package.json");



var Logger = require("./Logger.js")();
var Configuration = require("./Configuration.js");
Expand Down Expand Up @@ -195,8 +198,8 @@ Project.prototype.initDexcalibur = function(pkgName, cfgpath=null, nofrida=0, ap
+"██║ ██║██╔══╝ ██╔██╗ ██║ ██╔══██║██║ ██║██╔══██╗██║ ██║██╔══██╗\n"
+"███████╔╝███████╗██╔╝ ██╗╚██████╗██║ ██║███████╗██║██████╔╝╚██████╔╝██║ ██║\n"
+"╚══════╝ ╚══════╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝╚══════╝╚═╝╚═════╝ ╚═════╝ ╚═╝ ╚═╝\n"
+ CoreConst.VERSION
+ (" ".repeat(78-14-CoreConst.VERSION.length))
+ PACKAGE_JSON.version
+ (" ".repeat(78-14-PACKAGE_JSON.version.length))
+"by @FrenchYeti \n"
+"╔════════════════════════════════════════════════════════════════════════════╗\n"
+"║ How to use ? ║\n"
Expand Down

0 comments on commit c42289a

Please sign in to comment.