Skip to content

Commit

Permalink
update Github url
Browse files Browse the repository at this point in the history
  • Loading branch information
chanthuang committed Jan 15, 2019
1 parent 093b646 commit e9b3185
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -269,7 +269,7 @@ private static boolean Android6SetStatusBarLightMode(Window window, boolean ligh
decorView.setSystemUiVisibility(systemUi);
if (QMUIDeviceHelper.isMIUIV9()) {
// MIUI 9 低于 6.0 版本依旧只能回退到以前的方案
// https://github.com/QMUI/QMUI_Android/issues/160
// https://github.com/Tencent/QMUI_Android/issues/160
MIUISetStatusBarLightMode(window, light);
}
return true;
Expand Down
Expand Up @@ -75,7 +75,7 @@ public void onClick(View v) {
.addItemView(mAboutGroupListView.createItemView(getResources().getString(R.string.about_item_github)), new View.OnClickListener() {
@Override
public void onClick(View v) {
String url = "https://github.com/QMUI/QMUI_Android";
String url = "https://github.com/Tencent/QMUI_Android";
Bundle bundle = new Bundle();
bundle.putString(EXTRA_URL, url);
bundle.putString(EXTRA_TITLE, getResources().getString(R.string.about_item_github));
Expand Down
Expand Up @@ -152,7 +152,7 @@ public void onClick(QMUIBottomSheet dialog, View itemView, int position, String
context.startActivity(intent);
} else if (position == 1) {
Intent intent = QDMainActivity.createWebExplorerIntent(context,
"https://github.com/QMUI/QMUI_Android",
"https://github.com/Tencent/QMUI_Android",
context.getResources().getString(R.string.about_item_github));
context.startActivity(intent);
} else if (position == 2) {
Expand Down
Expand Up @@ -174,7 +174,7 @@ public CharSequence getUpgradeWord(final Activity activity) {
}

private void handleIssues(final Activity activity, SpannableStringBuilder text, String[] issues) {
final String issueBaseUrl = "https://github.com/QMUI/QMUI_Android/issues/";
final String issueBaseUrl = "https://github.com/Tencent/QMUI_Android/issues/";
int start, end;
for (int i = 0; i < issues.length; i++) {
if (i == issues.length - 1) {
Expand Down

0 comments on commit e9b3185

Please sign in to comment.