• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

FinalCrypt - The No¹ One-Time Pad Encryption


Commit MetaInfo

Revisión3a4789f510ba892a39dc9b393b3f1576438f1584 (tree)
Tiempo2020-11-12 05:37:07
Autorron <ronuitzaandam@gmai...>
Commiterron

Log Message

Date: 2020-11-11 Version: 6.4.3

Added nice splash image to FinalCrypt GUI startup
Improved Support Email Messages with Email Button
Updated a number of deprecated social media links

Cambiar Resumen

Diferencia incremental

--- a/src/rdj/GUIFX.java
+++ b/src/rdj/GUIFX.java
@@ -834,7 +834,7 @@ public class GUIFX extends Application implements UI, Initializable
834834 preloaderStage.show();
835835
836836 Timeline fadeinPreloaderTimeline = new Timeline();
837- KeyFrame key1 = new KeyFrame(Duration.millis(1000),
837+ KeyFrame key1 = new KeyFrame(Duration.millis(500),
838838 new KeyValue (preloaderRootGroup.opacityProperty(), 1));
839839 fadeinPreloaderTimeline.getKeyFrames().add(key1);
840840 fadeinPreloaderTimeline.play();
@@ -842,7 +842,7 @@ public class GUIFX extends Application implements UI, Initializable
842842 mainStage = stage;
843843
844844 // Just to delay mainStage and give the preloaderStage more time to arrise
845- Timeline mainStageDelayTimeline = new Timeline(new KeyFrame( Duration.millis(1000), ae ->
845+ Timeline mainStageDelayTimeline = new Timeline(new KeyFrame( Duration.millis(500), ae ->
846846 {
847847 ui = this;
848848 guifx = this;
@@ -930,15 +930,15 @@ public class GUIFX extends Application implements UI, Initializable
930930 fadeInMessage = version.getLocalOverallVersionString();
931931 });
932932
933- Timeline fadeoutPreloaderTimeline = new Timeline(new KeyFrame( Duration.millis(1000), ae1 ->
933+ Timeline preloaderFadeoutDelayTimeline = new Timeline(new KeyFrame( Duration.millis(500), ae1 ->
934934 {
935- Timeline dimTimeline = new Timeline();
935+ Timeline preloaderFadeoutTimeline = new Timeline();
936936 KeyFrame key4 = new KeyFrame(Duration.millis(1000),
937937 new KeyValue (preloaderRootGroup.opacityProperty(), 0));
938- dimTimeline.getKeyFrames().add(key4);
939- dimTimeline.setOnFinished((ae2) -> preloaderStage.close());
940- dimTimeline.play();
941- } )); fadeoutPreloaderTimeline.play();
938+ preloaderFadeoutTimeline.getKeyFrames().add(key4);
939+ preloaderFadeoutTimeline.setOnFinished((ae2) -> preloaderStage.close());
940+ preloaderFadeoutTimeline.play();
941+ } )); preloaderFadeoutDelayTimeline.play();
942942
943943 } )); mainStageDelayTimeline.play();
944944 }