Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: agalwood/Motrix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: trry-hub/Motrix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 3 commits
  • 6 files changed
  • 2 contributors

Commits on Jul 5, 2024

  1. fix:bug

    shizhu committed Jul 5, 2024
    Copy the full SHA
    968b3cd View commit details

Commits on Jul 10, 2024

  1. fix:bug

    shizhu committed Jul 10, 2024
    Copy the full SHA
    ec2b99d View commit details
  2. 添加重命名限制

    trry-hub committed Jul 10, 2024
    Copy the full SHA
    056aba2 View commit details
Showing with 10,293 additions and 0 deletions.
  1. +30 −0 bash.exe.stackdump
  2. +1 −0 package.json
  3. +10,231 −0 pnpm-lock.yaml
  4. +25 −0 src/renderer/api/Api.js
  5. +1 −0 src/renderer/components/Aside/Index.vue
  6. +5 −0 src/renderer/components/Task/AddTask.vue
30 changes: 30 additions & 0 deletions bash.exe.stackdump
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
Stack trace:
Frame Function Args
0007FFFF9F90 00021005FE8E (000210285F68, 00021026AB6E, 00000079AFD0, 0007FFFF8E90) msys-2.0.dll+0x1FE8E
0007FFFF9F90 0002100467F9 (000000000000, 000000000000, 000000000000, 000000000000) msys-2.0.dll+0x67F9
0007FFFF9F90 000210046832 (000210286019, 0000054221A4, 00000079AFD0, 000000000000) msys-2.0.dll+0x6832
0007FFFF9F90 000210068CF6 (000000000000, 000000000000, 000000000000, 000000000000) msys-2.0.dll+0x28CF6
0007FFFF9F90 000210068E24 (0007FFFF9FA0, 000000000000, 000000000000, 000000000000) msys-2.0.dll+0x28E24
0007FFFFA270 00021006A225 (0007FFFF9FA0, 000000000000, 000000000000, 000000000000) msys-2.0.dll+0x2A225
End of stack trace
Loaded modules:
000100400000 bash.exe
7FF8321E0000 ntdll.dll
7FF82EB80000 xtajit64.dll
7FF831FC0000 KERNEL32.DLL
7FF82DBE0000 KERNELBASE.dll
7FF82D7E0000 apphelp.dll
7FF830DF0000 USER32.dll
7FF82E350000 win32u.dll
7FF832130000 GDI32.dll
7FF82E3C0000 gdi32full.dll
7FF82E1F0000 msvcp_win.dll
7FF82E6F0000 ucrtbase.dll
000210040000 msys-2.0.dll
7FF82ED70000 advapi32.dll
7FF8319C0000 msvcrt.dll
7FF831B10000 sechost.dll
7FF82F630000 RPCRT4.dll
7FF82C7F0000 CRYPTBASE.DLL
7FF82DAF0000 bcryptPrimitives.dll
7FF831880000 IMM32.DLL
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@
},
"scripts": {
"release": "npm run build --publish onTagOrDraft",
"build:win": "node .electron-vue/build.js && electron-builder --win --x64",
"build": "node .electron-vue/build.js && electron-builder",
"build:applesilicon": "node .electron-vue/build.js && electron-builder --arm64 --mac",
"build:github": "node .electron-vue/build.js",
Loading