release v1.13.0

This commit is contained in:
Cuong-Tran 2024-12-31 12:46:48 +07:00
parent 2e744ed5e9
commit 0d493a3eb9
No known key found for this signature in database
GPG key ID: 733AA7624B9315C2
3 changed files with 64 additions and 5 deletions

22
.github/scripts/release_note_generate.sh vendored Executable file
View file

@ -0,0 +1,22 @@
#!/bin/bash
# Check if at least one argument is provided
if [ $# -lt 1 ]; then
echo "Usage: $0 <previous release> [latest commit or omit for master]"
exit 1
fi
# Assign the first argument to variable1
previous_release=$1
# Check if the second argument is provided, otherwise use default value
if [ -z "$2" ]; then
latest_commit="master"
else
latest_commit=$2
fi
curl -H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/komikku-app/komikku/compare/$previous_release...$latest_commit" \
| jq '[.commits[]|{message:(.commit.message | split("\n")), username:.author.login}]' \
| jq -r '.[]|"- \(.message | first) (@\(.username))"'

View file

@ -1,19 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion versionName="r9715" changeDate="January 29, 2025">
<changelogtext>[b]New:[/b] feat: unify recommendation screens and add more sources</changelogtext>
<changelogtext>[b]New:[/b] built-in EH compatible with extension</changelogtext>
<changelogtext>[b]New:[/b] Notification rich info</changelogtext>
<changelogtext>[b]New:[/b] Drag to reorder feeds</changelogtext>
<changelogtext>[b]New:[/b] Add option to enable incognito mode per extension</changelogtext>
<changelogtext>[b]New:[/b] feat: add global search shortcut to SmartSearch</changelogtext>
<changelogtext>[b]Improve:[/b] update website link</changelogtext>
<changelogtext>[b]Improve:[/b] add webview to Extension detail screen</changelogtext>
<changelogtext>[b]Improve:[/b] Restore chapter's bookmark &amp; oldest dateUpload from backup</changelogtext>
<changelogtext>[b]Improve:[/b] Update Bangumi</changelogtext>
<changelogtext>[b]Fix:[/b] custom theme color in various AndroidView</changelogtext>
<changelogtext>[b]Fix:[/b] Mangadex fix alt title being removed by cleanDescription</changelogtext>
<changelogtext>[b]Fix:[/b] was not showing entry after importing entry with deep-link</changelogtext>
<changelogtext>[b]Fix:[/b] add entry to favorite when importing via deep-link</changelogtext>
<changelogtext>[b]Fix:[/b] crash when open manga/chapter deep-link or SmartSearch caused by #612</changelogtext>
<changelogtext>[b]Fix:[/b] (myanimelist): Fix nullability and fallback to medium cover if large cover is null</changelogtext>
<changelogtext>[b]Fix:[/b] (download): Making sure archive tmp file is created properly</changelogtext>
</changelogversion>
<changelogversion versionName="r9669" changeDate="December 31, 2024">
<changelogtext>[b]New:[/b] Group update entries together</changelogtext>
<changelogtext>[b]New:[/b] Drag &amp; Drop to reorder category quickly in Settings/Category screen</changelogtext>
<changelogtext>[b]Improve:[/b] Fast browsing</changelogtext>
<changelogtext>[b]Improve:[/b] Allow disable app auto-update</changelogtext>
<changelogtext>[b]Improve:[/b] Allow edit migration options while already being searching</changelogtext>
<changelogtext>[b]Improve:[/b] Don't auto-expand manga when browsing if is favorited</changelogtext>
<changelogtext>[b]Improve:[/b] Add option to always use SSIV for image decoding</changelogtext>
<changelogtext>[b]Fix:[/b] Duplicate chapters on backup restoring</changelogtext>
<changelogtext>[b]Fix:[/b] Exclude categories when delete read chapter, except manually deleting</changelogtext>
<changelogtext>[b]Fix:[/b] Don't auto-expand manga when browsing if is favorited</changelogtext>
<changelogtext>[b]Fix:[/b] Download job stops all together even if 1 entry is failed to create directory</changelogtext>
<changelogtext>[b]Fix:[/b] App shortcuts</changelogtext>
<changelogtext>[b]Fix:[/b] Color Fill manga info from tracker</changelogtext>
<changelogtext>[b]Fix:[/b] Some debug functions name</changelogtext>
<changelogtext>[b]Fix:[/b] App shortcuts</changelogtext>
</changelogversion>
<changelogversion versionName="r9643" changeDate="December 18, 2024">
<changelogtext>[b]New:[/b] Get manga info from tracker</changelogtext>

View file

@ -1,19 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion versionName="1.13.0" changeDate="2025">
<changelogversion versionName="1.13.0" changeDate="January 29, 2025">
<changelogtext>[b]New:[/b] feat: unify recommendation screens and add more sources</changelogtext>
<changelogtext>[b]New:[/b] built-in EH compatible with extension</changelogtext>
<changelogtext>[b]New:[/b] Notification rich info</changelogtext>
<changelogtext>[b]New:[/b] Drag to reorder feeds</changelogtext>
<changelogtext>[b]New:[/b] Add option to enable incognito mode per extension</changelogtext>
<changelogtext>[b]New:[/b] feat: add global search shortcut to SmartSearch</changelogtext>
<changelogtext>[b]Improve:[/b] update website link</changelogtext>
<changelogtext>[b]Improve:[/b] add webview to Extension detail screen</changelogtext>
<changelogtext>[b]Improve:[/b] Restore chapter's bookmark &amp; oldest dateUpload from backup</changelogtext>
<changelogtext>[b]Improve:[/b] Update Bangumi</changelogtext>
<changelogtext>[b]Fix:[/b] custom theme color in various AndroidView</changelogtext>
<changelogtext>[b]Fix:[/b] Mangadex fix alt title being removed by cleanDescription</changelogtext>
<changelogtext>[b]Fix:[/b] was not showing entry after importing entry with deep-link</changelogtext>
<changelogtext>[b]Fix:[/b] add entry to favorite when importing via deep-link</changelogtext>
<changelogtext>[b]Fix:[/b] (myanimelist): Fix nullability and fallback to medium cover if large cover is null</changelogtext>
<changelogtext>[b]Fix:[/b] (download): Making sure archive tmp file is created properly</changelogtext>
</changelogversion>
<changelogversion versionName="1.12.3" changeDate="December 31, 2024">
<changelogtext>[b]New:[/b] Group update entries together</changelogtext>
<changelogtext>[b]New:[/b] Drag &amp; Drop to reorder category quickly in Settings/Category screen</changelogtext>
<changelogtext>[b]Improve:[/b] Fast browsing</changelogtext>
<changelogtext>[b]Improve:[/b] Allow disable app auto-update</changelogtext>
<changelogtext>[b]Improve:[/b] Allow edit migration options while already being searching</changelogtext>
<changelogtext>[b]Improve:[/b] Don't auto-expand manga when browsing if is favorited</changelogtext>
<changelogtext>[b]Improve:[/b] Add option to always use SSIV for image decoding</changelogtext>
<changelogtext>[b]Fix:[/b] Duplicate chapters on backup restoring</changelogtext>
<changelogtext>[b]Fix:[/b] Exclude categories when delete read chapter, except manually deleting</changelogtext>
<changelogtext>[b]Fix:[/b] Don't auto-expand manga when browsing if is favorited</changelogtext>
<changelogtext>[b]Fix:[/b] Download job stops all together even if 1 entry is failed to create directory</changelogtext>
<changelogtext>[b]Fix:[/b] App shortcuts</changelogtext>
<changelogtext>[b]Fix:[/b] Color Fill manga info from tracker</changelogtext>
<changelogtext>[b]Fix:[/b] Some debug functions name</changelogtext>
<changelogtext>[b]Fix:[/b] App shortcuts</changelogtext>
</changelogversion>
<changelogversion versionName="1.12.2" changeDate="December 18, 2024">
<changelogtext>[b]New:[/b] Auto install app update</changelogtext>