Skip to content

Commit

Permalink
v2.0.0-alpha.30
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Oct 11, 2024
1 parent 51e2128 commit 64b4602
Show file tree
Hide file tree
Showing 9 changed files with 341 additions and 441 deletions.
1 change: 1 addition & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ jobs:
yarn install
- name: List packages
if: ${{ github.event.inputs.importProject }}
run: ls -la packages && ls -lart node_modules/@ulixee
shell: bash

Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ packages
scripts/*.js
/main/index.js
/main/index.js.map
/main/preload/chromealive.js
/main/preload/desktop.js
/main/preload/menubar.js
Binary file modified .yarn/install-state.gz
Binary file not shown.
35 changes: 0 additions & 35 deletions main/preload/chromealive.js

This file was deleted.

60 changes: 0 additions & 60 deletions main/preload/desktop.js

This file was deleted.

7 changes: 0 additions & 7 deletions main/preload/menubar.js

This file was deleted.

36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ulixee/desktop",
"version": "2.0.0-alpha.29",
"version": "2.0.0-alpha.30",
"description": "This is a builder project that uses the dual package.json approach (./app contains the app package.json).",
"private": true,
"author": "Ulixee Foundation",
Expand Down Expand Up @@ -29,24 +29,24 @@
"unpack:asar": "npx @electron/asar extract dist/mac/Ulixee.app/Contents/Resources/app.asar dist/mac/app_unpacked"
},
"dependencies": {
"@argonprotocol/localchain": "0.0.13",
"@argonprotocol/localchain": "0.0.14",
"@electron-toolkit/preload": "^3.0.0",
"@ulixee/cloud": "2.0.0-alpha.29",
"@ulixee/commons": "2.0.0-alpha.29",
"@ulixee/datastore": "2.0.0-alpha.29",
"@ulixee/datastore-core": "2.0.0-alpha.29",
"@ulixee/datastore-plugins-hero": "2.0.0-alpha.29",
"@ulixee/default-browser-emulator": "2.0.0-alpha.29",
"@ulixee/desktop-core": "2.0.0-alpha.29",
"@ulixee/desktop-interfaces": "2.0.0-alpha.29",
"@ulixee/hero-core": "2.0.0-alpha.29",
"@ulixee/hero-interfaces": "2.0.0-alpha.29",
"@ulixee/js-path": "2.0.0-alpha.29",
"@ulixee/net": "2.0.0-alpha.29",
"@ulixee/platform-specification": "2.0.0-alpha.29",
"@ulixee/platform-utils": "2.0.0-alpha.29",
"@ulixee/unblocked-agent-mitm-socket": "^2.0.0-alpha.29",
"@ulixee/unblocked-specification": "2.0.0-alpha.29",
"@ulixee/cloud": "2.0.0-alpha.30",
"@ulixee/commons": "2.0.0-alpha.30",
"@ulixee/datastore": "2.0.0-alpha.30",
"@ulixee/datastore-core": "2.0.0-alpha.30",
"@ulixee/datastore-plugins-hero": "2.0.0-alpha.30",
"@ulixee/default-browser-emulator": "2.0.0-alpha.30",
"@ulixee/desktop-core": "2.0.0-alpha.30",
"@ulixee/desktop-interfaces": "2.0.0-alpha.30",
"@ulixee/hero-core": "2.0.0-alpha.30",
"@ulixee/hero-interfaces": "2.0.0-alpha.30",
"@ulixee/js-path": "2.0.0-alpha.30",
"@ulixee/net": "2.0.0-alpha.30",
"@ulixee/platform-specification": "2.0.0-alpha.30",
"@ulixee/platform-utils": "2.0.0-alpha.30",
"@ulixee/unblocked-agent-mitm-socket": "^2.0.0-alpha.30",
"@ulixee/unblocked-specification": "2.0.0-alpha.30",
"better-sqlite3": "^11.1.2",
"electron-log": "^5.1.7",
"electron-updater": "^6.3.4",
Expand Down
2 changes: 0 additions & 2 deletions src/main/lib/PrivateDesktopApiHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,9 @@ import { IncomingMessage } from 'http';
import { nanoid } from 'nanoid';
import * as Os from 'os';
import * as Path from 'path';
import { types } from 'sass-embedded';
import WebSocket from 'ws';
import ApiManager from './ApiManager';
import ArgonFile from './ArgonFile';
import Error = types.Error;

const argIconPath = Path.resolve(app.getAppPath(), 'resources', 'arg.png');

Expand Down
Loading

0 comments on commit 64b4602

Please sign in to comment.