Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. App Wishlist
  3. Minecraft Forge Server

Minecraft Forge Server

Scheduled Pinned Locked Moved Solved App Wishlist
54 Posts 5 Posters 7.9k Views 6 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • BrutalBirdieB BrutalBirdie

    @atrilahiji That wont work for me ๐Ÿ˜„
    My Console output looks like this.

    Feb 08 17:14:35 [16:14:35 INFO]: [Vault] No new version available
    Feb 08 19:42:41 [18:42:41 INFO]: CONSOLE issued server command: /help
    Feb 08 19:42:41 [18:42:41 INFO]: To view help from the console, type '?'.
    Feb 08 19:42:55 [18:42:55 INFO]: -------------------- Help --------------------
    

    so I would have to match \\[\d+\:\d+\:\d+\s[INFO|WARN|ERROR]\\]

    ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #27

    @brutalbirdie ๐Ÿ˜ง

    BrutalBirdieB 1 Reply Last reply
    0
    • ? A Former User

      @brutalbirdie ๐Ÿ˜ง

      BrutalBirdieB Offline
      BrutalBirdieB Offline
      BrutalBirdie
      Partner
      wrote on last edited by BrutalBirdie
      #28

      @atrilahiji I will test this

      .toString().split(/\[\d+\:\d+\:\d+\s(INFO|WARN|ERROR)\]\:\s/)[2]);
      

      Tested it with jsfiddle and regex101

      text = "Feb 08 17:14:35 [16:14:35 INFO]: [Vault] No new version available";
      console.log(text.toString().split(/\\[\d+\:\d+\:\d+\s(INFO|WARN|ERROR)\\]\:\s/)[2]);
      

      Like my work? Consider donating a drink. Cheers!

      BrutalBirdieB 1 Reply Last reply
      0
      • BrutalBirdieB BrutalBirdie

        @atrilahiji I will test this

        .toString().split(/\[\d+\:\d+\:\d+\s(INFO|WARN|ERROR)\]\:\s/)[2]);
        

        Tested it with jsfiddle and regex101

        text = "Feb 08 17:14:35 [16:14:35 INFO]: [Vault] No new version available";
        console.log(text.toString().split(/\\[\d+\:\d+\:\d+\s(INFO|WARN|ERROR)\\]\:\s/)[2]);
        
        BrutalBirdieB Offline
        BrutalBirdieB Offline
        BrutalBirdie
        Partner
        wrote on last edited by BrutalBirdie
        #29

        Well ... silly me did a copy-paste mistake and forgot the \ at the first [
        also why not this RegEx \\[.*\\]\:\s a lot simpler.

        Like my work? Consider donating a drink. Cheers!

        ? 1 Reply Last reply
        0
        • BrutalBirdieB BrutalBirdie

          Well ... silly me did a copy-paste mistake and forgot the \ at the first [
          also why not this RegEx \\[.*\\]\:\s a lot simpler.

          ? Offline
          ? Offline
          A Former User
          wrote on last edited by
          #30

          @brutalbirdie Lol true that should work

          1 Reply Last reply
          0
          • ? Offline
            ? Offline
            A Former User
            wrote on last edited by A Former User
            #31

            @nebulon FYI I submitted a PR to the repo https://git.cloudron.io/cloudron/minecraft-forge-app/-/merge_requests/1

            This should clean it up a bit more. Let me know if theres anything else you need from my end on getting this up and running as a proper app. Again, I am perfectly willing to be in charge of submitting MRs for any updates to take a bit of the load off of @staff

            1 Reply Last reply
            1
            • nebulonN Offline
              nebulonN Offline
              nebulon
              Staff
              wrote on last edited by
              #32

              yes thanks, saw that. I still have to play this through on my own to see what this business with the jar files is ๐Ÿ˜‰

              ? 1 Reply Last reply
              2
              • nebulonN nebulon

                yes thanks, saw that. I still have to play this through on my own to see what this business with the jar files is ๐Ÿ˜‰

                ? Offline
                ? Offline
                A Former User
                wrote on last edited by
                #33

                @nebulon For sure, thanks! Yeah if you have any ideas about that let me know. I'm a bit lost with trying to run a jar headless if it relies on options to be selected in the GUI and there is no documentation that indicates that it can be run headless

                1 Reply Last reply
                0
                • girishG Offline
                  girishG Offline
                  girish
                  Staff
                  wrote on last edited by
                  #34

                  Iirc, a jar is just a zip file. So maybe the files are inside it as resources.

                  ? 1 Reply Last reply
                  0
                  • girishG girish

                    Iirc, a jar is just a zip file. So maybe the files are inside it as resources.

                    ? Offline
                    ? Offline
                    A Former User
                    wrote on last edited by A Former User
                    #35

                    @girish Found this when unpacking the installer jar file...
                    Screen Shot 2021-02-08 at 6.30.38 PM.png

                    I have basically 0 knowledge about Java. Does this mean anything to anyone?
                    Screen Shot 2021-02-08 at 6.33.16 PM.png

                    girishG 1 Reply Last reply
                    0
                    • ? A Former User

                      @girish Found this when unpacking the installer jar file...
                      Screen Shot 2021-02-08 at 6.30.38 PM.png

                      I have basically 0 knowledge about Java. Does this mean anything to anyone?
                      Screen Shot 2021-02-08 at 6.33.16 PM.png

                      girishG Offline
                      girishG Offline
                      girish
                      Staff
                      wrote on last edited by
                      #36

                      @atrilahiji Ah, good catch. I guess we can put in a link to https://www.patreon.com/LexManos in the DESCRIPTION/Doc link and maybe also setup some patreon from our side if we decide to publish it. I am not sure how popular forge is, but we can scale that amount based on usage.

                      ? 1 Reply Last reply
                      0
                      • girishG girish

                        @atrilahiji Ah, good catch. I guess we can put in a link to https://www.patreon.com/LexManos in the DESCRIPTION/Doc link and maybe also setup some patreon from our side if we decide to publish it. I am not sure how popular forge is, but we can scale that amount based on usage.

                        ? Offline
                        ? Offline
                        A Former User
                        wrote on last edited by
                        #37

                        @girish Yeah thats going to be troublesome. I suppose from your end its a huge issue if the maintainer feels ripped off here. I suppose it really doesn't matter if it remains as an unlisted app for the moment (unless you think its ok... I definitely prefer having it listed but I get it if thats not possible). Either way I'll add proper attribution and patreon links.

                        Would you like me to reach out to the developer?

                        girishG 1 Reply Last reply
                        0
                        • ? A Former User

                          @girish Yeah thats going to be troublesome. I suppose from your end its a huge issue if the maintainer feels ripped off here. I suppose it really doesn't matter if it remains as an unlisted app for the moment (unless you think its ok... I definitely prefer having it listed but I get it if thats not possible). Either way I'll add proper attribution and patreon links.

                          Would you like me to reach out to the developer?

                          girishG Offline
                          girishG Offline
                          girish
                          Staff
                          wrote on last edited by
                          #38

                          @atrilahiji Yes, agreed. I think since there is a special comment about automating the installation, we should check regardless of the license. Please do reach out to them and ask how he/she feels about it.

                          ? 3 Replies Last reply
                          0
                          • girishG girish

                            @atrilahiji Yes, agreed. I think since there is a special comment about automating the installation, we should check regardless of the license. Please do reach out to them and ask how he/she feels about it.

                            ? Offline
                            ? Offline
                            A Former User
                            wrote on last edited by
                            #39

                            @girish Ok sent him a message. Waiting for a reply. I'll let you know what comes of this.

                            1 Reply Last reply
                            0
                            • girishG girish

                              @atrilahiji Yes, agreed. I think since there is a special comment about automating the installation, we should check regardless of the license. Please do reach out to them and ask how he/she feels about it.

                              ? Offline
                              ? Offline
                              A Former User
                              wrote on last edited by
                              #40

                              @girish C940F49E-B4CB-4324-B5ED-3A9906D82E96.jpeg

                              I asked my brother about this since heโ€™s more experienced with forge. Looks like this works...

                              Still waiting to hear back from the developer

                              1 Reply Last reply
                              1
                              • ? Offline
                                ? Offline
                                A Former User
                                wrote on last edited by A Former User
                                #41

                                Pushed an MR for 0.4.0 with proper automation. That message from my brother saved the day ๐Ÿ™‚

                                Made a new one... no conflicts this time.

                                1 Reply Last reply
                                2
                                • girishG girish

                                  @atrilahiji Yes, agreed. I think since there is a special comment about automating the installation, we should check regardless of the license. Please do reach out to them and ask how he/she feels about it.

                                  ? Offline
                                  ? Offline
                                  A Former User
                                  wrote on last edited by A Former User
                                  #42

                                  @girish So this developer is not awfully responsive. I tried a DM via his community discord and a message on patreon (threw him $7 since I automated it for my server at least). Not sure how to proceed. I guess I'm on the fence about this because on one hand I think this would be an excellent app to have but on the other hand, if usage picks up here he may actually have a tangible loss in ad revenue?

                                  girishG 1 Reply Last reply
                                  0
                                  • ? A Former User

                                    @girish So this developer is not awfully responsive. I tried a DM via his community discord and a message on patreon (threw him $7 since I automated it for my server at least). Not sure how to proceed. I guess I'm on the fence about this because on one hand I think this would be an excellent app to have but on the other hand, if usage picks up here he may actually have a tangible loss in ad revenue?

                                    girishG Offline
                                    girishG Offline
                                    girish
                                    Staff
                                    wrote on last edited by
                                    #43

                                    @atrilahiji Maybe we can publish, and then based on usage, we (as in, Cloudron the company) is happy to setup some monthly patreon based on usage/installs.

                                    But also, let's put the patreon link in the description and also in the app's home page. I haven't looked into the app but is this using the same UI as the other minecraft apps? If so, let's change the HTML of the landing page there to have a link to their patreon.

                                    ? 2 Replies Last reply
                                    1
                                    • girishG girish

                                      @atrilahiji Maybe we can publish, and then based on usage, we (as in, Cloudron the company) is happy to setup some monthly patreon based on usage/installs.

                                      But also, let's put the patreon link in the description and also in the app's home page. I haven't looked into the app but is this using the same UI as the other minecraft apps? If so, let's change the HTML of the landing page there to have a link to their patreon.

                                      ? Offline
                                      ? Offline
                                      A Former User
                                      wrote on last edited by A Former User
                                      #44

                                      @girish Oh sure, that makes sense. I messaged one of their other devs and he confirmed the main dev often doesnt reply or see messages. And that as far as he's concerned he doesn't have an issue with it. And yeah I can throw that up onto the repo in another MR if you want. I am going to support this guy so I can clear my conscience lol.

                                      And to answer your question yeah the repo is honestly mostly the same as the current MC apps. I'll keep an eye on releases so I can update this. Also, to clarify I am currently using a beta release of forge in the repo to match the minecraft version we use in the other apps.

                                      1 Reply Last reply
                                      1
                                      • girishG girish

                                        @atrilahiji Maybe we can publish, and then based on usage, we (as in, Cloudron the company) is happy to setup some monthly patreon based on usage/installs.

                                        But also, let's put the patreon link in the description and also in the app's home page. I haven't looked into the app but is this using the same UI as the other minecraft apps? If so, let's change the HTML of the landing page there to have a link to their patreon.

                                        ? Offline
                                        ? Offline
                                        A Former User
                                        wrote on last edited by
                                        #45

                                        @girish New MR here: https://git.cloudron.io/cloudron/minecraft-forge-app/-/merge_requests/4

                                        Screenshot of the frontend change:
                                        041a7a23-37cf-4aaa-8830-702c358396ee-image.png

                                        murgeroM 1 Reply Last reply
                                        1
                                        • ? A Former User

                                          @girish New MR here: https://git.cloudron.io/cloudron/minecraft-forge-app/-/merge_requests/4

                                          Screenshot of the frontend change:
                                          041a7a23-37cf-4aaa-8830-702c358396ee-image.png

                                          murgeroM Offline
                                          murgeroM Offline
                                          murgero
                                          App Dev
                                          wrote on last edited by
                                          #46

                                          @atrilahiji Did you fix the issue where the original app (Minecraft Java Server) has memory-issues in browser causing the browser to crash/freeze?

                                          --
                                          https://urgero.org
                                          ~ Professional Nerd. Freelance Programmer. ~

                                          ? 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Bookmarks
                                          • Search