Skip to content

Commit

Permalink
Merge pull request #214 from Piwigo/v2.1.7
Browse files Browse the repository at this point in the history
Final version 2.1.7
  • Loading branch information
EddyLB committed Feb 17, 2018
2 parents 7ce211f + e6e9683 commit 26915a7
Show file tree
Hide file tree
Showing 54 changed files with 1,007 additions and 787 deletions.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/Swipe button icons/RootAlbum/rootAlbum.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Tab bar icons/Albums/albums.afdesign
Binary file not shown.
Binary file modified Assets/Tab bar icons/Albums/albums.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Tab bar icons/Albums/albums@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Tab bar icons/Albums/albums@3x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Tab bar icons/Albums/albumsSelected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Tab bar icons/Albums/albumsSelected@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Tab bar icons/Albums/albumsSelected@3x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/Tab bar icons/Albums/v2/albums.afdesign
Binary file not shown.
Binary file added Assets/Tab bar icons/Albums/v2/albums.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/Tab bar icons/Albums/v2/albums@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/Tab bar icons/Albums/v2/albums@3x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/Tab bar icons/Albums/v2/albumsSelected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/Tab bar icons/Albums/v2/albumsSelected@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/Tab bar icons/Albums/v2/albumsSelected@3x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 23 additions & 1 deletion piwigo/Images/Image Detail/ImagePreviewViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,29 @@ -(instancetype)init
-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
self.navigationBarHidden = YES;

// Background color of the view
self.view.backgroundColor = [UIColor piwigoBackgroundColor];

// Navigation bar appearence
self.navigationBarHidden = YES;
NSDictionary *attributes = @{
NSForegroundColorAttributeName: [UIColor piwigoWhiteCream],
NSFontAttributeName: [UIFont piwigoFontNormal],
};
self.navigationController.navigationBar.titleTextAttributes = attributes;
[self.navigationController.navigationBar setTintColor:[UIColor piwigoOrange]];
[self.navigationController.navigationBar setBarTintColor:[UIColor piwigoBackgroundColor]];
self.navigationController.navigationBar.barStyle = [Model sharedInstance].isDarkPaletteActive ? UIBarStyleBlack : UIBarStyleDefault;

// Tab bar appearance
self.tabBarController.tabBar.barTintColor = [UIColor piwigoBackgroundColor];
self.tabBarController.tabBar.tintColor = [UIColor piwigoOrange];
if (@available(iOS 10, *)) {
self.tabBarController.tabBar.unselectedItemTintColor = [UIColor piwigoTextColor];
}
[[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor piwigoTextColor]} forState:UIControlStateNormal];
[[UITabBarItem appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor piwigoOrange]} forState:UIControlStateSelected];
}

-(void)viewWillDisappear:(BOOL)animated
Expand Down
4 changes: 2 additions & 2 deletions piwigo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.1.6</string>
<string>2.1.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>90</string>
<string>93</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
76 changes: 39 additions & 37 deletions piwigo/Network/NetworkHandler.m
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ +(NSURLSessionTask*)post:(NSString*)path

// Manage servers performing HTTP Authentication
[manager setTaskDidReceiveAuthenticationChallengeBlock:^NSURLSessionAuthChallengeDisposition(NSURLSession *session, NSURLSessionTask *task, NSURLAuthenticationChallenge *challenge, NSURLCredential *__autoreleasing *credential) {

// To remember app recieved anthentication challenge
[Model sharedInstance].performedHTTPauthentication = YES;

Expand Down Expand Up @@ -139,7 +139,7 @@ +(NSURLSessionTask*)post:(NSString*)path
fail(task, error);
}
[manager invalidateSessionCancelingTasks:YES];
}
}
];

return task;
Expand Down Expand Up @@ -181,37 +181,38 @@ +(NSURLSessionTask*)postMultiPart:(NSString*)path
return NSURLSessionAuthChallengeUseCredential;
} else {
// HTTP credentials refused!
return NSURLSessionAuthChallengeCancelAuthenticationChallenge;
return NSURLSessionAuthChallengeCancelAuthenticationChallenge;
}
}];

NSURLSessionTask *task = [manager POST:[NetworkHandler getURLWithPath:path asPiwigoRequest:YES withURLParams:nil]
parameters:nil
constructingBodyWithBlock:^(id<AFMultipartFormData> formData)
{
[formData appendPartWithFileData:[parameters objectForKey:kPiwigoImagesUploadParamData]
name:@"file"
fileName:[parameters objectForKey:kPiwigoImagesUploadParamFileName]
mimeType:[parameters objectForKey:kPiwigoImagesUploadParamMimeType]];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamTitle] dataUsingEncoding:NSUTF8StringEncoding]
name:@"name"];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamChunk] dataUsingEncoding:NSUTF8StringEncoding]
name:@"chunk"];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamChunks] dataUsingEncoding:NSUTF8StringEncoding]
name:@"chunks"];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamCategory] dataUsingEncoding:NSUTF8StringEncoding]
name:@"category"];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamPrivacy] dataUsingEncoding:NSUTF8StringEncoding]
name:@"level"];

[formData appendPartWithFormData:[[Model sharedInstance].pwgToken dataUsingEncoding:NSUTF8StringEncoding]
name:@"pwg_token"];
}
{
[formData appendPartWithFileData:[parameters objectForKey:kPiwigoImagesUploadParamData]
name:@"file"
fileName:[parameters objectForKey:kPiwigoImagesUploadParamFileName]
mimeType:[parameters objectForKey:kPiwigoImagesUploadParamMimeType]];

// Fixes bug #212 — pwg.images.upload: filename key is "name"
[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamFileName] dataUsingEncoding:NSUTF8StringEncoding]
name:@"name"];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamChunk] dataUsingEncoding:NSUTF8StringEncoding]
name:@"chunk"];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamChunks] dataUsingEncoding:NSUTF8StringEncoding]
name:@"chunks"];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamCategory] dataUsingEncoding:NSUTF8StringEncoding]
name:@"category"];

[formData appendPartWithFormData:[[parameters objectForKey:kPiwigoImagesUploadParamPrivacy] dataUsingEncoding:NSUTF8StringEncoding]
name:@"level"];

[formData appendPartWithFormData:[[Model sharedInstance].pwgToken dataUsingEncoding:NSUTF8StringEncoding]
name:@"pwg_token"];
}
progress:progress
success:^(NSURLSessionTask *task, id responseObject) {
if (success) {
Expand Down Expand Up @@ -246,29 +247,29 @@ +(NSString*)getURLWithPath:(NSString*)path asPiwigoRequest:(BOOL)piwigo withURLP
NSString *toReplace = [NSString stringWithFormat:@"%@", [params objectForKey:parameter]];
cleanPath = [cleanPath stringByReplacingOccurrencesOfString:replaceMe withString:toReplace];
}

// Compile final URL
NSString *url = [NSString stringWithFormat:@"%@%@%@%@",
[Model sharedInstance].serverProtocol, [Model sharedInstance].serverName,
piwigo ? @"/ws.php?" : @"", cleanPath];

return url;
return url;
}

+(void)showConnectionError:(NSError*)error
{
UIAlertController* alert = [UIAlertController
alertControllerWithTitle:NSLocalizedString(@"internetErrorGeneral_title", @"Connection Error")
message:[NSString stringWithFormat:@"%@", [error localizedDescription]]
preferredStyle:UIAlertControllerStyleAlert];
alertControllerWithTitle:NSLocalizedString(@"internetErrorGeneral_title", @"Connection Error")
message:[NSString stringWithFormat:@"%@", [error localizedDescription]]
preferredStyle:UIAlertControllerStyleAlert];

UIAlertAction* defaultAction = [UIAlertAction
actionWithTitle:NSLocalizedString(@"alertDismissButton", @"Dismiss")
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {}];
actionWithTitle:NSLocalizedString(@"alertDismissButton", @"Dismiss")
style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {}];

[alert addAction:defaultAction];

UIViewController *topViewController = [UIApplication sharedApplication].keyWindow.rootViewController;
while (topViewController.presentedViewController) {
topViewController = topViewController.presentedViewController;
Expand All @@ -277,3 +278,4 @@ +(void)showConnectionError:(NSError*)error
}

@end

3 changes: 3 additions & 0 deletions piwigo/Resources/Base.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@
// ==> IMAGES
// ===========================================================================
"singleImage" = "Image";
"singleVideo" = "Video";
"singleAudio" = "Audio";
"severalImages" = "Images";
"noImages" = "No Images";
"pullToRefresh" = "Reload Images";
Expand Down Expand Up @@ -426,3 +428,4 @@
"settings_translateWithCrowdin" = "Translate Piwigo Mobile";
"settings_pwgForumURL" = "http://piwigo.org/forum";
"settings_acknowledgements" = "Acknowledgements";

4 changes: 3 additions & 1 deletion piwigo/Resources/Base.lproj/ReleaseNotes.strings
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
Copyright © 2017 Piwigo.org. All rights reserved.
*/

"v2.1.6_text" = "Version 2.1.6\n\n• Arabic translation\n• Improved HTTP basic access authentication management\n• Minor bug fixes and improvement of the interface\n________________________________________\n\n";
"v2.1.7_text" = "Version 2.1.7\n\n• Fix video upload issues on some servers\n________________________________________\n\n";

"v2.1.6_text" = "Version 2.1.6\nJanuary 7, 2018\n\n• Arabic translation\n• Improved HTTP basic access authentication management\n• Minor bug fixes and improvement of the interface\n________________________________________\n\n";

"v2.1.5_text" = "Version 2.1.5\nDecember 21, 2017\n\n• Add possibility to cancel uploads\n• Add option for deleting images after upload\n• Add compatibility with Optimize Storage (iCloud)\n• Preserve image format after resize whenever possible\n• Danish and Indonesian translations\n• Fix metadata partly lost upon download\n• Fix PNG format replaced with JPEG before upload\n• Fix issues encountered with iOS 11 and iPhone X\n• Fix minor bugs\n• Code modernisation\n________________________________________\n\n";

Expand Down
2 changes: 2 additions & 0 deletions piwigo/Resources/ar.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@
// ==> IMAGES
// ===========================================================================
"singleImage" = "صورة";
"singleVideo" = "فيديو";
"singleAudio" = "الصوت";
"severalImages" = "الصور";
"noImages" = "لا توجد صور";
"pullToRefresh" = "إعادة تحميل الصور";
Expand Down
4 changes: 3 additions & 1 deletion piwigo/Resources/ar.lproj/ReleaseNotes.strings
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
Copyright © 2017 Piwigo.org. All rights reserved.
*/

"v2.1.6_text" = "الإصدار 2.1.6\n\n• الترجمة العربية\n• تحسين إدارة مصادقة الوصول الأساسية ل HTTP \n• إصلاحات الشوائب طفيفة وتحسين واجهة\n________________________________________\n\n";
"v2.1.7_text" = "الإصدار 2.1.7\n\n• إصلاح مشاكل تحميل الفيديو على بعض الملقمات\n________________________________________\n\n";

"v2.1.6_text" = "الإصدار 2.1.6\n7 يناير 2018\n\n• الترجمة العربية\n• تحسين إدارة مصادقة الوصول الأساسية ل HTTP \n• إصلاحات الشوائب طفيفة وتحسين واجهة\n________________________________________\n\n";

"v2.1.5_text" = "الإصدار 2.1.5\n21 ديسمبر 2017\n\n• إضافة إمكانية إلغاء التحميلات\n• إضافة خيار لحذف الصور بعد التحميل\n• إضافة التوافق مع تحسين التخزين (iCloud)\n• الحفاظ على تنسيق الصورة بعد تغيير حجم كلما كان ذلك ممكنا\n• الترجمات الدانماركية والإندونيسية\n• إصلاح البيانات الوصفية فقدت جزئيا عند التنزيل\n• إصلاح تنسيق ينغ استبدال جبيغ قبل التحميل\n• إصلاح القضايا التي تواجهها مع دائرة الرقابة الداخلية 11 و إفون X\n• إصلاح الأخطاء الطفيفة\n• تحديث الرمز\n\n________________________________________\n\n";

Expand Down
2 changes: 2 additions & 0 deletions piwigo/Resources/da.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@
// ==> IMAGES
// ===========================================================================
"singleImage" = "Billede";
"singleVideo" = "Video";
"singleAudio" = "Lyd";
"severalImages" = "Billeder";
"noImages" = "Ingen Billeder";
"pullToRefresh" = "Genindlæs Billeder";
Expand Down
6 changes: 4 additions & 2 deletions piwigo/Resources/da.lproj/ReleaseNotes.strings
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
Copyright © 2017 Piwigo.org. All rights reserved.
*/

"v2.1.6_text" = "Version 2.1.6\n\n• Arabisk oversættelse\n• Forbedret HTTP adgangs-autentificeringsstyring\n• Mindre fejlrettelser og forbedringer af brugergrænsefladen\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";
"v2.1.7_text" = "Version 2.1.7\n\n• Løs videooverførselsproblemer på nogle servere\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";

"v2.1.5_text" = "Version 2.1.5\n21 december, 2017\n\n• Tilføjet mulighed for at annullere upload\n• Tilføjet mulighed for at slette billede efter upload\n• Tilføjet kompatibilitet med lageroptimering (iCloud)\n• Fasthold billedformat efter ændring af størrelse når muligt\n• Dansk og Indonesisk oversættelse\n• Fix metadata delvist tabt ved download\n• Fix PNG format erstattet med JPEG før upload\n• Fix af iOS 11 and iPhone X problemer\n• Fix mindre fejl\n• Modernisering af kode\n________________________________________\n\n";
"v2.1.6_text" = "Version 2.1.6\n7 januar 2018\n\n• Arabisk oversættelse\n• Forbedret HTTP adgangs-autentificeringsstyring\n• Mindre fejlrettelser og forbedringer af brugergrænsefladen\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";

"v2.1.5_text" = "Version 2.1.5\n21 december 2017\n\n• Tilføjet mulighed for at annullere upload\n• Tilføjet mulighed for at slette billede efter upload\n• Tilføjet kompatibilitet med lageroptimering ‎(iCloud‎)\n• Fasthold billedformat efter ændring af størrelse når muligt\n• Dansk og Indonesisk oversættelse\n• Fix metadata delvist tabt ved download\n• Fix PNG format erstattet med JPEG før upload\n• Fix af iOS 11 and iPhone X problemer\n• Fix mindre fejl\n• Modernisering af kode\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";

"v2.1.4_text" = "Version 2.1.4\n31 oktober 2017\n\n• Svensk oversættelse\n• Fejlrettelser\n________________________________________\n\n";

Expand Down
4 changes: 3 additions & 1 deletion piwigo/Resources/de.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@
// ==> IMAGES
// ===========================================================================
"singleImage" = "Bild";
"singleVideo" = "Video";
"singleAudio" = "Audio";
"severalImages" = "Bilder";
"noImages" = "Keine Bilder";
"pullToRefresh" = "Bilder erneut laden";
Expand Down Expand Up @@ -414,7 +416,7 @@
// Settings — Colors
"settingsHeader_colors" = "Farben";
"settings_darkPalette" = "Dunkle Palette";
"settings_switchPalette" = "Automatisch wechseln";
"settings_switchPalette" = "Automatisch umschalten";
"settings_brightness" = "Helligkeit";

// Settings — Information
Expand Down
4 changes: 3 additions & 1 deletion piwigo/Resources/de.lproj/ReleaseNotes.strings
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
Copyright © 2017 Piwigo.org. All rights reserved.
*/

"v2.1.6_text" = "Version 2.1.6\n\n• Arabische Übersetzung\n• Verbesserte HTTP Basis Zugriffs-Authentifizierungsverwaltung\n• kleinere Fehler beseitigt und Verbesserungen der Benutzeroberfläche\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";
"v2.1.7_text" = "Version 2.1.7\n\n• Behebt Probleme beim dem Hochladen von Videos auf einigen Servern\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";

"v2.1.6_text" = "Version 2.1.6\n7. Januar 2018\n\n• Arabische Übersetzung\n• Verbesserte HTTP Basis Zugriffs-Authentifizierungsverwaltung\n• kleinere Fehler beseitigt und Verbesserungen der Benutzeroberfläche\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";

"v2.1.5_text" = "Version 2.1.5\n21. Dezember 2017\n\n• Neu Möglichkeit zur Unterbrechung während des Hochladens\n• Neu Option zum Löschen von Bildern nach dem Hochladen\n• Neu Kompatibilität mit Optimize Storage (iCloud)\n• Beibehalten des Bildformates nach Größenveränderung wann immer möglich\n• Dänische und Indonesische Übersetzungen\n• Behoben Metadaten beim Herunterladen teilweise verloren\n• Behoben PNG Format wurde durch JPEG beim Hochladen ersetzt\n• Behoben Probleme bei iOS 11 und iPhone X behoben\n• Korrektur kleinerer Fehler\n• Code Modernisierung\n________________________________________\n\n \n\n";

Expand Down
2 changes: 2 additions & 0 deletions piwigo/Resources/fr.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@
// ==> IMAGES
// ===========================================================================
"singleImage" = "Image";
"singleVideo" = "Vidéo";
"singleAudio" = "Audio";
"severalImages" = "Images";
"noImages" = "Pas d’Images";
"pullToRefresh" = "Rechargement des Images";
Expand Down
4 changes: 3 additions & 1 deletion piwigo/Resources/fr.lproj/ReleaseNotes.strings
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
Copyright © 2017 Piwigo.org. All rights reserved.
*/

"v2.1.6_text" = "Version 2.1.6\n\n• Traduction en Arabe\n• Amélioration de la gestion de l'authentification HTTP\n• Corrections de bugs mineurs et amélioration de l'interface\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";
"v2.1.7_text" = "Version 2.1.7\n\n• Résoud les problèmes de téléchargement de vidéos sur certains serveurs\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";

"v2.1.6_text" = "Version 2.1.6\n7 Janvier 2018\n\n• Traduction en Arabe\n• Amélioration de la gestion de l'authentification HTTP\n• Corrections de bugs mineurs et amélioration de l'interface\n‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_‎_\n\n";

"v2.1.5_text" = "Version 2.1.5\n21 Décembre 2017\n\n• Ajoute la possibilité d'annuler des transferts vers Piwigo\n• Ajoute une option pour effacer les images après un transfert\n• Ajoute la compatibilité avec l'option Optimiser le Stockage (iCloud)\n• Préserve si possible le format d'image après redimensionnement\n• Traductions en Danois et en Indonésien\n• Règle la perte partielle des métadonnées pendant un téléchargement\n• Règle le remplacement du format PNG par JPEG au cours d'un transfert\n• Règle quelques problèmes rencontrés avec iOS 11 et l'iPhone X\n• Règle quelques bugs mineurs\n• Modernisation du code\n________________________________________\n\n";

Expand Down
Loading

0 comments on commit 26915a7

Please sign in to comment.