gloo 6.2.0 → 6.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abd0d2250aa7924305d71bc59ae30d88646ca4cca4464a15fb3acec674aa2635
4
- data.tar.gz: 928c5dd7dd0a90b28707ec6383958a2f70de344659c0e87a5de79ab37f2dde95
3
+ metadata.gz: 4dee07bac4d22ecf1656cd257c1f3ce3ad12ae334377263faf5918d7f1433e20
4
+ data.tar.gz: 6310ec46fcf0f0da75b874b984f169566c5d7d52ce4d21c2646134c5036e2205
5
5
  SHA512:
6
- metadata.gz: ffffea710873468a26f3fc01e02a141ed001d2960dedfb66288451119df7af7daf2814d530d4436988227c7c3dd21e2f442e8060c8a6f58b644484eef3b36362
7
- data.tar.gz: 4daa427abc7ebcb4f054911a1d4bc54b2a9d239cfa7f3aab85894bcd32ce79ffa62b18106ab7e6699bbe9599fe73b73e01270cf6cd774b81b85ad6b3c81ba295
6
+ metadata.gz: 1bd139bbe32577a3811247d7d04b0b270796a447b1179c4b62a337526d0c57b5610e0636fa08e8a6aad920d8435e372d7763038d6e759637adae92d9c6b7a3af
7
+ data.tar.gz: e4edde70f119ab15b319910ea1b128b6a862f8be723b27f7d9e8d7acf4c6cf98f8f6a62d2114203aedcaa9e89625b530d88334be65bd8d6ecf3d1221bc775ad9
data/README.md CHANGED
@@ -50,6 +50,12 @@ Read in order for a guided tour of the language, top to bottom, or jump straight
50
50
  11. [A Trivial Web App](docs/web_app.md) — a two-page "Hello World" built with the `gloo-web` core library
51
51
 
52
52
 
53
+ ## Related Projects
54
+
55
+ - [gloo sample code](https://github.com/ecrane/gloo_sample_code)
56
+ - [gloo core libraries](https://github.com/ecrane/gloo_core_libraries)
57
+
58
+
53
59
  ## License
54
60
 
55
61
  This project is licensed under the [MIT License](LICENSE.txt) — see
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 6.2.0
1
+ 6.2.1
data/lib/VERSION_NOTES CHANGED
@@ -1,3 +1,7 @@
1
+ 6.2.1 - 2026.08.25
2
+ - Fixes bug starting in app mode.
3
+
4
+
1
5
  6.2.0 - 2026.08.18
2
6
  - Adds light | dark mode option for terminal output.
3
7
  - Adds inline function invocation.
@@ -192,8 +192,16 @@ module Gloo
192
192
 
193
193
  #
194
194
  # Get the setting for the start_with file and open it.
195
+ # In App mode, the configured start_with setting is ignored -
196
+ # we always look for a start.gloo at the root of the app
197
+ # (project_path was already overridden to the app path).
195
198
  #
196
199
  def open_start_file
200
+ if @mode == Mode::APP
201
+ @persist_man.load( 'start' )
202
+ return
203
+ end
204
+
197
205
  name = @settings.start_with
198
206
  @persist_man.load( name ) if name
199
207
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gloo
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.0
4
+ version: 6.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Crane