Index: INSTALL.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/shadowbox/INSTALL.txt,v
retrieving revision 1.3.2.4.2.5.2.9
diff -u -p -r1.3.2.4.2.5.2.9 INSTALL.txt
--- INSTALL.txt	7 Jan 2010 18:56:46 -0000	1.3.2.4.2.5.2.9
+++ INSTALL.txt	23 Feb 2010 03:01:17 -0000
@@ -10,7 +10,7 @@ INSTALLATION
    [2] http://drupal.org/project/drush
 
 2. Download Shadowbox 3.0 from http://www.shadowbox-js.com/download.html.
-   Both build and source versions work fine.
+   Simply customize it to your needs, jQuery is suggested as the adapter, since it is included in Drupal.
 
 3. Extract the download and place it in sites/all/libraries so you have, for
    example: sites/all/libraries/shadowbox
@@ -28,10 +28,10 @@ drush dl shadowbox
 drush enable shadowbox
 mkdir sites/all/libraries
 cd sites/all/libraries
-wget http://freestylesystems.co.uk/sites/freestylesystems.co.uk/files/shadowbox-build-3.0rc1.tgz
-tar xf shadowbox-build-3.0rc1.tgz
-rm shadowbox-build-3.0rc1.tgz
-mv shadowbox-build-3.0rc1 shadowbox
+wget http://freestylesystems.co.uk/sites/freestylesystems.co.uk/files/shadowbox-3.0.1.tgz
+tar xf shadowbox-3.0.1.tgz
+rm shadowbox-3.0.1.tgz
+mv shadowbox-3.0.1 shadowbox
 
 
 OPTIONAL
Index: shadowbox.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/shadowbox/shadowbox.install,v
retrieving revision 1.1.2.5.2.3.2.6
diff -u -p -r1.1.2.5.2.3.2.6 shadowbox.install
--- shadowbox.install	3 Jan 2010 22:52:15 -0000	1.1.2.5.2.3.2.6
+++ shadowbox.install	23 Feb 2010 03:01:17 -0000
@@ -41,13 +41,12 @@ function shadowbox_requirements($phase) 
         'value' => $t('Third party !shadowbox software missing', array('!shadowbox' => l('Shadowbox', $shadowbox_site))),
       );
     }
-    elseif (!file_exists("$path/shadowbox.js") || !file_exists("$path/adapters/shadowbox-jquery.js")) {
+    elseif (!file_exists("$path/shadowbox.js")) {
       $requirements['shadowbox'] = array(
         'title' => $t('Shadowbox'),
-        'description' => $t('The <code>%path</code> path exists but it appears that the directory structure underneath is incorrect. Please check that <code>%shadowbox</code> and <code>%jquery</code> exist.',
+        'description' => $t('The <code>%path</code> path exists but it appears that the directory structure underneath is incorrect. Please check that <code>%shadowbox</code> exists.',
           array('%path' => $path,
             '%shadowbox' => "$path/shadowbox.js",
-            '%jquery' => "$path/adapters/shadowbox-jquery.js",
           )),
         'severity' => $phase == 'install' ? REQUIREMENT_WARNING : REQUIREMENT_ERROR,
         'value' => $t('3rd party Shadowbox software not properly installed'),
Index: shadowbox.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/shadowbox/shadowbox.module,v
retrieving revision 1.1.2.12.2.28.2.26
diff -u -p -r1.1.2.12.2.28.2.26 shadowbox.module
--- shadowbox.module	26 Jan 2010 15:58:41 -0000	1.1.2.12.2.28.2.26
+++ shadowbox.module	23 Feb 2010 03:01:18 -0000
@@ -353,48 +353,13 @@ function shadowbox_construct_header() {
   if (shadowbox_active() && variable_get('shadowbox_enabled', TRUE)) {
     // Add the base files.
     shadowbox_library_add_js('shadowbox.js');
-    shadowbox_library_add_js('adapters/shadowbox-jquery.js');
     shadowbox_library_add_css('shadowbox.css');
 
     $shadowbox_location = variable_get('shadowbox_location', SHADOWBOX_DEFAULT_PATH);
 
-    // Add the language file.
-    $language_file = "${shadowbox_location}/languages/shadowbox-$language->language.js";
-    if (file_exists($language_file)) {
-      drupal_add_js($language_file);
-    }
-    else {
-      // If a language file doesn't exist, default to English.
-      shadowbox_library_add_js('languages/shadowbox-en.js');
-    }
-
-    // Add the "player" files.
-    if (shadowbox_media_support('images')) {
-      shadowbox_library_add_js('players/shadowbox-img.js');
-    }
-    if (shadowbox_media_support('swf')) {
-      shadowbox_library_add_js('players/shadowbox-swf.js');
-    }
-    if (shadowbox_media_support('flv')) {
-      shadowbox_library_add_js('players/shadowbox-flv.js');
-    }
-    if (shadowbox_media_support('quicktime')) {
-      shadowbox_library_add_js('players/shadowbox-qt.js');
-    }
-    if (shadowbox_media_support('wmp') || shadowbox_media_support('qtwmp')) {
-      shadowbox_library_add_js('players/shadowbox-wmp.js');
-    }
-    if (shadowbox_media_support('iframe')) {
-      shadowbox_library_add_js('players/shadowbox-html.js');
-      shadowbox_library_add_js('players/shadowbox-iframe.js');
-    }
-
     // Print the JavaScript settings to the page.
     drupal_add_js(shadowbox_get_settings(), 'setting');
 
-    // Add the automatic image handling.
-    shadowbox_add_js('shadowbox_auto.js');
-
     // Initialize Shadowbox.
     drupal_add_js('
       Shadowbox.path = "' . base_path() . $shadowbox_location . '/";
