-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/dev'
- Loading branch information
Showing
18 changed files
with
579 additions
and
152 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Notice about releases via Telegram | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: send telegram message on release | ||
uses: appleboy/telegram-action@master | ||
with: | ||
to: ${{ secrets.TELEGRAM_TO }} | ||
token: ${{ secrets.TELEGRAM_TOKEN }} | ||
message: | | ||
${{ github.event.repository.description }} <strong>v${{github.event.release.name}}</strong> released | ||
${{github.event.release.html_url}} | ||
${{ github.event.release.body }} | ||
format: html | ||
disable_web_page_preview: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Notice about review approved via Telegram | ||
|
||
on: | ||
pull_request_review: | ||
types: [ submitted ] | ||
|
||
jobs: | ||
|
||
build: | ||
if: github.event.review.state == 'approved' && toJSON(github.event.pull_request.requested_reviewers) == '[]' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Convert date format | ||
id: date | ||
run: echo "::set-output name=date::$(date -d "${{ github.event.pull_request.created_at }}" +"%Y-%m-%d")" | ||
- name: Send telegram message on review approved | ||
uses: appleboy/telegram-action@master | ||
with: | ||
to: ${{ secrets.TELEGRAM_PLUGINS_TO }} | ||
token: ${{ secrets.TELEGRAM_REVIEWER_TOKEN }} | ||
message: | | ||
💥🎉🎉🎉💥 Pull-request <a href="${{ github.event.pull_request.html_url }}"><strong>${{ github.event.pull_request.title }}</strong></a> | ||
submitted by <strong>${{ github.event.pull_request.user.login }}</strong> at <strong>${{ steps.date.outputs.date }}</strong> | ||
was <strong>approved</strong> and is ready to merge <a href="${{ github.event.pull_request.html_url }}">➡️</a> !!! | ||
format: html | ||
disable_web_page_preview: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
/* | ||
!/cleantalk.antispam | ||
!/cleantalk.antispam/* | ||
!/cleantalk.antispam/* | ||
!/.github | ||
!/.github/* |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,15 @@ | ||
<ul> | ||
<li>* Fix: all functions in the class CleantalkAntispam are now static for compatibility with php 8</li> | ||
<li>* New. Options. Use bitrix API.</li> | ||
<li>* New. default_option.php. Default settings file.</li> | ||
<li>* Imp. options.php. Handle fail messages.</li> | ||
<li>* Imp. options.php. Old COption legacy removed.</li> | ||
<li>* Fix. Uninstall. Complete deactivation now works correct.</li> | ||
<li>* New. Install. Use default options if no options set (new install or if complete deactivation performed)</li> | ||
<li>* Fix. After tests. Exclusion for SFW module settings that placed after uninstallation process.</li> | ||
<li>* Fix. After review. Old PHP version compatibility in access keys comparison.</li> | ||
<li>* Fix. SFW test. Now displays test page correct and always runs in the session.</li> | ||
<li>* Fix. Settings page. Remove spaces in URL exclusions.</li> | ||
<li>* Fix. Exclusions. Page with URL exclusions now do not load JS.</li> | ||
<li>* Fix. Description wrapped by list.</li> | ||
<li>* Fix. Getting fields any fixed.</li> | ||
<li>* fix: fixed warning in preg_match</li> | ||
<li>* Fix: fixed preg_match in OnBeforeResultAddHandler()</li> | ||
<li>* fixed static functions</li> | ||
<li>* Fix. Skip service request - iblock.vode component ajax loading.</li> | ||
<li>* Fix. SFW. Updating process fixed.</li> | ||
<li>* Mod: SFW send logs is fixed</li> | ||
<li>* Upd. SFW. Implemented personal list.</li> | ||
<li>* Fix. SFW. Update log on SFW pass fixed.</li> | ||
<li>* Fix. SFW update. Temp tables fixes.</li> | ||
<li>* Fix. SFW. Reduction to a number.</li> | ||
<li>* Fix. Settings. Getting Access Key message fixed.</li> | ||
<li>* New. Settings. Added option for sfw pass get param.</li> | ||
<li>* Fix. USER variable is null.</li> | ||
<li>* Fix. SFW. Writing logs fixed.</li> | ||
<li>* Fix. Frontend data. Mouse moving collecting removed.</li> | ||
<li>* New. Anti-spam. Bot detector support added.</li> | ||
<li>* Fix. Options. JS code fixed.</li> | ||
<li>* New. Options. Support different api key for multisite mode.</li> | ||
<li>* Fix. SFW. Testing block page fixed.</li> | ||
<li>* Fix. Settings. Multisite option getting fixed.</li> | ||
</ul> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,15 @@ | ||
<ul> | ||
<li>* Fix: all functions in the class CleantalkAntispam are now static for compatibility with php 8</li> | ||
<li>* New. Options. Use bitrix API.</li> | ||
<li>* New. default_option.php. Default settings file.</li> | ||
<li>* Imp. options.php. Handle fail messages.</li> | ||
<li>* Imp. options.php. Old COption legacy removed.</li> | ||
<li>* Fix. Uninstall. Complete deactivation now works correct.</li> | ||
<li>* New. Install. Use default options if no options set (new install or if complete deactivation performed)</li> | ||
<li>* Fix. After tests. Exclusion for SFW module settings that placed after uninstallation process.</li> | ||
<li>* Fix. After review. Old PHP version compatibility in access keys comparison.</li> | ||
<li>* Fix. SFW test. Now displays test page correct and always runs in the session.</li> | ||
<li>* Fix. Settings page. Remove spaces in URL exclusions.</li> | ||
<li>* Fix. Exclusions. Page with URL exclusions now do not load JS.</li> | ||
<li>* Fix. Description wrapped by list.</li> | ||
<li>* Fix. Getting fields any fixed.</li> | ||
<li>* fix: fixed warning in preg_match</li> | ||
<li>* Fix: fixed preg_match in OnBeforeResultAddHandler()</li> | ||
<li>* fixed static functions</li> | ||
<li>* Fix. Skip service request - iblock.vode component ajax loading.</li> | ||
<li>* Fix. SFW. Updating process fixed.</li> | ||
<li>* Mod: SFW send logs is fixed</li> | ||
<li>* Upd. SFW. Implemented personal list.</li> | ||
<li>* Fix. SFW. Update log on SFW pass fixed.</li> | ||
<li>* Fix. SFW update. Temp tables fixes.</li> | ||
<li>* Fix. SFW. Reduction to a number.</li> | ||
<li>* Fix. Settings. Getting Access Key message fixed.</li> | ||
<li>* New. Settings. Added option for sfw pass get param.</li> | ||
<li>* Fix. USER variable is null.</li> | ||
<li>* Fix. SFW. Writing logs fixed.</li> | ||
<li>* Fix. Frontend data. Mouse moving collecting removed.</li> | ||
<li>* New. Anti-spam. Bot detector support added.</li> | ||
<li>* Fix. Options. JS code fixed.</li> | ||
<li>* New. Options. Support different api key for multisite mode.</li> | ||
<li>* Fix. SFW. Testing block page fixed.</li> | ||
<li>* Fix. Settings. Multisite option getting fixed.</li> | ||
</ul> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?php | ||
$arModuleVersion = array( | ||
"VERSION" => "3.12.0", | ||
"VERSION_DATE" => "2023-19-10 10:00:00" | ||
"VERSION" => "3.13.0", | ||
"VERSION_DATE" => "2024-10-14 10:00:00", | ||
); |
This file contains 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
Oops, something went wrong.