Skip to content

Commit

Permalink
Release version 1.1.0 (#2)
Browse files Browse the repository at this point in the history
* Update language string to latest from Invision Community
* Add version 1.1.0
  • Loading branch information
runar authored Jan 22, 2022
1 parent ba82c3e commit c6ff5f5
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev/lang.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

$lang = array(
'editor_embeds_desc' => "Certain content can be automatically embedded. For example, if a user posts a link to a video on YouTube or Vimeo the video can be embedded into the post. Changing this setting won't apply to existing content.<br>Links from the following sites are supported: College Humor, Coub, Dailymotion, Facebook, Flickr, Funny Or Die, Gfycat, Google Maps, Hulu, Instagram, ReverbNation, Screencast.com, SmugMug, SoundCloud, Spotify, Streamable, TED, Twitch, Twitter, Ustream, Vimeo, Vine, Wistia, YouTube, and internal links to content within the community.",
'editor_embeds_desc' => "Certain content can be automatically embedded. For example, if a user posts a link to a video on YouTube or Vimeo the video can be embedded into the post. Changing this setting won't apply to existing content.<br>Links from the following sites are supported: College Humor, Coub, Dailymotion, Facebook, Flickr, Funny Or Die, Gfycat, Google Maps, Hulu, Instagram, ReverbNation, Screencast.com, SmugMug, SoundCloud, Spotify, Streamable, TED, Twitter, Ustream, Vimeo, Vine, Wistia, YouTube, and internal links to content within the community.",
);
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 c6ff5f5

Please sign in to comment.