Compare commits

..

No commits in common. "30f1dc118c380feaa5fa88a10c1fb0ff7f03db5e" and "c634995e4106a5158686d40f9ee334ba22111fba" have entirely different histories.

34 changed files with 60 additions and 26 deletions

View File

@ -7,11 +7,11 @@
<deviceKey>
<Key>
<type value="VIRTUAL_DEVICE_PATH" />
<value value="C:\Users\Cody\.android\avd\for_Website.avd" />
<value value="C:\Users\Cody\.android\avd\Pixel_C_API_33.avd" />
</Key>
</deviceKey>
</Target>
</targetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2024-02-25T16:19:56.097941500Z" />
<timeTargetWasSelectedWithDropDown value="2024-02-24T17:39:55.956737900Z" />
</component>
</project>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 KiB

View File

@ -1,9 +1,13 @@
package com.example.onetap_ssh;
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Bundle;
import android.os.Handler;
import android.os.Looper;
import android.view.ViewGroup;
import android.widget.Toast;
@ -13,6 +17,8 @@ import com.example.onetap_ssh.util.SettingsUtil;
public class IntroActivity extends BaseActivity {
public static boolean show_logoanimation = false;
private ActivityIntroBinding binding;
private MediaPlayer mMediaPlayer;
@ -46,6 +52,26 @@ public class IntroActivity extends BaseActivity {
});
setContentView(binding.getRoot());
SharedPreferences p = getSharedPreferences("appsettings", Activity.MODE_PRIVATE);
show_logoanimation = p.getBoolean("Logoanimation", true);
if (show_logoanimation) {
setContentView(R.layout.activity_intro);
final Handler handler = new Handler(Looper.getMainLooper());
handler.postDelayed(new Runnable() {
@Override
public void run() {
//Do something after 4000ms
Intent m = new Intent(getApplicationContext(), MainActivity.class);
m.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NO_ANIMATION);
startActivity(m);
}
}, 4000);
} else {
Intent m = new Intent(getApplicationContext(), MainActivity.class);
m.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NO_ANIMATION);
startActivity(m);
}
}
public void openMainActivity() {

View File

@ -50,10 +50,11 @@ import java.util.Map;
import java.util.Objects;
import java.util.UUID;
public class MainActivity extends BaseActivity {
public class MainActivity extends AppCompatActivity {
private AppBarConfiguration mAppBarConfiguration;
private ActivityMainBinding binding;
private boolean fullyLaunched;
public static boolean button_vibration = false;
private boolean lockOnStop = true;
@ -90,8 +91,8 @@ public class MainActivity extends BaseActivity {
NavigationUI.setupWithNavController(navigationView, navController);
SharedPreferences p = getSharedPreferences("appsettings", Activity.MODE_PRIVATE);
button_vibration = p.getBoolean("Vibration", false );
//launchApp();
IntroActivity.show_logoanimation = p.getBoolean("Logoanimation", true );
launchApp();
navigationView.getMenu().getItem(4).setOnMenuItemClickListener(new MenuItem.OnMenuItemClickListener() {
@Override

View File

@ -223,6 +223,7 @@ public class HomeFragment extends Fragment {
passwordInput.setVisibility(View.VISIBLE);
reboot_Button.setVisibility(View.GONE);
shutdown_Button.setVisibility(View.GONE);
backgroundoverlay_bottom.setVisibility(View.INVISIBLE);
} else {
logoutButton.setVisibility(View.VISIBLE);
reboot_Button.setVisibility(View.VISIBLE);

View File

@ -17,7 +17,7 @@ public class ThemeUtil {
activity.setTheme(theme.getStyle());
if(SettingsUtil.isMinimalistThemeEnabled(activity)) {
activity.getTheme().applyStyle(R.style.Theme_OneTap_SSH_Minimalist, true);
activity.getTheme().applyStyle(R.style.Theme_CringeAuthenticator_Minimalist, true);
}
AppCompatDelegate.setDefaultNightMode(SettingsUtil.getAppearance(activity).getValue());

View File

@ -45,8 +45,6 @@
android:background="#80FFFFFF"
android:scaleType="centerCrop"
android:src="@drawable/background_red_blue"
android:textColor="@color/mtrl_btn_text_color_selector"
android:textColorHint="@color/mtrl_btn_text_color_selector"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
@ -90,8 +88,6 @@
android:ems="10"
android:hint="@string/login_ipaddress"
android:inputType="text"
android:textColor="@color/mtrl_btn_text_color_selector"
android:textColorHint="@color/mtrl_btn_text_color_selector"
app:layout_constraintEnd_toEndOf="@+id/text_home"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="@+id/text_home"
@ -106,8 +102,6 @@
android:hint="@string/login_username"
android:inputType="textEmailAddress"
android:singleLine="false"
android:textColor="@color/mtrl_btn_text_color_selector"
android:textColorHint="@color/mtrl_btn_text_color_selector"
app:layout_constraintEnd_toEndOf="@+id/text_home"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="@+id/text_home"
@ -121,8 +115,6 @@
android:ems="10"
android:hint="@string/login_password"
android:inputType="textPassword"
android:textColor="@color/mtrl_btn_text_color_selector"
android:textColorHint="@color/mtrl_btn_text_color_selector"
app:layout_constraintEnd_toEndOf="@+id/text_home"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="@+id/text_home"

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
<monochrome android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -25,12 +25,12 @@
<fragment
android:id="@+id/nav_about"
android:name="com.example.onetap_ssh.fragment.AboutFragment"
android:label="@string/fragment_about"
android:label="@string/menu_gallery"
tools:layout="@layout/fragment_about" />
<fragment
android:id="@+id/nav_settings"
android:name="com.example.onetap_ssh.fragment.SettingsFragment"
android:label="@string/settings"
android:name="com.example.onetap_ssh.ui.slideshow.SlideshowFragment"
android:label="@string/menu_slideshow"
tools:layout="@layout/fragment_settings" />
</navigation>

Binary file not shown.

View File

@ -1,6 +1,18 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="Theme.OneTap_SSH." parent="Base.Theme.OneTap_SSH">
<style name="Theme.OneTap_SSH" parent="Base.Theme.OneTap_SSH">
<item name="android:textColor">@color/white</item>
<item name="colorOnBackground">@color/background_grey</item>
</style>
<style name="Theme.OneTap_SSH.PopupOverlay">
<item name="colorTheme1">@color/color_blue</item>
<item name="colorTheme2">@color/color_light_green</item>
</style>
<style name="Theme.OneTap_SSH.AppBarOverlay">
<item name="colorTheme1">@color/color_blue</item>
<item name="colorTheme2">@color/color_light_green</item>
</style>
<style name="DialogAnimation">
<item name="android:windowEnterAnimation">@anim/dialog_in</item>
<item name="android:windowExitAnimation">@anim/dialog_out</item>
</style>
</resources>

View File

@ -1,5 +1,5 @@
<resources>
<string name="app_name" translatable="false">OneTap SSH</string>
<string name="app_name" translatable="false">Code Guard</string>
<string name="action_settings">Settings</string>
<string name="action_about">About</string>
<string name="edit">Edit</string>
@ -189,8 +189,8 @@
<string name="nav_header_subtitle">1</string>
<string name="nav_header_title">1</string>
<string name="nav_header_desc">1</string>
<string name="menu_home">Home</string>
<string name="menu_gallery">Gallery</string>
<string name="menu_home">1</string>
<string name="menu_gallery">1</string>
<string name="menu_slideshow">1</string>

View File

@ -50,7 +50,7 @@
<item name="colorTheme1">@color/color_orange</item>
<item name="colorTheme2">@color/color_turquoise</item>
</style>
<style name="Theme.OneTap_SSH.Minimalist" parent="">
<style name="Theme.CringeAuthenticator.Minimalist" parent="">
<item name="dialogBackground">?android:attr/colorBackground</item>
<item name="menuBackground">?android:attr/colorBackground</item>
<item name="buttonBackground">@drawable/button_simple</item>