[PR #2] [MERGED] Feature/ssl #4

Closed
opened 2026-02-26 01:35:37 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jtsalva/cloudmare/pull/2
Author: @jtsalva
Created: 10/6/2019
Status: Merged
Merged: 10/6/2019
Merged by: @jtsalva

Base: masterHead: feature/ssl


📝 Commits (10+)

  • 8072f8d create skeleton for ssl feature
  • c70942e upgrade gradle version
  • 1b94786 refactor crypto -> ssl
  • 80aa611 disable inspection warning when using text dp instead of sp
  • f6f2654 set android:text title for ssl spinner
  • a6aa956 can now successfully set ssl encryption mode
  • 17fa654 add ssl mode info
  • f97e95b show progress bar when loading
  • fa05966 add toggles for other ssl settings
  • 74232ff revert changes on erroroneous response

📊 Changes

15 files changed (+590 additions, -53 deletions)

View changed files

📝 .idea/codeStyles/Project.xml (+3 -0)
.idea/inspectionProfiles/Project_Default.xml (+13 -0)
📝 app/src/main/AndroidManifest.xml (+9 -10)
📝 app/src/main/java/dev/jtsalva/cloudmare/DomainDashActivity.kt (+6 -1)
app/src/main/java/dev/jtsalva/cloudmare/SSLActivity.kt (+99 -0)
app/src/main/java/dev/jtsalva/cloudmare/api/BooleanUtil.kt (+3 -0)
📝 app/src/main/java/dev/jtsalva/cloudmare/api/zonesettings/ZoneSetting.kt (+42 -4)
📝 app/src/main/java/dev/jtsalva/cloudmare/api/zonesettings/ZoneSettingListResponse.kt (+1 -1)
app/src/main/java/dev/jtsalva/cloudmare/api/zonesettings/ZoneSettingRequest.kt (+43 -0)
app/src/main/java/dev/jtsalva/cloudmare/api/zonesettings/ZoneSettingsRequest.kt (+0 -34)
app/src/main/java/dev/jtsalva/cloudmare/viewmodel/SSLViewModel.kt (+208 -0)
📝 app/src/main/res/layout/activity_domain_dash.xml (+5 -0)
app/src/main/res/layout/activity_ssl.xml (+135 -0)
📝 app/src/main/res/values/strings.xml (+22 -2)
📝 build.gradle (+1 -1)

📄 Description

Add ability to toggle some SSL settings


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jtsalva/cloudmare/pull/2 **Author:** [@jtsalva](https://github.com/jtsalva) **Created:** 10/6/2019 **Status:** ✅ Merged **Merged:** 10/6/2019 **Merged by:** [@jtsalva](https://github.com/jtsalva) **Base:** `master` ← **Head:** `feature/ssl` --- ### 📝 Commits (10+) - [`8072f8d`](https://github.com/jtsalva/cloudmare/commit/8072f8d6df936b1a27b3cfc61bcdecc43affe3f9) create skeleton for ssl feature - [`c70942e`](https://github.com/jtsalva/cloudmare/commit/c70942eeacb6e418085fe619821de48ff44677e6) upgrade gradle version - [`1b94786`](https://github.com/jtsalva/cloudmare/commit/1b9478696e8951ffc4eb0901a87c51ccbb1802ab) refactor crypto -> ssl - [`80aa611`](https://github.com/jtsalva/cloudmare/commit/80aa6116b92d922738719f98c17d660f501d1782) disable inspection warning when using text dp instead of sp - [`f6f2654`](https://github.com/jtsalva/cloudmare/commit/f6f2654e1950b591b05dc1b3d15f1b7e3ed45d0a) set android:text title for ssl spinner - [`a6aa956`](https://github.com/jtsalva/cloudmare/commit/a6aa9563bdc34367338e1f8d5931368999734068) can now successfully set ssl encryption mode - [`17fa654`](https://github.com/jtsalva/cloudmare/commit/17fa654b8f01317ab0ff734a2c48c7e98b94f351) add ssl mode info - [`f97e95b`](https://github.com/jtsalva/cloudmare/commit/f97e95b7085a97a679e2884b48ca6ccd7f4baa4c) show progress bar when loading - [`fa05966`](https://github.com/jtsalva/cloudmare/commit/fa059660e907775c50b6716b500ad78e0dff4dde) add toggles for other ssl settings - [`74232ff`](https://github.com/jtsalva/cloudmare/commit/74232ff2cb2d05e747cf836d0c603ca0b596dfda) revert changes on erroroneous response ### 📊 Changes **15 files changed** (+590 additions, -53 deletions) <details> <summary>View changed files</summary> 📝 `.idea/codeStyles/Project.xml` (+3 -0) ➕ `.idea/inspectionProfiles/Project_Default.xml` (+13 -0) 📝 `app/src/main/AndroidManifest.xml` (+9 -10) 📝 `app/src/main/java/dev/jtsalva/cloudmare/DomainDashActivity.kt` (+6 -1) ➕ `app/src/main/java/dev/jtsalva/cloudmare/SSLActivity.kt` (+99 -0) ➕ `app/src/main/java/dev/jtsalva/cloudmare/api/BooleanUtil.kt` (+3 -0) 📝 `app/src/main/java/dev/jtsalva/cloudmare/api/zonesettings/ZoneSetting.kt` (+42 -4) 📝 `app/src/main/java/dev/jtsalva/cloudmare/api/zonesettings/ZoneSettingListResponse.kt` (+1 -1) ➕ `app/src/main/java/dev/jtsalva/cloudmare/api/zonesettings/ZoneSettingRequest.kt` (+43 -0) ➖ `app/src/main/java/dev/jtsalva/cloudmare/api/zonesettings/ZoneSettingsRequest.kt` (+0 -34) ➕ `app/src/main/java/dev/jtsalva/cloudmare/viewmodel/SSLViewModel.kt` (+208 -0) 📝 `app/src/main/res/layout/activity_domain_dash.xml` (+5 -0) ➕ `app/src/main/res/layout/activity_ssl.xml` (+135 -0) 📝 `app/src/main/res/values/strings.xml` (+22 -2) 📝 `build.gradle` (+1 -1) </details> ### 📄 Description Add ability to toggle some SSL settings --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 01:35:37 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudmare-jtsalva#4
No description provided.