-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wolfgang Baird
committed
May 9, 2015
1 parent
22b9bfe
commit bee4ba1
Showing
11 changed files
with
120 additions
and
68 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 |
---|---|---|
@@ -1 +1 @@ | ||
2.5 | ||
3.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,26 @@ | ||
------------------------------------------------ | ||
|
||
Version : 2.5 | ||
Version : 3.0 | ||
Build date : Apr / 11 / 2015 | ||
|
||
------------------------------------------------ | ||
If auto-updates fail. You can manually download updates here: | ||
https://github.com/w0lfschild/DarkBoot/releases/latest | ||
------------------------------------------------ | ||
|
||
2.5 | ||
3.0 | ||
|
||
New | ||
- Automatic updates | ||
|
||
Fixed | ||
- dBoot failing to launch in some cases | ||
- dBoot failing to apply in some cases | ||
- dBoot Agent not cleaning up and re-setting boot.efi permissions after edit | ||
|
||
Changed | ||
- dBoot Agent is now a script | ||
- dBoot Agent does not require password | ||
- dBoot Agent will not require password | ||
- Updated credits | ||
|
||
------------------------------------------------ | ||
Bugs | ||
- check at log in does not work | ||
|
||
If auto-updates fail. You can manually download updates here: | ||
https://github.com/w0lfschild/DarkBoot/releases/latest | ||
|
||
------------------------------------------------ | ||
------------------------------------------------ |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dBoot strings: | ||
|
||
If you translate these strings into another language please email me the translations @ [email protected] | ||
|
Empty file.
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,23 @@ | ||
#!/bin/bash | ||
|
||
# replace eng with translation | ||
# required arg = lang | ||
|
||
scriptDirectory=$(cd "${0%/*}" && echo $PWD) | ||
lang_="$1" | ||
fold_="$scriptDirectory"/"$lang_" | ||
file_=("$fold_"/donors.txt "$fold_"/main.txt "$fold_"/settings.txt "$fold_"/welcome.txt) | ||
|
||
for i in "${file_[@]}" | ||
do | ||
: | ||
while read p; do | ||
if [[ $p != "" ]]; then | ||
#echo $p | ||
text_tag=$(echo "$p" | cut -d= -f1) | ||
#echo $text_tag | ||
sed -i.bak s/"$text_tag.*"/"$p"/g "$i" | ||
fi | ||
done <"$fold_"/"$lang_"_strings.txt | ||
done | ||
|
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
File renamed without changes.