mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-25 02:09:50 +02:00
add IOHub mail
This commit is contained in:
3
IOMail/README.md
Normal file
3
IOMail/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# IOMail
|
||||
|
||||
Simple Mail client wrapper for https://mail.iohub.dev/
|
5
IOMail/assets/scheme.html
Normal file
5
IOMail/assets/scheme.html
Normal file
@ -0,0 +1,5 @@
|
||||
<afx-app-window apptitle="__(IOHub mail client)" width="700" height="500" data-id="IOMail">
|
||||
<afx-hbox >
|
||||
<iframe src="https://mail.iohub.dev"></iframe>
|
||||
</afx-hbox>
|
||||
</afx-app-window>
|
3
IOMail/build/debug/README.md
Normal file
3
IOMail/build/debug/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# IOMail
|
||||
|
||||
Simple Mail client wrapper for https://mail.iohub.dev/
|
1
IOMail/build/debug/main.js
Normal file
1
IOMail/build/debug/main.js
Normal file
@ -0,0 +1 @@
|
||||
(function(){var i;(i=class extends this.OS.application.BaseApplication{constructor(i){super("IOMail",i)}main(){}}).singleton=!0,this.OS.register("IOMail",i)}).call(this);
|
16
IOMail/build/debug/package.json
Normal file
16
IOMail/build/debug/package.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"pkgname": "IOMail",
|
||||
"app":"IOMail",
|
||||
"name":"IOHub mail",
|
||||
"description":"IOHub mail",
|
||||
"info":{
|
||||
"author": "",
|
||||
"email": ""
|
||||
},
|
||||
"version":"0.1.0-a",
|
||||
"category":"Other",
|
||||
"iconclass":"fa fa-envelope",
|
||||
"mimes":["none"],
|
||||
"dependencies":[],
|
||||
"locale": {}
|
||||
}
|
5
IOMail/build/debug/scheme.html
Normal file
5
IOMail/build/debug/scheme.html
Normal file
@ -0,0 +1,5 @@
|
||||
<afx-app-window apptitle="__(IOHub mail client)" width="700" height="500" data-id="IOMail">
|
||||
<afx-hbox >
|
||||
<iframe src="https://mail.iohub.dev"></iframe>
|
||||
</afx-hbox>
|
||||
</afx-app-window>
|
BIN
IOMail/build/release/IOMail.zip
Normal file
BIN
IOMail/build/release/IOMail.zip
Normal file
Binary file not shown.
9
IOMail/coffees/main.coffee
Normal file
9
IOMail/coffees/main.coffee
Normal file
@ -0,0 +1,9 @@
|
||||
class IOMail extends this.OS.application.BaseApplication
|
||||
constructor: ( args ) ->
|
||||
super "IOMail", args
|
||||
|
||||
main: () ->
|
||||
|
||||
IOMail.singleton = true
|
||||
|
||||
this.OS.register "IOMail", IOMail
|
16
IOMail/package.json
Normal file
16
IOMail/package.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"pkgname": "IOMail",
|
||||
"app":"IOMail",
|
||||
"name":"IOHub mail",
|
||||
"description":"IOHub mail",
|
||||
"info":{
|
||||
"author": "",
|
||||
"email": ""
|
||||
},
|
||||
"version":"0.1.0-a",
|
||||
"category":"Other",
|
||||
"iconclass":"fa fa-envelope",
|
||||
"mimes":["none"],
|
||||
"dependencies":[],
|
||||
"locale": {}
|
||||
}
|
7
IOMail/project.json
Normal file
7
IOMail/project.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "IOMail",
|
||||
"css": [],
|
||||
"javascripts": [],
|
||||
"coffees": ["coffees/main.coffee"],
|
||||
"copies": ["assets/scheme.html", "package.json", "README.md"]
|
||||
}
|
Reference in New Issue
Block a user