This commit is contained in:
NoriDev 2023-12-14 19:53:16 +09:00
parent e5423228b8
commit 8beb840674
12 changed files with 23 additions and 15 deletions

View file

@ -23,5 +23,5 @@ https://github.com/kokonect-link/cherrypick/blob/develop/CONTRIBUTING.md
## Checklist
- [ ] Read the [contribution guide](https://github.com/kokonect-link/cherrypick/blob/develop/CONTRIBUTING.md)
- [ ] Test working in a local environment
- [ ] (If needed) Update CHANGELOG.md
- [ ] (If needed) Update CHANGELOG_CHERRYPICK.md
- [ ] (If possible) Add tests

View file

@ -23,5 +23,5 @@ https://github.com/kokonect-link/cherrypick/blob/develop/CONTRIBUTING.md
## Checklist
- [ ] Read the [contribution guide](https://github.com/kokonect-link/cherrypick/blob/develop/CONTRIBUTING.md)
- [ ] Test working in a local environment
- [ ] (If needed) Update CHANGELOG.md
- [ ] (If needed) Update CHANGELOG_CHERRYPICK.md
- [ ] (If possible) Add tests

View file

@ -23,5 +23,5 @@ https://github.com/kokonect-link/cherrypick/blob/develop/CONTRIBUTING.md
## Checklist
- [ ] Read the [contribution guide](https://github.com/kokonect-link/cherrypick/blob/develop/CONTRIBUTING.md)
- [ ] Test working in a local environment
- [ ] (If needed) Update CHANGELOG.md
- [ ] (If needed) Update CHANGELOG_CHERRYPICK.md
- [ ] (If possible) Add tests

View file

@ -435,6 +435,10 @@ export const meta = {
type: 'boolean',
optional: false, nullable: false,
},
objectStorageRemoteS3ForcePathStyle: {
type: 'boolean',
optional: false, nullable: false,
},
privacyPolicyUrl: {
type: 'string',
optional: false, nullable: true,

View file

@ -1,7 +1,7 @@
/*
* version: 4.6.0-beta.3
* basedMisskeyVersion: 2023.12.0-beta.3
* generatedAt: 2023-12-13T12:46:52.814Z
* basedMisskeyVersion: 2023.12.0-beta.4
* generatedAt: 2023-12-14T10:52:14.896Z
*/
import type { SwitchCaseResponseType } from '../api.js';

View file

@ -1,7 +1,7 @@
/*
* version: 4.6.0-beta.3
* basedMisskeyVersion: 2023.12.0-beta.3
* generatedAt: 2023-12-13T12:46:52.812Z
* basedMisskeyVersion: 2023.12.0-beta.4
* generatedAt: 2023-12-14T10:52:14.894Z
*/
import type {

View file

@ -1,7 +1,7 @@
/*
* version: 4.6.0-beta.3
* basedMisskeyVersion: 2023.12.0-beta.3
* generatedAt: 2023-12-13T12:46:52.811Z
* basedMisskeyVersion: 2023.12.0-beta.4
* generatedAt: 2023-12-14T10:52:14.893Z
*/
import { operations } from './types.js';

View file

@ -1,7 +1,7 @@
/*
* version: 4.6.0-beta.3
* basedMisskeyVersion: 2023.12.0-beta.3
* generatedAt: 2023-12-13T12:46:52.810Z
* basedMisskeyVersion: 2023.12.0-beta.4
* generatedAt: 2023-12-14T10:52:14.891Z
*/
import { components } from './types.js';

View file

@ -3,8 +3,8 @@
/*
* version: 4.6.0-beta.3
* basedMisskeyVersion: 2023.12.0-beta.3
* generatedAt: 2023-12-13T12:46:52.733Z
* basedMisskeyVersion: 2023.12.0-beta.4
* generatedAt: 2023-12-14T10:52:14.813Z
*/
/**
@ -4810,6 +4810,7 @@ export type operations = {
maintainerName: string | null;
name: string | null;
objectStorageS3ForcePathStyle: boolean;
objectStorageRemoteS3ForcePathStyle: boolean;
privacyPolicyUrl: string | null;
repositoryUrl: string;
summalyProxy: string | null;

View file

@ -944,7 +944,7 @@ async function insertEmoji(ev: MouseEvent) {
},
() => {
textAreaReadOnly.value = false;
focus();
nextTick(() => focus());
},
);
}

View file

@ -430,7 +430,7 @@ const whatIsNewCherryPick = () => {
};
const whatIsNewMisskey = () => {
window.open(`https://github.com/kokonect-link/cherrypick/blob/develop/CHANGELOG.md#${basedMisskeyVersion.replace(/\./g, '')}`, '_blank');
window.open(`https://github.com/misskey-dev/misskey/blob/develop/CHANGELOG.md#${basedMisskeyVersion.replace(/\./g, '')}`, '_blank');
};
function iconLoaded() {

View file

@ -182,6 +182,7 @@ const objectStorageUseSSL = ref<boolean>(false);
const objectStorageUseProxy = ref<boolean>(false);
const objectStorageSetPublicRead = ref<boolean>(false);
const objectStorageS3ForcePathStyle = ref<boolean>(true);
const useObjectStorageRemote = ref<boolean>(false);
const objectStorageRemoteBaseUrl = ref<string | null>(null);
const objectStorageRemoteBucket = ref<string | null>(null);
@ -211,6 +212,7 @@ async function init() {
objectStorageUseProxy.value = meta.objectStorageUseProxy;
objectStorageSetPublicRead.value = meta.objectStorageSetPublicRead;
objectStorageS3ForcePathStyle.value = meta.objectStorageS3ForcePathStyle;
useObjectStorageRemote.value = meta.useObjectStorageRemote;
objectStorageRemoteBaseUrl.value = meta.objectStorageRemoteBaseUrl;
objectStorageRemoteBucket.value = meta.objectStorageRemoteBucket;
@ -241,6 +243,7 @@ function save() {
objectStorageUseProxy: objectStorageUseProxy.value,
objectStorageSetPublicRead: objectStorageSetPublicRead.value,
objectStorageS3ForcePathStyle: objectStorageS3ForcePathStyle.value,
useObjectStorageRemote: useObjectStorageRemote.value,
objectStorageRemoteBaseUrl: objectStorageRemoteBaseUrl.value,
objectStorageRemoteBucket: objectStorageRemoteBucket.value,