Skip to content

Commit c6ff5f5

Browse files
authored
Release version 1.1.0 (#2)
* Update language string to latest from Invision Community * Add version 1.1.0
1 parent ba82c3e commit c6ff5f5

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

dev/lang.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

33
$lang = array(
4-
'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.",
4+
'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.",
55
);

dev/setup/10001.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//<?php
2+
3+
/* To prevent PHP errors (extending class does not exist) revealing path */
4+
if (!\defined('\IPS\SUITE_UNIQUE_KEY')) {
5+
header((isset($_SERVER['SERVER_PROTOCOL']) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0') . ' 403 Forbidden');
6+
exit;
7+
}
8+
9+
/**
10+
* 1.1.0 Upgrade Code
11+
*/
12+
class ips_plugins_setup_upg_10001
13+
{
14+
/**
15+
* Step 1
16+
*
17+
* @return true
18+
*/
19+
public function step1()
20+
{
21+
return true;
22+
}
23+
}

dev/versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"10000": "1.0.0"
2+
"10000": "1.0.0",
3+
"10001": "1.1.0"
34
}

0 commit comments

Comments
 (0)