Add draft blog posts
All checks were successful
Deploy / Deploy Website (push) Successful in 30s

This commit is contained in:
Joshua Goins 2025-06-30 16:08:07 -04:00
parent edafb224ef
commit c9f150f9ba
2 changed files with 141 additions and 0 deletions

View file

@ -0,0 +1,46 @@
---
title: "Astra & Novus Status Update: July 2025"
date: 2025-06-30
draft: true
tags:
- Open Source
- FFXIV
- Modding
toc: true
series:
- Astra & Novus Status Update
summary: "PLACEHOLDER"
bluesky_url: ""
mastodon_url: ""
draft: true
---
# Astra
I fixed an issue with generating machine IDs, since SqEx became more stringent about them recently. In turn, I also forced myself to tag the 0.7 release so be sure to update! You can view the full changelog here.
# Novus
I have been slowly working on fixing the renderer for Dawntrail, and managed to get it to render diffuse again:
I also fixed Flatpak builds on the CI, which are available if you don't want to go through the pain of compiling Novus yourself.
I fixed various things in Data Explorer, especially around searching. Searching no longer causes extreme lag, and children now show up again:
# Auracite
Auracite can now extract classjob levels, their EXP and their IDs.
With the Dalamud plugin, Auracite can now extract data from most of your inventory containers.
With the Dalamud plugin, Auracite can now extract the raw unlock link and aetheryte bitmask flags.
It's now possible to manually enter your Lodestone ID on the website, in case searching by name alone doesn't work.
# Physis
Improved reliability when reading certain Dawntrail-era shader packages.
Improved EXD write support, especially around multiple packed boolean columns. It's now possible to modify sheets like `TerritoryType`, which I showcased in this blog post.
Physis 0.5 is now tagged and released on crates.io! I have a more detailed changelog here. libphysis 0.5 is also released alongside it.

View file

@ -0,0 +1,95 @@
---
title: "Kawari Progress Report 12 - Shopping"
date: 2025-06-30
draft: true
tags:
- FFXIV
- Reverse Engineering
series:
- Kawari Progress Report
summary: "PLACEHOLDER"
bluesky_url: ""
mastodon_url: ""
draft: true
---
# Features
Currency (gil for now) and EXP are now supported and sent to the client.
Thanks to thedax, the Aetheryte and Aethernet network is mostly functional - save for the starting town's Aetherytes which are hidden right now.
Unlocks (Actions, Emotes, etc), unlocked Aetherytes EXP, item glamours and condition are now persistent and is saved on log out.
The inn bed is now 99% functional, save for the waking up animation.
# Multiplayer
Emotes are now shown from other players, but they do not interrupt yet:
Sheathing and unsheathing weapons are also shown, but the animation does not play yet:
The various display flags for equipment (like hiding headgear) is now shown to other players, and yourself.
# Commands
You can now reload scripts like `Global.lua` that are loaded on start-up with the new `!reload` command.
I added the `!finishevent` command to forcefully tell the client to stop it's current event. This is useful if you got stuck while talking to something.
thedax added support for the `//gm teri_info` command for listing lots of useful information about your current zone.
I added support for the `//gm gil` command.
GM commands are now ported to Lua, this will make it easier to add even more GM commands in the future. It also helped consolidate a lot of command implementation details.
I added the `!item <name>` debug command to give you an item by name, like our `!equip` command.
# Scripting
I added a generic Aetheryte script, and thedax tirelessly worked to script all of the Aetherytes in the game!
When encountering an unscripted event, it's now shown in chat and the server log:
When encountering Lua errors, the server now panics less. This - combined with the `!reload` command - makes scripting even easier than before!
thedax also implemented various things, most notably:
* Toy Chest (not currently functional until we can set unlocked quest bits)
* Orchestrion
It's now possible to send an arbitrary number of parameters for event scenes, which are needed to implement some complex events.
# Bugfixes
Most zones should work again (in terms of exiting zone lines, aetherytes, etc) thanks to better LGB support in Physis.
Action scripts are now executed at the end of it's actual cast time, which makes Teleporting look _a little_ better.
Fixed display of your character's classjob levels in the Character window.
When recieving unknown packets, these are now read instead of ignored. This makes it easier to understand what the client sent, and prevents reading the wrong part of the packet in the case of multiple segments being sent.
Invalid zone IDs are accepted, which is useful for exploring zones like in my blog post.
It's no longer possible to connect with an older client, which never worked anyway.
The correct starting weapon for your selected class is now equipped, instead of it always being a GLA weapon.
# Updates
thedax updated Kawari to support 7.25h2.
# Tooling
I created Packet Analyzer, which re-uses Kawari's existing and semi-comphrensive packet infrastructure and switches it to "reverse". This allows you to view the contents of Chronofoil captures in a nice and structured fashion:
You can try it out at https://analyze.xiv.zone/.
It's now possible to compile Kawari to WebAssembly. The servers aren't compiled in, but the packet parser can be re-used.
Thanks to NotNite, grabbing _both_ the static (`.lib`) and dynamic (`.dll`) versions of Oodle is no longer nessecary. The documentation was also updated to reflect this.
# Community
I opened a chatroom for development talk/informal discussions, since our GitHub is very rigid (and I would like to keep it that way!)