Skip to content

Commit

Permalink
WIP: makevm -> sockdrive
Browse files Browse the repository at this point in the history
  • Loading branch information
caiiiycuk committed May 22, 2024
1 parent fa79c84 commit 7e1bf6a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@typescript-eslint/parser": "^6.20.0",
"autoprefixer": "^10.4.17",
"daisyui": "^3.9.3",
"emulators": "0.80.26",
"emulators": "8.1.1",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"postcss": "^8.4.33",
Expand Down
4 changes: 2 additions & 2 deletions src/frame/fat-drives-frame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function FatDrivesFrame() {
<p class="text-xs">{owner}</p>}
</td>
{preimium && <td>
{account?.token && <div class="cursor-pointer hover:text-accent"
{account?.token && <div class="btn btn-ghost btn-xs"
onClick={() => {
const newName = prompt("Enter drive name");
if (newName && newName.length > 0) {
Expand All @@ -98,7 +98,7 @@ export function FatDrivesFrame() {
});
}
}}>Fork</div>}
{account?.token && owner === me && <div class="cursor-pointer hover:text-accent"
{account?.token && owner === me && <div class="btn btn-xs btn-ghost"
onClick={() => {
// eslint-disable-next-line max-len
fetch(`${sockdriveEndpoint}/fork/delete/${owner}/${name}/${account.token.access_token}`, { method: "POST" })
Expand Down
1 change: 1 addition & 0 deletions src/window/dos/dos-runtime.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ function useLog(ci: CommandInterface): void {
if (args[0]?.indexOf("write=false") !== -1) {
dispatch(uiSlice.actions.readOnlyWarning(true));
}
console.log(...args);
}
});
}, [ci, dispatch]);
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1154,10 +1154,10 @@ electron-to-chromium@^1.4.648:
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.653.tgz#832ab25e80ad698ac09c1ca547bd9ee6cce7df10"
integrity sha512-wA2A2LQCqnEwQAvwADQq3KpMpNwgAUBnRmrFgRzHnPhbQUFArTR32Ab46f4p0MovDLcg4uqd4nCsN2hTltslpA==

emulators@0.80.26:
version "0.80.26"
resolved "https://registry.yarnpkg.com/emulators/-/emulators-0.80.26.tgz#4bf11748469698996842adbe37132bb96aa67cdd"
integrity sha512-0kKEYZKzkcV1YNJbhk+5Dy+kxZ5kK8FQ0OypoLDsTe2wdvcCfNQ0VbfWwIqv+3hl70i5NWt7/m7+gzOEPEhYLA==
emulators@8.1.1:
version "8.1.1"
resolved "https://registry.yarnpkg.com/emulators/-/emulators-8.1.1.tgz#69d9e42e5590b6dbd5db7ab90ae412d8bbc5bc8f"
integrity sha512-OHR/vuE3yDMRmmgtPhAxZwh/MuCkae3wnoaskuT0EvXRe7iJC5GPzZr5PtHT7VVt9oTdbvMppXqRc1kN0olynA==

entities@^4.2.0:
version "4.5.0"
Expand Down

0 comments on commit 7e1bf6a

Please sign in to comment.