diff --git a/config.json b/config.json index 50b3cf3..70b27d7 100644 --- a/config.json +++ b/config.json @@ -1,7 +1,7 @@ { "project": "InjectShell", "Author": "QiuChenly", - "Version": 1.0, + "Version": 1.1, "Description": { "desc": "这是一个用于解释说明json对象用途的说明文档。basePublicConfig里面的同名配置如果在AppList里面配置了相同的Key,则优先使用AppList里面的值。", "bridgeFile": "app路径和注入文件路径之间的中间路径,有些app只能注入到/Contents,所以加了这个。", @@ -117,8 +117,10 @@ }, { "packageName": "com.adobe.Photoshop", - "appBaseLocate": "/Applications/Adobe Photoshop 2023/Adobe Photoshop 2023.app", - "injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM" + "appBaseLocate": "/Applications/Adobe Photoshop 2024/Adobe Photoshop 2024.app", + "injectFile": "AdobeAGM.framework/Versions/A/AdobeAGM", + "needCopyToAppDir": true, + "noDeep": true }, { "packageName": "com.adobe.illustrator", diff --git a/main.rb b/main.rb index b51da55..0a111b2 100644 --- a/main.rb +++ b/main.rb @@ -193,6 +193,8 @@ def main if deepSignApp system "#{signPrefix} #{Shellwords.escape(appBaseLocate)}" end + + puts "App处理完成。" } end