This repository has been archived by the owner on Feb 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
1 parent
b804544
commit f7c262f
Showing
4 changed files
with
55 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters