KernelDeimos
05573dad51
tweak: load mods from extensions directory
2024-11-01 19:29:16 -04:00
KernelDeimos
f836ac30a9
fix: temporary fix because .on can't call ensure_service
2024-11-01 18:21:05 -04:00
KernelDeimos
84989367a7
dev: hook extensions into service event bus
2024-11-01 17:42:12 -04:00
KernelDeimos
58f34b948a
dev: simplify module/extension setup
2024-11-01 16:13:00 -04:00
KernelDeimos
7569e8a703
tweak: endpoints are authorized by default
2024-11-01 15:43:40 -04:00
KernelDeimos
4b6c70fa5e
dev: expose more core definitions to extensions
2024-11-01 15:43:27 -04:00
KernelDeimos
a614145250
dev: run npm install after copying extensions
2024-11-01 15:26:39 -04:00
KernelDeimos
d958c01111
dev: add support for single-file extensions
2024-11-01 14:42:42 -04:00
KernelDeimos
3f6900f26b
dev: add get() and post() to extension API
2024-11-01 14:41:29 -04:00
KernelDeimos
d1ebbbe3c7
chore: update kdmod package.json to avoid confusion
2024-10-31 18:20:00 -04:00
KernelDeimos
0a47daa289
fix: issues in kdmod
...
The kdmod module was broken since we renamed packages/ to src/. Also,
the update to mod loading for some unknown reason now requires each call
to require to end with `.js`. As far as I know, this was working
previously.
2024-10-31 18:15:41 -04:00
KernelDeimos
14d45a27ed
feat: add extension API for modules
...
Allows modules to register a listener to the 'install' event without
creating a Module class. This changes how external modules are
installed.
External modules are now referred to as "extensions"; this commit does
not update the term but does use 'extension' as the name of the global.
2024-10-31 18:08:27 -04:00
KernelDeimos
f36718005f
sync: add wiki as a submodule
2024-10-31 18:08:30 -04:00
Zac0511
f2fc8ba5cf
Edit "Puter version" title and description in the bug report template
...
A quick edit to replace "Puter version (if accessible)" by "Puter version" and a new description to say that its not required.
2024-10-31 13:54:42 -04:00
KernelDeimos
9a0c5b4f74
dev: support no-response endpoints in Collector
...
The no_response option is added to Collector::post. If an endpoint
returns an empty response, this option must be set to avoid a JSON parse
error.
2024-10-30 18:52:47 -04:00
Nariman Jelveh
96b64f6b53
Merge pull request #817 from djelacik/main
...
minor documentation fixes
2024-10-30 08:26:35 -07:00
DeveloperDaniell
05169e9e1e
minor documentation fixes
2024-10-30 16:36:43 +02:00
jelveh
dc478382fb
tweak: don't break if contact_us
is not found
2024-10-29 23:44:54 -07:00
jelveh
fc5e15f2a6
feat: first extension that implements a custom user options menu
2024-10-29 22:55:26 -07:00
jelveh
b018571a86
feat: add support for extensions
2024-10-29 18:37:32 -07:00
KernelDeimos
14f477a633
fix: Collector bug on undefined body
2024-10-29 18:56:11 -04:00
KernelDeimos
b9625945ae
dev: expose save account and email confirm
2024-10-29 18:56:11 -04:00
KernelDeimos
463c96c69a
fix: hyphenize_confirm_code bug
2024-10-29 18:56:11 -04:00
KernelDeimos
38adb5741b
fix: app close issue in phoenix
2024-10-29 16:19:58 -04:00
KernelDeimos
b30de5bf78
fix: reading JSON string from service_usage_monthly
...
This was hilariously difficult to debug. This isn't the first time an
issue like this occurred; this happens because of a deviation between
mysql and sqlite, where a JSON-typed column in mysql will return as a
native object in queries, whereas a JSON-typed column in sqlite is a
string column and will therefore return as an un-parsed JSON string in
queries.
2024-10-29 13:18:53 -04:00
KernelDeimos
7ba16d1c21
fix: recently broke counting service sql
2024-10-28 19:14:15 -04:00
KernelDeimos
f1087953b5
fix: ignore invalid entries from service_usage_monthly
2024-10-28 19:09:17 -04:00
KernelDeimos
193da63304
fix: service usage screen
...
This fixes service monthly usage counts as shown in Settings.
2024-10-28 18:47:40 -04:00
KernelDeimos
c0b109d4d2
dev: add get_proxy_object to util/context
2024-10-28 15:11:26 -04:00
KernelDeimos
3649dff9aa
dev: add module lib installation to useapi
2024-10-28 15:11:26 -04:00
jelveh
3d85edf537
Update UIWindow.js
2024-10-27 21:33:08 -07:00
jelveh
54ae69b7b7
feat: add an 'Upload' button at the bottom of OpenFilePicker
2024-10-27 21:32:39 -07:00
jelveh
cd8a080d72
tweak: user-friendly badges for apps in Dev Center
2024-10-27 21:09:18 -07:00
Nariman Jelveh
b7c50fc2bb
docs: add Garry's Mod to #DoesItRunPuter
2024-10-27 15:58:54 -07:00
jelveh
af511c05e3
feat: Allow apps to toggle credentialless
via Dev Center
2024-10-27 14:44:06 -07:00
KernelDeimos
4dc1e01682
fix: continue work on blocked_email_domains (2)
2024-10-27 15:46:21 -04:00
jelveh
161be7fe6b
remove 'About' from taskbar apps
2024-10-26 09:56:57 -07:00
KernelDeimos
515051dabf
fix: continue work on blocked_email_domains
2024-10-26 03:28:45 -04:00
KernelDeimos
c22a69ffb1
fix: errors thrown by launch_app
...
Fixes errors that were noticed being thrown by launch_app, specifically
in the branch of logic when launch_app is called NOT via ExecService.
This branch of logic was added to fix an issue where notepad wasn't
prompting to save unsaved changes on close because data-appusessdk was
not properly set to true. The fix still worked, despite throwing these
errors, because setting data-appUsesSDK to true is the first thing it
does. However, broadcast messages to apps launched with launch_app NOT
via ExecService would have been broken.
2024-10-26 03:07:02 -04:00
jelveh
a9bbcf908d
Update style.css
2024-10-25 11:36:50 -07:00
KernelDeimos
f3a9e784a3
dev: add can iterate check
2024-10-25 14:27:42 -04:00
KernelDeimos
b98c5a349e
dev: make anti-csrf more convenient
2024-10-24 23:11:07 -04:00
KernelDeimos
f55b7ac0b8
dev: ensure existing app tokens don't break (for now)
2024-10-24 19:54:29 -04:00
KernelDeimos
6b8fbda14c
dev: allow app tokens to identify user sessions
2024-10-24 19:51:54 -04:00
KernelDeimos
bc51d4bd52
fix: notepad save issue
2024-10-24 02:28:19 -04:00
KernelDeimos
87f7fc0265
tweak: clarify blocked domain message
2024-10-24 00:57:21 -04:00
KernelDeimos
955b087297
feat: add config for blocked email domains
2024-10-24 00:38:40 -04:00
KernelDeimos
988039eade
dev: src prop for images
2024-10-23 22:59:18 -04:00
KernelDeimos
25e9ed8227
dev: make el() yet more convenient
2024-10-23 01:08:16 -04:00
KernelDeimos
5965ab5de0
dev: allow UIElement to be used as settings tab
2024-10-22 23:55:42 -04:00