This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Patch for the Macromedia Director runtime used by ZeroZone so it can run on systems with > 2 GiB of RAM. | |
| # | |
| # This patch has been confirmed to work with: | |
| # - The Italian version of ZeroZone, where the runtime is located at ./ZZnet/ZZnet.exe | |
| # - The English version of ZeroZone, where the runtime is located at ./GalaxyNet.exe | |
| # | |
| # The same patch may also apply to other games built with the same Macromedia Director runtime. | |
| # There are several version of the runtime, see https://wiki.scummvm.org/index.php?title=Director/Versions | |
| # This patch only applies to versions equal or similar to the one used in ZeroZone. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from skpy import Skype, SkypeSingleChat, SkypeGroupChat | |
| import time | |
| import getpass | |
| import argparse | |
| import sys | |
| def delete_all_messages(username, password, skip_confirmation=False): | |
| try: | |
| # Login to Skype | |
| print("Logging in to Skype...") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- src/Pro/Filtering/FilteringCPT.php 2023-12-16 13:44:38.817294704 +0000 | |
| +++ src/Pro/Filtering/FilteringCPT.php 2023-12-16 13:44:19.792826943 +0000 | |
| @@ -211,8 +211,8 @@ | |
| self::$variationWhere = $this->queryWhere; | |
| } | |
| - $joinString = " INNER JOIN {$this->wpdb->postmeta} AS $table_alias ON ({$this->wpdb->posts}.ID = $table_alias.post_id) "; | |
| - $whereString = "$table_alias.meta_key = '$meta_key' AND $table_alias.meta_value " . $this->parse_condition($rule, false, $table_alias); | |
| + $joinString = " INNER JOIN {$this->wpdb->postmeta} AS $table_alias ON ({$this->wpdb->posts}.ID = $table_alias.post_id AND $table_alias.meta_key = '$meta_key') "; | |
| + $whereString = "$table_alias.meta_value " . $this->parse_condition($rule, false, $table_alias); |