Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skype 8.82.0.403 #61

Merged
merged 1 commit into from Apr 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 4 additions & 7 deletions build.properties
Expand Up @@ -5,8 +5,8 @@ core.dir = ../portapps
app = skype
app.name = Skype
app.type = innosetup
app.version = 8.80.0.143
app.release = 91
app.version = 8.82.0.403
app.release = 92
app.homepage = https://www.skype.com/get-skype

# Portable app
Expand All @@ -25,11 +25,8 @@ electron.appasar.file = main.js
electron.appasar.search = enableUpdates:!0
electron.appasar.replace = enableUpdates:0
electron.appasar.file2 = main.js
electron.appasar.search2 = const t=r.join(i.app.getPath("appData"),e);
electron.appasar.replace2 = const t=r.join(r.dirname(process.execPath), '..', 'data', '_roaming');
electron.appasar.file3 = main.js
electron.appasar.search3 = const e=!!this._appSettings.get().autoStartEnabled
electron.appasar.replace3 = const e=0
electron.appasar.search2 = const e=!!this._appSettings.get().autoStartEnabled
electron.appasar.replace2 = const e=0

# Official artifacts
atf.id = Skype
Expand Down
4 changes: 0 additions & 4 deletions build.xml
Expand Up @@ -33,10 +33,6 @@
<replace file="${extract.path}\${innosetup.app}\resources\app\${electron.appasar.file2}" failOnNoReplacements="true">
<replacefilter token="${electron.appasar.search2}" value="${electron.appasar.replace2}"/>
</replace>
<assertfile file="${extract.path}\${innosetup.app}\resources\app\${electron.appasar.file3}"/>
<replace file="${extract.path}\${innosetup.app}\resources\app\${electron.appasar.file3}" failOnNoReplacements="true">
<replacefilter token="${electron.appasar.search3}" value="${electron.appasar.replace3}"/>
</replace>

<echo message="Removing app.asar..."/>
<delete file="${extract.path}\${innosetup.app}\resources\app.asar"/>
Expand Down
1 change: 1 addition & 0 deletions main.go
Expand Up @@ -44,6 +44,7 @@ func main() {
app.Process = utl.PathJoin(app.AppPath, "Skype.exe")
app.Args = []string{
"--datapath=" + app.DataPath,
"--user-data-dir=" + app.DataPath,
}

// Cleanup on exit
Expand Down