jiveapps 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/app_generators/create/templates/app.xml +11 -4
- data/lib/jiveapps/version.rb +1 -1
- metadata +4 -4
data/History.txt
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
=== 1.0.2 2011-04-29
|
|
2
|
+
* Minor Enhancement
|
|
3
|
+
* update app template with new syntax for screenhots in <Link> tags. remove 'screenshot' and 'thumbnail' attributes from <ModulePrefs>
|
|
4
|
+
|
|
1
5
|
=== 1.0.1 2011-04-18
|
|
2
6
|
* Minor Enhancement
|
|
3
7
|
* app template - add type="html" to <Content> elements
|
|
@@ -5,9 +5,7 @@
|
|
|
5
5
|
author="<%= author_name = `git config --global user.name`.to_s.strip; author_name.length > 0 ? author_name : 'TODO: Author Name' %>"
|
|
6
6
|
author_affiliation="Company Name"
|
|
7
7
|
author_email="<%= author_email = `git config --global user.email`.to_s.strip; author_email.length > 0 ? author_email : 'TODO: Author Email' %>"
|
|
8
|
-
height="300"
|
|
9
|
-
thumbnail="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/thumbnail.png"
|
|
10
|
-
screenshot="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/screenshot.png">
|
|
8
|
+
height="300">
|
|
11
9
|
|
|
12
10
|
<!-- Commonly used features -->
|
|
13
11
|
<Require feature="dynamic-height" />
|
|
@@ -16,11 +14,20 @@
|
|
|
16
14
|
<Require feature="settitle"/>
|
|
17
15
|
<Require feature="views" />
|
|
18
16
|
|
|
19
|
-
<!-- Icons
|
|
17
|
+
<!-- Icons: 3 sizes, 16x16, 48x48, 128x128 -->
|
|
20
18
|
<Link rel="Icon" href="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/icon16.png" />
|
|
21
19
|
<Link rel="MediumIcon" href="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/icon48.png" />
|
|
22
20
|
<Link rel="LargeIcon" href="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/icon128.png" />
|
|
23
21
|
|
|
22
|
+
<!-- Screenshots: 600w x 400h, should include at least 1 and up to 5 -->
|
|
23
|
+
<!--
|
|
24
|
+
<Link rel="Screenshot" href="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/screenshot1.png" />
|
|
25
|
+
<Link rel="Screenshot" href="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/screenshot2.png" />
|
|
26
|
+
<Link rel="Screenshot" href="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/screenshot3.png" />
|
|
27
|
+
<Link rel="Screenshot" href="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/screenshot4.png" />
|
|
28
|
+
<Link rel="Screenshot" href="<%= Jiveapps::WEBHOST %>/apps/dev/<%= name %>/images/screenshot5.png" />
|
|
29
|
+
-->
|
|
30
|
+
|
|
24
31
|
<!-- OAuth Services: https://developers.jivesoftware.com/community/docs/DOC-1161 -->
|
|
25
32
|
<!--
|
|
26
33
|
<OAuth>
|
data/lib/jiveapps/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jiveapps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.0.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Scott Becker
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-04-
|
|
18
|
+
date: 2011-04-30 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: activesupport
|