Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Mono compilation error branch #299

Open
wants to merge 407 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
407 commits
Select commit Hold shift + click to select a range
74d272a
[Generator] Don't try to reconstruct the value on a struct parameter …
Therzok Jul 20, 2016
9271caf
Merge pull request #148 from mono/gen-change
Jul 21, 2016
761154f
Generator: ByRef generator now passes the value by ref
Therzok Jul 21, 2016
89e266f
Merge pull request #149 from mono/by-ref-optimize
Therzok Jul 21, 2016
64cea27
Convert Timeout/Idle.Handler method from instance to static, so it's …
Jul 28, 2016
3c07664
Optimize LookupGType to do fewer reflection calls.
Therzok Aug 3, 2016
e29bda8
Modify the Objects lock inside Object.GetObject as it was being held …
Therzok Aug 3, 2016
f51cf7e
[GLib] Refactor Object code to use generic collections.
Therzok Aug 3, 2016
c1f7349
[GLib] Refactor ValueArray to use generic collections
Therzok Aug 3, 2016
48d9fee
Merge pull request #150 from DavidKarlas/avoidJITing
DavidKarlas Aug 4, 2016
550a722
Merge pull request #151 from mono/perf-batch
DavidKarlas Aug 4, 2016
78bacca
Reduce number of string allocations on signal callbacks.
Therzok Aug 4, 2016
ee026b2
[Perf] Avoid creating ArrayList then doing ToArray on them.
Therzok Aug 20, 2016
ff15fc8
[Perf] Only allocate the GType once for generated enums.
Therzok Aug 20, 2016
dd4c742
[Perf] Only allocate GType once for generated classes.
Therzok Aug 20, 2016
e459c09
[Misc] Some cleanups in non-generated code.
Therzok Aug 20, 2016
67462cf
[Perf] Reduce the number of native string allocations on getting a GL…
Therzok Aug 20, 2016
f96ea48
[Perf] Optimize number of allocations and iterations on glib lists.
Therzok Aug 21, 2016
ebd2941
[Perf] Use generic variants for allocating list returns as array.
Therzok Aug 21, 2016
a941864
[Perf] Optimize GType querying for non-enums
Therzok Aug 21, 2016
15aad45
[Perf] Optimize GType registration for enum values.
Therzok Aug 21, 2016
6db2e91
[Perf] Reorganize code such as a quick IsEnum check is done
Therzok Aug 21, 2016
f9745fb
[Perf] Generate GType for structs without a specific gtype.
Therzok Aug 21, 2016
43f8dbb
[GType] Only allow this attribute on structs/enums for now.
Therzok Aug 21, 2016
4be9438
[Perf] Only query gtype cache once
Therzok Aug 21, 2016
db811c7
[Perf] Also generate GType attribute for boxed structs.
Therzok Aug 21, 2016
3c6cabf
[Misc] Mark the ListPtrToArray (Array) overload obsolete.
Therzok Aug 22, 2016
fbaead2
[Misc] Mark the PtrArrayToArray (Array) overload obsolete.
Therzok Aug 22, 2016
42de6b9
[Value] Simplify IntPtr check.
Therzok Aug 25, 2016
b402247
[Perf] Remove double registration of IntPtr in gtype table.
Therzok Aug 25, 2016
26c4917
Merge pull request #153 from mono/more-opt
Therzok Aug 25, 2016
9b090e9
[Gen] Don't generate extra array allocations for signals.
Therzok Aug 29, 2016
e115d59
Merge pull request #154 from mono/signal-alloc
Therzok Aug 30, 2016
a33e1b2
[Gen] Generate simplified attr name for structs.
Therzok Aug 30, 2016
28fc95b
[Gen] Add support for generating GTypes for classes
Therzok Aug 30, 2016
5c52ac7
[Gen] Add GType for opaque gen
Therzok Aug 30, 2016
a0d2f10
[GType] Use attribute before searching for GType property.
Therzok Aug 30, 2016
6cbbbd3
Merge pull request #155 from mono/full-gtype
Therzok Aug 30, 2016
8de5eff
Revert "[GType] Use attribute before searching for GType property."
Therzok Aug 30, 2016
4e0b6ad
[Gdk] Add gtype for gdk window.
Therzok Aug 30, 2016
71f0041
Revert "Revert "[GType] Use attribute before searching for GType prop…
Therzok Aug 30, 2016
cce64e1
[GLib] Optimize string marshalling.
Therzok Aug 31, 2016
f71f8a1
[Gen] Optimize number of allocations for subclassed constructors.
Therzok Aug 31, 2016
6b8dfbe
[Custom] Modify custom code to match generated code.
Therzok Aug 31, 2016
213f69e
Merge pull request #156 from mono/optimize-strings-2-12
Therzok Aug 31, 2016
d58a17b
[GLib] Avoid creating an enumerator on each free.
Therzok Aug 31, 2016
69d5b00
[Misc] Modify custom code to also use using pattern virtual methods.
Therzok Sep 11, 2016
ddb099c
[GObject] Always dispose of the GLib.Value that's passed from constru…
Therzok Sep 11, 2016
a1a5698
[Gen] Generate properties with using statements.
Therzok Sep 11, 2016
ed84dcd
[Misc] Don't double dispose values in custom constructors.
Therzok Sep 11, 2016
47a1b0f
[GLib] SList now properly passes owned/elements_owned params.
Therzok Sep 11, 2016
d889715
[Misc] Fix some bad bindings which caused leaks by using wrong free f…
Therzok Sep 12, 2016
c9308e5
[Gtk] Fx RecentData/FilterInfo to have proper marshalled string lists.
Therzok Sep 12, 2016
ec69169
[Gen] Fix leaky implementation of array parameters.
Therzok Sep 13, 2016
80c7e73
[GLib] Optimize freeing a native list from managed
Therzok Sep 11, 2016
b230853
Merge pull request #157 from mono/optimize-list-free
Therzok Sep 13, 2016
f10662e
[List] Don't cache the Count value.
Therzok Sep 13, 2016
d31421d
Merge pull request #159 from mono/optimize-list-free
Therzok Sep 13, 2016
b56a4f7
Merge pull request #158 from mono/api-fixups
Therzok Sep 13, 2016
5be368d
[Misc] Go through all custom code and plug leaks.
Therzok Sep 13, 2016
2c5f5e5
Merge pull request #161 from mono/plug-leaks
Therzok Sep 13, 2016
f1a9ea4
[Gen] Generate owned variant for opaques if possible.
Therzok Sep 14, 2016
b4fe9a1
[Misc] Fix 3 more items being leaked.
Therzok Sep 14, 2016
8abb3de
[Misc] Fix leak in Pango.Global.ParseEnum. The possible_values is an …
Therzok Sep 14, 2016
b498fa5
Merge pull request #162 from mono/opaque-free
Therzok Sep 14, 2016
2295268
[Gdk] Fix GdkChar measurement methods to use byte.
Therzok Sep 15, 2016
f66a1c8
[Gtk] Manually generate gtk_parse_args as the generator is not smart …
Therzok Sep 15, 2016
8abc2ba
[Gtk] Fix gtk_label_get string to be out param.
Therzok Sep 15, 2016
150162e
[Gen] Always free strdup strings as they're not held by native
Therzok Sep 14, 2016
4e6206d
[Build] Add a patch to check whether we have .NET 4.6 at build time.
Therzok Sep 15, 2016
0ecd173
Merge pull request #163 from mono/strings-free
Therzok Sep 15, 2016
97ebfe8
Merge pull request #164 from mono/configure-patch
Therzok Sep 15, 2016
145d8f5
[Build] Bump gtk# version.
Therzok Sep 15, 2016
1f3121d
[Dist] Remove makefile.win32 as csproj are now available.
Therzok Sep 15, 2016
ef5993e
[Build] Add back runtime checks..
Therzok Sep 15, 2016
8d3c46e
Bump gtk# version.
Therzok Sep 15, 2016
1066cbd
[Gtk] Fix TreeModel iteration to not make a reference cycle.
Therzok Sep 15, 2016
c74eba5
[Gdk] Only create 1 GType for Event.
Therzok Sep 16, 2016
6700f14
[Gtk] Don't leak gdkevents from gtk_current_event
Therzok Sep 16, 2016
10d9ba1
[Gtk,Gdk,Pango] Review all transfer annotations.
Therzok Sep 16, 2016
7a9e298
[Atk] Review transfer annotations.
Therzok Sep 16, 2016
923585a
[TreeView] Unref list store after setting it. This conforms to C stan…
Therzok Sep 16, 2016
96b4331
Merge pull request #167 from mono/api-review
Therzok Sep 16, 2016
d4aaf14
Fixup treeview object constructor
Therzok Sep 16, 2016
142edc3
[Gtk] Fixup d4aaf1462b241a2e74fe9876aa5cc1381479df58
Therzok Sep 16, 2016
b5ea06f
[GLib] Force removal of timeout from proxy list.
Therzok Sep 17, 2016
69e9cfd
[GLib] Remove non-sensical unref on grabbing a cached value.
Therzok Sep 17, 2016
d2aa421
[GLib] Signal now uses cached handler for removal of handler subscrip…
Therzok Sep 17, 2016
930f1d1
[GLib] Free up some memory in SignalClosure.
Therzok Sep 17, 2016
61ed777
[GLib] Optimize number of ClosureInvokedHandlers created
Therzok Sep 18, 2016
e66eead
[GLib] Use Dictionary instead of Hashtable for gtype management.
Therzok Sep 18, 2016
c2a3be9
[Pango] Fix memory corruption caused by non-owned attributes being de…
Therzok Sep 18, 2016
4a03e24
[Gdk] Fix GdkGC.GetValues binding.
Therzok Sep 18, 2016
c3ba724
[Pango] Mark attribute copies as owned.
Therzok Sep 18, 2016
49056c0
[GLib] Add static Log.Write method and obsolete old instance WriteLog.
Therzok Sep 19, 2016
ac98d1b
[Gtk] Use the same event handler for model events.
Therzok Sep 19, 2016
9d2fd73
Bump gtk# version.
Therzok Sep 19, 2016
0b26788
[Gdk+Gtk] Fix needs_ref attribute in metadata.
Therzok Sep 20, 2016
f039b74
[GLib] Fix GObject finalizers to finally work.
Therzok Sep 20, 2016
7526e7d
[Gtk] Add dllmap to libgdk.
Therzok Sep 20, 2016
037d806
Merge pull request #168 from mono/fix-finalizers
Therzok Sep 20, 2016
29673dc
[GLib] Fix some pixbuf ownership issues.
Therzok Sep 20, 2016
9dfddcd
[GLib] Fix double GCHandle free which was causing sporadic errors.
Therzok Sep 20, 2016
188c63a
[GLib] Fix GLib.Value leak for passing structs marked with [GTypeStruct]
Therzok Sep 21, 2016
72637de
[GLib] Fix crasher on free when using SList(owned=true, managed=true)
Therzok Sep 22, 2016
6454e78
Merge pull request #169 from mono/value-fixes
alanmcgovern Sep 22, 2016
4ac7150
[Gtk] Make TreeView go the other way around.
Therzok Sep 26, 2016
6dc2ea1
[GLib] Use a custom eq comparer for IntPtr dictionary keys.
Therzok Sep 29, 2016
e02bbdd
Merge pull request #170 from mono/intptr-eq-comp
alanmcgovern Sep 29, 2016
90b5554
[Pango] Proper ownership of managed constructed attributes.
Therzok Sep 29, 2016
f8deec6
Merge pull request #172 from mono/opaque-dispose
Therzok Sep 29, 2016
ebee9db
Bump gtk# version.
Therzok Oct 4, 2016
ff2bd1c
[Gtk,Pango] Unbreak the API.
Therzok Oct 11, 2016
f092864
Merge pull request #173 from mono/fix-api
Therzok Oct 11, 2016
879d900
Fix file name case to fix linux build.
Therzok Oct 12, 2016
7cdfe59
[Gdk,Cairo,Glib] Implement IEquatable<T> on structs in case someone u…
Therzok Oct 12, 2016
037f015
[Gen] Add support for generating IEquatable<T> in struct definition
Therzok Oct 12, 2016
f9ab2f3
Merge pull request #120 from directhex/gtk-sharp-2-12-branch
Therzok Oct 12, 2016
874404d
[Gen] Optimize marshalling on some struct pinvokes
Therzok Oct 13, 2016
2c8807e
[Gen] Remove left-over ReadNative method generation.
Therzok Oct 13, 2016
b007e64
[Gen] Move most other struct passes to use ref
Therzok Oct 13, 2016
76ba0a0
[Gen] Don't output empty lines for ref-pass
Therzok Oct 13, 2016
449d4e2
[Gen] Treat callbacks differently.
Therzok Oct 13, 2016
308d4d3
[Gen] Marshal out structs by ref too.
Therzok Oct 13, 2016
2bd3e23
[Gen] Managed signal callback is now using byref passing.
Therzok Oct 13, 2016
a0f025e
[Gtk] Don't try to free events which come out as null.
Therzok Oct 13, 2016
6617d3f
[Perf] Use some generic dictionaries to avoid boxing.
Therzok Oct 13, 2016
fb725ee
[Gen] Optimize blittable types to use allocationless construction fro…
Therzok Oct 14, 2016
78f1063
[Gen] Improve generation of .New by using simpler code.
Therzok Oct 14, 2016
1bf3abc
[GLib] Allocation-less MarshalCallback.
Therzok Oct 14, 2016
a00c3a9
[Gen] Generate signal/callbacks to use allocation-less marshal where …
Therzok Oct 14, 2016
e8f22de
[GLib] Avoid boxing for invocation hint on grabbing a signal's handler.
Therzok Oct 14, 2016
4fdf889
[Perf] Optimize object creation by using a faster allocator
Therzok Oct 14, 2016
bb62f77
[GLib] Optimize signal args construction
Therzok Oct 14, 2016
50c73fd
[GLib,Gen] Avoid creating lots of empty arrays on object construction.
Therzok Oct 15, 2016
5de6ab8
[Perf] Use different dictionaries and make fastactivator threadsafe
Therzok Oct 15, 2016
d3ed7d1
Merge pull request #175 from mono/optimize-struct-marshal
alanmcgovern Oct 17, 2016
9c93474
Bump Gtk# version
directhex Oct 27, 2016
bc425a6
[Gtk] Fix leak of GtkMenuPositionFuncWrapper on calling Menu.Popup
Therzok Nov 18, 2016
26c591c
[Gtk] Initial support for UI Thread check.
Therzok Dec 9, 2016
d4827a7
Merge pull request #178 from mono/ui-thread-check
Therzok Dec 9, 2016
2cf69a6
[Gen] Fix up AssertMainThread being added twice in constructors.
Therzok Jan 16, 2017
e4ba7b4
[GLib] Fix up toggleref in the case of managed constructed objects
Therzok Jan 16, 2017
baacd47
[GLib] FastActivator now throws MissingMethodException
Therzok Jan 16, 2017
93fb46f
[Gtk, Gdk] Set owned=true on custom constructors.
Therzok Jan 16, 2017
cafdbb3
[Gtk] Fix leak of ColorSelection on PalleteFromString.
Therzok Jan 17, 2017
9b56a97
Merge pull request #179 from mono/finalizer-hell
Therzok Jan 26, 2017
0e6adb7
Correct use of sizeof method
pshulga-dev Jan 31, 2017
3375f9b
Merge pull request #180 from pshulga-softheme/fix_Color_selection
Therzok Jan 31, 2017
f038819
[Gen] Don't cache void type to fix file generation.
Therzok Apr 3, 2017
7b9972f
Bump Gtk# version
directhex Apr 5, 2017
e6f71ed
[GLib] Mark refing properties as DebuggerBrowsable(Hidden)
Therzok Apr 29, 2017
8d360b7
[Gen] Optimize finalizer codegen to avoid extra classes.
Therzok Apr 29, 2017
71ad865
[GLib] Avoid triggering a finalization for non-owned objects.
Therzok Apr 29, 2017
0e8e379
[GLib] Refactor Source code so it's smarter.
Therzok Apr 30, 2017
bb7d97d
[GLib] Remove more code from Source
Therzok Apr 30, 2017
89e05fa
[Opaque] Finalization simplification
Therzok Apr 30, 2017
490cc73
[GLib] Don't queue many timeouts for opaque collection.
Therzok Apr 30, 2017
ea94959
[GLib] Fix race with GLib.Sources.
Therzok Apr 30, 2017
6e532d1
Fix PR feedback
Therzok Apr 30, 2017
02b9360
Merge pull request #183 from mono/avoid-finalizers2
Therzok May 1, 2017
a02eb0c
[GLib] Value should not unset if type isn't set.
Therzok May 5, 2017
6baa9a7
Merge pull request #184 from mono/value-fix
Therzok May 5, 2017
7a65eda
[Gtk] Make pixbuf loader ref-ing properties unbrowsable.
Therzok May 5, 2017
7a6b8e3
[Gtk] Go through the ulong overload, as the uint one is obsoleted.
Therzok May 5, 2017
2beb0de
[GLib] Optimize signal delegate removal
Therzok May 5, 2017
4c04ce0
[GLib] Optimize ToggleRef freeing.
Therzok May 5, 2017
c43bc8d
[Gdk] Add an overload to PixbufLoader to be able to supply the stream…
Therzok May 6, 2017
ef99f8e
[GLib] Fix typo.
Therzok May 8, 2017
e0bd49f
Merge pull request #185 from mono/misc-fixes
Therzok May 9, 2017
c7399c3
Fix InvalidCastException in gtk#
Therzok May 10, 2017
efba2a3
[GLib] Fix signals race condition.
Therzok May 11, 2017
f6669f6
[GLib] Optimize string marshalling
Therzok May 11, 2017
1f27a6e
[GLib] Remove dead code.
Therzok May 11, 2017
a72dcd8
Fixup!
Therzok May 11, 2017
f18283f
Fixup! Add error handling and construct string with known length.
Therzok May 11, 2017
d0786ca
[Glib] Bring back signal optimization.
Therzok May 11, 2017
54fbf1b
Merge pull request #186 from mono/string-marshalling
Therzok May 11, 2017
d2d422e
Merge pull request #174 from mono/iequatable
Therzok May 23, 2017
e0ce4b3
[Gtk,Parser] Handle custom gtk class handler signals.
Therzok May 23, 2017
41f552d
[GLib] Make GObject smaller by removing the disposed bool.
Therzok May 24, 2017
7f83ea2
[GLib] Optimize Value.ToBoxed()
Therzok May 24, 2017
f610d89
[Gdk] Fix pixbuf leak
Therzok May 23, 2017
1287c22
[GLib] Use a better lambda compilation overload
Therzok May 26, 2017
9f5152a
Merge pull request #193 from mono/fast-boxed
alanmcgovern May 26, 2017
28e9cc1
[GLib, Gen] Use generic variants of Marshal methods.
Therzok May 26, 2017
7a0002c
[GLib] Make GetPropertyCallback not send an index.
Therzok May 24, 2017
39429e9
[GLib] Avoid locking in fastactivator by using threadstatic dictionar…
Therzok May 28, 2017
0ecdad1
[GLib] Use ThreadLocal instead of ThreadStatic.
Therzok May 29, 2017
e98a0ae
[Atk] Fix Atk.Object leaks.
Therzok May 24, 2017
e13fd81
[Atk] Properly hook into base method calls for Atk.Object.
Therzok May 26, 2017
1f717eb
[Atk] Fix stack imbalance on freeing an attribute set.
Therzok May 26, 2017
21fb25a
[Gen] Fix prefix symbol being publicly visible.
Therzok May 26, 2017
2d06efc
[Gtk] Fix C glue warning.
Therzok May 26, 2017
b9e0b30
[Gtk] Fix CellRenderer base calling.
Therzok May 26, 2017
8d0bb4a
[Misc] Add base calls to threads events.
Therzok May 26, 2017
15d08f0
[Atk] Fix Misc binding of override thread events.
Therzok May 26, 2017
180347e
[Atk] Fix base_get_attributes call name.
Therzok May 26, 2017
92255ef
[Atk] Fix ObjectFactory bindings.
Therzok May 26, 2017
e4ed5bb
[Atk] Add a couple of missing returns in glue.
Therzok May 26, 2017
b0c8515
Merge pull request #189 from mono/gobject-size
alanmcgovern May 30, 2017
a59580b
Merge pull request #194 from mono/fast-boxed
alanmcgovern May 30, 2017
1c8d54e
Merge pull request #196 from mono/avoid-locking-ctor2
alanmcgovern May 30, 2017
6af2802
[Gdk,Gtk] Fix possible invalid memory access with GdkEvent.
Therzok May 30, 2017
9064d4f
Manually bind EventHelper methods.
Therzok May 31, 2017
bf9f56e
[GLib] Make signalclosure a member of signal
Therzok May 24, 2017
62ad9c0
[GLib] Optimize Signal and SignalClosure
Therzok May 24, 2017
348ee1f
Bump 2.12.44
Therzok May 31, 2017
dedc1d1
Bump to 2.12.45, as 2.12.44 was taken by a stray windows msi
Therzok May 31, 2017
1ec34e4
[Pango] Don't finalize the attribute if it's not owned.
Therzok May 31, 2017
f77d8d1
[GLib] Optimze Object memory retention.
Therzok May 31, 2017
9dacc19
[GLib] SignalClosure constructor simplification.
Therzok Jun 12, 2017
7a0b90b
[GLib] Make NotifyCallback static.
Therzok Jun 13, 2017
44235d7
[GLib] Don't JIT a new method each time we callback from unmanaged.
Therzok Jun 13, 2017
9650a1f
[GLib] Make Timeout smaller, move dictionary logic into Idle.
Therzok Jun 13, 2017
62d3e79
[GLib] Avoid creating a lambda for types which get marshalled via Ptr…
Therzok Jun 13, 2017
d3225d6
[GLib] Avoid allocating a delegate each time we create a list/slist/p…
Therzok Jun 1, 2017
b82943c
[GLib] Make SignalClosure smaller.
Therzok Jun 13, 2017
a24de29
[GLib] Backwards compatibility with source removal
Therzok Jun 14, 2017
df444a8
[Gtk, GLib] stackalloc short lived value arrays.
Therzok Jun 17, 2017
c580357
[Custom] Switch most common new T[0] to Array.Empty<T>
Therzok Jun 17, 2017
36adda8
[Gen,Gtk] Use stackalloc on custom constructors.
Therzok Jun 18, 2017
b8e548d
[GLib] Don't allocate a new array when coming through the default con…
Therzok Jun 18, 2017
60c3220
[Gen] Use stackalloc Value array instead of GValueArray for signal chain
Therzok Jun 19, 2017
199e461
[Custom] Modify signal handlers to use stackalloc'd value arrays.
Therzok Jun 19, 2017
f6fc2a4
[Gtk] Free Signals on Destroy
Therzok Jun 16, 2017
60d4b76
[GLib] Don't use ValueArray in Signal.Emit
Therzok Jun 19, 2017
f7bffb9
[Gtk] Make Application.Invoke snappier. (#210)
Therzok Jun 20, 2017
8c01ee1
Merge pull request #207 from mono/stack-alloc
alanmcgovern Jun 21, 2017
f2c5665
[GLib] Remove owned from Event
Therzok Jun 20, 2017
de8de3c
[GLib] Use a static free handler.
Therzok Jun 20, 2017
58e509b
[Gen] Avoid a struct copy when assigning inst_and_params
Therzok Jul 5, 2017
c249714
[Gtk,Atk] Fix overhead of intermediary struct copy in signals.
Therzok Jul 5, 2017
43d38a8
[Gtk] Invoke (Action) and Invoke (EventHandler) clash when using dele…
Therzok Jul 7, 2017
23ddf80
[Atk] Fix property names. (#213)
Therzok Aug 25, 2017
db5c0aa
Set store backing field in Gtk.NodeView.NodeStore (#214)
dlech Nov 19, 2017
ada71f5
Generate static callbacks (#208)
Therzok Dec 13, 2017
8d5e6bc
[Misc] Fix a few more places where static callbacks can be used
Therzok Dec 13, 2017
ae7bbb3
[Ide] Optimize timeout/callback to not use allocations of proxies whe…
Therzok Dec 13, 2017
cfd64f9
Check for libtoolize rather than libtool (#216)
ermshiperete Jan 11, 2018
c59b84b
[Gtk] Add missing main thread assertions to tree/list store custom code
Therzok Jan 15, 2018
d2257a2
[Gen] Allow null passing of funcs, and transform into IntPtr.Zero, no…
Therzok Feb 8, 2018
372b03b
Revert "[Gtk] Add missing main thread assertions to tree/list store c…
Therzok Feb 8, 2018
f8a9ab0
[Gen] Fix Atk callbacks being improperly generated
Therzok Feb 8, 2018
ba3b3b5
[Gtk] Fix scopes of 2 callbacks
Therzok Feb 8, 2018
430f393
[Atk] Free GCHandles
Therzok Feb 9, 2018
2c8ede0
Replace strings with const strings (#220)
decriptor Feb 23, 2018
81c19a7
Largely remove System.Collections (#221)
decriptor Feb 23, 2018
4afc060
Fix GLib.Log.Write() format string vulnerability via new glue (#226)
canvon Mar 20, 2018
fe18352
refs issue:#298 Fix mono compilation errors
plprevost May 12, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
*~
*.pdb
*.pidb
*.suo
.deps
.libs
*-api.raw
*-api.xml
*.cache
*.dll
*.dll.config
*.exe
*.exe.config
*.la
*.lo
*.m4
*.msi
*.msm
*.mdb
*.o
*.pc
*.tar.gz
*.wixobj
*.wixpdb
*.FileListAbsolute.txt
.vs
bin
obj

AssemblyInfo.cs
INSTALL
Makefile
Makefile.in
bootstrap.status
config.*
configure
configure.in
depcomp
generated
generated.c
generated-stamp
gtk-sharp.snk
install-sh
lib
libtool
ltconfig
ltmain.sh
missing
mkinstalldirs
msi/unmanaged/download-stamp
msi/unmanaged/source/*
policy.config
policy.*.config
stamp*
Loading