@mudlet/mudlet-web 0.4.0 → 0.4.2
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.
- package/dist-lib/import/defaultPackages.d.ts +9 -5
- package/dist-lib/import/defaults/mpkg/mpkg.mpackage +0 -0
- package/dist-lib/index.js +2608 -2504
- package/dist-lib/map/xmlMapImport.d.ts +29 -0
- package/dist-lib/mud/connection/PingTracker.d.ts +13 -0
- package/dist-lib/mud/protocol/byteString.d.ts +33 -0
- package/dist-lib/mud/protocol/gmcp.d.ts +12 -7
- package/dist-lib/mud/protocol/index.d.ts +2 -1
- package/dist-lib/mud/protocol/mnes.d.ts +32 -9
- package/dist-lib/ui/sound/SoundManager.d.ts +16 -4
- package/dist-lib/ui/video/VideoManager.d.ts +6 -1
- package/dist-lib/utils/githubRawUrl.d.ts +1 -0
- package/package.json +1 -1
|
@@ -37,11 +37,15 @@ export declare const ALL_DEFAULTS: DefaultPackage[];
|
|
|
37
37
|
* map view and only a mapper calls it, so a profile with no mapper never follows
|
|
38
38
|
* the player — and two mappers would both fire on the same movement.
|
|
39
39
|
*
|
|
40
|
-
* The starter UI is the one conditional pick: Mudlet skips it for players
|
|
41
|
-
* aren't new (`experiencedMudletPlayer()` — any profile folder older than
|
|
42
|
-
* months) because "veterans will have their own layouts already", and for
|
|
43
|
-
* whose own loader installs a full interface. mudix has no profile-age
|
|
44
|
-
* mirror the first, so `createdAt` stands in for it — see
|
|
40
|
+
* The starter UI is the one host-conditional pick: Mudlet skips it for players
|
|
41
|
+
* who aren't new (`experiencedMudletPlayer()` — any profile folder older than
|
|
42
|
+
* six months) because "veterans will have their own layouts already", and for
|
|
43
|
+
* games whose own loader installs a full interface. mudix has no profile-age
|
|
44
|
+
* signal to mirror the first, so `createdAt` stands in for it — see
|
|
45
|
+
* {@link isNewProfile}.
|
|
46
|
+
*
|
|
47
|
+
* mpkg is the one *build*-conditional pick, and for the reason Mudlet has:
|
|
48
|
+
* see {@link TEST_BUILD}.
|
|
45
49
|
*/
|
|
46
50
|
export declare function stockDefaults(host?: string, conn?: {
|
|
47
51
|
createdAt?: string;
|
|
Binary file
|