Skip to content

Commit ac465b0

Browse files
author
khcrysalis
committed
bump to v2.5.0
1 parent 6654a36 commit ac465b0

4 files changed

Lines changed: 17 additions & 73 deletions

File tree

Feather.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@
483483
"$(PROJECT_DIR)/Feather/Resources/idevice",
484484
);
485485
MACOSX_DEPLOYMENT_TARGET = 15.2;
486-
MARKETING_VERSION = 2.4.0;
486+
MARKETING_VERSION = 2.5.0;
487487
PRODUCT_BUNDLE_IDENTIFIER = thewonderofyou.Feather;
488488
PRODUCT_NAME = "$(TARGET_NAME)";
489489
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -547,7 +547,7 @@
547547
"$(PROJECT_DIR)/Feather/Resources/idevice",
548548
);
549549
MACOSX_DEPLOYMENT_TARGET = 15.2;
550-
MARKETING_VERSION = 2.4.0;
550+
MARKETING_VERSION = 2.5.0;
551551
PRODUCT_BUNDLE_IDENTIFIER = thewonderofyou.Feather;
552552
PRODUCT_NAME = "$(TARGET_NAME)";
553553
PROVISIONING_PROFILE_SPECIFIER = "";

Feather/Resources/Localizable.xcstrings

Lines changed: 11 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -3284,36 +3284,6 @@
32843284
}
32853285
}
32863286
},
3287-
"Discord" : {
3288-
"extractionState" : "manual",
3289-
"localizations" : {
3290-
"en" : {
3291-
"stringUnit" : {
3292-
"state" : "translated",
3293-
"value" : "Discord"
3294-
}
3295-
},
3296-
"it" : {
3297-
"stringUnit" : {
3298-
"state" : "translated",
3299-
"value" : "Discord"
3300-
}
3301-
},
3302-
"pl" : {
3303-
"stringUnit" : {
3304-
"state" : "translated",
3305-
"value" : "Discord"
3306-
}
3307-
},
3308-
"vi" : {
3309-
"stringUnit" : {
3310-
"state" : "translated",
3311-
"value" : "Discord"
3312-
}
3313-
}
3314-
},
3315-
"shouldTranslate" : false
3316-
},
33173287
"Dismiss" : {
33183288
"extractionState" : "manual",
33193289
"localizations" : {
@@ -7265,6 +7235,17 @@
72657235
}
72667236
}
72677237
},
7238+
"Join Us on Discord" : {
7239+
"extractionState" : "manual",
7240+
"localizations" : {
7241+
"en" : {
7242+
"stringUnit" : {
7243+
"state" : "translated",
7244+
"value" : "Join Us on Discord"
7245+
}
7246+
}
7247+
}
7248+
},
72687249
"Learn more about how to setup a repository…" : {
72697250
"extractionState" : "manual",
72707251
"localizations" : {
@@ -7312,41 +7293,6 @@
73127293
}
73137294
}
73147295
},
7315-
"Less" : {
7316-
"extractionState" : "manual",
7317-
"localizations" : {
7318-
"en" : {
7319-
"stringUnit" : {
7320-
"state" : "translated",
7321-
"value" : "Less"
7322-
}
7323-
},
7324-
"pl" : {
7325-
"stringUnit" : {
7326-
"state" : "translated",
7327-
"value" : "Mniej"
7328-
}
7329-
},
7330-
"tr" : {
7331-
"stringUnit" : {
7332-
"state" : "translated",
7333-
"value" : "Daha Az"
7334-
}
7335-
},
7336-
"vi" : {
7337-
"stringUnit" : {
7338-
"state" : "translated",
7339-
"value" : "Ẩn"
7340-
}
7341-
},
7342-
"zh-Hans" : {
7343-
"stringUnit" : {
7344-
"state" : "translated",
7345-
"value" : "更少"
7346-
}
7347-
}
7348-
}
7349-
},
73507296
"Library" : {
73517297
"comment" : "Library tab",
73527298
"extractionState" : "manual",

Feather/Views/Settings/SettingsDonationCellView.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,6 @@ struct SettingsDonationCellView: View {
1616
Section {
1717
VStack(spacing: 14) {
1818
_title()
19-
20-
_benefit(
21-
.localized("Discord"),
22-
.localized("Get access to our secret Discord by donating, where we talk about future updates, betas, and potential ways to make your experience better."),
23-
systemName: "lock.fill"
24-
)
2519
_benefit(
2620
.localized("Remove this Alert"),
2721
.localized("Remove annoying alerts like these after getting beta access!"),

Feather/Views/Settings/SettingsView.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ struct SettingsView: View {
1717

1818
private let _donationsUrl = "https://github.com/sponsors/khcrysalis"
1919
private let _githubUrl = "https://github.com/khcrysalis/Feather"
20+
private let _discordServer = "https://discord.gg/TYnUDJkG66"
2021

2122
// MARK: Body
2223
var body: some View {
@@ -100,6 +101,9 @@ extension SettingsView {
100101
Button(.localized("GitHub Repository"), systemImage: "safari") {
101102
UIApplication.open(_githubUrl)
102103
}
104+
Button(.localized("Join Us on Discord"), systemImage: "safari") {
105+
UIApplication.open(_discordServer)
106+
}
103107
} footer: {
104108
Text(.localized("If any issues occur within the app please report it via the GitHub repository. When submitting an issue, make sure to submit detailed information."))
105109
}

0 commit comments

Comments
 (0)