Skip to content

Commit

Permalink
feat & fix: stratagem related issues
Browse files Browse the repository at this point in the history
- add stratagem (Orbital Napalm Barrage)
- fix wrong stratagem (Orbital EMS Strike)
  • Loading branch information
WisteFinch committed Sep 19, 2024
1 parent ef1b8a0 commit 5da31dd
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
4 changes: 2 additions & 2 deletions call-for-stratagems/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId = "indie.wistefinch.callforstratagems"
minSdk = 26
targetSdk = 34
versionCode = 5
versionName = "0.3.1"
versionCode = 6
versionName = "0.3.2"
// Remove unnecessary language to reduce size.
resourceConfigurations += listOf("en", "zh", "ru", "fr", "es", "ar")

Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="126dp"
android:height="126dp"
android:viewportWidth="126"
android:viewportHeight="126">
<path
android:pathData="M28.08,120L9,120a53.73,53.73 0,0 1,7.24 -27L32.52,93C30.08,100.12 28.4,108.98 28.08,120ZM95.65,163h0ZM65,93L91.51,93a85.48,85.48 0,0 1,4.58 27L65,120L65,93ZM107.9,90L93.36,90c-0.42,-1.05 -0.86,-2.04 -1.32,-3L104,87s0.13,-0.63 0.34,-1.71A53.99,53.99 0,0 1,107.9 90ZM77,80l7,7h4.93c0.5,0.99 0.97,1.99 1.4,3L65,90L65,77h8l3.73,-4.66c0.09,0.06 0.18,0.13 0.27,0.19L77,80ZM35.5,93L62,93v27L30.91,120A85.55,85.55 0,0 1,35.5 93ZM36.68,90c0.43,-1.01 0.9,-2.01 1.4,-3L42,87l7.12,-8.91L49,74l3,3L62,77L62,90L36.68,90ZM34.95,87c-0.45,0.96 -0.89,1.95 -1.31,3L18.1,90a53.92,53.92 0,0 1,3.39 -4.51L23,87L34.95,87ZM109.76,93A53.74,53.74 0,0 1,117 120L98.92,120c-0.33,-11.02 -2,-19.88 -4.45,-27h15.29Z"
android:fillColor="#de7b6c"
android:fillType="evenOdd"/>
<path
android:pathData="M53,73L47,63 46,52l10,-9V27L70.11,41.7 70,56l4.65,-11.36L81,62 71,73H66V69l4,-4 -6,-6V52L54,63l4,6 1,4H53Z"
android:fillColor="#fff"
android:fillType="evenOdd"/>
<path
android:pathData="M25.81,84.59L20.89,78.97V69.83L27.92,63.5V52.25L37.84,62.59 37.76,72.64l3.27,-7.99L46,76l-7.53,8.59H34.95V81.78l2.81,-2.81L33.54,74.75V69.83l-7.03,7.73 2.81,4.22 0.7,2.81H25.81Z"
android:fillColor="#fff"
android:fillType="evenOdd"/>
<path
android:pathData="M85.81,83.59L80.89,77.97V68.83L87.92,62.5V51.25L97.84,61.59 97.76,71.64l3.27,-7.99L105.5,76.56l-7.03,7.03H94.95V80.78l2.81,-2.81L93.54,73.75V68.83l-7.03,7.73 2.81,4.22 0.7,2.81H85.81Z"
android:fillColor="#fff"
android:fillType="evenOdd"/>
</vector>
2 changes: 1 addition & 1 deletion server/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ i18n!("src/locales");

const CONF_PATH: &str = "./config.json";
const AUTH_PATH: &str = "./auth.json";
const VERSION: &str = "0.3.1";
const VERSION: &str = "0.3.2";
const AUTH_TIMEOUT: u64 = 259200;

pub async fn run() -> Result<()> {
Expand Down

0 comments on commit 5da31dd

Please sign in to comment.