j1-template 2023.3.2 → 2023.3.3
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.
- checksums.yaml +4 -4
- data/assets/data/panel.html +3 -3
- data/assets/themes/j1/adapter/js/j1.js +10 -2
- data/assets/themes/j1/core/css/icon-fonts/mdib.css +54 -0
- data/assets/themes/j1/core/css/icon-fonts/mdib.min.css +1 -1
- data/lib/j1/version.rb +1 -1
- data/lib/starter_web/Gemfile +2 -2
- data/lib/starter_web/README.md +5 -5
- data/lib/starter_web/_config.yml +1 -1
- data/lib/starter_web/_data/j1_config.yml +1 -1
- data/lib/starter_web/_data/modules/lazyLoader.yml +1 -1
- data/lib/starter_web/_data/modules/navigator_menu.yml +24 -73
- data/lib/starter_web/_data/modules/nbinteract.yml +445 -490
- data/lib/starter_web/_data/templates/feed.xml +1 -1
- data/lib/starter_web/_plugins/index/lunr.rb +1 -1
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/pages/public/tools/cheatsheet/gem.adoc +4 -4
- data/lib/starter_web/pages/public/tools/cheatsheet/git.adoc +13 -13
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +2 -2
@@ -57,7 +57,7 @@
|
|
57
57
|
<id>{{ page.url | absolute_url | xml_escape }}</id>
|
58
58
|
<post_limited>{{ limit_posts }}</post_limited>
|
59
59
|
<template_name>J1 Theme</template_name>
|
60
|
-
<template_version>2023.3.
|
60
|
+
<template_version>2023.3.3</template_version>
|
61
61
|
|
62
62
|
{% assign title = site.title | default: site.name %}
|
63
63
|
{% if page.collection != "posts" %}
|
@@ -120,7 +120,7 @@ Add this line to your application's Gemfile:
|
|
120
120
|
|
121
121
|
[source, sh]
|
122
122
|
----
|
123
|
-
gem 'j1_template', '~> 2023.3.
|
123
|
+
gem 'j1_template', '~> 2023.3.3'
|
124
124
|
----
|
125
125
|
|
126
126
|
and install the locally created RubGem as:
|
@@ -172,14 +172,14 @@ bla ... specific version ...
|
|
172
172
|
|
173
173
|
[source, sh]
|
174
174
|
----
|
175
|
-
gem install j1-template -v 2023.3.
|
175
|
+
gem install j1-template -v 2023.3.3 --user-install --no-document
|
176
176
|
----
|
177
177
|
|
178
178
|
You can also use *version* comparators like `>=` or `~>`.
|
179
179
|
|
180
180
|
[source, sh]
|
181
181
|
----
|
182
|
-
gem install j1-template -v "~> 2023.3.
|
182
|
+
gem install j1-template -v "~> 2023.3.3" --user-install --no-document
|
183
183
|
----
|
184
184
|
|
185
185
|
=== Install from a different source
|
@@ -188,7 +188,7 @@ bla ... specific version ...
|
|
188
188
|
|
189
189
|
[source, sh]
|
190
190
|
----
|
191
|
-
gem install j1-template -v 2023.3.
|
191
|
+
gem install j1-template -v 2023.3.3 --source 'https://gem.fury.io/jekyll-one-org/' --user-install --no-document
|
192
192
|
----
|
193
193
|
|
194
194
|
[role="mt-5"]
|
@@ -1076,28 +1076,28 @@ git rm -rf --cached . && git add .
|
|
1076
1076
|
git commit -am "Cleanup files"
|
1077
1077
|
----
|
1078
1078
|
|
1079
|
-
|`commit -am "New version 2023.3.
|
1079
|
+
|`commit -am "New version 2023.3.3"`
|
1080
1080
|
|Commit a specific *version*.
|
1081
1081
|
|
|
1082
1082
|
[source, sh]
|
1083
1083
|
----
|
1084
|
-
git commit -am "New version 2023.3.
|
1084
|
+
git commit -am "New version 2023.3.3"
|
1085
1085
|
----
|
1086
1086
|
|
1087
|
-
|`commit --allow-empty -m "New version 2023.3.
|
1087
|
+
|`commit --allow-empty -m "New version 2023.3.3"`
|
1088
1088
|
|Commit a specific version but *no* (file) changes applied.
|
1089
1089
|
|
|
1090
1090
|
[source, sh]
|
1091
1091
|
----
|
1092
|
-
git commit --allow-empty -m "New version 2023.3.
|
1092
|
+
git commit --allow-empty -m "New version 2023.3.3"
|
1093
1093
|
----
|
1094
1094
|
|
1095
|
-
|`commit -am "Prepare new version 2023.3.
|
1095
|
+
|`commit -am "Prepare new version 2023.3.3"`
|
1096
1096
|
|Commit a specific version but changes are *not* final.
|
1097
1097
|
|
|
1098
1098
|
[source, sh]
|
1099
1099
|
----
|
1100
|
-
git commit -am "Prepare new version 2023.3.
|
1100
|
+
git commit -am "Prepare new version 2023.3.3"
|
1101
1101
|
----
|
1102
1102
|
|
1103
1103
|
|`commit -am "Latest files"`
|
@@ -1346,14 +1346,14 @@ Use the git 'tag' command with the '-d' option
|
|
1346
1346
|
|
1347
1347
|
[source, sh]
|
1348
1348
|
----
|
1349
|
-
git tag -d v2023.3.
|
1349
|
+
git tag -d v2023.3.3
|
1350
1350
|
----
|
1351
1351
|
|
1352
1352
|
.from remote
|
1353
1353
|
|
1354
1354
|
[source, sh]
|
1355
1355
|
----
|
1356
|
-
git push -d origin v2023.3.
|
1356
|
+
git push -d origin v2023.3.3
|
1357
1357
|
----
|
1358
1358
|
|
1359
1359
|
|
@@ -1364,7 +1364,7 @@ then push the new tag
|
|
1364
1364
|
|
1365
1365
|
[source, sh]
|
1366
1366
|
----
|
1367
|
-
git tag -a v2023.3.
|
1367
|
+
git tag -a v2023.3.3 -m "v2023.3.3"
|
1368
1368
|
git push origin --tags
|
1369
1369
|
----
|
1370
1370
|
|
@@ -1396,10 +1396,10 @@ Then:
|
|
1396
1396
|
[source, sh]
|
1397
1397
|
----
|
1398
1398
|
git commit -am "Cleanup files"
|
1399
|
-
git commit -am "New version 2023.3.
|
1400
|
-
git commit --allow-empty -m "New version 2023.3.
|
1401
|
-
git commit -am "Prepare new version 2023.3.
|
1402
|
-
git commit -am "Latest files of version 2023.3.
|
1399
|
+
git commit -am "New version 2023.3.3"
|
1400
|
+
git commit --allow-empty -m "New version 2023.3.3"
|
1401
|
+
git commit -am "Prepare new version 2023.3.3"
|
1402
|
+
git commit -am "Latest files of version 2023.3.3"
|
1403
1403
|
----
|
1404
1404
|
|
1405
1405
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: j1-template
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2023.3.
|
4
|
+
version: 2023.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- juergen_jekyll_one
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|