Jump to content




ChromeOS 2.6 CC Operating System


  • You cannot reply to this topic
35 replies to this topic

#1 Leon669

  • Members
  • 57 posts
  • LocationGermany

Posted 23 February 2015 - 10:01 PM

CANCLED

ChromeOS 2.6 simple and Clean

Operating System for CC






Posted Image


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):






Posted Image
Desktop.

Posted Image
You decide the OS.

Posted Image
Login.

Posted Image
Settings.

Posted Image
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

http://www.mediafire...hromeOS_2.6.rar


ChromeOS 2.0

pastebin get RcJDPEFp startup


ChromeOS 1.31

http://www.mediafire...romeOS+1.31.rar


ChromeOS 1.25

http://www.mediafire...romeOS+1.25.rar


ChromeOS 1.0 (Beta)

http://www.mediafire...omeOs1+Beta.rar





Credits:

Nitrogenfingers

(NPaintPro)

http://www.computerc...-145-npaintpro/


AndreWali

(Multiple things)

(Login)[Modified]

http://www.computerc...370#entry199370


wilcomega

(Archive Program 1.1)

http://www.computerc...ve-program-v11/


Creator

(FileX)[Modified]

http://www.computerc...__fromsearch__1





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

Attached Files

  • Attached File  23.png   10.6K   219 downloads
  • Attached File  logo.png   13.71K   150 downloads
  • Attached File  fds.png   20.83K   219 downloads
  • Attached File  13.png   17.63K   266 downloads
  • Attached File  desktop.png   25.96K   282 downloads
  • Attached File  2.6.png   12.93K   189 downloads

Edited by Leon669, 11 June 2017 - 06:31 PM.


#2 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

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.

#3 Leon669

  • Members
  • 57 posts
  • LocationGermany

Posted 24 February 2015 - 05:07 AM

Thanks

I will test it out :)

#4 TheJebForge

  • Members
  • 128 posts

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 by TheJebForge, 25 February 2015 - 12:31 PM.


#5 MKlegoman357

  • Members
  • 1,170 posts
  • LocationKaunas, Lithuania

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


#6 KingofGamesYami

  • Members
  • 3,002 posts
  • LocationUnited States of America

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?

#7 Lyqyd

    Lua Liquidator

  • Moderators
  • 8,465 posts

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.

#8 Leon669

  • Members
  • 57 posts
  • LocationGermany

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 by Leon669, 22 May 2015 - 12:53 PM.


#9 Leon669

  • Members
  • 57 posts
  • LocationGermany

Posted 25 February 2015 - 05:28 AM

Thanks to all i will try to change it the next days .. :)

#10 CrazedProgrammer

  • Members
  • 495 posts
  • LocationWageningen, The Netherlands

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!

#11 Leon669

  • Members
  • 57 posts
  • LocationGermany

Posted 27 February 2015 - 05:18 PM

View PostCrazedProgrammer, on 25 February 2015 - 07:33 PM, said:

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 ...

#12 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 27 February 2015 - 06:01 PM

View PostLeon669, on 27 February 2015 - 05:18 PM, said:

View PostCrazedProgrammer, on 25 February 2015 - 07:33 PM, said:

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.

#13 Leon669

  • Members
  • 57 posts
  • LocationGermany

Posted 27 February 2015 - 06:25 PM

View PostCreator, on 27 February 2015 - 06:01 PM, said:

View PostLeon669, on 27 February 2015 - 05:18 PM, said:

View PostCrazedProgrammer, on 25 February 2015 - 07:33 PM, said:

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 .

#14 chewyboy0

  • New Members
  • 1 posts

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.

#15 Bunni1337

  • Members
  • 16 posts

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?

#16 Leon669

  • Members
  • 57 posts
  • LocationGermany

Posted 13 March 2015 - 03:40 PM

View PostBunni1337, on 11 March 2015 - 12:59 AM, said:

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.

View Postchewyboy0, on 02 March 2015 - 03:00 AM, said:

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 by Leon669, 22 May 2015 - 12:54 PM.


#17 Bunni1337

  • Members
  • 16 posts

Posted 14 March 2015 - 09:40 PM

Okay thanks for looking into it for us 1.5 players <3

Edited by Bunni1337, 14 March 2015 - 09:41 PM.


#18 Leon669

  • Members
  • 57 posts
  • LocationGermany

Posted 04 April 2015 - 07:39 PM

View PostBunni1337, on 14 March 2015 - 09:40 PM, said:

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 by Leon669, 05 April 2015 - 02:53 PM.


#19 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 05 April 2015 - 12: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.

#20 Leon669

  • Members
  • 57 posts
  • LocationGermany

Posted 05 April 2015 - 07:03 PM

View PostCreator, on 05 April 2015 - 12:28 PM, said:

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 ;) .





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users