1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-04 19:14:41 +00:00

uwuzu v1.4.1 Funium

This commit is contained in:
Daichimarukana
2024-08-18 21:30:45 +09:00
parent ac2e6fe57c
commit da06d2bd38
6 changed files with 25 additions and 4 deletions
+1 -1
View File
@@ -230,7 +230,7 @@ if( !empty($_POST['btn_submit']) ) {
if($result->rowCount() > 0) {
$row = $result->fetch();
if(!(empty($row["encryption_ivkey"])) && (!($row["authcode"] === 16))){
if(!(empty($row["encryption_ivkey"])) && (!(mb_strlen($row["authcode"]) === 16))){
$tousercode = DecryptionUseEncrKey($row["authcode"], GenUserEnckey($row["datetime"]), $row["encryption_ivkey"]);
}else{
$tousercode = $row["authcode"];
+1 -1
View File
@@ -168,7 +168,7 @@ if(!($userid == null)){
if($result->rowCount() > 0) {
$row = $result->fetch();
if(!(empty($row["encryption_ivkey"])) && (!($row["authcode"] === 16))){
if(!(empty($row["encryption_ivkey"])) && (!(mb_strlen($row["authcode"]) === 16))){
$tousercode = DecryptionUseEncrKey($row["authcode"], GenUserEnckey($row["datetime"]), $row["encryption_ivkey"]);
}else{
$tousercode = $row["authcode"];
+1 -1
View File
@@ -245,4 +245,4 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
## 更新情報
編集者 : daichimarukana
最終更新日 : 2024/08/18 19:43
最終更新日 : 2024/03/26 22:32
+1 -1
View File
@@ -1,4 +1,4 @@
uwuzu
1.4.0
1.4.1
2024/08/18
daichimarukana,putonfps
+4
View File
@@ -1,6 +1,10 @@
## リリースノートだぜぇぇぇぇぇぇい!!!!!!!
ここにはuwuzuの更新情報を載せてくぜぇ~!(いやまてテンションおかしいだろ...)
### Version 1.4.1 (Funium)
リリース日:2024/08/18
fix: 二段階認証を設定しているアカウントがログインできない問題を修正しました。
### Version 1.4.0 (Funium)
リリース日:2024/08/18
fix: php 8.3未満のphpを使用していた場合にエラーが発生してしまう問題を修正しました。
+17
View File
@@ -0,0 +1,17 @@
{
"software": "uwuzu",
"version": "1.4.1",
"release_date": "2024-08-18",
"release_notes": "このアップデートでは二段階認証を設定しているユーザーがログインできない問題を修正しました。\n他の変更点はありません。",
"notices": "アップデートの前に、データのバックアップを行うことをおすすめします!",
"files": {
"overwrite": [
"/authlogin.php",
"/passrecovery/startrecovery.php",
"/server/uwuzuabout.txt",
"/server/uwuzuinfo.txt",
"/server/uwuzurelease.txt"
],
"delete": []
}
}