Home > B.B.S. / Reload

B.B.S. 掲示板

感想叱咤激励苦情投稿掲示板兼質問板兼連絡板。メールを送るのがイヤな人向けかもしれない。

公開ソフトウェアの不具合報告はGitHubGitLabの各リポジトリのイシュートラッカーへ日本語でどうぞ。

Articles

3299 Re: テキストリンクのこと。

  • Name: 神楽
  • Date: 2021/11/05 10:39
  • Re: 3295

まだちょっと問題が。

https://piro.sakura.ne.jp/xul/textlink/index.html.en#testcases にて、
src だけを選択して右クリックすると http://www.mozilla.org/
http://www.mozilla.org/src-faq.html#1 が認識されています。
src の sr だけを選択していると2つ、rc だけを選択していると後者1つが認識されます。

行の始めにある (http://www.mozilla.org/) が無いときはそんなことにはなりません。
なのでレアケースな気もしますが一応ご報告を。

3298 Re: Tree Style Tab

  • Name: Piro
  • Date: 2021/11/04 18:46
  • Re: 3297

It is beyond the scope of TST project. Today TST is just a sidebar panel (due to Firefox's restrictions) and Firefox's horizontal tab bar is not controllable by addons anymore. Instead you need to use userChrome.css: https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#for-userchromecss

P.P.S. Your quiz makes no sense, shouldn't it instead say 英語で「レインボー」とは何ですか? (小文字7文字)

It looks little unclear for native Japanese talkers. Anyway, this page is just left for some historical reasons and not a good place to track topics related to specific products. Instead I recommend you to see discussions and issue tracker of TST's project:
https://github.com/piroor/treestyletab/issues
https://github.com/piroor/treestyletab/discussions

3297 Tree Style Tab

Sidebar tabs are great but how do I get rid of the top bar tabs, i.e., with the red/yellow/green "traffic light" controls
to the left of the Go back/forward controls?

Peace
--Devon

P.S. Is some obstacle so big I should abandon Firefox and switch to Vivaldi?
https://jovi.net/TST shows the bad Firefox layout.

P.P.S. Your quiz makes no sense, shouldn't it instead say 英語で「レインボー」とは何ですか? (小文字7文字)

3296 Re: テキストリンクのこと。

  • Name: 神楽
  • Date: 2021/11/04 02:26
  • Re: 3295

ありがとうございます。
改善されるのを楽しみにしています。

3295 Re: テキストリンクのこと。

  • Name: Piro
  • Date: 2021/11/03 16:18
  • Re: 3294

詳細な情報をありがとうございます。
https://github.com/piroor/textlink/issues/75 でトラックしたので、以後の進展はこちらをご参照頂けましたら幸いです。

3294 Re: テキストリンクのこと。

  • Name: 神楽
  • Date: 2021/11/03 15:02
  • Re: 3293

https://piro.sakura.ne.jp/xul/textlink/index.html#testcases
にて src-faq だけを選択して右クリックすると、選択範囲中の 4 個の URL と表示されて以下の URL がコピーできます。

http://jt.mozilla.gr.jp/newlayout/gecko.html
http://ftp.netscape.com/pub/netscape6/
http://www.mozilla.com/
http://www.mozilla.com/firefox/

この時点で src-faq が含まれていないのは大問題です。
一度実行したあとは
http://jt.mozilla.gr.jp/src-faq.html#1
が選択されて期待通りの動作をしますが、これではテキストリンクを使う意味が減ってしまいます。

旧版では最初からひとつの URL が選択出来ていました。
少なくとも設定でそのように出来ました。

3293 Re: テキストリンクのこと。

  • Name: Piro
  • Date: 2021/10/31 14:55
  • Re: 3292

URLの認識動作そのものは、意図的な変更を除くと、差異が無い状態が期待されます。
実際に認識結果がおかしい事例を教えて頂けますか?
(「このページのこの部分が、旧版ではこうなる、現在の版ではこうなる」という説明も添えてください)

3292 テキストリンクのこと。

  • Name: 神楽
  • Date: 2021/10/31 09:26

テキストリンクが選択した部分とはまったく関係ないところの URL を認識しているのは仕様になったんでしょうか。
それとも設定で改善することはできますか?
WebExtensions じゃないテキストリンクを愛用していて、その頃の挙動が気に入ってました。

3291 Right click on the TST and nothing happens(firefox)

  • Name: user
  • Date: 2021/06/04 15:23

Hi piro
The TST worked pretty well on my PC, but today when I right-click the tabs in TST, there's no answer(it should show new tab, mute, pin, duplicate, etc)
どうぞよろしくお願いいたします。

3290 Re: Tree Style Tab : Suggestion to Always Show Sound Icon

  • Name: Piro
  • Date: 2021/06/01 16:48
  • Re: 3289

Would you please add an option to always show the sound icon for every tab?

Sorry this is not easy for now. You can show the sound button for all tabs with a user style like:

   tab-item:not(.collapsed) tab-sound-button {
     display: inline-block;
   }
   tab-item:not(.muted):not(.has-muted-member) tab-sound-button::before,
   tab-item:not(.muted):not(.has-muted-member) tab-sound-button::after,
   tab-item:not(.muted):not(.subtree-collapsed) tab-sound-button::before,
   tab-item:not(.muted):not(.subtree-collapsed) tab-sound-button::after {
     mask-image: url("/sidebar/styles/icons/audio-16.svg");
   }

it is available just around appearance, but clicked button won't work if the tab is actually not sound-playing. This is because the button is not designed to be clicked when both sound-playing and muted states are false. Thus I've done some changes with commits https://github.com/piroor/treestyletab/commit/27f391de7cca6db70a144efcce6151911bb09332 , https://github.com/piroor/treestyletab/commit/8661502a9312a4022b8b57d1423b90f387acb4b4 and https://github.com/piroor/treestyletab/commit/119903c38f9e2b6976663a36cf97920eed94c8c6 . At the next version, sound buttons shown with user styles above will work even if the tab is not sound-playing.

Post

投稿フォーム





「虹」を英語で何という?(小文字アルファベット7文字)

注意事項

  • タグは<em>〜</em>(強調)以外は使えません。
  • ">"で始まる行は引用と見なします。
  • "-"または"*"で始まる行は通常のリスト、"+"または"#"で始まる行は順序付きのリストと見なします。"|語句:文章"の形で書かれた行は定義リストと見なします。
  • " "(半角スペース)で始まる行、または、<![PRE[ から ]]> までの区間は整形済みテキストと見なします。ソースコードやエラーメッセージの貼り付けにご利用ください。
  • ウェブサイト又はFTPサイトへのURLには自動的にリンクします。また、>>記事番号でその記事にリンクします。
  • 段落以外で改行する必要はありません。整形済みテキストの区間以外では、文章は自動的に折り返されます。
  • 捨てハンの方に対しては誠実な対応を致しかねることがありますので、その旨ご了承を。

Find

検索フォーム

Delete

削除フォーム

Last modified: unknown