|
@@ -167,7 +167,8 @@
|
|
|
|
|
|
section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_information_", nil)];
|
|
section = [XLFormSectionDescriptor formSectionWithTitle:NSLocalizedString(@"_information_", nil)];
|
|
[form addFormSection:section];
|
|
[form addFormSection:section];
|
|
- section.footerTitle = @"Nextcloud © 2017 T.W.S. Inc.";
|
|
|
|
|
|
+ NSString *versionApp = [NSString stringWithFormat:@"%@.%@", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
|
|
|
|
+ section.footerTitle = [NSString stringWithFormat:@"Nextcloud %@ © 2017 T.W.S. Inc.", versionApp];
|
|
|
|
|
|
// Acknowledgements
|
|
// Acknowledgements
|
|
row = [XLFormRowDescriptor formRowDescriptorWithTag:@"buttonLeftAligned" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_acknowledgements_", nil)];
|
|
row = [XLFormRowDescriptor formRowDescriptorWithTag:@"buttonLeftAligned" rowType:XLFormRowDescriptorTypeButton title:NSLocalizedString(@"_acknowledgements_", nil)];
|
|
@@ -196,14 +197,6 @@
|
|
[row.cellConfig setObject:[UIImage imageNamed:image_settingsMail] forKey:@"imageView.image"];
|
|
[row.cellConfig setObject:[UIImage imageNamed:image_settingsMail] forKey:@"imageView.image"];
|
|
row.action.formSelector = @selector(sendMail:);
|
|
row.action.formSelector = @selector(sendMail:);
|
|
[section addFormRow:row];
|
|
[section addFormRow:row];
|
|
-
|
|
|
|
- // Version
|
|
|
|
- row = [XLFormRowDescriptor formRowDescriptorWithTag:@"versioneapplicazione" rowType:XLFormRowDescriptorTypeInfo title:NSLocalizedString(@"_app_version_", nil)];
|
|
|
|
- row.value = [NSString stringWithFormat:@"%@ (%@)", [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"], [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]];
|
|
|
|
- [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"textLabel.font"];
|
|
|
|
- [row.cellConfig setObject:[UIFont systemFontOfSize:15.0]forKey:@"detailTextLabel.font"];
|
|
|
|
- [section addFormRow:row];
|
|
|
|
-
|
|
|
|
|
|
|
|
// Section --------------------------------------------------------------
|
|
// Section --------------------------------------------------------------
|
|
|
|
|