Skip to content

Commit 78e31ba

Browse files
committed
Version bump
1 parent f98da42 commit 78e31ba

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

dist/scrapbox-force-theme.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name Scrapbox - Force Theme
33
// @namespace mkobayashime
4-
// @version 1.3.4
4+
// @version 1.3.5
55
// @description Scrapbox でプロジェクトに関わらず特定のテーマを使用します
66
// @icon https://www.google.com/s2/favicons?domain=scrapbox.io
77
// @author mkobayashime
@@ -43,7 +43,7 @@ void (({ themeId, enabledProjectIds }) => {
4343
}
4444
});
4545
const settingPagesPattern =
46-
/https:\/\/scrapbox.io\/(projects\/[^\/]+\/)?settings\//;
46+
/https:\/\/scrapbox.io\/(projects\/[^/]+\/)?settings\//;
4747
const url = window.location.href;
4848
if (!settingPagesPattern.test(url)) {
4949
const projectId = /^https:\/\/scrapbox.io\/(?<projectId>.*)\/.*$/.exec(

dist/scrapbox-no-project-styles.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name Scrapbox - No project styles
33
// @namespace mkobayashime
4-
// @version 1.6.3
4+
// @version 1.6.4
55
// @description Scrapbox のプロジェクト単位で設定されているスタイルを無効化します
66
// @icon https://www.google.com/s2/favicons?domain=scrapbox.io
77
// @author mkobayashime
@@ -49,7 +49,7 @@ void (({ enabledProjectIds, disabledProjectIds }) => {
4949
};
5050
const pageObserver = new MutationObserver(() => {
5151
const settingPagesPattern =
52-
/https:\/\/scrapbox.io\/(projects\/[^\/]+\/)?settings\//;
52+
/https:\/\/scrapbox.io\/(projects\/[^/]+\/)?settings\//;
5353
const url = window.location.href;
5454
if (!settingPagesPattern.test(url)) {
5555
const projectId = /^https:\/\/scrapbox.io\/(?<projectId>.*)\/.*$/.exec(

src/userscripts/scrapbox-force-theme/index.user.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { defineUserScript } from "bundlemonkey";
22

33
export default defineUserScript({
44
name: "Scrapbox - Force Theme",
5-
version: "1.3.4",
5+
version: "1.3.5",
66
description: "Scrapbox でプロジェクトに関わらず特定のテーマを使用します",
77
match: ["https://scrapbox.io/*"],
88
icon: "https://www.google.com/s2/favicons?domain=scrapbox.io",

src/userscripts/scrapbox-no-project-styles/index.user.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { defineUserScript } from "bundlemonkey";
22

33
export default defineUserScript({
44
name: "Scrapbox - No project styles",
5-
version: "1.6.3",
5+
version: "1.6.4",
66
description:
77
"Scrapbox のプロジェクト単位で設定されているスタイルを無効化します",
88
match: ["https://scrapbox.io/*"],

0 commit comments

Comments
 (0)