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

ChromeOS 2.6 CC Operating System

Started by Leon669, 23 February 2015 - 09:01 PM
Leon669 #1
Posted 23 February 2015 - 10:01 PM
CANCLED

ChromeOS 2.6 simple and Clean

Operating System for CC








Note: Chrome OS will not improved in future! Also Chrome OS dont work at CC 1.7 and above, last working CC Version is 1.6!!!






Installation:


pastebin get 34utjTcf startup (CC 1.5 and 1.6)

for cc 1.5 users the File explorer doesnt work at the moment i will fix it the days.

pastebin run 34utjTcf (CC 1.6 or later)



Chrome OS 1.31 or earlier plase uninstall os and load this version new. No update via update button…


Features:

- Installer

- Updater

- multiple accounts (with login)

- useful programs pre installed

- Lock funktion

- Choose a background or paint your own

- Filebrowser (by Creator )

- Fastboot option

- …

Future Versions:


The Plan is to build a new Operating System which will be named Brom OS, Chrome OS will not be continued.
Chrome OS cant be improved in future because it is using old and a bit messi code so there will be no bugfixes and support.
I dont know when Brom OS will be released, its in process for a few weeks and will need time.








Plans for Chrome OS 3.0

Possible Release:
- I work on a new OS based on Chrome OS, it will be released in a new Topic.

-Folders
-Automatic clock update
-Right Click Actions
-New Lockscreen
-Update notifications
-New Icons
-Calculator
-News will come to ChromeMenu
-Custom Menu Colors(at work)

-Language Support ?
- …


Pictures (Version 2.6):







Desktop.


You decide the OS.


Login.


Settings.


ChromeStore.



Changelog:

New Installer 07.07.2015
- New Installer in Modern UI 2


BugFix 04.04.2015
- Removed literal Errors
- all versions of cc now supports coustom Backgrounds.

ChromeOS 2.6 01.04.2015
- Better Performance
- Fastboot option (enabled by default)
- New UI (modern UI 2.0)
- Removing GoldRunner (installing takes to long)
- Support for CC 1.5 and early added
- New desktop
- Bugs Fixed


Older Versions:






ChromeOS 2.6 Bugfix 04.04.2015

pastebin get 34utjTcf startup



ChromeOS 2.0

pastebin get RcJDPEFp startup


ChromeOS 1.31



ChromeOS 1.25



ChromeOS 1.0 (Beta)






Credits:

Nitrogenfingers

(NPaintPro)



AndreWali

(Multiple things)

(Login)[Modified]



wilcomega

(Archive Program 1.1)



Creator

(FileX)[Modified]






You are allowed to modify the operating system for private use or for using it on a server.

You are not allowed to re-upload the Operating System without permissions from me.


ChromeOS has no association with Google or an another company


Known Bugs:


- CC 1.5 users have Probems with the FileBrowser.

- CC 1.7 and above users cant use Chrome OS!!!














Feedback would be great
Edited on 11 June 2017 - 05:31 PM
Creator #2
Posted 23 February 2015 - 10:36 PM
I tried the OS. It looks preety good, except for the file explorer. It's laggy and the design isn't too good. Try FileX. It's my file explorer and I would be really happy i f you used it in Chrome OS.
Leon669 #3
Posted 24 February 2015 - 05:07 AM
Thanks

I will test it out :)/>
TheJebForge #4
Posted 24 February 2015 - 07:14 PM
So, looks good) And in practice it's good too! I got a tip! Your clock updates only if you reloaded the desktop! Copy and Put the function or peace of code with clock at the end of while, then erase that thing "mouse_click" in pullEvent(beginning of while), and put: "if event == 'mouse_click' then" after the pullEvent line. Put "end" before function or peace of code with clock. Then at the start of while put: "local timeout = os.startTimer(0.1)"! That will update clock every ~0.2 seconds! Write without the ""

This really works!
Edited on 25 February 2015 - 11:31 AM
MKlegoman357 #5
Posted 24 February 2015 - 08:13 PM
Well, making an event-loop is actually better, more efficient. Remember, that CC can sleep minimum for one server tick, which is usually about 1/20 of a second. If you setup your event-loop correctly things should be running quite smoothly. An event-loop is something like this:


while true do
  local e = {os.pullEvent()}

  if e[1] == "mouse_click" then
    ...
  elseif e[1] == "key" then
    if e[2] == keys.e then
      ...
    end
  elseif ...
end
KingofGamesYami #6
Posted 24 February 2015 - 08:25 PM
TheJebForge is correct, because os.startTimer defaults to 0.05 if the value is less than that. This is because minecraft updates 20 times per second. Anything faster would not even render. However, I would use 0.1 because who needs the time to be updated that often?
Lyqyd #7
Posted 24 February 2015 - 09:49 PM
I've cleaned this topic up. I don't know what kind of clock this is displaying, but if it's using in-game time, 0.6 seconds is more than fast enough to display every minute in sequence without skipping.
Leon669 #8
Posted 25 February 2015 - 05:13 AM
I will add the function for automatic clock update the next days…
Bothers me even that the clock dont update automatic…
Edited on 22 May 2015 - 11:53 AM
Leon669 #9
Posted 25 February 2015 - 05:28 AM
Thanks to all i will try to change it the next days .. :)/>
CrazedProgrammer #10
Posted 25 February 2015 - 07:33 PM
It looks pretty good!
I have one major problem with this os and that is: Fake loading screens SUCK.
Everything should be instant if possible.
Other than that, good job!
Leon669 #11
Posted 27 February 2015 - 05:18 PM
It looks pretty good!
I have one major problem with this os and that is: Fake loading screens SUCK.
Everything should be instant if possible.
Other than that, good job!

Thx. I build it in to make it more realistic…
In the next big update i will build in a function where everybody can choose how long he want the drive up …
Creator #12
Posted 27 February 2015 - 06:01 PM
It looks pretty good!
I have one major problem with this os and that is: Fake loading screens SUCK.
Everything should be instant if possible.
Other than that, good job!

Thx. I build it in to make it more realistic…
In the next big update i will build in a function where everybody can choose how long he want the drive up …

I wouldn't forcefully put a function about how long you want to boot up because I guess the faster the better & nobody wants to lose his time for the fun of it.
Leon669 #13
Posted 27 February 2015 - 06:25 PM
It looks pretty good!
I have one major problem with this os and that is: Fake loading screens SUCK.
Everything should be instant if possible.
Other than that, good job!

Thx. I build it in to make it more realistic…
In the next big update i will build in a function where everybody can choose how long he want the drive up …

I wouldn't forcefully put a function about how long you want to boot up because I guess the faster the better & nobody wants to lose his time for the fun of it.

Sure, but i think everybody have to decide how they want it so i will build in that function to the settings and if a person like faster booting the person can choose this .
chewyboy0 #14
Posted 02 March 2015 - 03:00 AM
Hey, just a quick correction. At the login screen it says Please Enter your username and Passwort when it should be Username and Password.
Bunni1337 #15
Posted 11 March 2015 - 12:59 AM
Any clue why this is happening?

Spoiler




It just wont start after installing, and it looks so nice, id love to use this. Any idea?
Leon669 #16
Posted 13 March 2015 - 03:40 PM
Any clue why this is happening?

Spoiler




It just wont start after installing, and it looks so nice, id love to use this. Any idea?

Oh that shouldnt happen what version of computercraft do you use ?

At the moment ther are some Problems with CraftOS 1.5 or before a fix will be there in some days.

Hey, just a quick correction. At the login screen it says Please Enter your username and Passwort when it should be Username and Password.

Thx will be fixed in 2.6
Edited on 22 May 2015 - 11:54 AM
Bunni1337 #17
Posted 14 March 2015 - 09:40 PM
Okay thanks for looking into it for us 1.5 players <3
Edited on 14 March 2015 - 08:41 PM
Leon669 #18
Posted 04 April 2015 - 08:39 PM
Okay thanks for looking into it for us 1.5 players <3
Updated to version 2.6
so now it runs on cc 1.5 or before but some features doesnt work yet like the filemanaer i work on a solution.
Edited on 05 April 2015 - 01:53 PM
Creator #19
Posted 05 April 2015 - 01:28 PM
Wow, congratulations, this OS has become so great.Some design flaws, but else great.I promise I will update FileX, because I see there are some bugs. Probably I will make it work with Interact. ;)/> Search the forums you will find out what it is.
Leon669 #20
Posted 05 April 2015 - 08:03 PM
Wow, congratulations, this OS has become so great.Some design flaws, but else great.I promise I will update FileX, because I see there are some bugs. Probably I will make it work with Interact. ;)/> Search the forums you will find out what it is.

Thx i work hard on bug fixes at the moment hope to release a verion without design flaws the next days …
It would be great to see new versions of FileX its the best Fileexplorer at CC ;)/> .
Creator #21
Posted 05 April 2015 - 09:45 PM
Probably I wont be able to code for the next few days since I will be at my grandparents house.
coolmark1995 #22
Posted 10 April 2015 - 05:43 AM
Updated

ChromeOS 2.6 simple and Clean

Operating System for CC




[attachment=2124:logo.png]




Installation:


pastebin get 34utjTcf startup (CC 1.5 or earlier)

for cc 1.5 users the File explorer doesnt work at the moment i will fix it the days.

pastebin run 34utjTcf (CC 1.6 or later)



Chrome OS 1.31 or earlier plase uninstall os and load thgis version new. No update via update button…


Features:

- Installer

- Updater

- multiple accounts (with login)

- useful programs pre installed

- Lock funktion

- Choose a background or paint your own

- Filebrowser (by wilcomega )

- Fastboot option

- …

Future Versions:
Spoiler


No plans yet.



Pictures (Version 2.6)
Spoiler


[attachment=2187:desktop.png]
Desktop.

[attachment=2185:13.png]
You decide the OS.

[attachment=2188:23.png]
Login.

[attachment=2189:2.6.png]
Settings.

[attachment=2186:fds.png]
ChromeStore.



APP:
Spoiler


























No update for ChromeOS 2.6 available at the moment.




Changelog:
Spoiler

New Installer 07.07.2015
- New Installer in Modern UI 2

BugFix 04.04.2015
- Removed literal Errors
- all versions of cc now supports coustom Backgrounds.

ChromeOS 2.6 01.04.2015
- Better Performance
- Fastboot option (enabled by default)
- New UI (modern UI 2.0)
- Removing GoldRunner (installing takes to long)
- Support for CC 1.5 and early added
- New desktop
- Bugs Fixed



Older Versions:
Spoiler




ChromeOS 2.6 Bugfix 04.04.2015

pastebin get 34utjTcf startup



ChromeOS 2.0

pastebin get RcJDPEFp startup


ChromeOS 1.31



ChromeOS 1.25



ChromeOS 1.0 (Beta)



Credits:
Spoiler








Nitrogenfingers

(NPaintPro)



AndreWali

(Multiple things)

(Login)[Modified]



wilcomega

(Archive Program 1.1)



Creator

(FileX)[Modified]



You are allowed to modify the operating system for private use or for using it on a server.

You are not allowed to re-upload the Operating System without permissions from me.

ChromeOS has no association with Google or an another company






Sorry for my bad english… send me spelling mistakes if you want.

Known Bugs:
- CC 1.5 users have Probems with the FileBrowser and the Custom Background Program.
- literal error in boot manager it has to be ChromeOS 2.6 and not ChromeOS 2.7.


















Feedback would be great

-leon66907@gmail.com-

Hey I have a problem I installed your OS but for some reason it wont boot up on 1.6 I can only access craftOS all it says is no such program when trying to boot chrome OS
Leon669 #23
Posted 13 April 2015 - 02:56 PM
Probably I wont be able to code for the next few days since I will be at my grandparents house.

No Problem…
I havent time at the moment too ..

Hey I have a problem I installed your OS but for some reason it wont boot up on 1.6 I can only access craftOS all it says is no such program when trying to boot chrome OS

You using CC 1.6 right so i test it out on most cc version and have no problems. :blink:/>

So send me a private message so we can work together for a soulution ;)/>
Edited on 13 April 2015 - 12:56 PM
benmnb #24
Posted 12 May 2015 - 05:37 PM
Security Problem... :)/>You need to fix this…
1. Get to login screen.
2. Type in wrong username and password.
3. Press Tab to enter BIOS.
4. Click Forgot Password.
5. Enjoy!
Leon669 #25
Posted 22 May 2015 - 01:46 PM
Security Problem... :)/>You need to fix this…
1. Get to login screen.
2. Type in wrong username and password.
3. Press Tab to enter BIOS.
4. Click Forgot Password.
5. Enjoy!

Thats no security problem it is a temporary solution in case someone has forgotten their password.

I will try to find another solution for this.
Foodfrenzy #26
Posted 05 June 2015 - 04:47 AM
I need help. When I try to start up it says no such program.
Waitdev_ #27
Posted 04 July 2015 - 02:55 AM
nice os ;)/>
Edited on 04 July 2015 - 09:53 AM
biggest yikes #28
Posted 07 July 2015 - 05:01 PM
Instead of just a notice about distribution, you could put copyright on it (no license means you need permission to distribute it)

Copyright 2015 Leon669
Edited on 07 July 2015 - 03:02 PM
Leon669 #29
Posted 30 August 2015 - 02:11 PM
———————————————–
Project is paused at the moment.
———————————————–
Creeper9207 #30
Posted 01 September 2015 - 04:38 AM
This OS is GREAT! but it's missing something, chrome… XD
Leon669 #31
Posted 29 September 2015 - 06:40 PM
This OS is GREAT! but it's missing something, chrome… XD

:D/> :D/> yeah
EveryOS #32
Posted 02 March 2016 - 02:53 PM
I don't know why, but the screnshots look semi-familiar, just semi…

(According to another website): Viewing on ChromeOS 7647.84.0, Chrome 48.0.2564.116, Flash 20.0 (release 0)
Leon669 #33
Posted 24 May 2016 - 02:27 PM
I don't know why, but the screnshots look semi-familiar, just semi…

(According to another website): Viewing on ChromeOS 7647.84.0, Chrome 48.0.2564.116, Flash 20.0 (release 0)

To which website ?
Edited on 24 May 2016 - 12:27 PM
ExplosiveFerrets #34
Posted 25 May 2016 - 07:06 AM
Installer works (as long as my firewall is turned off, as it has for some reason blocked pastebin) and the account registration.

But when I log in, I get this error:

window:179: bad arument: string expected, got nil
Press any key to continue
Please view attached screenshot
.
Edited on 25 May 2016 - 05:06 AM
EveryOS #35
Posted 25 May 2016 - 07:28 PM
[attachment=2575:Screenshot 2016-05-25 at 2.15.25 PM.png]
I still think this seems familiar?
Edited on 25 May 2016 - 05:30 PM
PrinzJuliano #36
Posted 19 June 2016 - 03:23 PM
I think you will get into some copyright issues regarding googles interlectual properties.