POTI改 設置サポート掲示板

  • POTI-board改の設置サポート掲示板です。

[273] Chickenpaint accidentally zooms on Ipad

Hi, thanks again for bringing back OekakiBBS! Apologies for English, or if I posted in the wrong place....

I've noticed when using Ipad+Apple pencil, Chickenpaint zooms in when double tapping on the "Misc" toolbar. This can make drawing quite cumbersome when you want to undo multiple strokes. The only way to unzoom is to either use pinch gestures on the toolbar or scroll to "Tool Options" and double tap there.

Interestingly, this behaviour isn't observed trying the sample program on the developer's site thenickdude.github.io/chickenpaint-example/

IOS Version 14.6
Browsers: Safari and Chromium

レス17件省略中。

[292] Re: Chickenpaint accidentally zooms on Ipad
CSS prevents screens from being selected

There is a issues that the screen is enlarged when double tapping

Revert to original code

In addition, there is a issues that the screen is selected.

I will investigate a little more.

[293] Re: Chickenpaint accidentally zooms on Ipad
Re: Chickenpaint accidentally zooms on Ipad by Why (349 KB)
Press+hold near the middle of the canvas (more intrusive). Also forgive me, it doesn’t depend on palm activity, just the location on the canvas that’s press+held.

Pen is registering finger strokes again, I’m not sure what disabled it earlier… Not a big deal however. あ

[294] Re: Chickenpaint accidentally zooms on Ipad
<style>
div#chickenpaint-parent :not(input){
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
touch-action: none;
}
</style>
CSS that prevents the screen from being selected. And CSS that doesn't zoom.
Please test again.
https://pbbs.sakura.ne.jp/cgi/neosample/poti-board-en/

[295] Re: Chickenpaint accidentally zooms on Ipad
It's working like the original version now (#282). This is much better, thank you!

[296] Re: Chickenpaint accidentally zooms on Ipad
POTI-board EVO English verGitHub.
Try downloading the template for Paint from here.
Thank you.

[329] Re: Chickenpaint accidentally zooms on Ipad
<style>
div#chickenpaint-parent :not(input){
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>
<script>
var lastTouchEnd = 0;
document.addEventListener('touchend', function (event) {
var now = (new Date()).getTime();
if (now - lastTouchEnd <= 300) {
event.preventDefault();
}
lastTouchEnd = now;
}, false);
</script>

After a conversation with another user, I came to the conclusion that this seems to be the best answer.
We also give feedback to the developers of chickenpaint.
This is a provisional response.

[330] Re: Chickenpaint accidentally zooms on Ipad
Thanks for working through it! I had seen the other problem as well, I'm glad someone spotted it because I only tested lightly. I'll try a full drawing with the updated Chickenpaint sometime.

Cheers

[272] v3.05.1をリリースしました

v3.05.0に改行が反映されないバグが見つかったため、その箇所を修正した、v3.05.1をリリースしました。
v3.02.0からの変更点はv3.05.0と同じです。
Release POTI-board EVO v3.05.1

[270] v3.05.0をリリースしました

POTI-board EVO v3.05.0

potiboard.php

search.phpと
chickenpaintディレクトリを上書きします。
そして、各テーマのHTMLファイルを上書きします。

必要に応じて、connfig.phpにCSRFトークンによる投稿チェックをするしないの設定項目を追加します。

大きな変更点。

HTMLタグが使えなくなりました。
トップと返信ボタンを押下しなくても表示される返信フォームは廃止されました。

外部からの不正な投稿を拒否する事ができるようになりました。

入力フォームに間違いなくそのサイトからの投稿である事を示すトークンをセットして、内部で照合します。
そのためにには、入力フォームがトークンに対応していなければならないので、
新しいバージョンに対応したテーマが必要になります。

このチェックはconfig.phpでオフにできます。
オフにすれば古いテーマでもこれまで通り投稿できます。
config.phpに設定項目が無い時もオフになります。

[271] Re: chickenpaintスマホ対応
Re: chickenpaintスマホ対応 by さとぴあ@管理人 (188 KB)
chickenpaintがスマホに対応しました。
こちらも、HTMLファイルにjavascriptを仕込んで、スマホの時はNEOしか起動しないようにしていたので、テーマのHTMLの入れ替えが必要になってしまいます。
お手数をおかけしますが、よろしくお願いいたします。

[267] 無題

お世話になっております。
掲示板のトップに新規投稿するためのフォームを表示したくご質問させていただきました。
テンプレートはPINKを使用しております。

[268] Re: 無題
現時点では設定で使用可能なのですが、
セキュリティ対策のため、トップの新規投稿フォームを終了する準備に入っています。
/* ---------- お絵かき設定 ---------- */

//お絵かき機能を使用する お絵かきのみ:2 する:1 しない:0
define('USE_PAINT', '1');
とすればとりあえずトップのフォームが開くのですが…。
すみません、まもなく使えなくなります。
おそらく次のバージョンで…。

[269] Re: 無題
ありがとうございます!一時的に使用したいだけなので大丈夫です!!
教えていただいたように設定してみます!

[262] POTI-board EVO v3.02.0をリリースしました

POTI-board EVO v3.02.0をリリースしました by さとぴあ@管理人 (131 KB)
POTI-board EVO v3.02.0をリリースしました。
Release POTI-board EVO v3.02.0

PaintBBS NEOとしぃペインターで描く時に、Windows inkや二本指のジェスチャー機能でブラウザの画面がひとつ前のページに戻ってしまう問題に対処しました。

Paint画面のHTMLで対応しましたので、使っているテーマのペイント画面のHTMLの上書きアップデートをお願いします。

[263] Re: POTI-board EVO v3.02.0をリリースしました
Re: POTI-board EVO v3.02.0をリリースしました by さとぴあ@管理人 (99 KB)
ChickenPaintの画面が選択されてしまう問題に対処しました。
Paint画面のHTMLで対応しましたので、使っているテーマのペイント画面のHTMLを上書きアップデートをお願いします。

[264] Re: POTI-board EVO v3.02.0をリリースしました
Re: POTI-board EVO v3.02.0をリリースしました by さとぴあ@管理人 (23 KB)
テーマMONOの色を切り替えるCSSをプルダウンメニュー方式に変更しました。
themeフォルダ内のファイル一式の上書きアップデートになりますが、色の切り替えは従来どおりで構わないという方は
ペイント画面のHTMLのアップデートのみで構いません。

[265] Re: POTI-board EVO v3.02.0をリリースしました
メール通知クラス
noticemail/noticemail.inc
を更新しました。
日本語以外の言語の投稿の時でもメールの文字化けが発生しないようになりました。
メール機能を使っている方で、日本語以外の言語も使いたい方は上書きアップデートをお願いします。

[266] Re: POTI-board EVO v3.02.0をリリースしました
変更があったファイルの説明もリリースのページに記載していますので、よろしくお願いします。

Release POTI-board EVO v3.02.0

[0][1][2][3][4][5][6][7][8][9][10][11][12][13][14][15][16][17]
記事No. 削除キー