mirror of
https://github.com/shumadrid/obsidian-git-changelog.git
synced 2026-07-22 05:42:16 +00:00
chore: update MAX_TESTED_GIT_PLUGIN_VERSION
This commit is contained in:
parent
de8ec18fb7
commit
002412e7a1
8 changed files with 2403 additions and 812 deletions
|
|
@ -86,6 +86,7 @@
|
|||
"subtags",
|
||||
"succ",
|
||||
"Syncthing",
|
||||
"texastoland",
|
||||
"tsbuildinfo",
|
||||
"tsdoc",
|
||||
"tsdocs",
|
||||
|
|
|
|||
3202
package-lock.json
generated
3202
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -38,7 +38,7 @@
|
|||
"eslint-plugin-unicorn": "^57.0.0",
|
||||
"globals": "^16.0.0",
|
||||
"obsidian": "latest",
|
||||
"obsidian-dev-utils": "latest",
|
||||
"obsidian-dev-utils": "26.4.0",
|
||||
"obsidian-typings": "latest",
|
||||
"prettier": "3.5.3",
|
||||
"prettier-plugin-svelte": "^3.3.3",
|
||||
|
|
|
|||
|
|
@ -147,7 +147,7 @@
|
|||
ModalCheckpointState.CheckpointCommitNoLongerExists;
|
||||
|
||||
setCta = true;
|
||||
approveButtonText = 'Approve & create new checkpoint';
|
||||
approveButtonText = 'Create new checkpoint';
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -187,7 +187,7 @@
|
|||
: ModalCheckpointState.NoChanges;
|
||||
|
||||
setCta = true;
|
||||
approveButtonText = 'Approve & create new checkpoint';
|
||||
approveButtonText = 'Create new checkpoint';
|
||||
} catch {
|
||||
modalCheckpointState = ModalCheckpointState.UnknownError;
|
||||
approveButtonText = 'Close';
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import type { GitChangelogSettingsTab } from 'settings/settingsTab.ts';
|
|||
export const PLUGIN_NAME = 'Git Changelog';
|
||||
export const PLUGIN_NAME_SENTENCE_CASE = 'Git changelog';
|
||||
export const MIN_COMPATIBLE_GIT_PLUGIN_VERSION = '2.31.1';
|
||||
export const MAX_TESTED_GIT_PLUGIN_VERSION = '2.32.1';
|
||||
export const MAX_TESTED_GIT_PLUGIN_VERSION = '2.33.0';
|
||||
|
||||
export interface GitChangelogPluginTypes extends PluginTypesBase {
|
||||
plugin: GitChangelogPlugin;
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ import {
|
|||
MAX_RENAME_DETECTION_STRICTNESS,
|
||||
MIN_RENAME_DETECTION_STRICTNESS
|
||||
} from 'constants.ts';
|
||||
import { Notice } from 'obsidian';
|
||||
import { PluginSettingsManagerBase } from 'obsidian-dev-utils/obsidian/Plugin/PluginSettingsManagerBase';
|
||||
import {
|
||||
GitChangelogSettings,
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ export class DayStartHour extends SettingComponent {
|
|||
text.setValue(moment.duration(value, 'hours'));
|
||||
},
|
||||
shouldShowValidationMessage: false,
|
||||
shouldShowPlaceholderForDefaultValues: false,
|
||||
pluginSettingsToComponentValueConverter: (
|
||||
pluginSettingsValue: number
|
||||
) => moment.duration(pluginSettingsValue, 'hours')
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import {
|
|||
FEEDBACK_URL
|
||||
} from 'constants.ts';
|
||||
// Import * as cssColorConverter from "css-color-converter";
|
||||
import { Keymap } from 'obsidian';
|
||||
import { Keymap, Notice } from 'obsidian';
|
||||
import { DiffFileStatus, NullValueError } from 'types.ts';
|
||||
|
||||
export function getFileNameFromPath({
|
||||
|
|
|
|||
Loading…
Reference in a new issue