Compare commits

..
2 Commits
Author SHA1 Message Date
death-claw 4a143c349f v1.4.3 2019-07-14 15:00:12 +01:00
death-claw 5813dfca3f * Update some messages
* Fix scrolling issue
2019-07-14 14:54:51 +01:00
11 changed files with 16 additions and 15 deletions
+5
View File
@@ -1,5 +1,10 @@
# Changelog
## [1.4.3] - 2019-07-14
### Changed
- Update some messages
- Fix scrolling issue
## [1.4.2] - 2019-07-14
### Changed
- Fix layout issue in web mode
+1 -1
View File
@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>tn.mnlr</groupId>
<artifactId>vripper</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vripper-electron",
"version": "1.4.0",
"version": "1.4.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vripper-electron",
"version": "1.4.2",
"version": "1.4.3",
"description": "",
"main": "main.js",
"author": "",
+1 -1
View File
@@ -5,7 +5,7 @@
<parent>
<groupId>tn.mnlr</groupId>
<artifactId>vripper</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</parent>
<artifactId>vripper-server</artifactId>
<name>vripper-server</name>
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vripper-ui",
"version": "1.4.2",
"version": "1.4.3",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vripper-ui",
"version": "1.4.2",
"version": "1.4.3",
"scripts": {
"ng": "ng",
"start": "ng serve",
+1 -1
View File
@@ -5,7 +5,7 @@
<parent>
<groupId>tn.mnlr</groupId>
<artifactId>vripper</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</parent>
<artifactId>vripper-ui</artifactId>
<name>vripper-ui</name>
+1 -1
View File
@@ -100,7 +100,7 @@ export class HomeComponent implements OnInit {
maxWidth: '100vw',
height: '200px',
width: '60%',
data: {header: 'Confirmation', content: 'Are you sure you want to remove all threads ?'}
data: {header: 'Confirmation', content: 'Are you sure you want to remove all items ?'}
})
.afterClosed()
.pipe(
@@ -120,7 +120,7 @@ export class MenuRendererComponent implements OnInit, OnDestroy, AgRendererCompo
restart() {
this.httpClient.post(this.serverService.baseUrl + '/post/restart', { postId: this.postData.postId }).subscribe(
() => {
this._snackBar.open('Thread started', null, {
this._snackBar.open('Download started', null, {
duration: 5000
});
},
@@ -137,7 +137,7 @@ export class MenuRendererComponent implements OnInit, OnDestroy, AgRendererCompo
maxWidth: '100vw',
height: '200px',
width: '60%',
data: { header: 'Confirmation', content: 'Are you sure you want to remove this thread ?' }
data: { header: 'Confirmation', content: 'Are you sure you want to remove this item ?' }
})
.afterClosed()
.pipe(
@@ -166,7 +166,7 @@ export class MenuRendererComponent implements OnInit, OnDestroy, AgRendererCompo
stop() {
this.httpClient.post(this.serverService.baseUrl + '/post/stop', { postId: this.postData.postId }).subscribe(
() => {
this._snackBar.open('Thread stopped', null, {
this._snackBar.open('Download stopped', null, {
duration: 5000
});
},
-4
View File
@@ -65,7 +65,3 @@ div.ag-cell.no-padding {
text-overflow:ellipsis;
white-space: nowrap;
}
.ag-body-viewport {
overflow: hidden !important;
}