Update changelog

pull/1/head
Made Baruna 2021-09-30 23:20:20 +07:00
parent 07c2ec512e
commit 55e21621cd
No known key found for this signature in database
GPG Key ID: 5AA5DA16AA5DCEAD
3 changed files with 183 additions and 74 deletions

View File

@ -574,7 +574,8 @@
"cancel": "Cancel", "cancel": "Cancel",
"delete": "Delete", "delete": "Delete",
"reset": "Reset" "reset": "Reset"
} },
"changelog": "Changelog"
}, },
"privacypolicy": { "privacypolicy": {
"title": "Privacy Policy", "title": "Privacy Policy",

175
src/routes/changelog.svelte Normal file
View File

@ -0,0 +1,175 @@
<script>
import { t } from 'svelte-i18n';
</script>
<svelte:head>
<title>Changelog - Paimon.moe</title>
</svelte:head>
<div class="lg:ml-64 pt-20 lg:pt-8">
<h1 class="font-display px-4 md:px-8 font-black text-5xl text-white">{$t('settings.changelog')}</h1>
<pre
class="text-white px-4 md:px-8">
2021/09/30
- Add Fishing book
2021/09/28
- Update timeline
- Add Luxurious Sea Lord
2021/09/26
- Update locale
- Update weapon stat numbering format
2021/09/24
- Add atk and secondary weapon stat on character build when hovered
2021/09/08
- Bug fixes and data update
- Update timeline
2021/09/01
- Add Aloy
- Update banner list
- Bug fixes
2021/08/26
- Add notes on wish import and character pages
2021/08/12
- Add Google Drive scope check and login validation
2021/08/10
- Update Yoimiya banner
2021/08/08
- Add character builds
- Update timeline
2021/08/04
- Add artifact list
2021/08/02
- Add Electro MC
- Update character and weapons data
2021/07/22
- Add fate calculator
- Update data
2021/07/20
- Add Ayaka and Mistsplitter
- Update achievement
- Update homepage and wish tally
2021/07/20
- Update timeline
2021/07/10
- Add friendship level calculator
2021/07/06
- Remove images on excel export
- Update timeline
2021/06/29
- Add Kazuha and weapons
- Update timeline and banner
2021/06/12
- Add Furnishing sets
- Bug fixes
2021/06/05
- Add Weapon list
2021/06/04
- Add Character filter
- Add percentage to achievement List
2021/06/01
- Add Excel import
2021/05/18
- Add Eula and new weapons
- Update timeline
2021/05/13
- Add Wish tally detail Page
- Update furnishing page
- Update timeline
2021/05/08
- Add Wish tally detail Page
- Update furnishing page
- Update timeline
2021/05/03
- Add Furnishing Page
2021/04/28
- Add Yanfei
- Bug fixes and safari css improvement
2021/04/19
- Add Achievement Tracker
- Bug fixes
2021/04/18
- Add Homepage
- Add Character detail
- Add Character grid list
- Update timeline
- Bug fixes
2021/04/06
- Add Rosaria
- Add rate up icon on detail banner
- Update banner list
- Update wish tally
- Update timeline
2021/03/31
- Updated wording and layout on mobile
- Add privacy policy
2021/03/29
- Add pity wish tally submission
- Fix edit/delete manual wish input
2021/03/20
- Add Windblume Ode
- Fix some weapons data
2021/03/17
- Fix wish import
- Add new 1.4 weapons
2021/03/13
- Add timeline page
2021/03/09
- Add Auto Import Wish
- Fix The Widsith data
2021/03/02
- Add Hu Tao
2021/02/26
- Add Staff of Homa, Lithic Spear, and Lithic Blade
- Change weapon banner 5star pity
2021/02/03
- Add Xiao
- Add Primordial Jade Cutter
- Bug fixes
2021/02/02
- Add resin approximation on todo list
- Change todo today farmable item view
- Add WL and AR setting for resin approximation
2021/02/01
- Add detail to wish counter
- Bug fixes
</pre>
</div>

View File

@ -35,12 +35,6 @@
let arInput = ''; let arInput = '';
let wlInput = ''; let wlInput = '';
let changelogOpen = false;
function toggleChangelog() {
changelogOpen = !changelogOpen;
}
function signIn() { function signIn() {
gapi.auth2.getAuthInstance().signIn(); gapi.auth2.getAuthInstance().signIn();
} }
@ -264,7 +258,12 @@
<div class="lg:ml-64 pt-20 px-4 md:px-8 lg:pt-8 max-w-screen-xl"> <div class="lg:ml-64 pt-20 px-4 md:px-8 lg:pt-8 max-w-screen-xl">
<div class="bg-item rounded-xl mb-4 p-4"> <div class="bg-item rounded-xl mb-4 p-4">
<p class="text-white">{$t('settings.version')} <b>2.1</b></p> <p class="text-white inline-block mr-4">{$t('settings.version')} <b>2.1</b></p>
<a href="/changelog">
<Button>
{$t('settings.changelog')}
</Button>
</a>
</div> </div>
<div class="bg-item rounded-xl mb-4 p-4 flex flex-col"> <div class="bg-item rounded-xl mb-4 p-4 flex flex-col">
<p class="text-white">{$t('settings.multiple')}</p> <p class="text-white">{$t('settings.multiple')}</p>
@ -391,70 +390,4 @@
</tr> </tr>
</table> </table>
</div> </div>
<div class="bg-item rounded-xl mb-4 p-4 text-white">
<p class="cursor-pointer" on:click={toggleChangelog}>
Changelog <Icon
className={`duration-100 ease-in ${changelogOpen ? 'transform rotate-180' : ''}`}
path={mdiChevronDown}
/>
</p>
{#if changelogOpen}
<div transition:slide class="mt-4">
<pre
class="bg-background rounded-xl py-2 px-4 whitespace-pre-wrap">Future changelog will be posted on Discord https://discord.gg/4jjZnXvs
or Check Github commit history https://github.com/MadeBaruna/paimon-moe/commits/main
2021/04/06
- Add Rosaria
- Add rate up icon on detail banner
- Update banner list
- Update wish tally
- Update timeline
2021/03/31
- Updated wording and layout on mobile
- Add privacy policy
2021/03/29
- Add pity wish tally submission
- Fix edit/delete manual wish input
2021/03/20
- Add Windblume Ode
- Fix some weapons data
2021/03/17
- Fix wish import
- Add new 1.4 weapons
2021/03/13
- Add timeline page
2021/03/09
- Add Auto Import Wish
- Fix The Widsith data
2021/03/02
- Add Hu Tao
2021/02/26
- Add Staff of Homa, Lithic Spear, and Lithic Blade
- Change weapon banner 5star pity
2021/02/03
- Add Xiao
- Add Primordial Jade Cutter
- Bug fixes
2021/02/02
- Add resin approximation on todo list
- Change todo today farmable item view
- Add WL and AR setting for resin approximation
2021/02/01
- Add detail to wish counter
- Bug fixes</pre>
</div>
{/if}
</div>
</div> </div>