Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
shirosaidev committed Nov 3, 2023
1 parent 5737ef0 commit ac6b6cb
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 2 deletions.
5 changes: 5 additions & 0 deletions diskover-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Diskover-web v2 Community Edition Change Log

# [2.2.2] - 2023-11-02
### changed
- hide php notices, warnings, deprecated messages from nginx error log


# [2.2.1] - 2023-10-17
### fixed
- Windows issues
Expand Down
1 change: 1 addition & 0 deletions diskover-web/src/diskover/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
namespace diskover;
use diskover\Constants;
use ReflectionClass;
error_reporting(E_ALL & ~E_WARNING & ~E_NOTICE & ~E_DEPRECATED);

class Config
{
Expand Down
1 change: 1 addition & 0 deletions diskover-web/src/diskover/Diskover.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
session_start();
use Elasticsearch\ClientBuilder;
use Elasticsearch\Common\Exceptions\Missing404Exception;
error_reporting(E_ALL & ~E_WARNING & ~E_NOTICE & ~E_DEPRECATED);
require 'version.php';
require 'config_inc.php';

Expand Down
2 changes: 1 addition & 1 deletion diskover-web/src/diskover/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
*/

// diskover-web version
$VERSION = '2.2.1 community edition (ce)';
$VERSION = '2.2.2 community edition (ce)';
5 changes: 5 additions & 0 deletions diskover/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Diskover v2 Community Edition Change Log

# [2.2.2] - 2023-11-02
### changed
- version change only


# [2.2.1] - 2023-10-17
### changed
- version change only
Expand Down
2 changes: 1 addition & 1 deletion diskover/diskover.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
get_file_name, load_plugins, list_plugins, get_plugins_info, set_times, \
get_mem_usage, get_win_path, rem_win_path

version = '2.2.1 community edition (ce)'
version = '2.2.2 community edition (ce)'
__version__ = version

# Windows check
Expand Down

0 comments on commit ac6b6cb

Please sign in to comment.