-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rename base package from de.tinycodecrank → kryptonbutterfly
- Loading branch information
1 parent
de0b547
commit 7c2ad79
Showing
39 changed files
with
211 additions
and
227 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
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 |
---|---|---|
|
@@ -37,7 +37,7 @@ cp $SOURCE_DIR/target/$ARTIFACT_NAME-$PACKAGE_VERSION.jar $BUILD_DIR/usr/share/$ | |
|
||
echo "$PACKAGE_NAME ($PACKAGE_VERSION) trusty; urgency=low" > changelog | ||
echo " * Rebuild" >> changelog | ||
echo " -- tinycodecrank <[email protected]> `date -R`" >> changelog | ||
echo " -- kryptonbutterfly <[email protected]> `date -R`" >> changelog | ||
gzip -9c changelog > $BUILD_DIR/usr/share/doc/$PACKAGE_NAME/changelog.gz | ||
|
||
cp *.svg $BUILD_DIR/usr/share/$PACKAGE_NAME/ | ||
|
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 was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
src/d/t/totp/ColorAdapter.java → src/kryptonbutterfly/totp/ColorAdapter.java
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,4 +1,4 @@ | ||
package d.t.totp; | ||
package kryptonbutterfly.totp; | ||
|
||
import java.awt.Color; | ||
import java.io.IOException; | ||
|
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
6 changes: 3 additions & 3 deletions
6
src/d/t/totp/TotpConstants.java → src/kryptonbutterfly/totp/TotpConstants.java
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
2 changes: 1 addition & 1 deletion
2
src/d/t/totp/misc/Assets.java → src/kryptonbutterfly/totp/misc/Assets.java
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,4 +1,4 @@ | ||
package d.t.totp.misc; | ||
package kryptonbutterfly.totp.misc; | ||
|
||
import java.awt.Color; | ||
import java.awt.Image; | ||
|
6 changes: 3 additions & 3 deletions
6
src/d/t/totp/misc/ColorCloud.java → ...ryptonbutterfly/totp/misc/ColorCloud.java
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
2 changes: 1 addition & 1 deletion
2
src/d/t/totp/misc/ColorUtils.java → ...ryptonbutterfly/totp/misc/ColorUtils.java
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,4 +1,4 @@ | ||
package d.t.totp.misc; | ||
package kryptonbutterfly.totp.misc; | ||
|
||
import java.awt.Color; | ||
|
||
|
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,8 @@ | ||
package kryptonbutterfly.totp.misc; | ||
|
||
import kryptonbutterfly.totp.prefs.TotpEntry; | ||
|
||
public record EditResult( | ||
boolean delete, | ||
TotpEntry entry) | ||
{} |
8 changes: 4 additions & 4 deletions
8
src/d/t/totp/misc/HtmlColors.java → ...ryptonbutterfly/totp/misc/HtmlColors.java
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
4 changes: 2 additions & 2 deletions
4
src/d/t/totp/misc/ImageUtils.java → ...ryptonbutterfly/totp/misc/ImageUtils.java
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
2 changes: 1 addition & 1 deletion
2
src/d/t/totp/misc/NamedColor.java → ...ryptonbutterfly/totp/misc/NamedColor.java
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,4 +1,4 @@ | ||
package d.t.totp.misc; | ||
package kryptonbutterfly.totp.misc; | ||
|
||
import java.awt.Color; | ||
|
||
|
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
4 changes: 2 additions & 2 deletions
4
src/d/t/totp/misc/VectorizedColor.java → ...nbutterfly/totp/misc/VectorizedColor.java
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,6 +1,6 @@ | ||
package d.t.totp.misc; | ||
package kryptonbutterfly.totp.misc; | ||
|
||
import de.tinycodecrank.math.vector._int.IVecI; | ||
import kryptonbutterfly.math.vector._int.IVecI; | ||
|
||
record VectorizedColor<Color extends NamedColor, Vec extends IVecI<Vec>>(Vec vec, Color color) | ||
{} |
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
6 changes: 3 additions & 3 deletions
6
src/d/t/totp/prefs/TotpConfig.java → ...yptonbutterfly/totp/prefs/TotpConfig.java
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
Oops, something went wrong.