Compare commits

...
2 Commits
Author SHA1 Message Date
death-claw 641b3e3e7b v3.4.1 2021-05-10 00:21:23 +01:00
death-claw 08de4dc5b0 Fix icons 2021-05-10 00:19:42 +01:00
12 changed files with 15 additions and 15 deletions
+2 -1
View File
@@ -1,12 +1,13 @@
# Changelog
## [3.4.0] - 2021-05-09
## [3.4.1] - 2021-05-09
### Changed
- Fix potential issue with imagebam host
- Enhance download queue logic
- Code source enhancements
- Fix app icons
## [3.3.8] - 2021-05-05
+1 -1
View File
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>tn.mnlr</groupId>
<artifactId>vripper</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

+3 -3
View File
@@ -29,13 +29,13 @@ process.on("uncaughtException", err => {
createWindow = () => {
if (process.platform === 'win32') {
app.setAppUserModelId("tn.mnlr.vripper");
app.setAppUserModelId('tn.mnlr.vripper');
}
let icon;
if (process.platform === "win32") {
if (process.platform === 'win32') {
icon = __dirname + '/icon.ico';
} else {
} else if (process.platform === 'linux') {
icon = __dirname + '/icon.png';
}
win = new BrowserWindow({
+1 -2
View File
@@ -1,6 +1,6 @@
{
"name": "vripper-electron",
"version": "3.4.0",
"version": "3.4.1",
"description": "A ripper for vipergirls.to built using web technolgies",
"main": "main.js",
"author": "death-claw <53543762+death-claw@users.noreply.github.com>",
@@ -51,7 +51,6 @@
"synopsis": "vipergirls.to ripper",
"category": "Utility",
"packageCategory": "Utility",
"icon": "icons",
"target": [
"AppImage"
]
+1 -1
View File
@@ -6,7 +6,7 @@
<parent>
<groupId>tn.mnlr</groupId>
<artifactId>vripper</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
</parent>
<artifactId>vripper-electron</artifactId>
<name>vripper-electron</name>
+1 -1
View File
@@ -5,7 +5,7 @@
<parent>
<groupId>tn.mnlr</groupId>
<artifactId>vripper</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
</parent>
<artifactId>vripper-server</artifactId>
<name>vripper-server</name>
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vripper-ui",
"version": "3.4.0",
"version": "3.4.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
+1 -1
View File
@@ -5,7 +5,7 @@
<parent>
<groupId>tn.mnlr</groupId>
<artifactId>vripper</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
</parent>
<artifactId>vripper-ui</artifactId>
<name>vripper-ui</name>
@@ -82,7 +82,7 @@ export class WsConnectionService {
if (this.electronService.isElectronApp) {
const portRequest = setInterval(() => {
this.electronService.ipcRenderer.send('get-port');
}, 1000);
}, 200);
// wait for MainIPC
this.electronService.ipcRenderer.once('port', (event, port) => {
@@ -107,7 +107,7 @@ export class WsConnectionService {
Authorization: localStorage.getItem('auth') ? 'Bearer ' + localStorage.getItem('auth') : ''
},
brokerURL: this.serverService.wsBaseUrl + '/ws',
reconnectDelay: 5000,
reconnectDelay: 200,
// debug: function (str) {
// console.log('STOMP: ' + str);
// },
@@ -2,5 +2,5 @@ export const environment = {
production: true,
localhost: `${window.location.protocol}//${window.location.host}`,
ws: `${window.location.protocol === 'http:' ? 'ws:' : 'wss:'}//${window.location.host}`,
version: '3.4.0'
version: '3.4.1'
};
+1 -1
View File
@@ -6,7 +6,7 @@ export const environment = {
production: false,
localhost: 'http://localhost:8080',
ws: 'ws://localhost:8080',
version: '3.4.0'
version: '3.4.1'
};
/*