This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
NeptunasLT's profile picture

[0.8v]ArchilyOS

Started by NeptunasLT, 16 February 2013 - 07:36 AM
NeptunasLT #1
Posted 16 February 2013 - 08:36 AM
ARCHILYOS 0.8

Pictures will come later.

Other Updates:
  • 0,7v:
  • About program, New Boot Screen, Graphical updates.
  • 0.6v:
  • Added Updates, Bug FIX'es and SYSTEM CHECK APP (SYSTEM CHECK HAS BEEN REMOVED!)
  • 0.5v:
  • Added New Boot Logo and Installer
  • 0.4v:
  • Added More Program's In [SYSTEM] Bar
  • 0.3v:
  • Updated Firewolf added boot screen.
  • 0.2v:
  • Added Icon's
  • 0.1v:
  • First Release.
Added in this Update:
  • Fixed Updates (100%)
  • Faster Boot Screen (100%)
  • Fixed Pastebin Install'er (0%)
  • Fixed BUG (Drop to Shell) (100%)
  • ArchilyOS Website (50%) http://archilyos.ofl.lt
  • Main Screen (100%) <—- Hard
  • ASTORE (100%) <—- Hard
In next update:
  • Update ASTORE (0%)
  • Fix some stuff and Bug's… (0%)
  • ATERM (ArchilyOS Terminal) (0%)
Download: pastebin get ALsNbrRU install (EN)

+1 If you like the OS.
Skullblade #2
Posted 16 February 2013 - 09:10 AM
  1. Screenshots; people want to see what it can do
  2. Features list; show off what your OS can do… make people want to get it
  3. Check your grammar; make it look like you took a lil' time :P/>
NeptunasLT #3
Posted 16 February 2013 - 09:19 AM
My bad English I'm Lithuanian.
Skullblade #4
Posted 16 February 2013 - 10:07 AM
My bad English I'm Lithuanian.
If you want i can point out errors you made….
remiX #5
Posted 16 February 2013 - 10:29 AM
Your installer doesn't work because all you do is http.get('url').
You don't read all the contents and then save it to a file etc…

http.get("http://archily.net63.net/os/.boot/.bios")
print("Downloading Bios... (2/7)")
http.get("http://archily.net63.net/os/.boot/.conf")
print("Downloading Bios...")
http.get("http://archily.net63.net/os/startup")
http.get("http://archily.net63.net/os/.boot/boot")
http.get("http://archily.net63.net/os/.boot/leftos.ico")
http.get("http://archily.net63.net/os/.boot/ndfui,ico") -- typo... ,
http.get("http://archily.net63.net/os/.boot/none.ico")
http.get("http://archily.net63.net/os/.boot/rightos.ico")

You need do read the contents of each link, saving the contents into a file each time

page = http.get("http://archily.net63.net/os/.boot/boot")
contents = page.readAll()
page.close()
file = fs.open(".os/boot", "w") -- opens the file '.os/boot' in write mode to write the contents
file.write(contents)

Now doing that with each file will be a pain.
Use a table which stores each link and then loop, downloading each file.
NeptunasLT #6
Posted 16 February 2013 - 11:04 AM
Thanks I will add it to 0.2v
NeptunasLT #7
Posted 16 February 2013 - 11:49 PM
I Think i will make ArchilyOS Server Edition.
NeptunasLT #8
Posted 16 February 2013 - 11:51 PM
0.2 released!
Added File Browser
Added Icons
Added Internet!
GravityScore #9
Posted 17 February 2013 - 01:58 AM
… are you using Firewolf 1.4.5? That's the oldest legacy version available :P/> Could you potentially update it to the lastest version (2.3.9)?

And the direct link downloads a zip file that The Unarchiver says is corrupted. Not sure if this happens to anyone else…
Lyqyd #10
Posted 17 February 2013 - 04:14 AM
Threads merged. Stick with one topic, please. You can edit the title by using the full editor on the first post.
NeptunasLT #11
Posted 19 February 2013 - 06:31 AM
0.4 Fill released in 2013.03.01 (I think)
Skullblade #12
Posted 19 February 2013 - 07:22 AM
i would recomend making a pastebin link or installer because some people dislike zips(and others are lazy)
NeptunasLT #13
Posted 26 February 2013 - 05:02 AM
New UPDATE!!!!!
0.4 Is HERE!
oeed #14
Posted 27 February 2013 - 06:36 PM
Hate to be a pain, but it does seem to resemble this tutorial a fair bit…

http://youtu.be/7SyH0Sn3stc?t=36m21s

Also, one quick thing.
Mac users (normally) can not see any file that begins with a fullstop, you may want to rename the '.boot' folder as when I tried to install it didn't copy because of this.
NeptunasLT #15
Posted 28 February 2013 - 02:52 AM
0.5 released!
Added New Boot Logo (old suck's)
Added Pastebin Installer.
theoriginalbit #16
Posted 28 February 2013 - 02:56 AM
Mac users (normally) can not see any file that begins with a fullstop, you may want to rename the '.boot' folder as when I tried to install it didn't copy because of this.
putting the . at the front is a deliberate choice. I do that with all my programs. if there are files you do not want users to change put a . in front of it. I suggest an installer instead (which has now been done), that way it doesn't rely on people copying. Side note: default hidden files and folders are not shown on Windows and Linux too. On Mac you can show them like this
NeptunasLT #17
Posted 28 February 2013 - 04:00 AM
Do you like this os?
oeed #18
Posted 28 February 2013 - 09:44 AM
Mac users (normally) can not see any file that begins with a fullstop, you may want to rename the '.boot' folder as when I tried to install it didn't copy because of this.
putting the . at the front is a deliberate choice. I do that with all my programs. if there are files you do not want users to change put a . in front of it. I suggest an installer instead (which has now been done), that way it doesn't rely on people copying. Side note: default hidden files and folders are not shown on Windows and Linux too. On Mac you can show them like this

Oh I am well aware how to show them, it's just that it may not be the best choice if you don't want some confused users.


Do you like this os?

It's not bad, however, it is very very badly plagiarized from a YouTube tutorial, you may want to consider redoing parts that you didn't do, or at least give credit.
theoriginalbit #19
Posted 28 February 2013 - 04:40 PM
Oh I am well aware how to show them, it's just that it may not be the best choice if you don't want some confused users.
Letting them see that folder can sometimes cause more confusion, and if they change or delete that folder can cause unexpected results in the program which may make them blame you for the issue. its better to hide files you don't want them messing with so that they don't even know they are there.
oeed #20
Posted 28 February 2013 - 06:36 PM
Oh I am well aware how to show them, it's just that it may not be the best choice if you don't want some confused users.
Letting them see that folder can sometimes cause more confusion, and if they change or delete that folder can cause unexpected results in the program which may make them blame you for the issue. its better to hide files you don't want them messing with so that they don't even know they are there.

Point taken, however, maybe putting it within a folder that you can copy easily would be better.
theoriginalbit #21
Posted 28 February 2013 - 06:42 PM
Point taken, however, maybe putting it within a folder that you can copy easily would be better.
Or just use the installer :P/>
oeed #22
Posted 28 February 2013 - 06:44 PM
Point taken, however, maybe putting it within a folder that you can copy easily would be better.
Or just use the installer :P/>

Good point :3
NeptunasLT #23
Posted 28 February 2013 - 10:21 PM
What do you want in 0.6v?
theoriginalbit #24
Posted 28 February 2013 - 10:25 PM
new FireWolf. thats like the oldest one ever that you are using.
NeptunasLT #25
Posted 28 February 2013 - 10:30 PM
new FireWolf. thats like the oldest one ever that you are using.
Ok i will add.
theoriginalbit #26
Posted 28 February 2013 - 10:42 PM
What do you want in 0.6v?

Here is a list of improvements/bugs:
  1. os hangs after leaving external programs and requires a reboot to use OS.
  2. make the lua prompt a window or clear the screen first.
  3. make the splash screen delay a little quicker
  4. icons for Firewolf, TACO and Lua prompt
  5. When pressing a key and the [SYSTEM] menu is open … Error: gui:136: attempt to compare nil with number
  6. Renaming an icon: Error: fLib:2: assertion failed
  7. Changing the icon to an icon that doesn't exist allows it to work causing an error in paintutils. and causes a permanent crash that can only be fixed with reinstall (That is a problem with KreOS too, all because you both used the code/copied/followed NDFJays incomplete tutorial
  8. Remove slowPrint's … they are annoying and such
  9. installer has problems when the file already exists, you should remove the files first.
  10. changing location boxes and such dont scroll http://puu.sh/29Ggz
  11. only a 4x4 area of the icons are clickable
  12. clicking the file browser icon does not open the file browser
  13. have the countdown timer in the installer actually count down
This is most of the ones I can find :)/> hope they help :)/>
NeptunasLT #27
Posted 01 March 2013 - 02:36 AM
What do you want in 0.6v?

Here is a list of improvements/bugs:
  1. os hangs after leaving external programs and requires a reboot to use OS.
  2. make the lua prompt a window or clear the screen first.
  3. make the splash screen delay a little quicker
  4. icons for Firewolf, TACO and Lua prompt
  5. When pressing a key and the [SYSTEM] menu is open … Error: gui:136: attempt to compare nil with number
  6. Renaming an icon: Error: fLib:2: assertion failed
  7. Changing the icon to an icon that doesn't exist allows it to work causing an error in paintutils. and causes a permanent crash that can only be fixed with reinstall (That is a problem with KreOS too, all because you both used the code/copied/followed NDFJays incomplete tutorial
  8. Remove slowPrint's … they are annoying and such
  9. installer has problems when the file already exists, you should remove the files first.
  10. changing location boxes and such dont scroll http://puu.sh/29Ggz
  11. only a 4x4 area of the icons are clickable
  12. clicking the file browser icon does not open the file browser
  13. have the countdown timer in the installer actually count down
This is most of the ones I can find :)/> hope they help :)/>
Do you use 0.4 or 0.5?
theoriginalbit #28
Posted 01 March 2013 - 02:49 AM
- quote snip -
Do you use 0.4 or 0.5?
Version 0.5
NeptunasLT #29
Posted 01 March 2013 - 03:15 AM
- quote snip -
Do you use 0.4 or 0.5?
Version 0.5
Try to reinstall OS.
theoriginalbit #30
Posted 01 March 2013 - 03:24 AM
Note bold ones that don't matter about whether I reinstall or not … but yes I did reinstall several times … I never do bug reports without reinstalling at least once …

What do you want in 0.6v?

Here is a list of improvements/bugs:
  1. os hangs after leaving external programs and requires a reboot to use OS.
  2. make the lua prompt a window or clear the screen first.
  3. make the splash screen delay a little quicker
  4. icons for Firewolf, TACO and Lua prompt
  5. When pressing a key and the [SYSTEM] menu is open … Error: gui:136: attempt to compare nil with number
  6. Renaming an icon: Error: fLib:2: assertion failed
  7. Changing the icon to an icon that doesn't exist allows it to work causing an error in paintutils. and causes a permanent crash that can only be fixed with reinstall (That is a problem with KreOS too, all because you both used the code/copied/followed NDFJays incomplete tutorial
  8. Remove slowPrint's … they are annoying and such
  9. installer has problems when the file already exists, you should remove the files first.
  10. changing location boxes and such dont scroll http://puu.sh/29Ggz
  11. only a 4x4 area of the icons are clickable
  12. clicking the file browser icon does not open the file browser
  13. have the countdown timer in the installer actually count down

Here is an additional one
14. the sleep calls in the splash screen allow you to terminate the os and return to the shell. I assume that since you can't do it when the os is booted and there is no 'quit' that you would want to fix this here as well.
NeptunasLT #31
Posted 01 March 2013 - 06:29 AM
Note bold ones that don't matter about whether I reinstall or not … but yes I did reinstall several times … I never do bug reports without reinstalling at least once …

What do you want in 0.6v?
in 10. You most be /archily/system/file not /archily/system/programs/file

Here is a list of improvements/bugs:
  1. os hangs after leaving external programs and requires a reboot to use OS.
  2. make the lua prompt a window or clear the screen first.
  3. make the splash screen delay a little quicker
  4. icons for Firewolf, TACO and Lua prompt
  5. When pressing a key and the [SYSTEM] menu is open … Error: gui:136: attempt to compare nil with number
  6. Renaming an icon: Error: fLib:2: assertion failed
  7. Changing the icon to an icon that doesn't exist allows it to work causing an error in paintutils. and causes a permanent crash that can only be fixed with reinstall (That is a problem with KreOS too, all because you both used the code/copied/followed NDFJays incomplete tutorial
  8. Remove slowPrint's … they are annoying and such
  9. installer has problems when the file already exists, you should remove the files first.
  10. changing location boxes and such dont scroll http://puu.sh/29Ggz
  11. only a 4x4 area of the icons are clickable
  12. clicking the file browser icon does not open the file browser
  13. have the countdown timer in the installer actually count down

Here is an additional one
14. the sleep calls in the splash screen allow you to terminate the os and return to the shell. I assume that since you can't do it when the os is booted and there is no 'quit' that you would want to fix this here as well.
in 10. You most be /archily/system/file not /archily/system/programs/file
oeed #32
Posted 01 March 2013 - 09:45 AM
Your OS is good, but before you get too far with this one I'd recommend you start again or recode some of it. The NDFJay tutorial you used was incomplete, and really, it's obvious that you copied it. Now you know how to do that basic stuff, make your own from scratch maybe, I'd be happy to help with any problems you come across. It up to you, but I think you'd get a much better OS out of it.
theoriginalbit #33
Posted 01 March 2013 - 02:56 PM
in 10. You most be /archily/system/file not /archily/system/programs/file
For that one I just typed anything in the box to make my point, I didn't care what I was typing, just showing that it didn't scroll.
svdragster #34
Posted 02 March 2013 - 08:02 AM
Pretty cool, but you should set the background color back to white when clicking something in the dropdown menu :P/>
oeed #35
Posted 02 March 2013 - 01:36 PM
–snip snip–
  • Finder App (0%)

You do know that Finder is just the Macintosh file browser, which you already have.
NeptunasLT #36
Posted 02 March 2013 - 09:28 PM
–snip snip–
  • Finder App (0%)

You do know that Finder is just the Macintosh file browser, which you already have.
Yes so i will make finder for desktop view or whatever.
theoriginalbit #37
Posted 02 March 2013 - 09:59 PM
Yes so i will make finder for desktop view or whatever.
o.O that makes no sense. 'Finder' is like 'Windows Explorer' / 'Explorer'. You have 'File Manager' … 'Finder' == 'Windows Explorer' or 'Explorer' == 'File Manager' …
oeed #38
Posted 02 March 2013 - 10:23 PM
Yes so i will make finder for desktop view or whatever.
o.O that makes no sense. 'Finder' is like 'Windows Explorer' / 'Explorer'. You have 'File Manager' … 'Finder' == 'Windows Explorer' or 'Explorer' == 'File Manager' …

Ikr…


NeptunasLT, as you appear to be inspired by PearOS I'm pretty you may be getting a bit confused with a window system or something. Finder probably isn't what you want to call this.
NeptunasLT #39
Posted 02 March 2013 - 10:34 PM
Yes so i will make finder for desktop view or whatever.
o.O that makes no sense. 'Finder' is like 'Windows Explorer' / 'Explorer'. You have 'File Manager' … 'Finder' == 'Windows Explorer' or 'Explorer' == 'File Manager' …

Ikr…


NeptunasLT, as you appear to be inspired by PearOS I'm pretty you may be getting a bit confused with a window system or something. Finder probably isn't what you want to call this.

Ok i will do not make finder app.
theoriginalbit #40
Posted 02 March 2013 - 10:49 PM
Ok i will do not make finder app.
Wow … is that a Google Translate fail?

I'm assuming its meant to say "Ok I won't make a finder app." or "Ok I will not make a finder app."
NeptunasLT #41
Posted 02 March 2013 - 11:35 PM
Ok i will do not make finder app.
Wow … is that a Google Translate fail?

I'm assuming its meant to say "Ok I won't make a finder app." or "Ok I will not make a finder app."
Yes :D/>

Ok i will do not make finder app.
Wow … is that a Google Translate fail?

I'm assuming its meant to say "Ok I won't make a finder app." or "Ok I will not make a finder app."
Yes :D/>
I Can Speak in Lithuania if you need :D/>
NeptunasLT #42
Posted 03 March 2013 - 12:15 AM
0.6 Is Out!
theoriginalbit #43
Posted 03 March 2013 - 12:18 AM
0.6 Is Out!

running your installer:

fs.remove does not exist its fs.delete

instead use this

if fs.exists('archily') then fs.delete("archily") end

EDIT:
Also


print("Downloading ArchilyOS 0.6v")
textutils.slowPrint("In 0.5v Added:")
0.6 … 0.5 … o.O

EDIT #2:
It also seems like every bug that I listed still before still exists.
And you're using MORE slow prints!!! :'(
Edited on 02 March 2013 - 11:21 PM
NeptunasLT #44
Posted 03 March 2013 - 03:44 AM
0.6 Is Out!

running your installer:

fs.remove does not exist its fs.delete

instead use this

if fs.exists('archily') then fs.delete("archily") end

EDIT:
Also


print("Downloading ArchilyOS 0.6v")
textutils.slowPrint("In 0.5v Added:")
0.6 … 0.5 … o.O

EDIT #2:
It also seems like every bug that I listed still before still exists.
And you're using MORE slow prints!!! :'(
Ok i will fix this.

Installer Now Fixed!
Error Was On
fs.delete("archily")

Left only Installer…

Installer will come today!
I think at 14:00PM
On Europe Time.

ArchilyOS is Done.
No more updates.
Now i working in @inc
we are making NAOS it will come in 2013.03.30.
@inc-staff #45
Posted 20 March 2013 - 02:23 AM
Hmm what to add to the new OS…
PixelToast #46
Posted 20 March 2013 - 03:38 AM
i dont see the "posed image"
when i click on it it dosent load
NeptunasLT #47
Posted 31 March 2013 - 09:40 AM
0.7 Will be UPDATED
Now I'm working on:
- Login System
Done:
- Boot Screen (With Color's (Graphical))
- Graphical updates
- in GUI you will find stuff like "SYSTEM >>>" and it will open on desktop :)/>

Update will be in 2013.03.30 or later.
NeptunasLT #48
Posted 01 April 2013 - 01:03 AM
0.7v Has been OUT!@!@!@!@!
Added More graphic
about program
NEW BOOT SCREEN
gamax92 #49
Posted 01 April 2013 - 07:47 AM
Installer impression
WHY DOES YOUR BOOT SCREEN TAKE 15 SECONDS OF SLEEP! HOLY CRAP MAN I DONT WANNA WAIT 15 SECONDS EACH BOOT WTF IS WRONG WITH YA.
I mean seriously, first time I've seen someone take 15 seconds. Just wow … make it like 2 seconds or something. Thats ridiculous.

Gonna edit that out real quick and then continue review.


After install impression
Well, the installer drops me to the shell, doesn't reboot.
Update? Sure, dropped back to shell.
Well it always says there is an update.
Skipping it says No such program. and puts me to shell.

Line 89 of boot reads: "if fs.exists("/archilyos/system/0.7v") then"
Shouldn't that be "if fs.exists("/archily/system/0.7v") then" I saw this file but not archillyos.

Changing that, just realized there is no "/archily/system/gui"

Looking back in the installer, you forgot to make all the directories first, THEN placing files in them, so ill just make all those dirs i see and then reinstall.

After installed impression.
So reinstalled, all the files are there now.

Well, Went to rename the icon on my desktop, it didn't erase the name entirely.
And pressed enter got:
gui:173: attempt to index ? (a nil value)
Dropped me to shell. No crash handler? No wrapping in pcall?

So renaming is broken … nice.


What is CH-Icon? CHeck icon? CHange icon? CiH virus?
It brings up a prompt, so it must be Change icon?
Typing something in gets me
gui:190: attempt to index ? (a nil value)
Again, dropped to shell. Nice to know I'm being protected by this OS's security.


Used Re-Link, what does this do? I'm guessing its what the icon points to.
Same thing as CH-Icon and rename, got an error:
gui:207: attempt to index ? (a nil value)
And once again crashed to shell.

Alright, time to see if clicking on the desktop does anything. Nope, just opens FileManager and Internet.
Wait … what Internet icon? And I can't make any icons? Just change exising ones? (broken)
I also see npaintpro in the applications, where is this launchable from?
You also have applications in two different locations, "archily/system/programs" and "archily/system"

Well, decided to run the File Manager, i've seen this FM before, so I closed it.
Screen is just blank? I have to click on it so it comes back?

Time to test the [SYSTEM] bar, ahh good ol taco editor!
Same thing, screen goes blank when i exit program, so its not just a FM issue, its a program running issue.

The lua prompt shows that you don't reset colors or even move the terminal to the top OR clear the terminal. Which can have negative effects on CraftOS programs.

And the About program does nothing, just says "No such program."
Well … thats everything in the os.

File review!
Nothing uses kernel.co, it just gets loaded but nothing from it is referenced.
What is .background, its just the color white … and spaces … on something that was already white.
It doesn't even span the entire desktop …

Code review!
Well, after taking a first glance of the code, I can say not much effort was put into this.
None of the code is formatted, there are no returns, nothing is local.
The updater has a hard coded pastebin link, unless this is changed by your account, this updates nothing.
Infact, the updater will never run, since it checks if there is a 0.7v file. There always will be (once the installer is fixed)
It seems the desktop icons and background are fixed, as the gui puts uses hard coded values for placement.
Also, what is this background? When i commented out the code for the background, the desktop looks the same.

After review!
That wasn't too pleasing. That startup time is WAAY too long. There isn't much content at the moment.
The code has obviously not been tested, there is a random unused file.
Absolutly no security at all, doesn't even catch its crashes, thats extremly easy to write. its just one function and a pcall.

Security: 0/10
Productivity: 1/10
Graphics: 8/10
Internal working: 1/10
NeptunasLT #50
Posted 01 April 2013 - 07:53 AM
Installer impression
WHY DOES YOUR BOOT SCREEN TAKE 15 SECONDS OF SLEEP! HOLY CRAP MAN I DONT WANNA WAIT 15 SECONDS EACH BOOT WTF IS WRONG WITH YA.
I mean seriously, first time I've seen someone take 15 seconds. Just wow … make it like 2 seconds or something. Thats ridiculous.

Gonna edit that out real quick and then continue review.


After install impression
Well, the installer drops me to the shell, doesn't reboot.
Update? Sure, dropped back to shell.
Well it always says there is an update.
Skipping it says No such program. and puts me to shell.

Line 89 of boot reads: "if fs.exists("/archilyos/system/0.7v") then"
Shouldn't that be "if fs.exists("/archily/system/0.7v") then" I saw this file but not archillyos.

Changing that, just realized there is no "/archily/system/gui"

Looking back in the installer, you forgot to make all the directories first, THEN placing files in them, so ill just make all those dirs i see and then reinstall.

After installed impression.
So reinstalled, all the files are there now.

Well, Went to rename the icon on my desktop, it didn't erase the name entirely.
And pressed enter got:
gui:173: attempt to index ? (a nil value)
Dropped me to shell. No crash handler? No wrapping in pcall?

So renaming is broken … nice.


What is CH-Icon? CHeck icon? CHange icon? CiH virus?
It brings up a prompt, so it must be Change icon?
Typing something in gets me
gui:190: attempt to index ? (a nil value)
Again, dropped to shell. Nice to know I'm being protected by this OS's security.


Used Re-Link, what does this do? I'm guessing its what the icon points to.
Same thing as CH-Icon and rename, got an error:
gui:207: attempt to index ? (a nil value)
And once again crashed to shell.

Alright, time to see if clicking on the desktop does anything. Nope, just opens FileManager and Internet.
Wait … what Internet icon? And I can't make any icons? Just change exising ones? (broken)
I also see npaintpro in the applications, where is this launchable from?
You also have applications in two different locations, "archily/system/programs" and "archily/system"

Well, decided to run the File Manager, i've seen this FM before, so I closed it.
Screen is just blank? I have to click on it so it comes back?

Time to test the [SYSTEM] bar, ahh good ol taco editor!
Same thing, screen goes blank when i exit program, so its not just a FM issue, its a program running issue.

The lua prompt shows that you don't reset colors or even move the terminal to the top OR clear the terminal. Which can have negative effects on CraftOS programs.

And the About program does nothing, just says "No such program."
Well … thats everything in the os.

File review!
Nothing uses kernel.co, it just gets loaded but nothing from it is referenced.
What is .background, its just the color white … and spaces … on something that was already white.
It doesn't even span the entire desktop …

Code review!
Well, after taking a first glance of the code, I can say not much effort was put into this.
None of the code is formatted, there are no returns, nothing is local.
The updater has a hard coded pastebin link, unless this is changed by your account, this updates nothing.
Infact, the updater will never run, since it checks if there is a 0.7v file. There always will be (once the installer is fixed)
It seems the desktop icons and background are fixed, as the gui puts uses hard coded values for placement.
Also, what is this background? When i commented out the code for the background, the desktop looks the same.

After review!
That wasn't too pleasing. That startup time is WAAY too long. There isn't much content at the moment.
The code has obviously not been tested, there is a random unused file.
Absolutly no security at all, doesn't even catch its crashes, thats extremly easy to write. its just one function and a pcall.

Security: 0/10
Productivity: 1/10
Graphics: 8/10
Internal working: 1/10
Okey i will fix this…
BabyCodder #51
Posted 04 April 2013 - 11:31 AM
I Think i will make ArchilyOS Server Edition.

What is this for? File hosting (Cloud) ?
NeptunasLT #52
Posted 04 April 2013 - 09:36 PM
I Think i will make ArchilyOS Server Edition.

What is this for? File hosting (Cloud) ?
FireWolf Server OS.
BabyCodder #53
Posted 05 April 2013 - 01:08 AM
I Think i will make ArchilyOS Server Edition.

What is this for? File hosting (Cloud) ?
Or is server edition to go on servers so it has a live chat or something?
theoriginalbit #54
Posted 05 April 2013 - 01:19 AM
ArchilyOS is Done.
No more updates.
Now i working in @inc
we are making NAOS it will come in 2013.03.30.
0.7v Has been OUT!@!@!@!@!
Added More graphic
about program
NEW BOOT SCREEN
Interesting… what happened? Didn't work out at @inc?

What is this for? File hosting (Cloud) ?
Or is server edition to go on servers so it has a live chat or something?
Instead of quoting yourself and double posting, press the edit button to change your reply :)/>
BabyCodder #55
Posted 05 April 2013 - 01:27 AM
ArchilyOS is Done.
No more updates.
Now i working in @inc
we are making NAOS it will come in 2013.03.30.
0.7v Has been OUT!@!@!@!@!
Added More graphic
about program
NEW BOOT SCREEN
Interesting… what happened? Didn't work out at @inc?

What is this for? File hosting (Cloud) ?
Or is server edition to go on servers so it has a live chat or something?
Instead of quoting yourself and double posting, press the edit button to change your reply :)/>
I know :D/>
NeptunasLT #56
Posted 08 April 2013 - 08:31 PM
Finaly ArchilyOS 0.8v is HERE!
Added:
Main screen
ASTORE PROGRAM <—- FOR DOWNLOAD PROGRAM'S!
AND OTHER…

(Sorry For CLAP's )
theoriginalbit #57
Posted 08 April 2013 - 08:53 PM
your website is a little broken.
NeptunasLT #58
Posted 08 April 2013 - 09:50 PM
your website is a little broken.
i know it's not done.
theoriginalbit #59
Posted 08 April 2013 - 10:42 PM
i know it's not done.
Hope you don't mind. I got a little bored, so I did your website. CSS ftw! Here is the download link
NeptunasLT #60
Posted 09 April 2013 - 02:00 AM
i know it's not done.
Hope you don't mind. I got a little bored, so I did your website. CSS ftw! Here is the download link
Thx.For CSS :)/>
Now i will upload it to website.