cocoapods-aqara-localzedLoader 0.0.6 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61f24b941b12ed539578952171873577a5856cf36e4f301a0275988eeb887e21
4
- data.tar.gz: 6c00a48fe4b8f0f0377af8211fabd668f301b6ff5cd49bcf91df9dfd506cf4bc
3
+ metadata.gz: 0a4cfe3b8655489f905a84c91c571b067d9751be203a11ccd923a54696db9d2b
4
+ data.tar.gz: 63dc9542c9ed8f33b533513c4d65c4020f6f0124f33282e981f4f8b8c7206352
5
5
  SHA512:
6
- metadata.gz: d6819a5c6016508558b75d5f2ffc7256c624421ec678bb2967b98970833daef17e0f9fb5ff29ed178112d92926e4aea590511615040174ef7ad148774556cd39
7
- data.tar.gz: 96093c5cce53e157fbbf8ecbd72b4e9d571c957c67a42d9e089481b215b2e38487d925a586236486b6e3eb5497d17d5e0ef7e8bcfef64dcad5caf4e6a66b2060
6
+ metadata.gz: 82b82152b80545354bd58f8179672d6e4849de7b5d279dc490f01caa1055df9c66ad8a26e4137f8c1760488b3ff9010f6d8712aa7c1007e775251fb84686b11c
7
+ data.tar.gz: 16e8ba489b6c4d4b685ccef6b714ad5742addb385eb30182f563af2d345d56b89a6667b5999dd944998fc9c2dc8b528667994709dbb2f15de69b8999b2e2d89a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cocoapods-aqara-localzedLoader (0.0.6)
4
+ cocoapods-aqara-localzedLoader (0.0.8)
5
5
  claide (>= 1.0.2, < 2.0)
6
6
  colored2
7
7
  fileutils
@@ -1,3 +1,3 @@
1
1
  module Localzedloader
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -7,7 +7,45 @@ require 'open3'
7
7
  class BundleGenerater
8
8
 
9
9
  # INFO_PLIST_ARRAY = [NSAppleMusicUsageDescription","NSLocalNetworkUsageDescription"]
10
- INFO_PLIST_MAP = {:common_app_name=>["CFBundleDisplayName"],other_perm_camera_permission_description:["NSCameraUsageDescription"],other_perm_location_permission_description:["NSLocationAlwaysAndWhenInUseUsageDescription","NSLocationWhenInUseUsageDescription","NSLocationAlwaysUsageDescription"],other_perm_bluetooth_permission_description:["NSBluetoothPeripheralUsageDescription","NSBluetoothAlwaysUsageDescription"],access_content_permssion_storage:["NSPhotoLibraryUsageDescription"],other_perm_mic_permission_description:["NSMicrophoneUsageDescription"],other_set_permissions_homedata_desc:["NSHomeKitUsageDescription"],other_set_permissions_asr_text:["NSSpeechRecognitionUsageDescription"],device_add_device:["Add_Device_Title"],automation_add:["Add_Automation_Title"],device_create_scene:["Add_Scene_Title"]}
10
+ INFO_PLIST_MAP = {
11
+ common_app_name: ["CFBundleDisplayName"],
12
+ other_perm_camera_permission_description: [
13
+ "NSCameraUsageDescription"
14
+ ],
15
+ other_perm_location_permission_description: [
16
+ "NSLocationAlwaysAndWhenInUseUsageDescription",
17
+ "NSLocationWhenInUseUsageDescription",
18
+ "NSLocationAlwaysUsageDescription"
19
+ ],
20
+ other_perm_bluetooth_permission_description: [
21
+ "NSBluetoothPeripheralUsageDescription",
22
+ "NSBluetoothAlwaysUsageDescription"
23
+ ],
24
+ access_content_permssion_storage: [
25
+ "NSPhotoLibraryUsageDescription"
26
+ ],
27
+ other_perm_mic_permission_description: [
28
+ "NSMicrophoneUsageDescription"
29
+ ],
30
+ other_set_permissions_homedata_desc: [
31
+ "NSHomeKitUsageDescription"
32
+ ],
33
+ other_set_permissions_asr_text: [
34
+ "NSSpeechRecognitionUsageDescription"
35
+ ],
36
+ device_add_device: [
37
+ "Add_Device_Title"
38
+ ],
39
+ automation_add: [
40
+ "Add_Automation_Title"
41
+ ],
42
+ device_create_scene: [
43
+ "Add_Scene_Title"
44
+ ],
45
+ NFCReaderUsageDescription: [
46
+ "NFCReaderUsageDescription"
47
+ ]
48
+ }
11
49
 
12
50
  #定义类变量记录下载次数
13
51
 
@@ -18,8 +56,8 @@ class BundleGenerater
18
56
  sleep 10
19
57
  end
20
58
  puts "当前进行第#{@@download_Count}次尝试下载多语言文件"
21
- Open3.capture3("cd #{File.dirname(__FILE__)};python3 DownloadNewLanguage.py #{project_path}")
22
- #system "cd #{File.dirname(__FILE__)};python3 DownloadNewLanguage.py #{project_path}"
59
+ #Open3.capture3("cd #{File.dirname(__FILE__)};python3 DownloadNewLanguage.py #{project_path}")
60
+ system "cd #{File.dirname(__FILE__)};python3 DownloadNewLanguage.py #{project_path}"
23
61
  @@download_Count = @@download_Count + 1
24
62
  end
25
63
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-aqara-localzedLoader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - zhaoxifan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-06 00:00:00.000000000 Z
11
+ date: 2025-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler