Skip to content
This repository was archived by the owner on Jul 2, 2020. It is now read-only.

Commit 4f083c0

Browse files
committed
Release 3.1.0
1 parent 53a227e commit 4f083c0

File tree

15 files changed

+54
-254
lines changed

15 files changed

+54
-254
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# generator-oraclejet 3.0.0
1+
# generator-oraclejet 3.1.0
22

33
## About the generator
44
This Yeoman generator for Oracle JET lets you quickly set up a project for use as a web application or hybrid mobile application for Android, iOS or Windows 10.
55

66
This is an open source project maintained by Oracle Corp.
77

88
## Installation
9-
For step-by-step instructions on using Yeoman and this generator to build an Oracle JET application, including possible pre-requisites for installation, please see the [Oracle JET Developers Guide](http://docs.oracle.com/middleware/jet300/jet/)
9+
For step-by-step instructions on using Yeoman and this generator to build an Oracle JET application, including possible pre-requisites for installation, please see the [Oracle JET Developers Guide](http://docs.oracle.com/middleware/jet310/jet/)
1010
```bash
1111
npm install -g generator-oraclejet
1212
```
1313

1414
## Usage
15-
Once you have the generator installed, the following commands will scaffold up a JET based application. See the [Oracle JET Developers Guide](http://docs.oracle.com/middleware/jet300/jet/) for information about all of the available command line options as well as details on pre-requisites for installation.
15+
Once you have the generator installed, the following commands will scaffold up a JET based application. See the [Oracle JET Developers Guide](http://docs.oracle.com/middleware/jet310/jet/) for information about all of the available command line options as well as details on pre-requisites for installation.
1616

1717
```bash
1818
# Generate a web application with default blank template

RELEASENOTES.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Release Notes for generator-oraclejet ##
22

3+
### 3.1.0
4+
5+
* No changes
6+
37
### 3.0.0
48
* Replaced bower with npm
59
* SASS tasks now run in CCA directories also
@@ -9,3 +13,13 @@
913
* Added gap://ready to inserted CSP meta tag for iOS 10 compatibility
1014
* Requires Node.js v4.0.0+ and npm v3.0.0+
1115
* Known issue: grunt serve to iOS device requires developer profile
16+
17+
### 2.3.0
18+
* Allow local files as scaffolding starting templates
19+
* Provide the ability to specify the Windows hybrid platform architecture
20+
* Better handling for determining which browser is launched when serving a hybrid app
21+
* Please use the latest version of yeoman as some earlier versions can cause issues with scaffolding
22+
23+
### 2.2.0
24+
25+
* Provide help page for generator

common/template/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const _WEB = 'web';
1818

1919
const BLANK_TEMPLATE = blankTemplate.BLANK_TEMPLATE;
2020

21-
const _TEMPLATES_NPM_URL = 'oraclejet-templates@~3.0.0';
21+
const _TEMPLATES_NPM_URL = 'oraclejet-templates@~3.1.0';
2222

2323
const _TEMPLATES = [BLANK_TEMPLATE, 'basic', 'navbar', 'navdrawer'];
2424

generators/app/templates/blank/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<meta name="apple-mobile-web-app-title" content="Oracle JET">
3333

3434
<!-- injector:theme -->
35-
<link rel="stylesheet" href="css/libs/oj/v3.0.0/alta/oj-alta-min.css" id="css" />
35+
<link rel="stylesheet" href="css/libs/oj/v3.1.0/alta/oj-alta-min.css" id="css" />
3636
<!-- endinjector -->
3737

3838
<!-- This is where you would add any app specific styling -->

generators/app/templates/blank/js/main-release-paths.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"promise": "libs/es6-promise/es6-promise.min",
66
"hammerjs": "libs/hammer/hammer-2.0.8.min",
77
"ojdnd": "libs/dnd-polyfill/dnd-polyfill-1.0.0.min",
8-
"ojs": "libs/oj/v3.0.0/min",
9-
"ojL10n": "libs/oj/v3.0.0/ojL10n",
10-
"ojtranslations": "libs/oj/v3.0.0/resources",
8+
"ojs": "libs/oj/v3.1.0/min",
9+
"ojL10n": "libs/oj/v3.1.0/ojL10n",
10+
"ojtranslations": "libs/oj/v3.1.0/resources",
1111
"text": "libs/require/text",
1212
"signals": "libs/js-signals/signals.min",
1313
"customElements": "libs/webcomponents/CustomElements.min",

generators/app/templates/blank/js/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ requirejs.config(
2323
'promise': 'libs/es6-promise/es6-promise',
2424
'hammerjs': 'libs/hammer/hammer-2.0.8',
2525
'ojdnd': 'libs/dnd-polyfill/dnd-polyfill-1.0.0',
26-
'ojs': 'libs/oj/v3.0.0/debug',
27-
'ojL10n': 'libs/oj/v3.0.0/ojL10n',
28-
'ojtranslations': 'libs/oj/v3.0.0/resources',
26+
'ojs': 'libs/oj/v3.1.0/debug',
27+
'ojL10n': 'libs/oj/v3.1.0/ojL10n',
28+
'ojtranslations': 'libs/oj/v3.1.0/resources',
2929
'text': 'libs/require/text',
3030
'signals': 'libs/js-signals/signals',
3131
'customElements': 'libs/webcomponents/CustomElements',

generators/app/templates/common/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"homepage": "http://www.oraclejet.org"
88
},
99
"dependencies": {
10-
"oraclejet": "~3.0.0"
10+
"oraclejet": "~3.1.0"
1111
},
1212
"devDependencies": {
1313
"grunt": "^1.0.1",
14-
"grunt-oraclejet": "~3.0.0",
14+
"grunt-oraclejet": "~3.1.0",
1515
"load-grunt-config": "0.19.2",
16-
"oraclejet-tooling": "~3.0.0"
16+
"oraclejet-tooling": "~3.1.0"
1717
},
1818
"engines": {
1919
"node": ">=0.10.0"

generators/hybrid/templates/blank/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<link rel="icon" href="css/images/favicon.ico" type="image/x-icon" />
3131

3232
<!-- injector:theme -->
33-
<link rel="stylesheet" href="css/libs/oj/v3.0.0/alta/oj-alta-min.css" id="css" />
33+
<link rel="stylesheet" href="css/libs/oj/v3.1.0/alta/oj-alta-min.css" id="css" />
3434
<!-- endinjector -->
3535

3636
<!-- This is where you would add any app specific styling -->

generators/hybrid/templates/blank/js/main-debug-paths-windows.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"promise": "libs/es6-promise/es6-promise",
66
"hammerjs": "libs/hammer/hammer-2.0.8",
77
"ojdnd": "libs/dnd-polyfill/dnd-polyfill-1.0.0",
8-
"ojs": "libs/oj/v3.0.0/debug",
9-
"ojL10n": "libs/oj/v3.0.0/ojL10n",
10-
"ojtranslations": "libs/oj/v3.0.0/resources",
11-
"ojtranslations/nls/ojtranslations": "libs/oj/v3.0.0/resources/root/ojtranslations",
12-
"ojtranslations/nls/localeElements": "libs/oj/v3.0.0/resources/root/localeElements",
13-
"ojtranslations/nls/timezoneData": "libs/oj/v3.0.0/resources/root/timezoneData",
8+
"ojs": "libs/oj/v3.1.0/debug",
9+
"ojL10n": "libs/oj/v3.1.0/ojL10n",
10+
"ojtranslations": "libs/oj/v3.1.0/resources",
11+
"ojtranslations/nls/ojtranslations": "libs/oj/v3.1.0/resources/root/ojtranslations",
12+
"ojtranslations/nls/localeElements": "libs/oj/v3.1.0/resources/root/localeElements",
13+
"ojtranslations/nls/timezoneData": "libs/oj/v3.1.0/resources/root/timezoneData",
1414
"text": "libs/require/text",
1515
"signals": "libs/js-signals/signals",
1616
"customElements": "libs/webcomponents/CustomElements.min",

generators/hybrid/templates/blank/js/main-release-paths-windows.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"promise": "libs/es6-promise/es6-promise.min",
66
"hammerjs": "libs/hammer/hammer-2.0.8.min",
77
"ojdnd": "libs/dnd-polyfill/dnd-polyfill-1.0.0.min",
8-
"ojs": "libs/oj/v3.0.0/min",
9-
"ojL10n": "libs/oj/v3.0.0/ojL10n",
10-
"ojtranslations": "libs/oj/v3.0.0/resources",
11-
"ojtranslations/nls/ojtranslations": "libs/oj/v3.0.0/resources/root/ojtranslations",
12-
"ojtranslations/nls/localeElements": "libs/oj/v3.0.0/resources/root/localeElements",
13-
"ojtranslations/nls/timezoneData": "libs/oj/v3.0.0/resources/root/timezoneData",
8+
"ojs": "libs/oj/v3.1.0/min",
9+
"ojL10n": "libs/oj/v3.1.0/ojL10n",
10+
"ojtranslations": "libs/oj/v3.1.0/resources",
11+
"ojtranslations/nls/ojtranslations": "libs/oj/v3.1.0/resources/root/ojtranslations",
12+
"ojtranslations/nls/localeElements": "libs/oj/v3.1.0/resources/root/localeElements",
13+
"ojtranslations/nls/timezoneData": "libs/oj/v3.1.0/resources/root/timezoneData",
1414
"text": "libs/require/text",
1515
"signals": "libs/js-signals/signals.min",
1616
"customElements": "libs/webcomponents/CustomElements.min",

0 commit comments

Comments
 (0)