-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/notifications_refresh_p1' into issue/20024-like…
…-inline-action # Conflicts: # WordPress/src/main/java/org/wordpress/android/ui/notifications/adapters/NotesAdapter.java
- Loading branch information
Showing
268 changed files
with
7,251 additions
and
3,991 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
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,4 @@ | ||
- Get notified when you’re working offline. | ||
- Image block uploads pause/resume with internet connection. | ||
- See custom gradient selections in the editor. | ||
- Fixed forward/back arrows for right-to-left readers. | ||
- Daily Prompt tags work properly. | ||
- Tap Site Domain cards to manage domains. | ||
* [**] Fix editor crash occurring on large posts [https://github.com/wordpress-mobile/WordPress-Android/pull/20046] | ||
* [*] [Jetpack-only] Site Monitoring: Add Metrics, PHP Logs, and Web Server Logs under Site Monitoring [https://github.com/wordpress-mobile/WordPress-Android/issues/20067] | ||
* [**] Prevent images from temporarily disappearing when uploading media [https://github.com/WordPress/gutenberg/pull/57869] | ||
* [***] [Jetpack-only] Reader: introduced new UI/UX for content navigation and filtering [https://github.com/wordpress-mobile/WordPress-Android/pull/19978] |
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,2 @@ | ||
- Get notified when you’re working offline. | ||
- Image block uploads pause when you lose internet and resume when you reconnect. | ||
- Select a custom gradient in the editor and see a color indicator. | ||
- “Forward” and “back” arrows are correct for right-to-left readers. | ||
* [**] Fix editor crash occurring on large posts [https://github.com/wordpress-mobile/WordPress-Android/pull/20046] | ||
* [**] Prevent images from temporarily disappearing when uploading media [https://github.com/WordPress/gutenberg/pull/57869] |
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
80 changes: 80 additions & 0 deletions
80
WordPress/src/main/java/org/wordpress/android/designsystem/DesignSystemAppColor.kt
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,80 @@ | ||
package org.wordpress.android.designsystem | ||
|
||
import androidx.compose.runtime.Stable | ||
import androidx.compose.ui.graphics.Color | ||
|
||
/** | ||
* Object containing static common colors used throughout the project. Note that the colors here are not SEMANTIC, | ||
* meaning they don't represent the usage of the color (e.g.: PrimaryButtonBackground) but instead they are raw | ||
* colors used throughout this app's design (e.g.: Green50). | ||
*/ | ||
object DesignSystemAppColor { | ||
// Black & White | ||
@Stable | ||
val Black = Color(0xFF000000) | ||
|
||
@Stable | ||
val White = Color(0xFFFFFFFF) | ||
|
||
// Grays | ||
@Stable | ||
val Gray = Color(0xFFF2F2F7) | ||
|
||
@Stable | ||
val Gray10 = Color(0xFFC2C2C6) | ||
|
||
@Stable | ||
val Gray20 = Color(0x99EBEBF5) | ||
|
||
@Stable | ||
val Gray30 = Color(0xFF9B9B9E) | ||
|
||
@Stable | ||
val Gray40 = Color(0x993C3C43) | ||
|
||
@Stable | ||
val Gray50 = Color(0x4D3C3C43) | ||
|
||
@Stable | ||
val Gray60 = Color(0xFF4E4E4F) | ||
|
||
@Stable | ||
val Gray70 = Color(0xFF3A3A3C) | ||
|
||
@Stable | ||
val Gray80 = Color(0xFF2C2C2E) | ||
|
||
// Blues | ||
@Stable | ||
val Blue = Color(0xFF0675C4) | ||
|
||
@Stable | ||
val Blue10 = Color(0xFF399CE3) | ||
|
||
@Stable | ||
val Blue20 = Color(0xFF1689DB) | ||
|
||
// Greens | ||
@Stable | ||
val Green = Color(0xFF008710) | ||
|
||
@Stable | ||
val Green10 = Color(0xFF2FB41F) | ||
|
||
@Stable | ||
val Green20 = Color(0xFF069E08) | ||
|
||
// Reds | ||
@Stable | ||
val Red = Color(0xFFD63638) | ||
|
||
@Stable | ||
val Red10 = Color(0xFFE65054) | ||
|
||
// Oranges | ||
@Stable | ||
val Orange = Color(0xFFD67709) | ||
|
||
@Stable | ||
val Orange10 = Color(0xFFE68B28) | ||
} |
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
Oops, something went wrong.