v1.7.0 #318

Merged
LukeGus merged 138 commits from dev-1.7.0 into main 2025-10-01 20:40:10 +00:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit 56c4e1ed19 - Show all commits

View File

@@ -11,7 +11,7 @@ ENV npm_config_target_arch=x64
ENV npm_config_target_libc=musl
RUN npm ci --force --ignore-scripts && \
npm install @rollup/rollup-linux-x64-musl @esbuild/linux-x64 --force && \
npm install @rollup/rollup-linux-x64-musl @esbuild/linux-x64 @lightningcss/linux-x64-musl --force && \
npm cache clean --force
# Stage 2: Build frontend
@@ -20,7 +20,7 @@ WORKDIR /app
COPY . .
RUN npm install @rollup/rollup-linux-x64-musl @esbuild/linux-x64 --force && \
RUN npm install @rollup/rollup-linux-x64-musl @esbuild/linux-x64 @lightningcss/linux-x64-musl --force && \
npm cache clean --force && \
npm run build

View File

@@ -138,6 +138,8 @@ async function fetchGitHubAPI(endpoint, cacheKey) {
rejectUnauthorized: false,
secureProtocol: 'TLSv1_2_method',
checkServerIdentity: () => undefined,
ciphers: 'ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH',
honorCipherOrder: true,
});
}
@@ -314,6 +316,8 @@ ipcMain.handle("test-server-connection", async (event, serverUrl) => {
rejectUnauthorized: false,
secureProtocol: 'TLSv1_2_method',
checkServerIdentity: () => undefined,
ciphers: 'ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH',
honorCipherOrder: true,
});
}