Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions-bot committed Dec 19, 2024
1 parent 7b58b6a commit f2aadd4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -207,5 +207,5 @@ <h2 id="user-profiles">User profiles<a class="headerlink" href="#user-profiles"

<!--
MkDocs version : 1.6.1
Build Date UTC : 2024-12-19 11:53:41.961142+00:00
Build Date UTC : 2024-12-19 12:39:06.619242+00:00
-->
6 changes: 2 additions & 4 deletions website/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ if get_option('use_system_pugixml')
endif
endif
if need_pugixml or get_option('use_system_pugixml') == false
#Used by pugi to enable compact mode. I might want to disable execptions too.
add_global_arguments(['-DPUGIXML_COMPACT'], language: ['cpp', 'c'])
#Used by pugi to enable compact mode.
#I might want to disable execptions too.
pugixml_proj = subproject('pugixml', default_options: ['compact=true'])
pugixml_dep = pugixml_proj.get_variable('pugixml_dep')
endif
Expand Down Expand Up @@ -268,8 +268,6 @@ vs_fltk_deps += [
treesitter_dep,
]

#vs_fltk_flags += '-DPUGIXML_COMPACT'

subdir('./src/components')

vs_fltk = shared_library(
Expand Down
12 changes: 12 additions & 0 deletions website/schemas/db/logs.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { sqliteTable, integer, blob, text } from "drizzle-orm/sqlite-core"

export const apps = sqliteTable('logs', {
id: integer().primaryKey({ autoIncrement: true }), //Unique id for the message
session: integer().notNull(), //Session id, each instance of vs is a new session
level: integer().notNull(), //Message level
type: integer().notNull(), //Message type
what: text(), //Message explanation
root: text(), //Current app root
path: text(), //Current path in the app where the message was triggered
timestamp: integer().notNull(), //When the message was recorded
});

0 comments on commit f2aadd4

Please sign in to comment.