Skip to content
This repository has been archived by the owner on Sep 17, 2021. It is now read-only.

Commit

Permalink
Merge branch 'enhancements'
Browse files Browse the repository at this point in the history
  • Loading branch information
Surendrajat committed Mar 9, 2018
2 parents a237021 + 1f8e513 commit c9a8258
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
- [Bug Reporting](https://github.com/surendrajat/apkstudio/issues)
- [Contributors](https://github.com/Surendrajat/ApkStudio/graphs/contributors)
- [Special Thanks](https://github.com/Surendrajat/ApkStudio/wiki/SpecialThanks)
- [XDA Thread](https://forum.xda-developers.com/showthread.php?t=3761033)

### TODO
- [Framework management](https://ibotpeaches.github.io/Apktool/documentation/#frameworks) within IDE
Expand Down
2 changes: 1 addition & 1 deletion include/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
#define URL_CONTRIBUTE "https://github.com/surendrajat/apkstudio"
#define URL_DOCUMENTATION "http://surendrajat.github.io/ApkStudio"
#define URL_ISSUES "https://github.com/surendrajat/apkstudio/issues"
#define URL_THANKS "http://forum.xda-developers.com/showthread.php?t=2493107"
#define URL_THANKS "https://forum.xda-developers.com/showthread.php?t=3761033"

/**
* @brief Build flags
Expand Down
2 changes: 1 addition & 1 deletion res/lang/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@
</message>
<message>
<source>app_version</source>
<translation><![CDATA[ <strong>APK Studio v4.0.1 </strong> ]]></translation>
<translation><![CDATA[ <strong>APK Studio v4.0.2 </strong> ]]></translation>
</message>
<message>
<source>no_apk</source>
Expand Down
2 changes: 1 addition & 1 deletion src/ide.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ void Ide::onInit()
resize(p->windowSize());
}
restoreState(p->docksState());
if (!QFile::exists(PathUtils::combine(p->vendorPath(), "apktool.jar")))
if (!QFile::exists(PathUtils::combine(p->vendorPath(), "apktool.jar")) || !QFile::exists(PathUtils::combine(p->vendorPath(), "uber-apk-signer.jar")))
{
QMessageBox::warning(this, __("action_required", "titles"), __("download_vendor", "messages"), QMessageBox::Close);
}
Expand Down

0 comments on commit c9a8258

Please sign in to comment.