Skip to content

Commit

Permalink
Remove updater
Browse files Browse the repository at this point in the history
  • Loading branch information
bdmehedi committed Dec 26, 2023
1 parent 57a9e33 commit c9bd3cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AppSero Client
### Version 1.2.5
### Version 1.3.0

- [Installation](#installation)
- [Insights](#insights)
Expand Down Expand Up @@ -78,9 +78,6 @@ function appsero_init_tracker_appsero_test() {
// Active insights
$client->insights()->init();

// Active automatic updater
$client->updater();

// Active license page and checker
$args = array(
'type' => 'options',
Expand All @@ -99,6 +96,10 @@ Make sure you call this function directly, never use any action hook to call thi
> For plugins example code that needs to be used on your main plugin file.
> For themes example code that needs to be used on your themes `functions.php` file.
## Using the Updater (to manage Pro plugin updates)
> By default the Appsero client doesn't include Updater functionalities in this client. If you want to manage updates for your premium plugins, please include [the Updater](https://github.com/Appsero/updater) separately inside your product

## More Usage

```php
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Client {
*
* @var string
*/
public $version = '1.2.5';
public $version = '1.3.0';

/**
* Hash identifier of the plugin
Expand Down

0 comments on commit c9bd3cb

Please sign in to comment.