bump to develop/2023.12.2
This commit is contained in:
parent
3c11ffa204
commit
ca8c610904
3 changed files with 8 additions and 8 deletions
8
locales/index.d.ts
vendored
8
locales/index.d.ts
vendored
|
|
@ -424,6 +424,7 @@ export interface Locale {
|
|||
"exploreFediverse": string;
|
||||
"popularTags": string;
|
||||
"userList": string;
|
||||
"toServiceArt": string;
|
||||
"about": string;
|
||||
"aboutMisskey": string;
|
||||
"administrator": string;
|
||||
|
|
@ -1171,7 +1172,6 @@ export interface Locale {
|
|||
"privacyPolicy": string;
|
||||
"privacyPolicyUrl": string;
|
||||
"tosAndPrivacyPolicy": string;
|
||||
"toServiceArt": string;
|
||||
"avatarDecorations": string;
|
||||
"attach": string;
|
||||
"detach": string;
|
||||
|
|
@ -1868,8 +1868,8 @@ export interface Locale {
|
|||
"contributors": string;
|
||||
"allContributors": string;
|
||||
"source": string;
|
||||
"originalSource": string;
|
||||
"ioSource": string;
|
||||
"originalSource": string;
|
||||
"ioSource": string;
|
||||
"translation": string;
|
||||
"donate": string;
|
||||
"morePatrons": string;
|
||||
|
|
@ -2327,7 +2327,7 @@ export interface Locale {
|
|||
"_timelines": {
|
||||
"home": string;
|
||||
"local": string;
|
||||
"media": string;
|
||||
"media": string;
|
||||
"social": string;
|
||||
"global": string;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "misskey",
|
||||
"version": "2023.12.2-art+1.0",
|
||||
"version": "2023.12.2-art+1.0-dev",
|
||||
"codename": "nasubi",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
|||
|
|
@ -29,8 +29,8 @@ import { claimAchievement } from '@/scripts/achievements.js';
|
|||
|
||||
const saveData = game.saveData;
|
||||
const puddings = computed(() => saveData.value?.puddings);
|
||||
let cps = $ref(0);
|
||||
let prevPuddings = $ref(0);
|
||||
let cps = ref(0);
|
||||
let prevPuddings = ref(0);
|
||||
|
||||
function onClick(ev: MouseEvent) {
|
||||
const x = ev.clientX;
|
||||
|
|
@ -50,7 +50,7 @@ function onClick(ev: MouseEvent) {
|
|||
useInterval(() => {
|
||||
const diff = saveData.value!.puddings - prevPuddings.value;
|
||||
cps.value = diff;
|
||||
prevPuddings = saveData.value!.puddings;
|
||||
prevPuddings.value = saveData.value!.puddings;
|
||||
}, 1000, {
|
||||
immediate: false,
|
||||
afterMounted: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue