Add 'privacy' and 'github' icons to settings.

Signed-off-by: Ivan Sein <ivan@nextcloud.com>
This commit is contained in:
Ivan Sein 2018-04-12 14:45:22 +02:00
Родитель e3571823f0
Коммит 7774fb5234
9 изменённых файлов: 48 добавлений и 0 удалений

23
VideoCalls/Images.xcassets/github.imageset/Contents.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "github.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "github@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "github@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Двоичные данные
VideoCalls/Images.xcassets/github.imageset/github.png поставляемый Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 922 B

Двоичные данные
VideoCalls/Images.xcassets/github.imageset/github@2x.png поставляемый Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 1.8 KiB

Двоичные данные
VideoCalls/Images.xcassets/github.imageset/github@3x.png поставляемый Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 2.7 KiB

23
VideoCalls/Images.xcassets/privacy.imageset/Contents.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "privacy.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "privacy@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "privacy@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Двоичные данные
VideoCalls/Images.xcassets/privacy.imageset/privacy.png поставляемый Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 454 B

Двоичные данные
VideoCalls/Images.xcassets/privacy.imageset/privacy@2x.png поставляемый Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 611 B

Двоичные данные
VideoCalls/Images.xcassets/privacy.imageset/privacy@3x.png поставляемый Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 977 B

Просмотреть файл

@ -319,6 +319,7 @@ typedef enum AboutSection {
if (!cell) { if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:privacyCellIdentifier]; cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:privacyCellIdentifier];
cell.textLabel.text = @"Privacy"; cell.textLabel.text = @"Privacy";
[cell.imageView setImage:[UIImage imageNamed:@"privacy"]];
} }
} }
break; break;
@ -328,6 +329,7 @@ typedef enum AboutSection {
if (!cell) { if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:sourceCodeCellIdentifier]; cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:sourceCodeCellIdentifier];
cell.textLabel.text = @"Get source code"; cell.textLabel.text = @"Get source code";
[cell.imageView setImage:[UIImage imageNamed:@"github"]];
} }
} }
break; break;