Skip to content

Commit

Permalink
Release version 1.1.0 (#2)
Browse files Browse the repository at this point in the history
* Change naming and coding conventions (#1)
* Add version 1.1.0
  • Loading branch information
runar committed Jan 23, 2022
1 parent 5715f4e commit 0a8aa09
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
23 changes: 23 additions & 0 deletions dev/setup/10001.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
//<?php

/* To prevent PHP errors (extending class does not exist) revealing path */
if (!\defined('\IPS\SUITE_UNIQUE_KEY')) {
header((isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0') . ' 403 Forbidden');
exit;
}

/**
* 1.1.0 Upgrade Code
*/
class ips_plugins_setup_upg_10001
{
/**
* Step 1
*
* @return true
*/
public function step1()
{
return true;
}
}
3 changes: 2 additions & 1 deletion dev/versions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"10000": "1.0.0"
"10000": "1.0.0",
"10001": "1.1.0"
}

0 comments on commit 0a8aa09

Please sign in to comment.