Skip to content

Commit

Permalink
Update dependencies (#900)
Browse files Browse the repository at this point in the history
* [01-empty-app/] [DotnetMauiVue/] Update npm dependencies

* [01-empty-app/] [electron/] Update npm dependencies

* [01-empty-app/] [neutralinojs/] Updated neutralinojs

* [01-empty-app/] [nodegui/] Update npm dependencies

* [01-empty-app/] [nw.js/] Update npm dependencies

* [01-empty-app/] [tauri/] Update npm dependencies

* [01-empty-app/] [tauri/] Update tauri dependencies

* [01-empty-app/] [wails/] Update npm dependencies

* [02-empty-app-frameless/] [electron/] Update npm dependencies

* [02-empty-app-frameless/] [neutralinojs/] Updated neutralinojs

* [02-empty-app-frameless/] [nodegui/] Update npm dependencies

* [02-empty-app-frameless/] [nw.js/] Update npm dependencies

* [02-empty-app-frameless/] [tauri/] Update npm dependencies

* [02-empty-app-frameless/] [tauri/] Update tauri dependencies

* [02-empty-app-frameless/] [wails/] Update npm dependencies

* Update benchmark for 01-empty-app on ubuntu-latest

* Update benchmark for 02-empty-app-frameless on ubuntu-latest

* Update benchmark for 01-empty-app on windows-latest

* Update benchmark for 02-empty-app-frameless on windows-latest

* Update benchmark for 01-empty-app on macos-latest

* Update benchmark for 02-empty-app-frameless on macos-latest
  • Loading branch information
Elanis authored Oct 1, 2024
1 parent 1b43e46 commit 4fb3ad0
Show file tree
Hide file tree
Showing 48 changed files with 32,897 additions and 33,077 deletions.
92 changes: 46 additions & 46 deletions README.md

Large diffs are not rendered by default.

899 changes: 310 additions & 589 deletions benchmark/01-empty-app/DotnetMauiVue/vue-project/package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions benchmark/01-empty-app/DotnetMauiVue/vue-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,28 @@
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"pinia": "^2.2.2",
"vue": "^3.4.38",
"vue-router": "^4.4.3"
"pinia": "^2.2.4",
"vue": "^3.5.10",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@dotnet/jsinterop": "^3.1.31",
"@rushstack/eslint-patch": "^1.10.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.2",
"@vitejs/plugin-vue": "^5.1.3",
"@types/node": "^22.7.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"jsdom": "^25.0.0",
"eslint-plugin-vue": "^9.28.0",
"jsdom": "^25.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.4"
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vitest": "^2.1.1",
"vue-tsc": "^2.1.6"
}
}
15 changes: 7 additions & 8 deletions benchmark/01-empty-app/electron/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion benchmark/01-empty-app/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"author": "",
"license": "ISC",
"devDependencies": {
"electron": "^32.0.1",
"electron": "^32.1.2",
"electron-packager": "^17.1.2"
}
}
Binary file modified benchmark/01-empty-app/neutralinojs/bin/neutralino-linux_arm64
Binary file not shown.
Binary file modified benchmark/01-empty-app/neutralinojs/bin/neutralino-linux_armhf
Binary file not shown.
Binary file modified benchmark/01-empty-app/neutralinojs/bin/neutralino-linux_x64
Binary file not shown.
Binary file modified benchmark/01-empty-app/neutralinojs/bin/neutralino-mac_arm64
Binary file not shown.
Binary file modified benchmark/01-empty-app/neutralinojs/bin/neutralino-mac_universal
Binary file not shown.
Binary file modified benchmark/01-empty-app/neutralinojs/bin/neutralino-mac_x64
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions benchmark/01-empty-app/neutralinojs/neutralino.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"resourcesPath": "/resources/",
"extensionsPath": "/extensions/",
"clientLibrary": "/resources/js/neutralino.js",
"binaryVersion": "5.3.0",
"clientVersion": "5.3.0"
"binaryVersion": "5.4.0",
"clientVersion": "5.4.0"
}
}
190 changes: 110 additions & 80 deletions benchmark/01-empty-app/neutralinojs/resources/js/neutralino.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for Neutralino 5.3.0
// Type definitions for Neutralino 5.4.0
// Project: https://github.com/neutralinojs
// Definitions project: https://github.com/neutralinojs/neutralino.js

Expand Down Expand Up @@ -95,30 +95,30 @@ namespace os {
}
//clipboard
enum ClipboardFormat {
unknown = 0,
text = 1,
image = 2
unknown = "unknown",
text = "text",
image = "image"
}
// NL_GLOBALS
enum Mode {
window = 0,
browser = 1,
cloud = 2,
chrome = 3
window = "window",
browser = "browser",
cloud = "cloud",
chrome = "chrome"
}
enum OperatingSystem {
Linux = 0,
Windows = 1,
Darwin = 2,
FreeBSD = 3,
Unknown = 4
Linux = "Linux",
Windows = "Windows",
Darwin = "Darwin",
FreeBSD = "FreeBSD",
Unknown = "Unknown"
}
enum Architecture {
x64 = 0,
arm = 1,
itanium = 2,
ia32 = 3,
unknown = 4
x64 = "x64",
arm = "arm",
itanium = "itanium",
ia32 = "ia32",
unknown = "unknown"
}
interface ExecCommandOptions {
stdIn?: string;
Expand Down Expand Up @@ -262,30 +262,30 @@ namespace debug {
}
//clipboard
enum ClipboardFormat {
unknown = 0,
text = 1,
image = 2
unknown = "unknown",
text = "text",
image = "image"
}
// NL_GLOBALS
enum Mode {
window = 0,
browser = 1,
cloud = 2,
chrome = 3
window = "window",
browser = "browser",
cloud = "cloud",
chrome = "chrome"
}
enum OperatingSystem {
Linux = 0,
Windows = 1,
Darwin = 2,
FreeBSD = 3,
Unknown = 4
Linux = "Linux",
Windows = "Windows",
Darwin = "Darwin",
FreeBSD = "FreeBSD",
Unknown = "Unknown"
}
enum Architecture {
x64 = 0,
arm = 1,
itanium = 2,
ia32 = 3,
unknown = 4
x64 = "x64",
arm = "arm",
itanium = "itanium",
ia32 = "ia32",
unknown = "unknown"
}
function log(message: string, type?: LoggerType): Promise<void>;
}
Expand Down Expand Up @@ -340,6 +340,8 @@ namespace window {
function unmaximize(): Promise<void>;
function isMaximized(): Promise<boolean>;
function minimize(): Promise<void>;
function unminimize(): Promise<void>;
function isMinimized(): Promise<boolean>;
function setFullScreen(): Promise<void>;
function exitFullScreen(): Promise<void>;
function isFullScreen(): Promise<boolean>;
Expand All @@ -350,8 +352,30 @@ namespace window {
function setIcon(icon: string): Promise<void>;
function move(x: number, y: number): Promise<void>;
function center(): Promise<void>;
function setDraggableRegion(domElementOrId: string | HTMLElement): Promise<void>;
function unsetDraggableRegion(domElementOrId: string | HTMLElement): Promise<void>;
type DraggableRegionOptions = {
/**
* If set to `true`, the region will always capture the pointer,
* ensuring dragging doesn't break on fast pointer movement.
* Note that it prevents child elements from receiving any pointer events.
* Defaults to `false`.
*/
alwaysCapture?: boolean;
/**
* Minimum distance between cursor's starting and current position
* after which dragging is started. This helps prevent accidental dragging
* while interacting with child elements.
* Defaults to `10`. (In pixels.)
*/
dragMinDistance?: number;
};
function setDraggableRegion(domElementOrId: string | HTMLElement, options?: DraggableRegionOptions): Promise<{
success: true;
message: string;
}>;
function unsetDraggableRegion(domElementOrId: string | HTMLElement): Promise<{
success: true;
message: string;
}>;
function setSize(options: WindowSizeOptions): Promise<void>;
function getSize(): Promise<WindowSizeOptions>;
function getPosition(): Promise<WindowPosOptions>;
Expand Down Expand Up @@ -424,30 +448,30 @@ namespace clipboard {
}
//clipboard
enum ClipboardFormat {
unknown = 0,
text = 1,
image = 2
unknown = "unknown",
text = "text",
image = "image"
}
// NL_GLOBALS
enum Mode {
window = 0,
browser = 1,
cloud = 2,
chrome = 3
window = "window",
browser = "browser",
cloud = "cloud",
chrome = "chrome"
}
enum OperatingSystem {
Linux = 0,
Windows = 1,
Darwin = 2,
FreeBSD = 3,
Unknown = 4
Linux = "Linux",
Windows = "Windows",
Darwin = "Darwin",
FreeBSD = "FreeBSD",
Unknown = "Unknown"
}
enum Architecture {
x64 = 0,
arm = 1,
itanium = 2,
ia32 = 3,
unknown = 4
x64 = "x64",
arm = "arm",
itanium = "itanium",
ia32 = "ia32",
unknown = "unknown"
}
function getFormat(): Promise<ClipboardFormat>;
function readText(): Promise<string>;
Expand All @@ -456,6 +480,12 @@ namespace clipboard {
function writeImage(image: ClipboardImage): Promise<void>;
function clear(): Promise<void>;
}
namespace resources {
function getFiles(): Promise<string[]>;
function extractFile(path: string, destination: string): Promise<void>;
function readFile(path: string): Promise<string>;
function readBinaryFile(path: string): Promise<ArrayBuffer>;
}
namespace custom {
function getMethods(): Promise<string[]>;
}
Expand Down Expand Up @@ -666,21 +696,21 @@ type Builtin = "ready" | "trayMenuItemClicked" | "windowClose" | "serverOffline"
}

// debug
export enum LoggerType {
enum LoggerType {
WARNING = 'WARNING',
ERROR = 'ERROR',
INFO = 'INFO'
}

// os
export enum Icon {
enum Icon {
WARNING = 'WARNING',
ERROR = 'ERROR',
INFO = 'INFO',
QUESTION = 'QUESTION'
}

export enum MessageBoxChoice {
enum MessageBoxChoice {
OK = 'OK',
OK_CANCEL = 'OK_CANCEL',
YES_NO = 'YES_NO',
Expand All @@ -690,43 +720,43 @@ export enum MessageBoxChoice {
}

//clipboard
export enum ClipboardFormat {
unknown,
text,
image
enum ClipboardFormat {
unknown = 'unknown',
text = 'text',
image = 'image'
}

// NL_GLOBALS
export enum Mode {
window,
browser,
cloud,
chrome
enum Mode {
window = 'window',
browser = 'browser',
cloud = 'cloud',
chrome = 'chrome'
}

export enum OperatingSystem {
Linux,
Windows,
Darwin,
FreeBSD,
Unknown
enum OperatingSystem {
Linux = 'Linux',
Windows = 'Windows',
Darwin = 'Darwin',
FreeBSD = 'FreeBSD',
Unknown = 'Unknown'
}

export enum Architecture {
x64,
arm,
itanium,
ia32,
unknown
enum Architecture {
x64 = 'x64',
arm = 'arm',
itanium = 'itanium',
ia32 = 'ia32',
unknown = 'unknown'
}


export interface Response {
interface Response {
success: boolean;
message: string;
}

export type Builtin =
type Builtin =
'ready' |
'trayMenuItemClicked' |
'windowClose' |
Expand Down
Loading

0 comments on commit 4fb3ad0

Please sign in to comment.