Skip to content

Commit cbe7909

Browse files
committed
merged Swordfish90#779: Deobfuscate screenshot URLs
1 parent 7d95921 commit cbe7909

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

app/main.cpp

+10-10
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ int main(int argc, char *argv[])
4949

5050
if (argc>1 && (!strcmp(argv[1],"-h") || !strcmp(argv[1],"--help"))) {
5151
QTextStream cout(stdout, QIODevice::WriteOnly);
52-
cout << "Usage: " << argv[0] << " [--default-settings] [--workdir <dir>] [--program <prog>] [-p|--profile <prof>] [--fullscreen] [-h|--help]" << endl;
53-
cout << " --default-settings Run cool-retro-term with the default settings" << endl;
54-
cout << " --workdir <dir> Change working directory to 'dir'" << endl;
55-
cout << " -e <cmd> Command to execute. This option will catch all following arguments, so use it as the last option." << endl;
56-
cout << " -T <title> Set window title to 'title'." << endl;
57-
cout << " --fullscreen Run cool-retro-term in fullscreen." << endl;
58-
cout << " -p|--profile <prof> Run cool-retro-term with the given profile." << endl;
59-
cout << " -h|--help Print this help." << endl;
60-
cout << " --verbose Print additional information such as profiles and settings." << endl;
52+
cout << "Usage: " << argv[0] << " [--default-settings] [--workdir <dir>] [--program <prog>] [-p|--profile <prof>] [--fullscreen] [-h|--help]" << '\n';
53+
cout << " --default-settings Run cool-retro-term with the default settings" << '\n';
54+
cout << " --workdir <dir> Change working directory to 'dir'" << '\n';
55+
cout << " -e <cmd> Command to execute. This option will catch all following arguments, so use it as the last option." << '\n';
56+
cout << " -T <title> Set window title to 'title'." << '\n';
57+
cout << " --fullscreen Run cool-retro-term in fullscreen." << '\n';
58+
cout << " -p|--profile <prof> Run cool-retro-term with the given profile." << '\n';
59+
cout << " -h|--help Print this help." << '\n';
60+
cout << " --verbose Print additional information such as profiles and settings." << '\n';
6161
return 0;
6262
}
6363

6464
QString appVersion("1.2.0");
6565

6666
if (argc>1 && (!strcmp(argv[1],"-v") || !strcmp(argv[1],"--version"))) {
6767
QTextStream cout(stdout, QIODevice::WriteOnly);
68-
cout << "cool-retro-term " << appVersion << endl;
68+
cout << "cool-retro-term " << appVersion << '\n';
6969
return 0;
7070
}
7171

packaging/appdata/cool-retro-term.appdata.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
<screenshots>
1717
<screenshot type="default">
1818
<caption>Default amber look</caption>
19-
<image width="1022" height="791">https://camo.githubusercontent.com/2443e662e95733ba6ae331f391f6ec036d1ee7fd/687474703a2f2f692e696d6775722e636f6d2f4e5566766e6c752e706e67</image>
19+
<image width="1022" height="791">https://i.imgur.com/NUfvnlu.png</image>
2020
</screenshot>
2121
<screenshot>
2222
<caption>Apple II look</caption>
23-
<image width="1024" height="796">https://camo.githubusercontent.com/44a19842d532555c7b02bf6b4b4684add9edf18c/687474703a2f2f692e696d6775722e636f6d2f4d4d6d4d3648742e706e67</image>
23+
<image width="1024" height="796">https://i.imgur.com/MMmM6Ht.png</image>
2424
</screenshot>
2525
</screenshots>
2626

0 commit comments

Comments
 (0)