No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. s-light
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 12
    • Best 2
    • Groups 0

    s-light

    @s-light

    sun loving being…

    2
    Reputation
    19
    Profile views
    12
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Website s-light.eu Location Germany Age 34

    s-light Follow

    Best posts made by s-light

    • Font Select component?

      Hi @all 🙂

      iam new in the world of Quasar and playing around with it a little…
      one idea that i would like to try needs a ‘Font-Select-Component’ -
      does anybody know if there is already something out there?
      or do i have to build / develop it myself?

      it should allow the user to select on of the system fonts - or one of the prepacked app fonts.

      looking forward to get to know the world of Quasar and this community!

      sunny greetings
      stefan

      posted in Help
      s-light
      s-light
    • How to setup builds with quasar & electron-build & travis-ci on github?

      Hello Community,

      my goal is that travis automagically builds the app for linux and macos and uploads the asserts to a github draft-release.
      does anyone know of a example how to configure all this correctly?

      i am new to this world of releases and ci…
      so i read through a lot of documentation - the promising once were:

      • Travis-CI - GitHub Releases Uploading
      • electron-builder - Recommended GitHub Releases Workflow
      • electron-builder - Sample .travis.yml to Build Electron App for macOS, Linux and Windows

      but i am missing the bigger picture - i guess - how to fit this all together…

      any tips or links to examples are very welcome 🙂

      sunny greetings
      stefan

      posted in Help
      s-light
      s-light

    Latest posts made by s-light

    • RE: notify plugin with click action

      thanks @Lurrik i will have a look what you are doing there the next days!

      sunny greetings
      stefan

      posted in Help
      s-light
      s-light
    • notify plugin with click action

      Hello community,
      is there a possibility to add an click handler to a notify?

      this.$q.notify({
          color: 'negative',
          message: 'Hello World',
          icon: 'report_problem',
          onClick: this.handleTheNotifyClick
      })
      

      i like the visual appeareans / stacking of theme - but for the UI interaction it would be great to allow the user to just click on the popup and get directed to the correct sub page / paragrah what ever 😉

      if you have any tips or ideas please let me know!

      sunny greetings
      stefan

      posted in Help
      s-light
      s-light
    • RE: quasar dev - how to start additional background server?

      @dobbel thanks!!
      yes the output is mixed up…
      but my backend server is very simple and only mentions ones that it is running…
      for this easy thing its working fine 🙂

      thank you!!

      sunny greetings
      stefan

      posted in CLI
      s-light
      s-light
    • RE: quasar dev - how to start additional background server?

      for now i use
      yarn start and have configured the script with the help of concurrently:

      "start": "concurrently --kill-others --raw \"node ./server/index.js\" \"quasar dev\" "
      
      posted in CLI
      s-light
      s-light
    • quasar dev - how to start additional background server?

      hello community,
      in my quasar project i need a backend server for some development simulation purposes.
      what is the simplest way to also just start this in background with using the quasar dev command?
      currently i have to open a second cmd and start the server with yarn start and would like to automate this 🙂

      sunny greetings
      stefan

      posted in CLI
      s-light
      s-light
    • How to setup builds with quasar & electron-build & travis-ci on github?

      Hello Community,

      my goal is that travis automagically builds the app for linux and macos and uploads the asserts to a github draft-release.
      does anyone know of a example how to configure all this correctly?

      i am new to this world of releases and ci…
      so i read through a lot of documentation - the promising once were:

      • Travis-CI - GitHub Releases Uploading
      • electron-builder - Recommended GitHub Releases Workflow
      • electron-builder - Sample .travis.yml to Build Electron App for macOS, Linux and Windows

      but i am missing the bigger picture - i guess - how to fit this all together…

      any tips or links to examples are very welcome 🙂

      sunny greetings
      stefan

      posted in Help
      s-light
      s-light
    • RE: Security warnings when running in Electron dev mode

      is it possible to switch this dev server also to HTTPS?

      i have already switched the ‘dev server’ to HTTPS like mentioned at
      https://quasar.dev/quasar-cli/quasar-conf-js#devServer-Property
      but seems this is only changing the server for SPA mode.

      posted in Starter Kits
      s-light
      s-light
    • @quasar/icon-factory different results between 'build' and 'dev' ?

      Hi all,
      i don’t know if this would be better posted as issue in the icon-factory repository -
      could be related:
      #57 Move Cache into .icon-factory
      #64 Extension always rebuild image set

      the icon-factory created a folder ‘static’ in my root project directory with all the build icons.
      i added them to git, as i thought - fine lets track these asserts…
      but if i switch between quasar dev and quasar build --debug these files get recreated -
      but i configured the minification to the same for both:

      {
        "@quasar/icon-factory": {
          "minify_dev": "optipng",
          "minify_build": "optipng",
          "cordova": {
            "background_color": "#000074",
            "splashscreen_type": "pure"
          },
          "build_always": false,
          "__internal": {
            "dev": {
              "spa": {
                "iconHash": "a02f4f34575297041747ae059a203f2c"
              },
              "electron": {
                "iconHash": "a02f4f34575297041747ae059a203f2c"
              }
            },
            "build": {
              "spa": {
                "iconHash": "a02f4f34575297041747ae059a203f2c"
              },
              "electron": {
                "iconHash": "a02f4f34575297041747ae059a203f2c"
              }
            }
          }
        }
      }
      

      also when i set "minify_build": "optipng", then do a quasar build and then try again but change to "minify_build": "zopfli", the icon files do not change (according to git)

      any thoughts are welcome 🙂

      sunny greetings
      stefan

      posted in Help
      s-light
      s-light
    • RE: How to write a custom component and use it?

      Thanks Scott & lucasfernog!

      i have read the Vue-beginners guide… and are happy to play-around and learn from the documentation 😉
      (if i find the correct part 😉 )

      the link to the example boot/components.js is great!
      → that was the missing point 😉
      and the components-registration thing was the doc i searched for!
      seems i have to search also more in the Vue documentation!!
      especially Local-Registration-in-a-Module-System did it for me 😉

      Thanks! - now it works!

      sunny greetings
      stefan

      posted in Help
      s-light
      s-light
    • How to write a custom component and use it?

      Hello 🙂

      iam really new to this quasar and vue world…
      so evenutally its so easy i just don’t know jet…

      i have started my app with the getting-started guide with the CLI install

      now after some time playing around with various things
      (see https://github.com/s-light/quasar_test)
      i want to create a new component to use in one of my page files.
      so i created a file at
      src/components/CanvasTextRender.vue
      and tried to use it in
      src/pages/font.vue

      but it seems i missing something basic…
      and i don’t know how to search for a tutorial or similar info on this…

      hope someone can push me in the right direction… 🙂

      sunny greetings
      stefan

      posted in Help
      s-light
      s-light