pindo 5.0.2 → 5.0.4

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: 10f0f3745c15acde24feb9bdb931bfcfdbc303258d631426aa57624c07a4c9b7
4
- data.tar.gz: 40614dbbb067470b2a0f5c81712720179f9074efbdcb57bd32855a1944fb9b45
3
+ metadata.gz: 8e7508977271b8a9092068bffb6c429402f3f4f3ddf9d9c8fdd3e4c7b7580522
4
+ data.tar.gz: 912474cf184b1621c147f5c713f374e48f40deeff97306504fa5745fe3648cd2
5
5
  SHA512:
6
- metadata.gz: d7d064e4852ee0fba47ce2af38bc56ad4bb7c879fddd5bbca42ae6ac4d7a4498ac68fc99fd7a11d50204546287350cac75c0d31b0e3975cba2c5446c0d2c5634
7
- data.tar.gz: 7d087143f365ece955ab0c571480de52e8f54948a306f46610ed922ddb91209f296a492889bf670e743eb55444076effcf75d6dc96a00958d0372d8b094aea4f
6
+ metadata.gz: efc6aeff8688764f201c3723e8b8e391ab02c9abef5d7b9bee68d30a821903549b7343b62e02a02aa8c66918b048c3cc4652523380ab4e08e6a34d96ce8eca6a
7
+ data.tar.gz: 92671cf31234549e38c59c2a673ff8bc181ef580b0ae5698c69b3179384346d03d3b8966f4b932348c23fd6cbfd1e7af3516e5431da9bdc841969f274327ad7b
@@ -95,10 +95,9 @@ module Pindo
95
95
  end
96
96
 
97
97
  project_unity_version = unity_helper.get_unity_version(pindo_project_dir)
98
- project_unity_major_version = project_unity_version.split('.')[0..1].join('.')
99
98
  puts
100
99
  puts "工程的Unity版本: #{project_unity_version}"
101
- unity_exe_path = unity_helper.find_unity_path(unity_major_version:project_unity_major_version, force_change_version: @force_select_unity)
100
+ unity_exe_path = unity_helper.find_unity_path(project_unity_version:project_unity_version, force_change_version: @force_select_unity)
102
101
  puts "选择的Unity路径: #{unity_exe_path}"
103
102
  puts
104
103
 
@@ -55,6 +55,9 @@ module Pindo
55
55
 
56
56
  fixed_bundleid_array.each do |bundle_id|
57
57
  # begin
58
+ if bundle_id.eql?("com.heroneverdie101")
59
+ bundle_id = "com.heroneverdie101.*"
60
+ end
58
61
  fixed_cert(bundle_id:bundle_id, renew_flag:@renew_cert_flag, upload_flag:@upload_flag, fixed_bundleid_flag:@fixedid_flag)
59
62
  # rescue => err
60
63
  # puts
@@ -17,16 +17,19 @@ module Pindo
17
17
  "C:/Program Files/Unity/Hub/Editor/*/Unity.exe"
18
18
  ]
19
19
 
20
- PINDO_UNITY_VERSION = "2021.3"
21
-
22
20
  class << self
23
21
  def share_instance
24
22
  instance
25
23
  end
26
24
  end
27
25
 
28
- def find_unity_path(unity_major_version:nil, force_change_version:false)
26
+ def find_unity_path(project_unity_version:nil, force_change_version:false)
27
+
28
+ if project_unity_version.nil? || project_unity_version.empty?
29
+ raise "Project Unity version is nil or empty"
30
+ end
29
31
 
32
+ unity_major_version = project_unity_version.split('.')[0..1].join('.')
30
33
  paths = case RUBY_PLATFORM
31
34
  when /darwin/
32
35
  UNITY_MAC_PATHS
@@ -68,9 +71,15 @@ module Pindo
68
71
  raise Informative, "未找到任何Unity版本"
69
72
  end
70
73
 
74
+
75
+ select_unity_versions = unity_versions.select { |v| v[:version] == project_unity_version } || []
76
+ if !select_unity_versions.nil? && !select_unity_versions.empty? && select_unity_versions.length >= 1
77
+ return select_unity_versions.first[:path]
78
+ end
79
+
71
80
  unity_versions.sort_by! { |v| v[:major_version] }
72
81
  select_unity_versions = unity_versions.select { |v| v[:major_version] == unity_major_version } if unity_major_version
73
- if select_unity_versions.empty?
82
+ if select_unity_versions.nil? || select_unity_versions.empty?
74
83
  if force_change_version
75
84
  return unity_versions.last[:path]
76
85
  else
@@ -87,12 +96,21 @@ module Pindo
87
96
 
88
97
  def extract_version_from_path(path)
89
98
  # macOS路径格式: /Applications/Unity/Hub/Editor/2021.3.45f1/Unity.app/Contents/MacOS/Unity
99
+ # macOS路径格式(变体): /Applications/Unity/Hub/Editor/2021.3.45f1c1/Unity.app/Contents/MacOS/Unity
90
100
  # Windows路径格式: C:/Program Files/Unity/Hub/Editor/2021.3.45f1/Editor/Unity.exe
91
- if match = path.match(/Editor\/([\d.]+[a-zA-Z]\d+)\//)
92
- match[1]
93
- else
94
- nil
101
+ # Windows路径格式(变体): C:/Program Files/Unity/Hub/Editor/2021.3.45f1c1/Editor/Unity.exe
102
+
103
+ # 尝试匹配 macOS 路径格式
104
+ if match = path.match(/Editor\/([\d.]+[a-zA-Z]\d+(?:c\d+)?)\//)
105
+ return match[1]
106
+ end
107
+
108
+ # 尝试匹配 Windows 路径格式
109
+ if match = path.match(/([\d.]+[a-zA-Z]\d+(?:c\d+)?)\/Editor\//)
110
+ return match[1]
95
111
  end
112
+
113
+ nil
96
114
  end
97
115
 
98
116
  public
@@ -158,9 +176,6 @@ module Pindo
158
176
  content = File.read(version_path)
159
177
  if content =~ /m_EditorVersion: (.*)/
160
178
  version = $1.strip
161
- unless version.start_with?(PINDO_UNITY_VERSION)
162
- raise "Project Unity version (#{version}) does not match required version (#{PINDO_UNITY_VERSION}.x)"
163
- end
164
179
  version
165
180
  else
166
181
  raise "Could not parse Unity version from #{version_path}"
data/lib/pindo/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Pindo
2
2
 
3
- VERSION = "5.0.2"
3
+ VERSION = "5.0.4"
4
4
 
5
5
  class VersionCheck
6
6
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pindo
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.2
4
+ version: 5.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - wade
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-24 00:00:00.000000000 Z
10
+ date: 2025-02-27 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: claide