More file info
I'm preparing to update macos so it'd be nice to see the changes when I do
This commit is contained in:
parent
d1fab08049
commit
e9de721f45
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.MobileAsset.UAF.FM.GenerativeModels</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>com.apple.fm.language.safety_guardrail.base.generic</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>1.8.81307</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>1.8.81307</string>
|
||||||
|
<key>_ContentEncryption</key>
|
||||||
|
<string>DSME</string>
|
||||||
|
<key>_DisableAFSCCompression</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,52 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>com.apple.MobileAsset.UAF.FM.GenerativeModels</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>com.apple.fm.language.safety_guardrail.tokenizer.generic</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>1.8.0</string>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>1.8.0</string>
|
||||||
|
<key>MobileAssetProperties</key>
|
||||||
|
<dict>
|
||||||
|
<key>ArchiveDecryptionKeyFile</key>
|
||||||
|
<string>com.apple.MobileAsset.DecryptionKey.UAFFMLanguage.de3f086.priv</string>
|
||||||
|
<key>AssetSpecifier</key>
|
||||||
|
<string>com.apple.fm.language.safety_guardrail.tokenizer.generic</string>
|
||||||
|
<key>AssetVersion</key>
|
||||||
|
<string>1.8.0.13.200234,0</string>
|
||||||
|
<key>AssetVersionInfo</key>
|
||||||
|
<dict>
|
||||||
|
<key>AssetVersionGroup</key>
|
||||||
|
<integer>0</integer>
|
||||||
|
<key>AssetVersionLong</key>
|
||||||
|
<string>1.8.0.13.200234,0</string>
|
||||||
|
<key>AssetVersionTuple</key>
|
||||||
|
<string>1.8.0.13.200234</string>
|
||||||
|
<key>BuildVersionTuple</key>
|
||||||
|
<string>13.13.200234</string>
|
||||||
|
<key>BundleVersionTuple</key>
|
||||||
|
<string>1.8.0</string>
|
||||||
|
</dict>
|
||||||
|
<key>Build</key>
|
||||||
|
<string>13M200234</string>
|
||||||
|
<key>_ContentEncryption</key>
|
||||||
|
<string>DSME</string>
|
||||||
|
<key>_IsMAAutoAsset</key>
|
||||||
|
<true/>
|
||||||
|
<key>_PreSoftwareUpdateAssetStaging</key>
|
||||||
|
<true/>
|
||||||
|
<key>version</key>
|
||||||
|
<string>1.8.0</string>
|
||||||
|
</dict>
|
||||||
|
<key>_ContentEncryption</key>
|
||||||
|
<string>DSME</string>
|
||||||
|
<key>_DisableAFSCCompression</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
12
scripts/add_files.sh
Executable file
12
scripts/add_files.sh
Executable file
@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Run from the root of the repo
|
||||||
|
fd --type f -g "*.json" . -X git add -v {}
|
||||||
|
fd --type f -g "*Manifest.plist" . -X git add -v {}
|
||||||
|
fd --type f -g "*Restore.plist" . -X git add -v {}
|
||||||
|
fd --type f -g "*Info.plist" . -X git add -v {}
|
||||||
|
fd --type f -g "*GenerativeModels.xml" . -X git add -v {}
|
||||||
|
git add -v scripts
|
||||||
|
git add "*.md"
|
||||||
|
git add summary.json
|
||||||
|
git add FILES.txt
|
||||||
4
scripts/build_tree.sh
Executable file
4
scripts/build_tree.sh
Executable file
@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Run from the root of the repo
|
||||||
|
tree -I ".git" -I ".DS_Store" -a > FILES.txt
|
||||||
@ -4,10 +4,14 @@
|
|||||||
HERE="$(pwd)"
|
HERE="$(pwd)"
|
||||||
SCRIPTS="$HERE/scripts"
|
SCRIPTS="$HERE/scripts"
|
||||||
|
|
||||||
|
fd --type f -g "$SCRIPTS/*" -X chmod +x {}
|
||||||
|
|
||||||
$SCRIPTS/copy_files.sh
|
$SCRIPTS/copy_files.sh
|
||||||
$SCRIPTS/fix_perms.sh
|
$SCRIPTS/fix_perms.sh
|
||||||
$SCRIPTS/format.sh
|
$SCRIPTS/format.sh
|
||||||
$SCRIPTS/build_summary.js
|
$SCRIPTS/build_summary.js
|
||||||
|
$SCRIPTS/build_tree.sh
|
||||||
|
$SCRIPTS/add_files.sh
|
||||||
|
|
||||||
# Pesky ds store
|
# Pesky ds store
|
||||||
fd -u '^\.DS_Store$' -I -tf -X rm
|
fd -u '^\.DS_Store$' -I -tf -X rm
|
||||||
Loading…
Reference in New Issue
Block a user