Inkscape Mailman
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

Webmaster

Thread Start a new thread
Download
Threads by month
  • ----- 2025 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
webmaster@lists.inkscape.org

  • 20 participants
  • 63108 discussions
[Webmaster] Rocket.Chat, 2 Users, 3 Messages, 0 Files, 337420 Minutes, in #missingprint
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2020-09-06 09-22-00 PDT Steve Medway Hi. when i create and A4 page with images on it and print to a Epson Sublimation printer the half the print is missing. i can also see this in print preview. i can get over the issue as follows 2020-09-06 09-25-13 PDT Steve Medway i get over the issue (currently) by doing the following. 1) highlight image. 2) copy image. 3) paste into Paint.net 4) highlight and copy image in paint. 5) go back to Inkscape highlight image and click delete. 6) paste image from Paint.net. 7) print document and whole image is there. make no sense to me. ANY IDEAS??? 2020-10-06 19-07-18 PDT Moini Private Group (room_changed_privacy)
1 0
0 0
[Webmaster] Rocket.Chat, 2 Users, 62 Messages, 0 Files, 635097 Minutes, in Direct Message Between: anonym_i_ous & rathod-sahaab
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2020-05-10 01-39-14 PDT Abhay Raj Singh Hard: count the circles, easier said than done 2020-05-10 00-38-35 PDT Abhay Raj Singh [ ](https://chat.inkscape.org/direct/anonym_i_ous?msg=HiBF88Ei8uAeFyb5j) Thanks🙌 () 2020-02-12 22-15-08 PST Abhay Raj Singh Hello! I am from *Bharat* _(a.k.a. India)_ I am currently pursuing Materials Science and Engineering from the *National Institute of Technology, Hamirpur*, Himachal Pradesh and I am in the second year of the same. 2020-05-09 23-32-16 PDT Abhay Raj Singh Only two ways I know are XML and. For props not in xml like local variables debugger(GDB/LLDB) which are not easy to use. You should ask the on team_dev I'm a noob in inkscape compared to others. 2020-05-10 01-33-07 PDT Abhay Raj Singh Easy: You change how things work instead of rotating around you can add drag feature that is if you drag up rouded ness increases Dow to decrease 2020-05-09 21-35-06 PDT Abhay Raj Singh Ping if you have any problem/confusion 2020-05-09 20-54-08 PDT Abhay Raj Singh ``` Geom::Point d = s - star->center; double arg1 = atan2(d); ``` d is the location with respect to the center atan2 returns the angle, the angle which a line from *center of the star* to *snap point* would make, I guess its the angle of movement ``` double darg1 = arg1 - star->arg[0]; ``` Difference in angle between the cursor postion and one of the point on star that you can drag 2020-05-10 01-30-30 PDT Abhay Raj Singh Now there are two ways to solve this 2020-05-09 20-36-26 PDT Abhay Raj Singh ``` SPStar *star = dynamic_cast (item); g_assert(star != nullptr); ``` This checks if item is actually a "SPStar" by trying to convert it to one, if successfull it's a star, if failed g_assert just report the error and exists th function. 2020-05-10 01-29-40 PDT Abhay Raj Singh This occurs due to the design itself We currently use atan2 which returns an angle between -pi @ pi radians i.e. -180deg to 180deg so you can move a maximum of 360 degrees before the glitch 2020-05-09 21-08-01 PDT Abhay Raj Singh ``` if (state & GDK_MOD1_MASK) { star->randomized = darg1/(star->arg[0] - star->arg[1]); } else if (state & GDK_SHIFT_MASK) { star->rounded = darg1/(star->arg[0] - star->arg[1]); } else if (state & GDK_CONTROL_MASK) { star->r[0] = L2(d); } else { star->r[0] = L2(d); star->arg[0] = arg1; star->arg[1] += darg1; } ``` state is a bitmask that can hold multiple state at once: Think state as an object where you can do, `state.isControlPressed()` but it's slow so state is an integer which can hold many "bits(hence bit-mask)" and syntax is `state & GDK_CONTROL_MASK` 2020-05-10 00-37-55 PDT Abhay Raj Singh [ ](https://chat.inkscape.org/direct/anonym_i_ous?msg=HXPvHYz7rvsz24k8H) I think this is because smaller the difference between arg 0&1 (more sides/corners) the sharper are the corners, hence smoothing should be more agressive () 2020-05-09 21-11-50 PDT Abhay Raj Singh Meaning when MOD1(Alt on my system) is pressed randomize when nodes are dragged, Shift and drag to round, ctrl to increase only the radius and nothing else(like angles of crest and trough/ hills and valleys) 2020-02-26 07-52-37 PST Abhay Raj Singh To learn about programming for flutter, search dart tutorials Remember searching online is the best tool to for a programmer😉 2020-02-26 07-55-07 PST Abhay Raj Singh https://www.youtube.com/playlist?list=PL4cUxeGkcC9jLYyp2Aoh6hcWuxFDX6PBJ 2020-09-02 04-02-37 PDT Abhay Raj Singh I guess its automated 2020-05-10 01-38-13 PDT Abhay Raj Singh The way you can do it is by checki arg1 value if it is positive then direction is up if it is negative then direction is down. Or the other way around depending on coordinate system. Then determine the length of d there would be some geom function for this. Set this length the roundness value. Maybe divide/multiply it by some property of star like radius or arg0 - arg1 2020-05-10 01-25-34 PDT Abhay Raj Singh Oh now I see 2020-02-26 07-50-55 PST Abhay Raj Singh Sure! dude I would love too! I am currently having exams will be free from sunday *flutter* is one of the *easiest* thing to learn, GUI + programming + theming in the same language Works on android/ios with same code To get started Install flutter, on you system, Instructions are on the site, Even, If you have a low end PC like me ;-; VS code will work quite, good 2020-05-09 22-46-15 PDT Abhay Raj Singh What editor do you use? 2020-05-09 20-48-55 PDT Abhay Raj Singh ``` Geom::Point const s = snap_knot_position(p, state); ``` s is the point snap point, I guess it refers to the cursor position 2020-05-09 22-49-44 PDT Abhay Raj Singh And answer to your question Its in src/object/sp-star.h Line 38 2020-02-26 07-57-57 PST Abhay Raj Singh 😅 sorry, on that point licensing confuses me every org seem to have their own license that makes me think why 2020-05-09 22-48-00 PDT Abhay Raj Singh Cool just click the word arg in star->arg then click go to definition 2020-02-26 07-44-59 PST Abhay Raj Singh Hi! Just finished dinner, whats up! 2020-02-13 01-08-01 PST Abhay Raj Singh Sorry I wasn't trying to be rude :sweat_smile: it's just #team_devel talks in points so I have caught that habbit. I was in agreement and liked the features you suggested. 2020-05-09 20-36-06 PDT Abhay Raj Singh Ok let me try:sweat_smile: 2020-05-10 00-51-23 PDT anonym_i_ous https://gitlab.com/inkscape/inbox/-/issues/2722 2020-05-10 00-50-53 PDT anonym_i_ous okay, lemme give u some more context: 2020-02-26 07-43-17 PST anonym_i_ous hey there man! 2020-05-09 16-10-23 PDT anonym_i_ous i need some help regarding understanding some code 2020-05-09 16-10-48 PDT anonym_i_ous https://gitlab.com/inkscape/inkscape/-/blob/447345798f927d5cd00bdca0f3c16e0… 2020-09-01 23-34-56 PDT anonym_i_ous just bringing it under ur attention too :) 2020-09-01 23-34-28 PDT anonym_i_ous [ ](https://chat.inkscape.org/channel/general?msg=YPYvQau5iBmXjm9PJ) () 2020-05-09 22-42-07 PDT anonym_i_ous thanks again 2020-05-09 23-28-56 PDT anonym_i_ous is there a way to look at these values realtime ~~in inkscape~~ (some of these can be looked at in xml editor in inkscape, but i was thinking for all of these) 2020-02-13 01-08-45 PST anonym_i_ous yeah, i know u weren't 😄😇 2020-02-13 00-49-52 PST anonym_i_ous so much so, that personally i wont mind it being immovable even at later stages of development..... we can just decide a default placement, and then just enable/disable it (much like we have done with tool bars rn) 2020-05-09 22-46-30 PDT anonym_i_ous for? code? 2020-05-09 22-39-01 PDT anonym_i_ous yeah, one doubt: > Difference in angle between the cursor postion and **one of the point on star** that you can drag 2020-05-09 16-13-54 PDT anonym_i_ous ohh, and yes, i can understand psuedo code and am familiar with if-then-else, and function calling and very basics of c. (saying to convey my understanding level so that u can tell accordingly) 2020-05-09 22-40-12 PDT anonym_i_ous got that `arg [x]` is the angle of one of the point on star 2020-05-09 22-45-50 PDT anonym_i_ous can u point me to where arg[0] and arg[1] are defined? 2020-05-09 16-12-07 PDT anonym_i_ous if u understand that, can u please tell me what is this code doing!! it will be a great help (: 2020-05-09 22-50-20 PDT anonym_i_ous i cant see definition option in the browser > Its in src/object/sp-star.h > Line 38 okay, i will see (: 2020-02-12 15-05-13 PST anonym_i_ous i was wondering which state are u from, and from which college, course, and stream are u doing your education!! 2020-05-09 22-36-24 PDT anonym_i_ous thanks a lot for replying. it means a lot. 2020-02-26 08-01-51 PST anonym_i_ous yup! thats a very high valued topic as well, cause i guess things dont take much time ending up legally entangled when licencing is involved 2020-05-09 22-41-11 PDT anonym_i_ous but i cant figure out what is `arg[0] - arg[1]` 2020-05-09 23-31-31 PDT anonym_i_ous (ohh and i forgot, congratulations on getting gsoc approved :)) 2020-05-10 00-51-23 PDT anonym_i_ous this is the issue i am trynna investigate: 2020-02-13 00-38-29 PST anonym_i_ous I am interested to know a material science student doing coding. Anyways! Great to know. Kudos to u. 2020-02-12 15-04-06 PST anonym_i_ous hey 2020-05-09 22-42-03 PDT anonym_i_ous i willl retry understanding (: 2020-05-09 16-09-33 PDT anonym_i_ous hlo 2020-05-09 23-30-20 PDT anonym_i_ous any external plugin or smth 2020-02-13 00-49-40 PST anonym_i_ous yeah, I also meant that movement is not necessary 2020-05-09 22-41-43 PDT anonym_i_ous i mean i get it that it is difference in both these points, but cant see what is it doing in the functionality .... 2020-02-26 07-56-17 PST anonym_i_ous ohh! i thought i shall have been a bit more clear! I wanted to know more about licencing. But thanks for this stuff too, i very much appreciate ur helpful behaviour 😊😊! 2020-05-09 22-47-04 PDT anonym_i_ous none, i am just looking at it in the browser tab 2020-02-13 00-49-20 PST anonym_i_ous also, i think that u may have misunderstood > _[The movment can be shifted to later development....](https://chat.inkscape.org/channel/team_ux?msg=HRWJHZKxxs6y… what i was wanting to say (or perhaps u were just clarifying, but i think that clause would have started with an agreement word.... dont take it personally, its just me convincing myself that i am understood 😅😅) () 2020-02-26 07-45-05 PST anonym_i_ous [ ](https://chat.inkscape.org/channel/general?msg=go0nl7aD6UNFNWT0R) please add me to the discussion (i.e. wherever u will be having this) too, as i also want to know about all these :slight_smile: ()
1 0
0 0
[Webmaster] Rocket.Chat, 2 Users, 18 Messages, 0 Files, 1232964 Minutes, in Direct Message Between: juan.duarte & doctormo
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2019-01-05 10-09-35 PST Martin Owens Not sure juan. Sorry I couldn't be more helpful. 2019-01-05 10-03-04 PST Martin Owens I'm not sure 2019-01-05 10-01-45 PST Martin Owens What is a social media card? 2019-01-05 10-03-41 PST Martin Owens I don't have any special media images, except for the ones on the website 2019-01-05 10-11-01 PST Martin Owens Thanks! 2018-12-24 14-17-28 PST Martin Owens The vector's team will be doing that. I'm just a programmer. Bes tto ask Ryan. 2019-01-05 10-02-08 PST Juan Duarte to put in the social media post 2019-01-05 10-08-12 PST Juan Duarte It was told to me that during the board meeting yesterday you all were talking about that. 2018-12-24 10-37-23 PST Juan Duarte Hi, Martin! 2019-01-05 10-02-03 PST Juan Duarte the image of the release 2018-12-24 10-38-02 PST Juan Duarte I see the issue about the press release to the InkScape 1.0 launch 2019-01-05 10-10-27 PST Juan Duarte Don't worry, i will read the transcript again. :slight_smile: 2018-12-24 10-39-16 PST Juan Duarte And i have a question about: Do you planned a launch campaign? 2019-01-05 08-51-33 PST Juan Duarte Moini told me that you have some additions to make. :slight_smile: 2019-01-05 08-47-27 PST Juan Duarte Martin! I'm here to talk about the social media card for 0.92.4 launch! 2019-01-05 10-02-15 PST Juan Duarte like the t'shirt one 2018-12-24 15-52-17 PST Juan Duarte Oh, right, thanks :D 2019-01-05 10-06-49 PST Juan Duarte Hmmm, so I think that I misunderstood Moini
1 0
0 0
[Webmaster] Rocket.Chat, 2 Users, 22 Messages, 0 Files, 593352 Minutes, in Direct Message Between: jhofinger & jabiertxof
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2020-03-12 16-04-30 PDT Jabier Arraiza great, thanks 2020-03-13 02-07-35 PDT Jabier Arraiza Please bug it no time to get into 2020-03-12 16-02-30 PDT Jabier Arraiza LPE is new no need now backward compatibility 2020-03-12 16-05-18 PDT Jabier Arraiza I think the bool LPE keyboard undo is fixed, waiting compiling 2020-03-12 16-03-15 PDT Jabier Arraiza in 1.1 we must be sure not crash for now we need a latest file to safe test 2020-03-12 16-01-35 PDT Jabier Arraiza seems old one 2020-03-13 01-37-09 PDT Jabier Arraiza Please open bugs not sure I could get into 2020-03-13 02-08-53 PDT Jabier Arraiza Sorry, I couldent spend time in inkscape currently 2020-03-12 16-01-51 PDT Jabier Arraiza I couldent crash it with a new file created 2020-03-12 16-01-22 PDT Jabier Arraiza please could you reproduce with a file created in current master? 2020-03-13 01-36-04 PDT jhofinger Clean up document does not delete unreferenced path effects, is that intended? 2020-03-13 01-52-19 PDT jhofinger Got at least 3 different crashes yet. :D 2020-03-13 01-29-13 PDT jhofinger * Draw 2 Objects * Set Inverse * Object to path * Object looks as if it was clipped with Set inverse off * Delete clippath attribute to get desired result 2020-03-13 02-01-41 PDT jhofinger Also there's one crash happening always when deleting a second PowerClip path effect with the XML editor. Had this occur thrice yet, even got a screen cap, but didn't find a reliable way to reproduce yet :/ 2020-03-12 15-50-18 PDT jhofinger Hi, if you have some time, could you look at https://gitlab.com/inkscape/inbox/-/issues/2029? Two crashes with Power Clip LPE. I don't understand this LPE well enough to triage that issue 2020-03-13 01-30-46 PDT jhofinger * Draw 2 Objects * Set Inverse * Object to path * Undo * LPE is still there, but changing the Settings (Inverse, Flatten...) has no effect anymore 2020-03-13 01-23-45 PDT jhofinger * Draw 2 Objects * Set Inverse * Release * Undo -> Object has clip path set, but not path effect. Also the ClipPath only has one child set 2020-03-12 16-04-10 PDT jhofinger Okay, I'll try to create one tomorrow. I've not tested that LPE a lot 2020-03-13 02-07-49 PDT jhofinger Will do ;) 2020-03-13 01-23-36 PDT jhofinger Just writing some issues here, you tell me what needs to be opened as issue in Inbox and what you already know 2020-03-12 16-02-10 PDT jhofinger Will try tomorrow, still should not crash, especially not on load 2020-03-13 01-54-29 PDT jhofinger * Create 2 objects * Set Inverse * Delete the two nodes of the ClipPath in the XML editor * Delete the Path effect * Undo -> Crash
1 0
0 0
[Webmaster] Rocket.Chat, 2 Users, 32 Messages, 0 Files, 540761 Minutes, in Direct Message Between: anonym_i_ous & Sonia
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2020-05-01 07-18-18 PDT anonym_i_ous yup, i can see 2020-04-18 04-20-43 PDT anonym_i_ous I have added the key presses to the recording [ ](https://chat.inkscape.org/channel/release-notes-polishing?msg=qcun8Rj4ev3wyNDuJ) () 2020-04-18 04-22-11 PDT anonym_i_ous If yes, then it reinforces that info from Number entry i shared earlier right!!? :hopeful : 2020-05-01 06-42-52 PDT anonym_i_ous some video or article or any other tip u can share about it?? 2020-05-01 07-16-46 PDT anonym_i_ous brilliant 2020-05-01 07-17-36 PDT anonym_i_ous lol 2020-04-18 04-22-00 PDT anonym_i_ous [ ](https://chat.inkscape.org/channel/release-notes-polishing?msg=iMiiX6j7E82WKWj44) so, is this concern regarding shortcut addressed now?? () 2020-04-18 04-19-25 PDT anonym_i_ous hey 2020-05-01 07-25-32 PDT anonym_i_ous yeah exactly the stop motion animations 2020-05-01 06-30-03 PDT anonym_i_ous aweesome 2020-05-01 07-19-52 PDT anonym_i_ous its awesome 2020-05-01 06-29-59 PDT anonym_i_ous https://inkscape.org/forums/competitions/make-a-screenshot-for-10/#c11871 2020-05-01 07-19-22 PDT anonym_i_ous that image kinda pulls some strings from various branches within me 2020-05-01 07-22-56 PDT anonym_i_ous and they were svg too? or were they raster based? 2020-05-01 06-29-41 PDT anonym_i_ous thats very cool texture u used there 2020-05-01 07-18-54 PDT anonym_i_ous dont know why it creates kinda sense of familiarity 2020-05-01 07-26-39 PDT anonym_i_ous ohkay. this certainly introduced me to new method of creating things. I would try to experiment with it. Thanks for sharing (: 2020-05-01 07-22-11 PDT anonym_i_ous ohh, and i was asking > i used random paper textures any particular source for them?? 2020-05-01 07-21-10 PDT anonym_i_ous for some story 2020-05-01 06-42-39 PDT anonym_i_ous papery texture..... i would love to learn how u did those! 2020-04-18 22-46-21 PDT anonym_i_ous [ ](https://chat.inkscape.org/channel/team_vectors?msg=dRee6zjviptGxKHhQ) continued here :thumbsup: () 2020-05-01 07-19-44 PDT anonym_i_ous like it reminds me instantly of soo many things 2020-05-01 07-20-55 PDT anonym_i_ous have u tried animations? that image and the technique used can make a very good video 2020-05-01 07-17-35 PDT anonym_i_ous the paper texture? 2020-05-01 07-25-01 PDT Sonia i wanted it to look a bit like those stop action animations...like a still maybe. but these are all raster textures from any free texture website 2020-04-18 09-25-32 PDT Sonia i opened up an artwork i made in 0.92.4 that has blending modes , so showcase some screenshots, but when i clicked on each object or layer, the blending mode did not change in the docker to indicate what blending mode it was. But the artwork showed up as normal. I didnt touch anything because I didnt want it messed up but just noticed this. 2020-05-01 07-15-55 PDT Sonia [ ](https://chat.inkscape.org/direct/anonym_i_ous?msg=BydHEx27AtH6Ny52g) it was a paper challenge in the Facebook group =D i used random paper textures and filled them into shapes i had drawn () 2020-05-01 07-27-45 PDT Sonia no problem! glad to help. the pattern fill is really cool! 2020-05-01 07-17-11 PDT Sonia thanks! it just about crashed my computer ! 2020-05-01 07-25-23 PDT Sonia i drew vector shapes to house the textures so they would look like they were cut out 2020-04-18 08-41-35 PDT Sonia [ ](https://chat.inkscape.org/direct/anonym_i_ous?msg=YTg9MynjYXmQGoKSb) not sure if everyone will feel the same way but , not everyone will have a wheel on their mouse.... some kids and grownups for that matter in India with cheap computers and mouse will just have left click and right click... but its cool with me! :thumbsup: () 2020-05-01 07-17-57 PDT Sonia the whole project! there were a lot of objects
1 0
0 0
[Webmaster] Rocket.Chat, 2 Users, 62 Messages, 3 Files, 469893 Minutes, in Direct Message Between: NickMaleki & doctormo
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2020-06-06 09-51-09 PDT Martin Owens Oh they are official ;-) 2020-06-08 13-27-33 PDT Martin Owens Give me the link :metal: the one you want it linked to 2020-06-06 09-38-19 PDT Martin Owens That's a Free Software thing, where we use social media outposts (like facebook) to move users to us. But we don't use Free Software projects as an outlet to encourage people to join Facebook. 2020-06-06 09-57-07 PDT Martin Owens Yeah __that__, I'm ginning up enough confidence to purge that. I'd be good to have a new page to put the links. 2020-06-06 10-06-38 PDT Martin Owens (so much to do!) 2020-06-06 10-12-02 PDT Martin Owens :-D 2020-06-06 10-13-19 PDT Martin Owens The website needs to be upgraded from django 1.8 to 2.2... and that includes upgrading the django-cms versions. I tried to make a version withotu django-cms, but it floundered. 2020-06-06 10-11-59 PDT Martin Owens Now that is something that will win your all the brownie points. 2020-06-06 10-12-08 PDT Martin Owens Do you know django much at all? 2020-06-06 10-06-18 PDT Martin Owens Indeed we should! 2020-06-06 09-58-06 PDT Martin Owens Make an icon like one of those.(i.e. crap and old fashioned :-P) 2020-06-06 10-31-36 PDT Martin Owens Good you have Ubuntu, you'll need it (and python3 if you're using 18.04) for the website stuff. 2020-06-06 09-51-30 PDT Martin Owens It helps a lot 2020-06-06 10-18-02 PDT Martin Owens So cloning that git repository and then trying to follow the initialisation readme, is pretty much the bug. 2020-06-06 09-31-09 PDT Martin Owens Yes. 2020-06-06 09-37-35 PDT Martin Owens It's just a matter of the outpost policy. 2020-06-06 10-20-18 PDT Martin Owens Oh what operating system do you have? 2020-06-06 09-54-36 PDT Martin Owens Plus users should always be encouraged to become contributors. i.e. help with docs, help with vectors, that sort of thing. And that does mean helping users to move to rocket chat (or the mailing lists/gitlab etc) 2020-06-06 09-39-26 PDT Martin Owens So the question is firstly a) is discord a source of users? b) is there an open source alternative (if rocket chat that?) 2020-06-06 09-50-46 PDT Martin Owens Network effects are typically the problem being dealt with. 2020-06-06 09-54-48 PDT Martin Owens (talking too much :-D) 2020-06-06 09-53-22 PDT Martin Owens (if this makes sense) 2020-06-06 09-51-28 PDT Martin Owens At least, we'd like it if people who are managing those platforms were on board with the project. 2020-06-06 09-48-37 PDT Martin Owens Where would you put a link to Discord? Should we have a seperate page for our outposts? 2020-06-06 09-32-27 PDT Martin Owens Discord is open source right? 2020-06-07 01-36-38 PDT Martin Owens Those are very nice, do you have the source svg files? (and a license?) 2020-06-06 10-14-22 PDT Martin Owens This is the recent issue that would be small enough and important enough if you wanted to help on the python side: https://gitlab.com/inkscape/inkscape-web/-/issues/493 2020-06-06 10-13-29 PDT Martin Owens That's on my personal todo though. 2020-06-06 09-57-51 PDT Martin Owens If you want I can add Discord there until I've got the gumshion to move it. 2020-06-06 09-53-17 PDT Martin Owens But say, you were going to run an event. You could choose to run it on Facebook/Discord/Youtube whatever, and exclude members of the community in other parts of Inkscape. Or you could run it on inkscape.org and link from Facebook & Discord & Youtube to (the forums, the galleries, the whatever the right tool is). That's what we mean by getting users to interact. They don't have to leave Discord, they just have to dip their toes into inkscape.org to post to competitions or things like that. 2020-06-06 09-58-13 PDT Martin Owens And pass me the link. 2020-06-06 10-30-41 PDT Martin Owens [RocketChat, GitLab, MailingList, Forums] <- contributor channels (places where community builds things), outposts -> [Twitter, Facebook, Youtube, Intagram, Discord, deviantArt], candidate for being a "is-group" channel but isn't -> [Matodon, PeerTube, ...] trying to think if there are any more. There probably are. 2020-06-06 10-06-27 PDT Martin Owens We also need to set up a peertube account. 2020-06-06 10-19-09 PDT Martin Owens I'm available for help, notes, hand-holding, etc. 2020-06-06 10-22-46 PDT Nick Windows 10 because I use altium, solidworks, and the adobe suite often 2020-06-06 10-17-04 PDT Nick I would have to download everything and try to repro to help out, if I do end up having the time, How should I get started? 2020-06-08 11-51-22 PDT Nick Anything else you need me to do? 2020-06-06 09-51-17 PDT Nick Haha cool 2020-06-06 10-11-35 PDT Nick Also, I am a computer scientist so I might be able to help out with Python, C, JS CSS, HTML, etc 2020-06-06 09-32-52 PDT Nick If that interferes with Inkscape's mission I totally understand 2020-06-06 10-03-37 PDT Nick Sure, I can do that If you end up building a separate page we should include all the other missed platforms like the ones mentioned at the bottom of this page: https://inkscape.org/news/2020/05/04/introducing-inkscape-10/ And obviously the youtube channel and the rocket chat aren't mentioned on the home page 2020-06-06 09-56-33 PDT Nick Clipboard - June 6, 2020 12:56 PM (https://chat.inkscape.org/file-upload/2Cgz4T5DEaoFbZe47/Clipboard%20-%20Jun…) 2020-06-06 10-23-39 PDT Nick Platforms: Twitter Youtube Instagram Rocket Chat Discord DeviantArt Mastodon 2020-06-06 10-12-21 PDT Nick I used it once for a project a couple years ago 2020-06-06 10-18-47 PDT Nick Alright, I might give it a shot tonight 2020-06-06 10-23-31 PDT Nick I keep ping ponging between Ubuntu and Windows for years lol 2020-06-06 09-49-27 PDT Nick That makes total sense to me. a) Yes b) Rocket chat is actually the best alternative! I am not sure how familiar you are with Discord but the reason that users would not be likely to leave the Discord is because it is a central location for numerous platforms 2020-06-06 09-50-56 PDT Nick Yeah, that sounds like a good idea, a place for social media platforms that aren't directly endorsed by Inkscape 2020-06-06 11-09-46 PDT Nick Let me know if those work or if you'd prefer something more old-fashioned 2020-06-06 11-09-04 PDT Nick Social Media Icons.zip (https://chat.inkscape.org/file-upload/WocQNwwEG6QCcdSWP/Social%20Media%20Ic…) 2020-06-06 09-56-29 PDT Nick That totally makes sense, I will put a larger effort towards linking back to inkscape.org and the forums inside my platform to inspire people to contribute. So, maybe these platforms that aren't listed yet should be listed here: 2020-06-07 07-46-53 PDT Nick The source is in the zip. If you mean the logo sources I got them all from their press kits posted on their websites. 2020-06-06 09-31-31 PDT Nick Great, let me know what you need from me and I will get it to you asap 2020-06-06 09-30-13 PDT Nick Hi, would it be possible to list the Discord somewhere on the website? 2020-06-06 09-57-40 PDT Nick That totally makes sense 2020-06-06 10-22-24 PDT Nick Windows 10 with Ubuntu VM 2020-06-08 13-39-49 PDT Nick RocketChat: https://chat.inkscape.org/home Website: https://inkscape.org/ Forums: https://inkscape.org/forums/ Mailing Lists: https://lists.inkscape.org/postorius/lists/ GitLab: https://gitlab.com/inkscape Mastodon: https://mastodon.art/@inkscape YouTube: https://www.youtube.com/channel/UCKKj0FJtVE8sGn4afabKvTA Twitter: https://twitter.com/inkscape Facebook: https://www.facebook.com/Inkscape.org Instagram: https://www.instagram.com/inkscapeofficial/ DeviantArt: https://www.deviantart.com/inkscapers Reddit: https://www.reddit.com/r/Inkscape/ Discord: https://discord.gg/n9eJekh 2020-06-08 13-44-06 PDT Nick Social Media Icons.zip (https://chat.inkscape.org/file-upload/LQabxZobYixroeGEe/Social%20Media%20Ic…) 2020-06-08 13-44-12 PDT Nick Added reddit^ 2020-06-06 09-32-35 PDT Nick Sadly not, it is proprietary freeware. The server currently has ~300 members 2020-06-06 10-23-45 PDT Nick Anything I'm missing from this list? 2020-06-06 10-10-26 PDT Nick Agreed, If you'd like I can do a quick redesign of all the logo buttons so they look similar but still hold true to the old-style design
1 0
0 0
[Webmaster] Rocket.Chat, 1 Users, 3 Messages, 0 Files, 400200 Minutes, in Direct Message Between: recena & rocket.cat
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2020-12-11 18-00-04 PST Rocket.Cat *Rocket.Chat Alert:* *Warning* Please note that push to official Rocket.Chat mobile apps is unavailable for non-registered servers. See how to register your server [here], and check our forum for more details. If don't want to receive new notifications and are running version 3.5 or higher, you can turn it off in Administration > General > Updates > Enable the Update Checker. https://docs.rocket.chat/guides/administrator-guides/connectivity-services#… 2021-01-04 02-26-15 PST Rocket.Cat *Action required* The mobile notifications were disabled to all users, go to "Admin > Push" to enable the Push Gateway again 2020-07-24 19-00-24 PDT Rocket.Cat *Rocket.Chat Alert:* *Notice* Be sure to register your server before July 31, 2020 to keep your mobile notifications flowing. https://forums.rocket.chat/t/enforcing-registration-requirement-to-utilize-…
1 0
0 0
[Webmaster] Rocket.Chat, 2 Users, 45 Messages, 0 Files, 976966 Minutes, in Direct Message Between: pedro.silva & michele
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2019-06-20 06-16-35 PDT Pedro Pinto da Silva https://www.portucalio.com/blog/ 2019-11-28 08-44-55 PST Pedro Pinto da Silva I want to add it at the end 2019-06-22 12-49-36 PDT Pedro Pinto da Silva just did ;) 2019-11-28 08-44-44 PST Pedro Pinto da Silva and Michèle Thibeau for tweaking my grammar ;) 2019-06-22 12-43-01 PDT Pedro Pinto da Silva so I need to invite him for a Pilsner (Czech proper beer) 2019-06-20 06-24-09 PDT Pedro Pinto da Silva oh and also tried to make impact with the kids by visiting their school https://portucalio.com/blog/post/escolinha-portuguesa/ 2019-06-22 08-22-47 PDT Pedro Pinto da Silva [ ](https://chat.inkscape.org/direct/michele?msg=AAGH9xB5ZSjqrzWFG) and which want do you want? I can send you bigger size. () 2019-06-20 06-25-28 PDT Pedro Pinto da Silva oh and if you need any translation for PT_PT or PT_BR just ask :) 2019-06-20 06-15-29 PDT Pedro Pinto da Silva I just saw the last podcast 2019-06-22 12-42-17 PDT Pedro Pinto da Silva Wow such a small world :) 2019-06-22 08-27-56 PDT Pedro Pinto da Silva Yes, I was actually already involved with community both through the Ubuntu Portugal community (by being invited to the podcast and share how I work 100% with FLOSS tools); With Inkscape Portuguese groups, by trying to help newcomers our designers that come from Adobe nightmare-ecosystem and I even did some workshop in the city that I live (Prague, Czech Republic) . I have some information regarding these things in my personal website https://pedropintosilva.com/talks-and-lectures/ 2019-06-20 06-18-02 PDT Pedro Pinto da Silva A Calendar completely done with Inkscape and Scribus (more info on how at category https://portucalio.com/blog/tags/backstage/) 2019-11-28 08-38-56 PST Pedro Pinto da Silva thanks!! 2019-06-20 06-22-53 PDT Pedro Pinto da Silva and now my goals is to make everything available under CC BY-SA 4.0 on Github as explained here https://portucalio.com/blog/post/april-freedom/ 2019-06-22 08-28-40 PDT Pedro Pinto da Silva because until then I just new about Telegram groups 2019-06-20 10-51-43 PDT Pedro Pinto da Silva I didn't take much 2019-06-20 10-53-06 PDT Pedro Pinto da Silva but if you need any picture from here https://portucalio.com/blog/post/may-coffee-time/ feel free to steal it or if you want bigger size or the editable (gimp, darktable) feel free to ping me here 2019-11-28 08-44-41 PST Pedro Pinto da Silva is this ok ? 2019-06-22 12-47-43 PDT Pedro Pinto da Silva no no 2019-06-20 10-51-25 PDT Pedro Pinto da Silva Thank you, glad you like it! 2019-06-20 06-16-21 PDT Pedro Pinto da Silva and also would like to leave here information about a love project of mine: 2019-06-22 08-22-04 PDT Pedro Pinto da Silva [ ](https://chat.inkscape.org/direct/michele?msg=gjqhwpqRjfca5GwFD) yes you have permission to do whatever you want () 2019-06-22 08-27-56 PDT Pedro Pinto da Silva [ ](https://chat.inkscape.org/direct/michele?msg=XNoG6XkDD3SpQ4Yyb) perfect! () 2019-06-20 06-15-20 PDT Pedro Pinto da Silva Hello Michele :) 2019-06-22 12-46-56 PDT Pedro Pinto da Silva yup 2019-06-20 10-51-39 PDT Pedro Pinto da Silva and if you need any picture from there let me know 2019-06-22 08-28-28 PDT Pedro Pinto da Silva but I discover that this chat existed because of LGM and Jabier 2019-06-20 06-15-55 PDT Pedro Pinto da Silva and I would like to start to say, thank you for your contributions 2019-06-22 12-47-45 PDT Pedro Pinto da Silva [ ](https://chat.inkscape.org/direct/michele?msg=SxAthxzr6yNAfrAPC) this it's me () 2019-06-20 06-20-59 PDT Pedro Pinto da Silva at the 1st stage I try to sell it without saying no one about the libre tools involved (just so people got involved and actually see it and use it) then at 2nd stage I started to document how we (my girlfriend and I) worked and promoting the Inkscape 2019-06-22 08-29-22 PDT Pedro Pinto da Silva :) 2019-06-20 06-21-52 PDT Pedro Pinto da Silva meanwhile I tried to do events like the one in February https://portucalio.com/blog/post/february-i-love-porto/ 2019-06-22 08-18-02 PDT Michèle Thibeau Above is the original tweet - this is my revised version: "@inkscape workshop was really cool. Learn some tricks with alpha version; exchanged techniques and shortcuts and most of all we could express and influence the upcoming version! The developers really listened and were eager to share and discuss. And we played with amusing laser cuts toys by Jürgen Weigert." Can we say that you met team members at LGM and decided to get involved with the project? 2019-06-22 12-47-45 PDT Michèle Thibeau I have two twitter accounts - one for my design stuff here: https://twitter.com/zigzagmlt?lang=en 2019-06-20 09-47-38 PDT Michèle Thibeau Hi Pedro! Thanks for checking out the community and wanting to get involved. Your site looks cool. I love the images and the creative expressions - light is such an impressive thing when it comes to seeing our world. Light and shadow and the way they play are fascinating. I also do digital art, and so I love creating too. You can send your notes here, if you wish. I'm currently on my lunch break at the office, so you normally can find me hanging out here more on the weekends or early morning / later evening EDT when I am home. Looking forward to collaborating with you! 2019-06-22 12-47-17 PDT Michèle Thibeau Is this you? https://twitter.com/silvapedro?lang=en 2019-06-22 08-16-02 PDT Michèle Thibeau Thanks, Pedro! I might just use one or two, depending on how many we use. The others had pics from their phones, so dark and small. Can I quote you, using your tweet? I'd like your permission to correct it a bit, if that's okay. Can you confirm that this is what you mean? Thanks! 2019-06-22 12-48-55 PDT Michèle Thibeau If you follow me back there you'll see my design work! And I can message you and Kenn. 2019-11-28 04-49-30 PST Michèle Thibeau I think those are the main points that could help readers quickly. If you want me to do any more, just let me know. Great job! Looking forward to reading your next article! 2019-06-22 08-16-24 PDT Michèle Thibeau @inkscape workshop was really cool. Learn some tricks wrt alpha version; exchange techniques and shortcuts and most of all we could express and influence the upcoming version! The developers really listened and were eager to share and discuss. And play with amusing laser cuts toys by Jürgen Weigert ❤️. #scribus devs were there as well and so I couldn't resist but show my appreciation by giving #portucalio to every developer (present) from these lovely tools ❤️🤩 THANK YOU! - original tweet @inkscape workshop was really cool. Learn some tricks wrt alpha version; exchange techniques and shortcuts and most of all we could express and influence the upcoming version! The developers really listened and were eager to share and discuss. And play with amusing laser cuts toys by Jürgen Weigert ❤️. #scribus devs were there as well and so I couldn't resist but show my appreciation by giving #portucalio to every developer (present) from these lovely tools ❤️🤩 THANK YOU! 2019-06-22 12-48-12 PDT Michèle Thibeau Right! I am looking through my zigzagmlt one... I'll find you! 2019-06-22 12-51-03 PDT Michèle Thibeau Cool! Message sent! 2019-06-22 12-45-50 PDT Michèle Thibeau His name is Kenn. Let me see if I can hook you up via Twitter... I believe you began following me earlier? 2019-11-28 04-48-47 PST Michèle Thibeau Hi Pedro! As promised, here are the couple of words I'd suggest tweaking: 1. (first paragraph) "I have been using Inkscape 1.0 daily and..." 2. (above Donate to Inkscape visual) "Boom! Now be sure to:" 3. (paragraph below Support Inkscape visual) "I also bought myself the print version..." 4. (In File a bug bullet point) "I can attest that by doing this you will end up being an active part of the development process and, likely, you will be happier with the results. You can do so via inkscape/report or you can consult/read some old bugs in Launchpad 5. (Next bullet point) "Not enough gimme more..." 2019-06-22 08-41-55 PDT Michèle Thibeau Cool! I have a good friend who lives in Prague some of the time. He's Canadian, like I am, and also lives on the West Coast... but we're both from the East Coast. I thought you were not living in Portugal. Prague seems like a beautiful city.
1 0
0 0
[Webmaster] Rocket.Chat, 2 Users, 16 Messages, 0 Files, 1131999 Minutes, in Direct Message Between: ipatch & RdH
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2019-03-04 13-48-39 PST René de Hesselle I'm curious about how many pitfalls I'll encounter... I haven't done this for an app that big yet. In the next few days I'll know more 2019-03-04 14-13-08 PST René de Hesselle The guys from IRC said that you're working on this as well, but couldn't tell me how far along you are. Can you tell me something about the progress you've made? - I'm tracking my progress publicly on [GitHub](https://github.com/dehesselle/mibap) (it's not pretty yet, everything still much work in progress). Right now I am building the aforementioned script. 2019-03-04 14-28-27 PST René de Hesselle lol thats awesome :smile: 2019-03-04 14-13-50 PST René de Hesselle I'd like to avoid putting time into something and then see it wasted because someone else has already done it. 2019-03-04 13-55-58 PST René de Hesselle Yes. 2019-03-04 14-33-39 PST René de Hesselle So the world of people building/packaging on macOS is smaller than I thought :stuck_out_tongue_winking_eye: 2019-03-05 02-39-15 PST René de Hesselle I'll be there. 2019-03-04 13-39-15 PST René de Hesselle Hi :wave:, I'm writing it myself. The first iteration will be a shellscript that creates the app bundle directory structure, copies all the required libs into it and then rewrites the absolute paths of all libraries to rpath. 2019-03-04 18-11-03 PST capin hey, we're _and I use that term collectively_ gunna be discussing mac packaging in the main #team_devel_mac channel ~ 11AM CST _that's Central Standard Time US_ if you want to join 2019-03-04 13-45-11 PST capin nice 2019-03-04 13-59-03 PST capin nice. 2019-03-05 07-15-34 PST capin 👍 2019-03-04 13-54-05 PST capin have you ever made an **.app** bundle before? 2019-03-04 14-27-08 PST capin lulz, i'm github.com/ipatch 2019-03-04 14-39-36 PST capin yup 2019-03-04 13-22-19 PST capin hi 👋, what process are you using to bundle an app for macOS?
1 0
0 0
[Webmaster] Rocket.Chat, 2 Users, 31 Messages, 0 Files, 1146590 Minutes, in Direct Message Between: Tav & jabiertxof
by no-reply@chat.inkscape.org 30 Apr '21

30 Apr '21
2019-02-25 22-57-08 PST Jabier Arraiza I put a comment to tell the real places, Maine I add unnecessary visuals to code that take out focus of the problem, I sent you soon the 2 lines magic 2019-02-22 15-41-43 PST Jabier Arraiza Fixed!!!! you have a MR on your Inbox! 2019-02-26 15-09-50 PST Jabier Arraiza maybe we dont need duple it 2019-02-26 15-15-46 PST Jabier Arraiza currently we can relay on move 2019-02-22 10-14-28 PST Jabier Arraiza :) 2019-02-26 15-10-51 PST Jabier Arraiza I think default is move and with Ctrl or Shift is dupled 2019-02-25 23-26-44 PST Jabier Arraiza both in same place https://gitlab.com/Tavmjong/gtk_sandbox/merge_requests/4/diffs#ab9421dc8125… 2019-02-22 10-14-48 PST Jabier Arraiza I just reply on common to the question 2019-02-26 15-09-33 PST Jabier Arraiza or move sorry 2019-02-23 03-47-26 PST Jabier Arraiza Hi an unrelated cueston have you can give a this skeleton branch to give me feedbak? https://gitlab.com/inkscape/inkscape/merge_requests/549. Thanks in advance. 2019-02-26 15-06-07 PST Jabier Arraiza I dont think about i see this surfing in internet and try if it works. Great to know there is a better ant tiny option 2019-02-27 10-01-59 PST Jabier Arraiza somethin sililar to old Painter UI http://splinet.narod.ru/tutorials/metapaint/figure01.jpeg 2019-02-27 13-19-25 PST Jabier Arraiza Contract 2019-02-26 15-09-25 PST Jabier Arraiza or copy 2019-02-27 09-52-05 PST Jabier Arraiza I can improve it a bit more? I want to add expanders to contact notebooks 2019-02-26 15-15-12 PST Jabier Arraiza Is the way they handle as far I read but maybe it not works on notebooks 2019-02-27 09-51-07 PST Jabier Arraiza great! 2019-02-25 03-25-10 PST Jabier Arraiza Hi Tav just if not notice it https://gitlab.com/Tavmjong/gtk_sandbox/merge_requests/4 2019-02-26 13-18-08 PST Jabier Arraiza context->drag_finish() is recomended for any drag&drop but works without it the two necesary things are drag_dest_set changes and add vexpand or hexpand to the droping zone 2019-02-27 10-03-38 PST Jabier Arraiza here you see better http://img15.nnm.me/9/f/a/2/c/83edd4c45debd738477de4623ab.jpg 2019-02-26 15-09-13 PST Jabier Arraiza you can add two and use with modifiers to duple tab 2019-02-22 10-12-25 PST Tavmjong Bah I'll be out of touch for a day or so. I leave for the US early tomorrow morning. I'm glad to see you working on the drag-and-drop stuff. 2019-02-26 15-09-02 PST Tavmjong Bah I don't know if tabs are considered to be "data". 2019-02-25 17-47-34 PST Tavmjong Bah It will take some time me to study what you did. Thanks for doing it! 2019-02-27 09-50-41 PST Tavmjong Bah I'll demo your version at the hackfest and get feedback on the interface. 2019-02-26 15-08-38 PST Tavmjong Bah I think only one value of Gdk::ACTION_COPY and Gdk::ACTION_MOVE is valid (looking at some documentation). I'm not sure it applies to dragging tabs. 2019-02-27 09-50-21 PST Tavmjong Bah I narrowed the problem with the X11 backend to Gdk::ACTION_COPY. Changing it to Gdk::ACTION_MOVE makes it work on X11. Thanks for your help! 2019-02-26 13-10-59 PST Tavmjong Bah I've tested your code and it seems to work well. I'm still trying to understand it though. (And I'm trying to understand my code... I can't figure out what in my code causes the drop-zone to be outlined in green under Wayland. If I understand correctly, we need to have the "context->drag_finish()" lines and the drag_dest_set() changes. Then, the rest of the code is to highlight the drop zones. I tried using CSS for the drop-zones but it doesn't seem to work (#InkMultipanedDropBox:hover). 2019-02-26 15-04-03 PST Tavmjong Bah Why have you changed Gtk::DEST_DEFAULT_ALL to Gtk::DEST_DEFAULT_MOTION | Gtk::DEST_DEFAULT_DROP? This turns off the highlighting when the cursor is over the drop zone. 2019-02-27 10-00-17 PST Tavmjong Bah I think it is fine now... but we should get feedback from the UX team maybe. I'm not sure what you mean by "contact notebooks". 2019-02-26 15-04-30 PST Tavmjong Bah (DEST_DEFAULT_ALL is the default value)
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 6265
  • 6266
  • 6267
  • 6268
  • 6269
  • 6270
  • 6271
  • ...
  • 6311
  • Older →

HyperKitty Powered by HyperKitty version 1.3.8.