Skip to content

Commit

Permalink
feat: update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
prplwtf committed Dec 12, 2024
1 parent a2607e4 commit 15ee8ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/pages/about/changelog/beta-2024-12.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#### Changes

- Blueprint now automatically deletes `.gitkeep` from the extension development folder after any developer command has been ran.
- Add `extensionList()` to [BlueprintExtensionLibrary](?page=documentation/$blueprint).
- Add `extensions()`, `dbGetMany()`, `dbSetMany()`, `dbForgetMany()` to [BlueprintExtensionLibrary](?page=documentation/$blueprint).
- `fileRead($path)` and `fileWipe($path)` now use PHP functions instead of shell commands.
- **License holder name has been updated** from "Ivy (prpl.wtf)" to "Emma (prpl.wtf)".
- Move extension admin page website icon detection to case statement in `-install`.
Expand All @@ -26,6 +26,8 @@
- [`Components.yml`](?page=documentation/componentsyml) has a new "Global" scope within "Dashboard".
- Install, remove and export scripts now have access to the `$ENGINE` environment variable.
- Add [`update.sh`](?page=documentation/scripts) script which will be ran upon an extension update transaction.
- Complete rewrite of Blueprint telemetry.
- Add a Code of Conduct (CoC) and Security policy to Blueprint.

<br/>

Expand All @@ -35,6 +37,7 @@
- Use `printf` instead of `echo` to write to `installed_extensions` as a way to prevent new lines from generating.
- Removing the first installed extension causes a Laravel routing error.
- ExtensionFS was not unlinked in the public directory.
- Allow single quotes in extension name and description ((#69)[https://github.com/BlueprintFramework/framework/pull/69]).

<br/>

Expand Down
9 changes: 9 additions & 0 deletions docs/pages/documentation/$blueprint.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ Set a database record.
`dbForget(table, record)`\
Delete/forget a database record.

`dbGetMany(table, string_array: optional)` <tag type="pending" content="beta-2024-12"/></tag>\
Fetches multiple records from the database in an associative array.

`dbSetMany(table, associative_array)` <tag type="pending" content="beta-2024-12"/></tag>\
Sets multiple records in the database at once.

`dbForgetMany(table, array)` <tag type="pending" content="beta-2024-12"/></tag>\
Deletes/forgets multiple records from the database.

<br/>

##### Notifications <span class="badge bg-primary-subtle text-primary-emphasis rounded-pill">Admin <i class="bi bi-check"></i></span> <span class="badge bg-secondary-subtle text-secondary-emphasis rounded-pill opacity-50">Client <i class="bi bi-x"></i></span> <span class="badge bg-secondary-subtle text-secondary-emphasis rounded-pill opacity-50">Console <i class="bi bi-x"></i></span>
Expand Down

0 comments on commit 15ee8ab

Please sign in to comment.