Skip to content

Commit 6afbac3

Browse files
authored
Merge branch 'master' into patch-1
2 parents bad1082 + 11e9570 commit 6afbac3

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,3 @@ Windows:
3939

4040
If you are interested in translating this application to another language, create a pull request with changes or find the project listing on [Transifex](https://www.transifex.com/na-243/video-transcoder).
4141

42-
# Thanks
43-
44-
This application uses the following image:
45-
- [Film](https://thenounproject.com/term/film/395618/) by [Mint Shirt](https://thenounproject.com/mint10/)

app/src/main/java/protect/videotranscoder/activity/MainActivity.java

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1437,25 +1437,13 @@ private void displayAboutDialog()
14371437
.put("RecyclerView-FastScroll", "https://github.com/timusus/RecyclerView-FastScroll")
14381438
.build();
14391439

1440-
final Map<String, String> USED_ASSETS = ImmutableMap.of
1441-
(
1442-
"Film by Mint Shirt", "https://thenounproject.com/term/film/395618/"
1443-
);
1444-
14451440
StringBuilder libs = new StringBuilder().append("<ul>");
14461441
for (Map.Entry<String, String> entry : USED_LIBRARIES.entrySet())
14471442
{
14481443
libs.append("<li><a href=\"").append(entry.getValue()).append("\">").append(entry.getKey()).append("</a></li>");
14491444
}
14501445
libs.append("</ul>");
14511446

1452-
StringBuilder resources = new StringBuilder().append("<ul>");
1453-
for (Map.Entry<String, String> entry : USED_ASSETS.entrySet())
1454-
{
1455-
resources.append("<li><a href=\"").append(entry.getValue()).append("\">").append(entry.getKey()).append("</a></li>");
1456-
}
1457-
resources.append("</ul>");
1458-
14591447
String appName = getString(R.string.app_name);
14601448
int year = Calendar.getInstance().get(Calendar.YEAR);
14611449

@@ -1492,9 +1480,7 @@ private void displayAboutDialog()
14921480
"</p><hr/><p>" +
14931481
getString(R.string.app_license) +
14941482
"</p><hr/><p>" +
1495-
String.format(getString(R.string.app_libraries), appName, libs.toString()) +
1496-
"</p><hr/><p>" +
1497-
String.format(getString(R.string.app_resources), appName, resources.toString());
1483+
String.format(getString(R.string.app_libraries), appName, libs.toString());
14981484

14991485
wv.loadDataWithBaseURL("file:///android_res/drawable/", html, "text/html", "utf-8", null);
15001486
new AlertDialog.Builder(this)

0 commit comments

Comments
 (0)