Rebranded plugbox to PlugOS (plugos)

This commit is contained in:
Zef Hemel
2022-03-27 11:31:12 +02:00
parent 621e55dbcf
commit cb809d2d03
45 changed files with 42 additions and 51 deletions
+3 -3
View File
@@ -21,7 +21,7 @@ import {
} from "@codemirror/view";
import React, { useEffect, useReducer } from "react";
import ReactDOM from "react-dom";
import { createSandbox as createIFrameSandbox } from "../plugbox/environment/iframe_sandbox";
import { createSandbox as createIFrameSandbox } from "../plugos/environment/iframe_sandbox";
import { AppEvent, AppEventDispatcher, ClickEvent } from "./app_event";
import { CollabDocument, collabExtension } from "./collab";
import * as commands from "./commands";
@@ -49,8 +49,8 @@ import {
} from "./types";
import { SilverBulletHooks } from "../common/manifest";
import { safeRun } from "./util";
import { System } from "../plugbox/system";
import { EventFeature } from "../plugbox/feature/event";
import { System } from "../plugos/system";
import { EventFeature } from "../plugos/feature/event";
import { systemSyscalls } from "./syscalls/system";
class PageState {
+1 -1
View File
@@ -7,7 +7,7 @@ import { CollabDocument, CollabEvents } from "./collab";
import { cursorEffect } from "./cursorEffect";
import { EventEmitter } from "../common/event";
import { Manifest } from "../common/manifest";
import { SystemJSON } from "../plugbox/system";
import { SystemJSON } from "../plugos/system";
export type SpaceEvents = {
connect: () => void;
+1 -1
View File
@@ -1,7 +1,7 @@
import { Editor } from "../editor";
import { syntaxTree } from "@codemirror/language";
import { Transaction } from "@codemirror/state";
import { SysCallMapping } from "../../plugbox/system";
import { SysCallMapping } from "../../plugos/system";
type SyntaxNode = {
name: string;
+2 -2
View File
@@ -1,6 +1,6 @@
import { Space } from "../space";
import { SysCallMapping } from "../../plugbox/system";
import { transportSyscalls } from "../../plugbox/syscall/transport";
import { SysCallMapping } from "../../plugos/system";
import { transportSyscalls } from "../../plugos/syscall/transport";
export default function indexerSyscalls(space: Space): SysCallMapping {
return transportSyscalls(
+1 -1
View File
@@ -1,6 +1,6 @@
import { Editor } from "../editor";
import { PageMeta } from "../types";
import { SysCallMapping } from "../../plugbox/system";
import { SysCallMapping } from "../../plugos/system";
export default (editor: Editor): SysCallMapping => ({
listPages: (): PageMeta[] => {
+1 -1
View File
@@ -1,4 +1,4 @@
import { SysCallMapping } from "../../plugbox/system";
import { SysCallMapping } from "../../plugos/system";
import { Space } from "../space";
export function systemSyscalls(space: Space): SysCallMapping {