Skip to content

Commit 85a989e

Browse files
Merge pull request #182 from richardTingle/#181-create-3.8-wiki-version
#181 create 3.8 wiki version
2 parents 1805d51 + b5eaff7 commit 85a989e

File tree

8 files changed

+15
-11
lines changed

8 files changed

+15
-11
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/build/
2+
/node_modules/
3+
/.cache/
4+
/.idea/

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ The project to store, edit, and generate the documentation of http://jmonkeyengi
99
The documentation `docs/modules/ROOT/pages` is editable :
1010

1111
* Online via github (Edit link located on the top navbar of the Wiki + Pull Request)
12-
* Offline with the Atom editor, which includes a built in previewer and code editor. see link:https://wiki.jmonkeyengine.org/docs-wiki/3.4/atom_editor.html[Atom Editor for Wiki Editing]
12+
* Offline with the Atom editor, which includes a built in previewer and code editor. see link:https://wiki.jmonkeyengine.org/docs-wiki/3.8/atom_editor.html[Atom Editor for Wiki Editing]
1313
* Any text editor and browser program of your choice.
1414
* Setting up your own local Node.js environment.
1515
16-
NOTE: Read the link:https://wiki.jmonkeyengine.org/docs-wiki/3.4/wiki_contributor.html[Wiki Contributions] document for details on how to contribute.
16+
NOTE: Read the link:https://wiki.jmonkeyengine.org/docs-wiki/3.8/wiki_contributor.html[Wiki Contributions] document for details on how to contribute.
1717

1818
== Build & Preview
1919

docs-wiki/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: docs-wiki
22
title: Wiki Contribution
3-
version: '3.4'
3+
version: '3.8'
44
start_page: ROOT:wiki_contributor.adoc
55
nav:
66
- modules/ROOT/nav.adoc

docs-wiki/modules/ROOT/pages/wiki_admin.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ When it's time to cut a new version for the wiki, the process is as follows.
140140
content:
141141
sources:
142142
- url: https://github.com/jMonkeyEngine/wiki.git
143-
branches: [HEAD, v3.3, v3.2]
143+
branches: [HEAD, v3.4, v3.3, v3.2]
144144
```
145145
.. Increment the version of the `antora.yml` file.
146146
+

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: docs
22
title: JME
3-
version: '3.4'
3+
version: '3.8'
44
start_page: ROOT:documentation.adoc
55
nav:
66
- modules/ROOT/nav.adoc

docs/modules/ROOT/pages/getting-started/maven.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ repositories {
5151
mavenCentral()
5252
}
5353
54-
def jme3 = [v:'3.5.2-stable', g:'org.jmonkeyengine']
54+
def jme3 = [v:'3.8.1-stable', g:'org.jmonkeyengine']
5555
dependencies {
5656
implementation "${jme3.g}:jme3-core:${jme3.v}"
5757
runtimeOnly "${jme3.g}:jme3-desktop:${jme3.v}"
@@ -65,7 +65,7 @@ dependencies {
6565
----
6666
<properties>
6767
<jme3_g>org.jmonkeyengine</jme3_g>
68-
  <jme3_v>3.5.2-stable</jme3_v>
68+
  <jme3_v>3.8.1-stable</jme3_v>
6969
</properties>
7070
7171
<repositories>
@@ -122,7 +122,7 @@ configurations.all {
122122
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
123123
}
124124
125-
def jme3 = [v:'3.7.0-SNAPSHOT', g:'org.jmonkeyengine']
125+
def jme3 = [v:'3.8.1-SNAPSHOT', g:'org.jmonkeyengine']
126126
----
127127

128128
=== Maven
@@ -133,7 +133,7 @@ def jme3 = [v:'3.7.0-SNAPSHOT', g:'org.jmonkeyengine']
133133
<jme3_g>org.jmonkeyengine</jme3_g>
134134
  <jme3_v>3.7.0-SNAPSHOT</jme3_v>
135135
</properties>
136-
136+
137137
<repositories>
138138
<repository>
139139
<id>mvnrepository</id>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": "lib"
99
},
1010
"scripts": {
11-
"buildDocs": "$(npm bin)/antora --stacktrace wiki-playbook.yml"
11+
"buildDocs": "npx antora --stacktrace wiki-playbook.yml"
1212
},
1313
"private": true,
1414
"repository": {

wiki-playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ site:
66
content:
77
sources:
88
- url: https://github.com/jMonkeyEngine/wiki.git
9-
branches: [HEAD, v3.3, v3.2]
9+
branches: [HEAD, v3.4, v3.3, v3.2]
1010
start_path: docs
1111
- url: https://github.com/jMonkeyEngine/wiki-ui
1212
branches: HEAD

0 commit comments

Comments
 (0)