pindo 5.0.1 → 5.0.3

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: c12e2695103232a1a958615880ab468e48d1715d56f7a7a2e45df807371291b3
4
- data.tar.gz: be43d092dc28dc1c94a7ca317260fc8ab169847da2afffbb0dcd93d16fa8ca34
3
+ metadata.gz: fa8cf123e63f04932c88a6a895c05a81d4c8c71fa78c38bb03440b840408b425
4
+ data.tar.gz: 682c25d35dcae3f865c07608df7687c5da5408152b0677bb23fdf443f0027b6d
5
5
  SHA512:
6
- metadata.gz: 62b4db62b22c8ab9ec0b62ae08affc923631642a1aebcb9ff3728232b585590aa7fccf98658171e37507ecda32cc9d38d35bbfbcb0a6f11c5654b3881237bfe3
7
- data.tar.gz: b59beff4b0e5470786bd46a4ccfe5197e8e3ed7df9ce538d63df11e6d60208e2fa3b5b21e9cedd327657c0c44e8693820e91854d0a28f4900dafecfcb10d6d3b
6
+ metadata.gz: 1ec965bdecaac77916f6057a9ee15abb0981635a676150e4853259015690f61ca1d5f1f194e39cc16e8feeef861c6919e33c5b28559abc20caf5ae6ae6d2cf21
7
+ data.tar.gz: 66853e92ae567a42da0d9e56ac0a0972f45611ad2ac57086e040bf635fe95c49a6bfadbc49d2742c9b73832cea69e8dc79e152f7b0ecd316b3cc54c47e96ce87
@@ -487,12 +487,16 @@ module Pindo
487
487
  private
488
488
 
489
489
  def display_file_status(branch, files)
490
+ puts "========================================"
490
491
  puts "\n当前所在分支:#{branch}有下面这些文件没有提交:"
492
+ puts
491
493
  puts "\n#{files}\n"
494
+ puts
495
+ puts "========================================"
492
496
  end
493
497
 
494
498
  def process_user_choice(project_dir, branch)
495
- process_types = ["全部提交", "全部删除", "退出"]
499
+ process_types = ["全部提交", "全部删除", "先退出,手动来处理退出"]
496
500
  cli = HighLine.new
497
501
  menu_choice = "None"
498
502
 
@@ -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
 
@@ -35,21 +35,23 @@ module Pindo
35
35
  def write_gitignore(git_root_dir)
36
36
  gitignore_path = File.join(git_root_dir, '.gitignore')
37
37
  gitignore_content = <<~GITIGNORE
38
- # Build logs
38
+ # pindo_common_ignore_1.0.0
39
39
  build_ios.log
40
40
  feishu.json
41
41
  CHANGELOG.md
42
-
42
+
43
43
  # Platform specific directories
44
44
  /GoodPlatform/iOS/config.json
45
45
  /GoodPlatform/iOS/*
46
+ /GoodPlatform/iOS/build/*
46
47
  /GoodPlatform/Android/*
47
- /GoodPlatform/MacOS/*
48
48
  /GoodPlatform/BaseiOS/Unity/*
49
49
  /GoodPlatform/BaseiOS/Pods/
50
+ /GoodPlatform/BaseiOS/build/
51
+ /GoodPlatform/BaseiOS/config.json
50
52
  /GoodPlatform/BaseiOS/Podfile.lock
53
+
51
54
  /GoodPlatform/BaseAndroid/Unity/*
52
- /GoodPlatform/BaseMac/Unity/*
53
55
  GITIGNORE
54
56
  # Append to existing .gitignore or create new one
55
57
  File.open(gitignore_path, 'a') do |f|
@@ -25,8 +25,13 @@ module Pindo
25
25
  end
26
26
  end
27
27
 
28
- def find_unity_path(unity_major_version:nil, force_change_version:false)
28
+ def find_unity_path(project_unity_version:nil, force_change_version:false)
29
29
 
30
+ if project_unity_version.nil? || project_unity_version.empty?
31
+ raise "Project Unity version is nil or empty"
32
+ end
33
+
34
+ unity_major_version = project_unity_version.split('.')[0..1].join('.')
30
35
  paths = case RUBY_PLATFORM
31
36
  when /darwin/
32
37
  UNITY_MAC_PATHS
@@ -68,9 +73,15 @@ module Pindo
68
73
  raise Informative, "未找到任何Unity版本"
69
74
  end
70
75
 
76
+
77
+ select_unity_versions = unity_versions.select { |v| v[:version] == project_unity_version } || []
78
+ if !select_unity_versions.nil? && !select_unity_versions.empty? && select_unity_versions.length >= 1
79
+ return select_unity_versions.first[:path]
80
+ end
81
+
71
82
  unity_versions.sort_by! { |v| v[:major_version] }
72
83
  select_unity_versions = unity_versions.select { |v| v[:major_version] == unity_major_version } if unity_major_version
73
- if select_unity_versions.empty?
84
+ if select_unity_versions.nil? || select_unity_versions.empty?
74
85
  if force_change_version
75
86
  return unity_versions.last[:path]
76
87
  else
@@ -87,12 +98,21 @@ module Pindo
87
98
 
88
99
  def extract_version_from_path(path)
89
100
  # macOS路径格式: /Applications/Unity/Hub/Editor/2021.3.45f1/Unity.app/Contents/MacOS/Unity
101
+ # macOS路径格式(变体): /Applications/Unity/Hub/Editor/2021.3.45f1c1/Unity.app/Contents/MacOS/Unity
90
102
  # 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
103
+ # Windows路径格式(变体): C:/Program Files/Unity/Hub/Editor/2021.3.45f1c1/Editor/Unity.exe
104
+
105
+ # 尝试匹配 macOS 路径格式
106
+ if match = path.match(/Editor\/([\d.]+[a-zA-Z]\d+(?:c\d+)?)\//)
107
+ return match[1]
108
+ end
109
+
110
+ # 尝试匹配 Windows 路径格式
111
+ if match = path.match(/([\d.]+[a-zA-Z]\d+(?:c\d+)?)\/Editor\//)
112
+ return match[1]
95
113
  end
114
+
115
+ nil
96
116
  end
97
117
 
98
118
  public
data/lib/pindo/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Pindo
2
2
 
3
- VERSION = "5.0.1"
3
+ VERSION = "5.0.3"
4
4
 
5
5
  class VersionCheck
6
6
 
@@ -31,7 +31,7 @@ module Pindo
31
31
  # Pindo::Command::Env::Upgrade::run([])
32
32
  # end
33
33
  puts
34
- puts "最新版本是#{pindo_latest_version}目前可用, 可使用pindo upgrade 升级"
34
+ puts "最新版本是#{pindo_latest_version}目前可用, 可使用 gem install pindo 升级"
35
35
  puts
36
36
  puts pindo_lates_update_info
37
37
  puts
@@ -40,8 +40,9 @@ module Pindo
40
40
  end
41
41
 
42
42
  rescue Exception => e
43
- puts "有异常错误,请使用pindo upgrade 升级"
44
- puts
43
+ puts "有异常错误,请确认是否执行pindo setup 拉取最新配置, 更新配置任然有错误请执行gem install pindo 更新"
44
+ puts
45
+
45
46
 
46
47
  end
47
48
  end
@@ -66,12 +67,12 @@ module Pindo
66
67
  puts "当前pindo版本 #{Pindo::VERSION}"
67
68
  puts "最新版本 #{pindo_latest_version}"
68
69
  puts "要求最低版本 #{pindo_mini_version}"
69
- raise Informative, "请使用pindo upgrade 升级!"
70
+ raise Informative, "请使用 gem install pindo 升级!"
70
71
  end
71
72
  end
72
73
 
73
74
  rescue Exception => e
74
- raise Informative, "有异常错误,请使用pindo upgrade 升级!"
75
+ raise Informative, "有异常错误,请确认是否执行pindo setup 拉取最新配置, 更新配置任然有错误请执行gem install pindo 更新"
75
76
  end
76
77
  end
77
78
 
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.1
4
+ version: 5.0.3
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-25 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: claide