Commit a94ea06e authored by Felix Paul Kühne's avatar Felix Paul Kühne

* vlc.scriptSuite: updated to the plist-xml-format and fixed a bug in the prev-method

* vlc.scriptTerminology: updated to the plist-xml-format and removed the 'localisable'-flag for the terminology in Xcode since we don't localise it and Apple won't support any other AS-dialects than English in the future --> moved out of English.lproj
* vlc.pbproj: removed localisable-flag for vlc.scriptTerminology
parent 8f45b1e5
{ <?xml version="1.0" encoding="UTF-8"?>
"Name" = "vlc"; <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
"AppleEventCode" = "VLC#"; <plist version="1.0">
<dict>
"Commands" = { <key>Name</key>
"OpenURL" = { <string>vlc</string>
AppleEventClassCode = "WWW!"; <key>AppleEventCode</key>
AppleEventCode = "OURL"; <string>VLC#</string>
CommandClass = "VLGetURLScriptCommand"; <key>Commands</key>
}; <dict>
"GetURL" = { <key>OpenURL</key>
AppleEventClassCode = "GURL"; <dict>
AppleEventCode = "GURL"; <key>AppleEventClassCode</key>
CommandClass = "VLGetURLScriptCommand"; <string>WWW!</string>
}; <key>AppleEventCode</key>
"play" = { <string>OURL</string>
AppleEventCode = "VLC1"; <key>CommandClass</key>
CommandClass = "VLControlScriptCommand"; <string>VLGetURLScriptCommand</string>
}; </dict>
"stop" = { <key>GetURL</key>
AppleEventCode = "VLC2"; <dict>
CommandClass = "VLControlScriptCommand"; <key>AppleEventClassCode</key>
}; <string>GURL</string>
"previous" = { <key>AppleEventCode</key>
AppleEventCode = "GURL"; <string>GURL</string>
CommandClass = "VLControlScriptCommand"; <key>CommandClass</key>
}; <string>VLGetURLScriptCommand</string>
"next" = { </dict>
AppleEventCode = "VLC3"; <key>play</key>
CommandClass = "VLControlScriptCommand"; <dict>
}; <key>AppleEventCode</key>
"fullscreen" = { <string>VLC1</string>
AppleEventCode = "VLC4"; <key>CommandClass</key>
CommandClass = "VLControlScriptCommand"; <string>VLControlScriptCommand</string>
}; </dict>
"mute" = { <key>stop</key>
AppleEventCode = "VLC5"; <dict>
CommandClass = "VLControlScriptCommand"; <key>AppleEventCode</key>
}; <string>VLC2</string>
"volumeUp" = { <key>CommandClass</key>
AppleEventCode = "VLC6"; <string>VLControlScriptCommand</string>
CommandClass = "VLControlScriptCommand"; </dict>
}; <key>previous</key>
"volumeDown" = { <dict>
AppleEventCode = "VLC7"; <key>AppleEventCode</key>
CommandClass = "VLControlScriptCommand"; <string>VLC3</string>
}; <key>CommandClass</key>
}; <string>VLControlScriptCommand</string>
} </dict>
<key>next</key>
<dict>
<key>AppleEventCode</key>
<string>VLC4</string>
<key>CommandClass</key>
<string>VLControlScriptCommand</string>
</dict>
<key>fullscreen</key>
<dict>
<key>AppleEventCode</key>
<string>VLC5</string>
<key>CommandClass</key>
<string>VLControlScriptCommand</string>
</dict>
<key>mute</key>
<dict>
<key>AppleEventCode</key>
<string>VLC6</string>
<key>CommandClass</key>
<string>VLControlScriptCommand</string>
</dict>
<key>volumeUp</key>
<dict>
<key>AppleEventCode</key>
<string>VLC7</string>
<key>CommandClass</key>
<string>VLControlScriptCommand</string>
</dict>
<key>volumeDown</key>
<dict>
<key>AppleEventCode</key>
<string>VLC8</string>
<key>CommandClass</key>
<string>VLControlScriptCommand</string>
</dict>
</dict>
</dict>
</plist>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Name</key>
<string>VLC suite</string>
<key>Description</key>
<string>VLC commands.</string>
<key>Commands</key>
<dict>
<key>OpenURL</key>
<dict>
<key>Name</key>
<string>OpenURL</string>
<key>Description</key>
<string>Open a URL</string>
</dict>
<key>GetURL</key>
<dict>
<key>Name</key>
<string>GetURL</string>
<key>Description</key>
<string>Get a URL</string>
</dict>
<key>play</key>
<dict>
<key>Name</key>
<string>play</string>
<key>Description</key>
<string>Start playing the current playlistitem or pause it when it is already playing.</string>
</dict>
<key>stop</key>
<dict>
<key>Name</key>
<string>stop</string>
<key>Description</key>
<string>Stop playing the current playlistitem</string>
</dict>
<key>previous</key>
<dict>
<key>Name</key>
<string>previous</string>
<key>Description</key>
<string>Go to the previous item in the playlist or the previous chapter in the DVD/VCD.</string>
</dict>
<key>next</key>
<dict>
<key>Name</key>
<string>next</string>
<key>Description</key>
<string>Go to the next item in the playlist or the next chapter in the DVD/VCD.</string>
</dict>
<key>fullscreen</key>
<dict>
<key>Name</key>
<string>fullscreen</string>
<key>Description</key>
<string>Toggle between fullscreen and windowed mode.</string>
</dict>
<key>mute</key>
<dict>
<key>Name</key>
<string>mute</string>
<key>Description</key>
<string>Mute the audio</string>
</dict>
<key>volumeUp</key>
<dict>
<key>Name</key>
<string>volumeUp</string>
<key>Description</key>
<string>Bring the volume up by one step. There are 32 steps from 0 to 100% volume.</string>
</dict>
<key>volumeDown</key>
<dict>
<key>Name</key>
<string>volumeDown</string>
<key>Description</key>
<string>Bring the volume down by one step. There are 32 steps from 0 to 100% volume.</string>
</dict>
</dict>
</dict>
</plist>
...@@ -709,7 +709,7 @@ ...@@ -709,7 +709,7 @@
<string>RTSP</string> <string>RTSP</string>
<key>CFBundleURLSchemes</key> <key>CFBundleURLSchemes</key>
<array> <array>
<string>rtsp</string> <string>rtsp,rts</string>
</array> </array>
</dict> </dict>
<dict> <dict>
...@@ -750,7 +750,7 @@ ...@@ -750,7 +750,7 @@
8ED6C29F03E2F32E0059A3A7, 8ED6C29F03E2F32E0059A3A7,
8ED6C2A003E2F32E0059A3A7, 8ED6C2A003E2F32E0059A3A7,
8EBF3FA403F13FFB0059A3A7, 8EBF3FA403F13FFB0059A3A7,
8EBF3FA803F140A80059A3A7, DCC9AE9507F77DE600394C42,
A0E6B59904407FBD0080DD97, A0E6B59904407FBD0080DD97,
8EDAC3440440F72D0059A3A7, 8EDAC3440440F72D0059A3A7,
8EE1AFA40444660F0059A3A7, 8EE1AFA40444660F0059A3A7,
...@@ -839,7 +839,7 @@ ...@@ -839,7 +839,7 @@
8ED6C29E03E2F32E0059A3A7, 8ED6C29E03E2F32E0059A3A7,
A0E6B59804407FBD0080DD97, A0E6B59804407FBD0080DD97,
8EBF3FA303F13FFB0059A3A7, 8EBF3FA303F13FFB0059A3A7,
8EBF3FA703F140A80059A3A7, 8EBF3FA503F140960059A3A7,
8EDAC3430440F72D0059A3A7, 8EDAC3430440F72D0059A3A7,
); );
isa = PBXGroup; isa = PBXGroup;
...@@ -1862,27 +1862,12 @@ ...@@ -1862,27 +1862,12 @@
}; };
8EBF3FA503F140960059A3A7 = { 8EBF3FA503F140960059A3A7 = {
isa = PBXFileReference; isa = PBXFileReference;
lastKnownFileType = text; lastKnownFileType = text.xml;
name = vlc.scriptTerminology; name = vlc.scriptTerminology;
path = Resources/English.lproj/vlc.scriptTerminology; path = Resources/vlc.scriptTerminology;
refType = 2; refType = 2;
sourceTree = SOURCE_ROOT; sourceTree = SOURCE_ROOT;
}; };
8EBF3FA703F140A80059A3A7 = {
children = (
8EBF3FA503F140960059A3A7,
);
isa = PBXVariantGroup;
name = vlc.scriptTerminology;
refType = 4;
sourceTree = "<group>";
};
8EBF3FA803F140A80059A3A7 = {
fileRef = 8EBF3FA703F140A80059A3A7;
isa = PBXBuildFile;
settings = {
};
};
8ECA7E520563CD9500DFC000 = { 8ECA7E520563CD9500DFC000 = {
children = ( children = (
2A16E07E06C5074F00C87B09, 2A16E07E06C5074F00C87B09,
...@@ -2213,6 +2198,12 @@ ...@@ -2213,6 +2198,12 @@
settings = { settings = {
}; };
}; };
DCC9AE9507F77DE600394C42 = {
fileRef = 8EBF3FA503F140960059A3A7;
isa = PBXBuildFile;
settings = {
};
};
DCF358B9077F10BA007DB450 = { DCF358B9077F10BA007DB450 = {
children = ( children = (
DCF358BA077F10BA007DB450, DCF358BA077F10BA007DB450,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment