Skip to content

Commit d2fb946

Browse files
Merge branch 'develop'
2 parents 242d0bb + 1e04d8c commit d2fb946

File tree

13 files changed

+86
-8
lines changed

13 files changed

+86
-8
lines changed

App_Resources/Android/app.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ android {
1313
targetSdkVersion 35
1414

1515
// Version Information
16-
versionCode 2
17-
versionName "1.0.0-alpha.2"
16+
versionCode 3
17+
versionName "1.0.0-alpha.3"
1818

1919
generatedDensities = []
2020

@@ -27,7 +27,7 @@ android {
2727
abi {
2828
enable true //enables the ABIs split mechanism
2929
reset() //reset the list of ABIs to be included to an empty string
30-
include 'arm64-v8a'
30+
include 'arm64-v8a', 'x86_64'
3131
universalApk false
3232
}
3333
}

App_Resources/Android/src/main/res/values-de/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,5 +204,7 @@
204204
<string name="_features_book_author_42mEz">"Author"</string>
205205
<string name="_features_book_authors_23cvDF">"Authors"</string>
206206
<string name="_features_book_contributors_25tYae">"Contributors"</string>
207+
<string name="_features_sign_in_find_an_instance_116sKH">"Find an instance"</string>
208+
<string name="_features_sign_in_no_account_message_uE11z">"Don\'t have an account?"</string>
207209
<string name="_common_user_ratings_Z1Y1ysf">"common.user_ratings"</string>
208210
</resources>

App_Resources/Android/src/main/res/values-fa/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,8 @@
198198
<string name="_features_book_contributors_25tYae">"Contributors"</string>
199199
<string name="_features_search_no_result_wbnfd">"Could not find anything"</string>
200200
<string name="_features_explore_page_title_ZrpHT6">"Explore"</string>
201+
<string name="_features_sign_in_find_an_instance_116sKH">"Find an instance"</string>
202+
<string name="_features_sign_in_no_account_message_uE11z">"Don\'t have an account?"</string>
201203
<string name="_features_movie_stopped_Z1EQp4k">"features.movie.stopped"</string>
202204
<string name="_features_movie_watched_1SxQrk">"features.movie.watched"</string>
203205
<string name="_features_movie_watching_Z2ib3Mg">"features.movie.watching"</string>

App_Resources/Android/src/main/res/values-it/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,4 +205,6 @@
205205
<string name="_features_book_author_42mEz">"Author"</string>
206206
<string name="_features_book_authors_23cvDF">"Authors"</string>
207207
<string name="_features_book_contributors_25tYae">"Contributors"</string>
208+
<string name="_features_sign_in_find_an_instance_116sKH">"Find an instance"</string>
209+
<string name="_features_sign_in_no_account_message_uE11z">"Don\'t have an account?"</string>
208210
</resources>

App_Resources/Android/src/main/res/values-zh-rCN/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,8 @@
198198
<string name="_app_name_1k3Sbz">"NeoComment"</string>
199199
<string name="app_name">"NeoComment"</string>
200200
<string name="title_activity_kimera">"NeoComment"</string>
201+
<string name="_features_sign_in_find_an_instance_116sKH">"Find an instance"</string>
202+
<string name="_features_sign_in_no_account_message_uE11z">"Don\'t have an account?"</string>
201203
<string name="_features_movie_stopped_Z1EQp4k">"features.movie.stopped"</string>
202204
<string name="_features_movie_watched_1SxQrk">"features.movie.watched"</string>
203205
<string name="_features_movie_watching_Z2ib3Mg">"features.movie.watching"</string>

App_Resources/Android/src/main/res/values/strings.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,8 @@
192192
<string name="_features_book_contributors_25tYae">"Contributors"</string>
193193
<string name="_features_search_no_result_wbnfd">"Could not find anything"</string>
194194
<string name="_features_explore_page_title_ZrpHT6">"Explore"</string>
195+
<string name="_features_sign_in_find_an_instance_116sKH">"Find an instance"</string>
196+
<string name="_features_sign_in_no_account_message_uE11z">"Don\'t have an account?"</string>
195197
<string name="_features_sign_in_next_Vzyp">"Next"</string>
196198
<string name="_features_sign_in_instance_url_qg7CC">"Instance URL"</string>
197199
<string name="_features_sign_in_welcome_Z2se0Fl">"Welcome to NeoComment!"</string>

CHANGELOG.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.0.0-alpha.3] - 2025-11-23
9+
10+
### Added
11+
12+
- Added item type icon in collections over items to help detecting item types easier.
13+
- Added a link to NeoDB instances in authentication page. So, new users can find an instance easier.
14+
15+
### Fixed
16+
17+
- Reduced APK size by including only arm64 architecture.
18+
19+
## [1.0.0-alpha.2] - 2025-11-19
20+
21+
### Changed
22+
23+
- Updated Chinese translation - Thanks to @heddxh
24+
25+
### Fixed
26+
27+
- Improve liking and boosting
28+
29+
## [1.0.0-alpha.1] - 2025-11-11
30+
31+
### Added
32+
33+
- Added explore page
34+
- Added item details page
35+
- Added Forest and Beach themes
36+
- Added light and dark modes
37+
- Added search over items
38+
- Added rate, review and note taking functionalities
39+
- Added ability to create collections and add items to the collections
40+
- Added post interactions
41+
42+
[1.0.0-alpha.3]: https://github.com/mohammadrafigh/NeoComment/compare/v1.0.0-alpha.2...v1.0.0-alpha.3
43+
[1.0.0-alpha.3]: https://github.com/mohammadrafigh/NeoComment/compare/1.0.0-alpha.1...v1.0.0-alpha.2
44+
[0.0.1]: https://github.com/mohammadrafigh/NeoComment/releases/tag/1.0.0-alpha.1
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
### Added
2+
3+
- Added item type icon in collections over items to help detecting item types easier.
4+
- Added a link to NeoDB instances in authentication page. So, new users can find an instance easier.
5+
6+
### Fixed
7+
8+
- Reduced APK size by including only arm64 architecture.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "neocomment",
33
"main": "./src/main.ts",
4-
"version": "1.0.0-alpha.2",
4+
"version": "1.0.0-alpha.3",
55
"private": true,
66
"dependencies": {
77
"@angular/animations": "~20.0.0",

src/app/features/auth/sign-in/sign-in.component.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,14 @@
2424
[text]="'features.sign_in.next' | L"
2525
></Button>
2626
}
27+
28+
<WrapLayout orientation="horizontal" horizontalAlignment="center" class="mt-4">
29+
<Label [text]="'features.sign_in.no_account_message' | L" class="mr-1"></Label>
30+
<Button
31+
class="transparent-button text-primary-500 px-2"
32+
[text]="'features.sign_in.find_an_instance' | L"
33+
(tap)="openFindInstanceURL()"
34+
></Button>
35+
</WrapLayout>
2736
</StackLayout>
2837
</GridLayout>

0 commit comments

Comments
 (0)