mirror of https://github.com/qTox/qTox.git
Browse Source
This commit has several touch ups that only effect the OS X clients. `info.plist` and `qt.pro` are now configured to create an automatic short version to help distinguish between clients clearly and include a referenced file not put into the build when compiled. `./img/icon/qtox_profile.icns’ `info.plist` also had it’s bundle version to be updated to the 1.2.2 tag and supported languages added and fixed referenced file. The default save location has also been moved to comply with the Tox Client Standard. (Previous location was ~/Library/Prefrences/tox ) A basic bash profile mover has also been included to show I did think of that.pull/2822/head
4 changed files with 55 additions and 19 deletions
@ -0,0 +1,15 @@
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash |
||||
|
||||
# A qTox profile migrater for OSX |
||||
echo "Figuring out if action is required ..." |
||||
if [ -d ~/Library/Prefrences/tox] |
||||
echo "Moving profile(s) ..." |
||||
cp -r ~/Library/Preferences/tox ~/Library/Application\ Support/ |
||||
mv ~/Library/Application\ Support/tox/ ~/Library/Application\ Support/Tox |
||||
mv ~/Library/Preferences/tox ~/.Tox-Backup |
||||
echo "Done! You profile(s) have been moved! A back up coppy still exists at:" |
||||
echo "~/.Tox-Backup" |
||||
else |
||||
echo "Cannot locate old profile directory, profile migration not performed" |
||||
fi |
||||
exit 0 |
Loading…
Reference in new issue