Skip to content

Commit

Permalink
1.5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
YrracOwl committed Aug 15, 2024
1 parent 54e5529 commit a743512
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 4 deletions.
2 changes: 1 addition & 1 deletion default.aproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<project ver="10" name="ChiikawaBest" libEmbed="true" icon="res\chiikawaIcon.ico" ui="win" output="ChiikawaBest.exe" CompanyName="CarryWho" FileDescription="ChiikawaBest" LegalCopyright="Copyright (C) CarryWho 2023" ProductName="ChiikawaBest" InternalName="ChiikawaBest" FileVersion="1.5.0.1" ProductVersion="1.5.0.1" publishDir="/dist/" dstrip="true" local="false" ignored="false">
<project ver="10" name="ChiikawaBest" libEmbed="true" icon="res\chiikawaIcon.ico" ui="win" output="ChiikawaBest.exe" CompanyName="CarryWho" FileDescription="ChiikawaBest" LegalCopyright="Copyright (C) CarryWho 2023" ProductName="ChiikawaBest" InternalName="ChiikawaBest" FileVersion="1.5.0.2" ProductVersion="1.5.0.2" publishDir="/dist/" dstrip="true" local="false" ignored="false">
<file name="main.aardio" path="main.aardio" comment="main.aardio"/>
<folder name="资源文件" path="res" embed="true" local="false" ignored="false">
<file name="chiikawa.png" path="res\chiikawa.png" comment="res\chiikawa.png"/>
Expand Down
29 changes: 27 additions & 2 deletions dlg/timeline.aardio
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,31 @@ winform.添加plus.oncommand = function(id,event){
var hour1,hour2 = tonumber(timeFormat[1]);
var minute1,minute2 = tonumber(timeFormat[2]);
var second1,second2 = tonumber(timeFormat[3]);

var userInpuList = string.split(winform.内容plus.text, '');
var userInputSaveStr = '';
for(index=1;table.len(userInpuList);1){
if(userInpuList[index] == ' '){
continue;
};
userInputSaveStr = string.concat(userInputSaveStr,userInpuList[index]);
if(string.len(userInputSaveStr) > 0){
break;
}
}

var userInpuListB = string.split(winform.标题plus.text, '');
var userInputSaveStrB = '';
for(index=1;table.len(userInpuListB);1){
if(userInpuListB[index] == ' '){
continue;
};
userInputSaveStrB = string.concat(userInputSaveStrB,userInpuListB[index]);
if(string.len(userInputSaveStrB) > 0){
break;
}
}

if(hour2 < 3 and minute2 < 3 and second2 < 3){
if(hour1 < 24 and minute1 < 60 and second1 < 60){
var tl_time = winform.datetimepick.text + '-' + winform.时间plus.text;
Expand All @@ -601,10 +626,10 @@ winform.添加plus.oncommand = function(id,event){
tl_img = crypt.bin.encodeBase64(stream.readAll(),#stream.readAll());
stream.close();
}
if(winform.标题plus.text != ""){
if(string.len(userInputSaveStrB) > 0){
tl_title = winform.标题plus.text;
}
if(winform.内容plus.text != ""){
if(string.len(userInputSaveStr) > 0){
tl_content = winform.内容plus.text;
}

Expand Down
1 change: 0 additions & 1 deletion release/1.5.0.0

This file was deleted.

1 change: 1 addition & 0 deletions release/1.5.0.1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.5.0.1
Binary file modified release/ChiikawaBest.exe
Binary file not shown.

0 comments on commit a743512

Please sign in to comment.