Skip to content

Commit

Permalink
bump version and hint for ko-fi
Browse files Browse the repository at this point in the history
  • Loading branch information
Gkiokan committed May 22, 2024
1 parent 2bd4470 commit d658c59
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# PS4 Remote PKG Sender v2 - Changelog

### v2.10.4
#### macOS 14.4+ fixes
The latest mac OS Version 14.4+ has a couple dependency changes that break the application.
Fixed the dependencies and deprecations.
Added HB-Store setting values as of a custom adress.

### v2.10.3
#### Welcome PS5 Support
With the new Features from etaHEN we are finally able to be the first application
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "2.10.3",
"version": "2.10.4",
"name": "PS4RemotePKGSenderV2",
"productName": "PS4 Remote PKG Sender V2",
"author": "Gkiokan <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/layout/DefaultLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<el-menu-item index="settings">Settings</el-menu-item>

<div class='top_right_header'>
<el-button size="mini" icon="el-icon-user" round @click="move({ name: 'user' })"> User </el-button>
<el-button size="mini" icon="el-icon-user" round @click="move({ name: 'user' })"> Support for more upcoming Features </el-button>

<el-badge :is-dot="true" value="new" :hidden="!newVersionAvailable" class="sync_icon">
<div class="" @click="checkUpdate">
Expand Down
8 changes: 8 additions & 0 deletions src/renderer/pages/Changelog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
<h2 style="margin-bottom: 20px;">You are on version {{ $root.versions.app }}</h2>

<el-timeline>
<el-timeline-item timestamp="2.10.3" placement="top">
<h4>macOS 14.4+ fixes</h4>
<p>
The latest mac OS Version 14.4+ has had a couple dependency that break the application. <br>
Fixed the dependencies and deprecations. <br>
Added HB-Store setting values as of a custom adress. <br>
</p>
</el-timeline-item>
<el-timeline-item timestamp="2.10.3" placement="top">
<h4>Welcome PS5 Support</h4>
<p>
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/pages/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,8 @@ export default {
// "rest_sec_total": 1116,
// "preparing_percent": 100,
// "local_copy_percent": 0
// }
// }
if(data.status && data.status == 'success'){
let length = Math.round(parseInt(data.length))
let done = Math.round(parseInt(data.transferred))
Expand Down
11 changes: 9 additions & 2 deletions src/renderer/pages/User.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
<template >
<div>

<div style="margin-bottom: 20px;">
<img :src="$root.getImage('assets/kofi.svg')" class="cursor-pointer" @click="$root.open(links.kofi)" />
</div>

<h2>Upcoming User Feature and more in 2.10.x</h2>
<el-divider content-position="left" v-if="false"> Upcoming User Feature and more in 2.10.x </el-divider>

Hello Ladies and Gentlemen! <br>
<br>
It has been a long journey so far, and you have done well! <br>
With 53k Downloads as of August 2023, that's quite impressive <small style="font-size: 90%">(67k Downloads as of February 2024) </small><br>
With 53k Downloads as of August 2023, that's quite impressive <br>
<small style="font-size: 90%">(67k Downloads as of February 2024) </small><br>
<small style="font-size: 90%">(79k Downloads as of May 2024) </small><br>
Thank you for using the Application. Any Support is appreciated and don't forget to check out my channels. <br>
<br>
I will talk about a couple big changes that will come soon or later, depending on your support. <br>
Expand All @@ -19,7 +26,7 @@
<el-divider />

<h2 style="font-size: 20px"> What is coming up? </h2>
<b>0) PS5 Support </b> [beta/kinda works/semi-done]<br>
<b>0) PS5 Support </b> [Done]<br>
With 2.10.0+ we are the first application that supports PKG Install though application requests. <br>
First prototyping works fine, but still we might need more feedback on this to mark it stable. <br>
Thanks to etaHEN (@LM) and all the devs who was working on this - huge step forward. <br>
Expand Down
4 changes: 3 additions & 1 deletion src/renderer/pages/app/Server.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ export default {
methods: {
registerChannel(){
ipcRenderer.on('server', (event, data) => {
console.log("ipc channel | server ", data)
console.log("ipc channel | server ", data)
if(data == 'refresh')
this.restartServer()
Expand Down Expand Up @@ -144,6 +145,7 @@ export default {
},
restartServer(){
this.$root.sendMain("Restarting Server")
this.stopServer()
this.startServer()
},
Expand Down

0 comments on commit d658c59

Please sign in to comment.