ruflet 0.0.17 → 0.0.19

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: 92e604b976fa35dca0232bb0612798b92cc77da2df6d3a90bca9442718a40cc5
4
- data.tar.gz: 99ae439ad39adda4a48a9ac9289a3daa29ee934be9dad714ce29be643fcee5cc
3
+ metadata.gz: 699753a3740cce69a71d67b59cdcd5d8e60ee55d292c3f84b989b660f6e1935a
4
+ data.tar.gz: b8162cd3c319d7afcde7dcb3c50c6359d2c2596aec2acbbfef12368fe373132c
5
5
  SHA512:
6
- metadata.gz: d07ee36f5bbf6d46640b6584cb766ec53f78f7a91106612cbf372db109550e32114f8aaa35debb1add616c53404b1dc22fe1b2e571d0ce89a6f46d233c76d800
7
- data.tar.gz: ed7f771022ac501f0f672c23fe40378a5d2ecacca5acc1b5e1df1f560ad3f6800b72490a84828b69922e30c0f074f35e20e53d83bd413ae38769afb93467c6fd
6
+ metadata.gz: 12d669e64d6f397efe4c515fb258c147f243424a8b344f686e3787106086753e37af779e227dd4dc56ef6e3c80a5d68de15fab0c2b0ec95418585cd648e39478
7
+ data.tar.gz: c70d3335b5ddc83ca1d3f4d1f1b8d4bb91044ed56a667dbc45e8ab3c182ad5010d281801672307aaaaf63e35f83720c5a00b52370bb7153ee77345561c32c755
data/README.md CHANGED
@@ -30,12 +30,27 @@ ruflet run [scriptname|path] [--web|--desktop] [--port PORT]
30
30
  ruflet debug [scriptname|path]
31
31
  ruflet devices
32
32
  ruflet emulators
33
- ruflet doctor
33
+ ruflet doctor [--fix]
34
34
  ruflet update [web|desktop|all] [--check] [--force]
35
35
  ruflet build <apk|android|ios|aab|web|macos|windows|linux> [--self]
36
36
  ruflet install [--device DEVICE_ID]
37
37
  ```
38
38
 
39
+ Commands that create, diagnose, or build a Flutter client compare the cached
40
+ template revision with `AdamMusa/ruflet-template` on GitHub. When `main`
41
+ changes, Ruflet downloads the new template and refreshes its managed
42
+ `build/client` automatically. If GitHub is unavailable, Ruflet keeps using the
43
+ last complete cached template. Use `ruflet doctor --fix` to force a clean
44
+ template download.
45
+
46
+ Desktop and web runs use the completed `prebuild-main` client channel by
47
+ default. Ruflet checks the channel at most once every six hours and downloads
48
+ a new platform build only after every required prebuild job has finished.
49
+ Use `ruflet update --force` for an immediate refresh. Set
50
+ `RUFLET_CLIENT_CHANNEL=stable` to stay on versioned release assets,
51
+ `RUFLET_CLIENT_UPDATE_INTERVAL=0` to check on every run, or
52
+ `RUFLET_CLIENT_AUTO_UPDATE=0` to disable automatic client updates.
53
+
39
54
  Run `ruflet install` without `--device` to choose from a numbered list of
40
55
  connected devices. Pass `--device DEVICE_ID` to skip the prompt.
41
56