Skip to content

Commit 8bd82fa

Browse files
committed
v7.4.0
1 parent 5d04b71 commit 8bd82fa

File tree

22 files changed

+255
-39
lines changed

22 files changed

+255
-39
lines changed

LabelStoreMax/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [7.4.0] - 2024-04-23
2+
3+
* Ability to add order notes
4+
* Add new translations
5+
* Pubspec.yaml dependency updates
6+
17
## [7.3.2] - 2024-04-12
28

39
* Update env file

LabelStoreMax/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
1212
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
1313
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
14+
928C71BE2BD7772B00C15E45 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 928C71BD2BD7772B00C15E45 /* PrivacyInfo.xcprivacy */; };
1415
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
1516
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
1617
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
@@ -57,6 +58,7 @@
5758
8362715010B1DC025B396ED3 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
5859
8DD46F1E543D90202726C03D /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
5960
925D64452BA7F98500C41197 /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = "<group>"; };
61+
928C71BD2BD7772B00C15E45 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
6062
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
6163
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
6264
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -162,6 +164,7 @@
162164
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
163165
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
164166
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
167+
928C71BD2BD7772B00C15E45 /* PrivacyInfo.xcprivacy */,
165168
);
166169
path = Runner;
167170
sourceTree = "<group>";
@@ -264,6 +267,7 @@
264267
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
265268
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
266269
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
270+
928C71BE2BD7772B00C15E45 /* PrivacyInfo.xcprivacy in Resources */,
267271
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
268272
);
269273
runOnlyForDeploymentPostprocessing = 0;
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>NSPrivacyAccessedAPITypes</key>
6+
<array>
7+
<dict>
8+
<key>NSPrivacyAccessedAPIType</key>
9+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
10+
<key>NSPrivacyAccessedAPITypeReasons</key>
11+
<array>
12+
<string>CA92.1</string>
13+
</array>
14+
</dict>
15+
<dict>
16+
<key>NSPrivacyAccessedAPIType</key>
17+
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
18+
<key>NSPrivacyAccessedAPITypeReasons</key>
19+
<array>
20+
<string>35F9.1</string>
21+
</array>
22+
</dict>
23+
<dict>
24+
<key>NSPrivacyAccessedAPIType</key>
25+
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
26+
<key>NSPrivacyAccessedAPITypeReasons</key>
27+
<array>
28+
<string>C617.1</string>
29+
</array>
30+
</dict>
31+
<dict>
32+
<key>NSPrivacyAccessedAPIType</key>
33+
<string>NSPrivacyAccessedAPICategoryDiskSpace</string>
34+
<key>NSPrivacyAccessedAPITypeReasons</key>
35+
<array>
36+
<string>85F4.1</string>
37+
</array>
38+
</dict>
39+
</array>
40+
</dict>
41+
</plist>

LabelStoreMax/lang/de.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,9 @@
239239
"Invalid email address": "Ungültige E-Mail-Adresse",
240240
"By completing this order, I agree to all": "Mit Abschluss dieser Bestellung stimme ich allem zu",
241241
"Change language": "Sprache ändern",
242+
"Order Note": "Bestellhinweis",
243+
"Save Note": "Notiz speichern",
244+
"Enter order note": "Bestellnotiz eingeben",
245+
"Order note must be less than 100 characters": "Die Bestellnotiz muss weniger als 100 Zeichen lang sein",
242246
"Select your language": "Wähle deine Sprache"
243247
}

LabelStoreMax/lang/en.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,9 @@
239239
"Invalid email address": "Invalid email address",
240240
"By completing this order, I agree to all": "By completing this order, I agree to all",
241241
"Change language": "Change language",
242+
"Order Note": "Order Note",
243+
"Save Note": "Save Note",
244+
"Enter order note": "Enter order note",
245+
"Order note must be less than 100 characters": "Order note must be less than 100 characters",
242246
"Select your language": "Select your language"
243247
}

LabelStoreMax/lang/es.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,9 @@
239239
"Invalid email address": "Dirección de correo electrónico no válida",
240240
"By completing this order, I agree to all": "Al completar este pedido, acepto todos",
241241
"Change language": "Cambiar idioma",
242+
"Order Note": "Nota de pedido",
243+
"Save Note": "Guardar nota",
244+
"Enter order note": "Introducir nota de pedido",
245+
"Order note must be less than 100 characters": "La nota del pedido debe tener menos de 100 caracteres.",
242246
"Select your language": "elige tu idioma"
243247
}

LabelStoreMax/lang/fr.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,9 @@
239239
"Invalid email address": "Adresse e-mail invalide",
240240
"By completing this order, I agree to all": "En remplissant cette commande, j'accepte toutes",
241241
"Change language": "Changer de langue",
242+
"Order Note": "Remarque sur la commande",
243+
"Save Note": "Enregistrer la note",
244+
"Enter order note": "Saisir le bon de commande",
245+
"Order note must be less than 100 characters": "Le bon de commande doit comporter moins de 100 caractères",
242246
"Select your language": "choisissez votre langue"
243247
}

LabelStoreMax/lang/hi.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,9 @@
239239
"Invalid email address": "amaany eemel pata",
240240
"By completing this order, I agree to all": "is aadesh ko poora karake, main sabhee ke lie sahamat hoon",
241241
"Change language": "bhaasha badalen",
242+
"Order Note": "aadesh not",
243+
"Save Note": "not sahejen",
244+
"Enter order note": "ordar not darj karen",
245+
"Order note must be less than 100 characters": "ordar not 100 aksharon se kam hona chaahie",
242246
"Select your language": "apanee bhaasha ka chayan karen"
243247
}

LabelStoreMax/lang/id.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,9 @@
239239
"Invalid email address": "alamat email salah",
240240
"By completing this order, I agree to all": "Dengan menyelesaikan pesanan ini, saya menyetujui semuanya",
241241
"Change language": "Ganti BAHASA",
242+
"Order Note": "Catatan Pesanan",
243+
"Save Note": "Simpan Catatan",
244+
"Enter order note": "Masukkan catatan pesanan",
245+
"Order note must be less than 100 characters": "Catatan pesanan harus kurang dari 100 karakter",
242246
"Select your language": "Pilih bahasamu"
243247
}

LabelStoreMax/lang/it.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,9 @@
239239
"Invalid email address": "indirizzo email non valido",
240240
"By completing this order, I agree to all": "Completando questo ordine, accetto tutto",
241241
"Change language": "Cambia lingua",
242+
"Order Note": "Nota sull'ordine",
243+
"Save Note": "Salva nota",
244+
"Enter order note": "Inserisci la nota dell'ordine",
245+
"Order note must be less than 100 characters": "La nota dell'ordine deve contenere meno di 100 caratteri",
242246
"Select your language": "seleziona la tua lingua"
243247
}

0 commit comments

Comments
 (0)