Blogger: fix blog saving bug
All checks were successful
gitea-sync/antosdk-apps/pipeline/head This commit looks good

This commit is contained in:
DanyLE 2023-07-08 13:34:27 +02:00
parent f8435cd87c
commit 7174dfb8c9
11 changed files with 11 additions and 6 deletions

View File

@ -6,6 +6,7 @@ Blackend for my blog at https://blog.iohub.dev
## Change logs
### v0.2.x-a
* Patch 13: fix bug on blog save
* Patch 12: support send mail via SSL
* Patch 11: Add TFIDF analyse functionality
* Patch 10: Migrate code to typescript, use SQLiteDB lib for database access

View File

@ -6,6 +6,7 @@ Blackend for my blog at https://blog.iohub.dev
## Change logs
### v0.2.x-a
* Patch 13: fix bug on blog save
* Patch 12: support send mail via SSL
* Patch 11: Add TFIDF analyse functionality
* Patch 10: Migrate code to typescript, use SQLiteDB lib for database access

File diff suppressed because one or more lines are too long

View File

@ -6,7 +6,7 @@
"author": "Xuan Sang LE",
"email": "xsang.le@gmail.com"
},
"version": "0.2.12-a",
"version": "0.2.13-a",
"category": "Internet",
"iconclass": "fa fa-book",
"dependencies": [

Binary file not shown.

View File

@ -815,7 +815,9 @@ namespace OS {
else
{
//data.text = data.title;
selel.data = data;
selel.data.utime = data.utime;
selel.data.utimestr = data.utimestr;
selel.data = selel.data;
}
}
catch(e)

View File

@ -6,7 +6,7 @@
"author": "Xuan Sang LE",
"email": "xsang.le@gmail.com"
},
"version": "0.2.12-a",
"version": "0.2.13-a",
"category": "Internet",
"iconclass": "fa fa-book",
"dependencies": [

View File

@ -95,7 +95,7 @@
"description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/2.0.x/Blogger/README.md",
"category": "Internet",
"author": "Xuan Sang LE",
"version": "0.2.12-a",
"version": "0.2.13-a",
"dependencies": ["SimpleMDE@2.18.0-r","Katex@0.11.1-r","SQLiteDB@0.1.0-a"],"mimes":["none"],
"download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/2.0.x/Blogger/build/release/Blogger.zip"
},

View File

@ -6,6 +6,7 @@ Blackend for my blog at https://blog.iohub.dev
## Change logs
### v0.2.x-a
* Patch 13: fix bug on blog save
* Patch 12: support send mail via SSL
* Patch 11: Add TFIDF analyse functionality
* Patch 10: Migrate code to typescript, use SQLiteDB lib for database access

Binary file not shown.

File diff suppressed because one or more lines are too long