repo
string
commit
string
message
string
diff
string
galaxycats/haz_enum
c209ec88c2b0e940525d9f91f10eeeb9b8ea828c
initialize an enum with its name as string
diff --git a/lib/haz_enum/enum.rb b/lib/haz_enum/enum.rb index 87d88cc..ebafc7e 100644 --- a/lib/haz_enum/enum.rb +++ b/lib/haz_enum/enum.rb @@ -1,43 +1,47 @@ module HazEnum module Enum def has_enum(enum_name, options={}) enum_name = enum_name.to_s enum_column = options.has_key?(:column_name) ? o...
galaxycats/haz_enum
fdefead424fb5c9813b505d7e21c8fb4919d7aa6
added specialized i18n translation for error
diff --git a/lib/haz_enum/enum.rb b/lib/haz_enum/enum.rb index f43a345..87d88cc 100644 --- a/lib/haz_enum/enum.rb +++ b/lib/haz_enum/enum.rb @@ -1,38 +1,43 @@ module HazEnum module Enum def has_enum(enum_name, options={}) enum_name = enum_name.to_s enum_column = options.has_key?(:column_name) ? o...
galaxycats/haz_enum
d2f3a7a2012d93708893da29474052f438d7869e
gemspec version bump to 0.2.0
diff --git a/haz_enum.gemspec b/haz_enum.gemspec index df1e09d..c5a69a0 100644 --- a/haz_enum.gemspec +++ b/haz_enum.gemspec @@ -1,62 +1,62 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- Gem::Specificati...
galaxycats/haz_enum
d6c66f1fec6e3108b00264bd45700355903aa6bd
Version bump to 0.2.0
diff --git a/VERSION b/VERSION index 6e8bf73..0ea3a94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0 +0.2.0
galaxycats/haz_enum
080433b3ce28f42a87c816eda3fec7abf581e544
rewrite of enum with define_method
diff --git a/haz_enum.gemspec b/haz_enum.gemspec index d50987c..df1e09d 100644 --- a/haz_enum.gemspec +++ b/haz_enum.gemspec @@ -1,62 +1,62 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- Gem::Specificati...
galaxycats/haz_enum
3eb0ae08e2ee059b14ad5dc4d163b39f25211809
bumped version to 0.1.0
diff --git a/haz_enum.gemspec b/haz_enum.gemspec index bb5f143..d50987c 100644 --- a/haz_enum.gemspec +++ b/haz_enum.gemspec @@ -1,56 +1,62 @@ # Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- Gem::Specificati...
galaxycats/haz_enum
ecaa29c7a3cee1afe0ecf4405ba1d451259a457c
Version bump to 0.1.0
diff --git a/VERSION b/VERSION index 77d6f4c..6e8bf73 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.0.0 +0.1.0
galaxycats/haz_enum
f5ce0183644ac6d43031f3fe080ec65e5f338944
has_set can handle association extensions
diff --git a/lib/haz_enum/set.rb b/lib/haz_enum/set.rb index 1c56686..30f456f 100644 --- a/lib/haz_enum/set.rb +++ b/lib/haz_enum/set.rb @@ -1,36 +1,59 @@ module HazEnum module Set def has_set(set_name, options={}) field_type = options.has_key?(:field_type) ? options[:field_type].to_s : "bitfiel...
galaxycats/haz_enum
c4f7bdbd5da9cf9c74b458d336e8e8ec2aa18e09
implemented has_set
diff --git a/lib/haz_enum/set.rb b/lib/haz_enum/set.rb index ae1b5b4..1c56686 100644 --- a/lib/haz_enum/set.rb +++ b/lib/haz_enum/set.rb @@ -1,6 +1,36 @@ module HazEnum module Set - def has_set(enum_name, options={}) + def has_set(set_name, options={}) + + field_type = options.has_key?(:field_type)...
galaxycats/haz_enum
85ccfa56f69a1746cb72b870dfeb2105400c5958
added activerecord dependency
diff --git a/Rakefile b/Rakefile index 0fbf07d..e4f0c47 100644 --- a/Rakefile +++ b/Rakefile @@ -1,45 +1,46 @@ require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "haz_enum" gem.summary = %Q{has_set and has_enum for ActiveRecord} gem.description = %...
galaxycats/haz_enum
4ff5c09b8ab06be9368026dd52c3de8e536ed86b
added some tests for has_enum
diff --git a/lib/haz_enum/enum.rb b/lib/haz_enum/enum.rb index c0ae62f..5a19d52 100644 --- a/lib/haz_enum/enum.rb +++ b/lib/haz_enum/enum.rb @@ -1,40 +1,40 @@ module HazEnum module Enum def has_enum(enum_name, options={}) enum_column = options.has_key?(:column_name) ? options[:column_name].to_s : "#{enu...
galaxycats/haz_enum
a94f7a007f76d97ebc89909934abf4e73d05d2ad
first basic tests
diff --git a/.gitignore b/.gitignore index c1e0daf..dcb41bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,22 @@ ## MAC OS .DS_Store ## TEXTMATE *.tmproj tmtags ## EMACS *~ \#* .\#* ## VIM *.swp ## PROJECT::GENERAL coverage rdoc pkg ## PROJECT::SPECIFIC +.rake_tasks \ No newline at end o...
galaxycats/haz_enum
79ca91f22899222df62875caf95e57befcac8b45
Version bump to 0.0.0
diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..77d6f4c --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.0.0
galaxycats/haz_enum
f5dabf7c2cd532d8422303848ff72a5bd837b89c
implemented has_enum
diff --git a/LICENSE b/LICENSE index 5916d26..ca31f48 100644 --- a/LICENSE +++ b/LICENSE @@ -1,20 +1,20 @@ -Copyright (c) 2009 thyphoon +Copyright (c) 2009 Galaxy Cats IT Consulting GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files ...
jcblitz/maven-selenium-demo
a3a59f08de43f1dd43a1bee4a0555466f2732bd3
Added more robust Selenium test case
diff --git a/pom.xml b/pom.xml index c55a982..922bd00 100644 --- a/pom.xml +++ b/pom.xml @@ -1,110 +1,112 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> ...
jcblitz/maven-selenium-demo
79c041c72cd0b79bad43202ac70005534cbf6823
Added more sample data. Added more CRUD functionality
diff --git a/pom.xml b/pom.xml index bd05c5b..c55a982 100644 --- a/pom.xml +++ b/pom.xml @@ -1,61 +1,110 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> ...
jcblitz/maven-selenium-demo
acb92a54460aa974cfa6fc89634766933dbe5252
Initial check in
diff --git a/nb-configuration.xml b/nb-configuration.xml new file mode 100644 index 0000000..4d0a538 --- /dev/null +++ b/nb-configuration.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project-shared-configuration> + <!-- +This file contains additional configuration written by modules in the NetBeans...
paupawsan/Irrlicht
17ce4a30f6779da632d5226e5b3ce35740fcafc1
Fix compiling CFileSystem.cpp on Windows (thx pc0de for reporting). Fix warning in COpenGLDriver about initialization order.
diff --git a/source/Irrlicht/CFileSystem.cpp b/source/Irrlicht/CFileSystem.cpp index 62a85c2..423bbb2 100644 --- a/source/Irrlicht/CFileSystem.cpp +++ b/source/Irrlicht/CFileSystem.cpp @@ -1,837 +1,837 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions ...
paupawsan/Irrlicht
815231497d3a0cd9fb7a2213dd036a66b7bf17ce
RGB confusion fixed by shine5128
diff --git a/source/Irrlicht/CIrrMeshWriter.cpp b/source/Irrlicht/CIrrMeshWriter.cpp index f6b2d94..06de87f 100644 --- a/source/Irrlicht/CIrrMeshWriter.cpp +++ b/source/Irrlicht/CIrrMeshWriter.cpp @@ -1,315 +1,315 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For...
paupawsan/Irrlicht
158cb20e5a9a5ae44276876de7b8b1c4c56ca929
cbp file provided by d3jake.
diff --git a/examples/23.SMeshHandling/SMeshHandling.cbp b/examples/23.SMeshHandling/SMeshHandling.cbp new file mode 100644 index 0000000..b803657 --- /dev/null +++ b/examples/23.SMeshHandling/SMeshHandling.cbp @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_project_file> + <File...
paupawsan/Irrlicht
59277c3264933fbc41a00e4358b23675826c2557
Fix compilation of meshviewer example when _IRR_WCHAR_FILESYSTEM and UNICODE are set (found by greenya).
diff --git a/examples/09.Meshviewer/main.cpp b/examples/09.Meshviewer/main.cpp index 4f6e824..4c4bc6c 100644 --- a/examples/09.Meshviewer/main.cpp +++ b/examples/09.Meshviewer/main.cpp @@ -1,685 +1,685 @@ /** Example 009 Mesh Viewer This tutorial show how to create a more complex application with the engine. We...
paupawsan/Irrlicht
f62f7f5ff25ebbecdeea8c0be380fff466c64ad7
Removed a variable and converted the win32 filelist creation to use TCHAR functions for automatic unicode/ansi conversion.
diff --git a/source/Irrlicht/CFileSystem.cpp b/source/Irrlicht/CFileSystem.cpp index b07271d..62a85c2 100644 --- a/source/Irrlicht/CFileSystem.cpp +++ b/source/Irrlicht/CFileSystem.cpp @@ -94,750 +94,744 @@ CFileSystem::~CFileSystem() } } //! opens a file for read access IReadFile* CFileSystem::createAndO...
paupawsan/Irrlicht
b6c2ed4073d1348aa79c7d3133635e93c7d380fd
Example 14 should now link to opengl also in vc8 project file (seen by KakCAT)
diff --git a/examples/14.Win32Window/Win32Window_vc8.vcproj b/examples/14.Win32Window/Win32Window_vc8.vcproj index 6759d2f..efbf43d 100644 --- a/examples/14.Win32Window/Win32Window_vc8.vcproj +++ b/examples/14.Win32Window/Win32Window_vc8.vcproj @@ -1,232 +1,232 @@ <?xml version="1.0" encoding="Windows-1252"?> <Visua...
paupawsan/Irrlicht
473d2d9375cb2230aca1332be82d5b72fbc3fae3
Fix typo in comment. Fix allocation order for array.
diff --git a/source/Irrlicht/CD3D9Driver.cpp b/source/Irrlicht/CD3D9Driver.cpp index 4efb4e2..ba415d0 100644 --- a/source/Irrlicht/CD3D9Driver.cpp +++ b/source/Irrlicht/CD3D9Driver.cpp @@ -2244,1025 +2244,1025 @@ void CD3D9Driver::setRenderStatesStencilShadowMode(bool zfail) // unset last 3d material if (Current...
paupawsan/Irrlicht
d583856a5d55e436c7305e6f3788842c11496be8
Avoid crash on wrong bone ids.
diff --git a/source/Irrlicht/COgreMeshFileLoader.cpp b/source/Irrlicht/COgreMeshFileLoader.cpp index 96c8064..b9cf716 100644 --- a/source/Irrlicht/COgreMeshFileLoader.cpp +++ b/source/Irrlicht/COgreMeshFileLoader.cpp @@ -269,1029 +269,1032 @@ bool COgreMeshFileLoader::readObjectChunk(io::IReadFile* file, ChunkData& par...
paupawsan/Irrlicht
a05d980685988fffc535e4780ed289ad8d10eb21
Fix several places where "used" in core::string was used wrongly.
diff --git a/include/irrString.h b/include/irrString.h index ebf84dd..ea05f82 100644 --- a/include/irrString.h +++ b/include/irrString.h @@ -398,729 +398,729 @@ public: /** \return Length of the string's content in characters, excluding the trailing NUL. */ u32 size() const { return used-1; } ...
paupawsan/Irrlicht
023857a1d2719dc03362c27f39b34d4ef47f98b6
Fix c::b project files on Win32 for examples 04 and 11 (thx to freetimecoder for finding)
diff --git a/examples/04.Movement/Movement.cbp b/examples/04.Movement/Movement.cbp index fa322a0..4d3a517 100644 --- a/examples/04.Movement/Movement.cbp +++ b/examples/04.Movement/Movement.cbp @@ -1,56 +1,57 @@ <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <CodeBlocks_project_file> <FileVersion major="1"...
paupawsan/Irrlicht
e6ac6e838e803f7a802e4d0243bc8785d2cda497
Remove additional slash in pathnames in X-Loader (rev.2147 and rev.2074 both had independently fixed the same problem but in different ways, so we had one slash too much afterwards).
diff --git a/source/Irrlicht/CXMeshFileLoader.cpp b/source/Irrlicht/CXMeshFileLoader.cpp index 23b5411..f87ff00 100644 --- a/source/Irrlicht/CXMeshFileLoader.cpp +++ b/source/Irrlicht/CXMeshFileLoader.cpp @@ -1,964 +1,963 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". ...
paupawsan/Irrlicht
a1674b3f225659a8dbbbb062df615c86532d5700
Fix crash in CGUIListBox when environment was cleared on events (found by Auria).
diff --git a/source/Irrlicht/CGUIListBox.cpp b/source/Irrlicht/CGUIListBox.cpp index 37a9937..ac5f3e7 100644 --- a/source/Irrlicht/CGUIListBox.cpp +++ b/source/Irrlicht/CGUIListBox.cpp @@ -1,898 +1,899 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions ...
paupawsan/Irrlicht
3edb72179a6b503f2d885789957e18d7b81b5f4a
Documentation and parameter names fixed (min was called max, thx to kingdutch for noticing).
diff --git a/include/IGUIScrollBar.h b/include/IGUIScrollBar.h index 2348df2..3470108 100644 --- a/include/IGUIScrollBar.h +++ b/include/IGUIScrollBar.h @@ -1,62 +1,62 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyr...
paupawsan/Irrlicht
99b0e4881eed60f35df067d545a659a8ae354681
Bugfix: Clear up depth-textures which could not be attached in OpenGL to prevent crashes.
diff --git a/source/Irrlicht/COpenGLDriver.cpp b/source/Irrlicht/COpenGLDriver.cpp index dc424c6..810e320 100644 --- a/source/Irrlicht/COpenGLDriver.cpp +++ b/source/Irrlicht/COpenGLDriver.cpp @@ -3033,1024 +3033,1028 @@ void COpenGLDriver::assignHardwareLight(u32 lightIndex) glLightf(lidx, GL_SPOT_EXPONENT, 0.0f); ...
paupawsan/Irrlicht
87f40e5f5374d9a40e0f17190932d899cd8b4d90
Fix arrowMesh boundingbox.
diff --git a/source/Irrlicht/CGeometryCreator.cpp b/source/Irrlicht/CGeometryCreator.cpp index 5843df5..251d613 100644 --- a/source/Irrlicht/CGeometryCreator.cpp +++ b/source/Irrlicht/CGeometryCreator.cpp @@ -1,848 +1,850 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". ...
paupawsan/Irrlicht
c83ebcc5bdd27870ba968158dee3934049339fb6
Remove destructors.
diff --git a/source/Irrlicht/CMountPointReader.cpp b/source/Irrlicht/CMountPointReader.cpp index 07df00c..e644ec2 100644 --- a/source/Irrlicht/CMountPointReader.cpp +++ b/source/Irrlicht/CMountPointReader.cpp @@ -1,174 +1,168 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engin...
paupawsan/Irrlicht
7df5460acf4271d93d7d06ca0900228e43e4fe91
Init fix by Madkinder.
diff --git a/source/Irrlicht/CB3DMeshFileLoader.cpp b/source/Irrlicht/CB3DMeshFileLoader.cpp index 6f64fec..842e28c 100644 --- a/source/Irrlicht/CB3DMeshFileLoader.cpp +++ b/source/Irrlicht/CB3DMeshFileLoader.cpp @@ -92,969 +92,969 @@ bool CB3DMeshFileLoader::load() } // Add main chunk... B3dStack.push_back(...
paupawsan/Irrlicht
b3913d7024c3922450cc17e9099e6397d3d53bd4
Add check for null pointer. Hopefully fixes the problem found by cyuyan on WindowsMobile
diff --git a/source/Irrlicht/CMountPointReader.cpp b/source/Irrlicht/CMountPointReader.cpp index bb02130..07df00c 100644 --- a/source/Irrlicht/CMountPointReader.cpp +++ b/source/Irrlicht/CMountPointReader.cpp @@ -1,177 +1,174 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engin...
paupawsan/Irrlicht
f89251f388a370516c176fb74a640abe7ca69e0f
Fix rounding problems in SColor::getInterpolated, SColorf::toSColor and SColorHSL::toRGB1 (thx to Virion for noticing)
diff --git a/include/SColor.h b/include/SColor.h index 763ee89..8b04661 100644 --- a/include/SColor.h +++ b/include/SColor.h @@ -1,582 +1,582 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irrlicht.h ...
paupawsan/Irrlicht
68ae2116c841b41c87d58bb94d4e32d096894340
Scrollbar in CGUIListBox no longer uses id 0, but id -1 as usual (thx to Auria for noticing). If you used the id to distinguish the scrollbar from the listbox in your code, please switch to using isSubElement.
diff --git a/source/Irrlicht/CGUIListBox.cpp b/source/Irrlicht/CGUIListBox.cpp index 0a4f737..37a9937 100644 --- a/source/Irrlicht/CGUIListBox.cpp +++ b/source/Irrlicht/CGUIListBox.cpp @@ -1,551 +1,551 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions ...
paupawsan/Irrlicht
b76e12a90cbc0b8596432982c306b23f70cee09a
Fix octree with frustum+parent checks enabled (didn't clip at all before). Now using plane-checks instead of edge-checks for frustum-box intersection.
diff --git a/changes.txt b/changes.txt index f3ca961..afae1f5 100644 --- a/changes.txt +++ b/changes.txt @@ -1,514 +1,516 @@ ----------------------------- Changes in 1.7.1 (17.02.2010) + + - Fix octree with frustum+parent checks enabled (didn't clip at all before). Now using plane-checks instead of edge-checks for...
paupawsan/Irrlicht
9363bb91a0533c2ffb2e3824b6f369613bba2ca8
Make sure Irrlicht still compiles when __IRR_COMPILE_WITH_ZIP_ARCHIVE_LOADER_ is outcommented.
diff --git a/source/Irrlicht/CZipReader.cpp b/source/Irrlicht/CZipReader.cpp index 7895d74..27a1dcb 100644 --- a/source/Irrlicht/CZipReader.cpp +++ b/source/Irrlicht/CZipReader.cpp @@ -1,556 +1,555 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of d...
paupawsan/Irrlicht
4f012745456f74e0325ccd01eee82c18fc3ee1a2
Fix memory overflow in obj meshloader (thx for testcase from Brumm)
diff --git a/source/Irrlicht/COBJMeshFileLoader.cpp b/source/Irrlicht/COBJMeshFileLoader.cpp index c4e1c2e..b40d40d 100644 --- a/source/Irrlicht/COBJMeshFileLoader.cpp +++ b/source/Irrlicht/COBJMeshFileLoader.cpp @@ -304,628 +304,628 @@ IAnimatedMesh* COBJMeshFileLoader::createMesh(io::IReadFile* file) { mesh->re...
paupawsan/Irrlicht
b5b80ba8fea48e2e3aa246b043cabbb4417f80af
Fix mem leak found by sebpes.
diff --git a/source/Irrlicht/COpenGLTexture.cpp b/source/Irrlicht/COpenGLTexture.cpp index a713fd4..b565c91 100644 --- a/source/Irrlicht/COpenGLTexture.cpp +++ b/source/Irrlicht/COpenGLTexture.cpp @@ -1,894 +1,894 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For...
paupawsan/Irrlicht
4d1d0a34bdb9a2127a33cc9b630021582573455d
Prevent that X11 selects larger resolutions in fullscreen even when perfect fits are available.
diff --git a/changes.txt b/changes.txt index 3033b4e..f3ca961 100644 --- a/changes.txt +++ b/changes.txt @@ -1,514 +1,516 @@ ----------------------------- Changes in 1.7.1 (17.02.2010) + + - Prevent that X11 selects larger resolutions in fullscreen even when perfect fits are available. - Ignore setResizable...
paupawsan/Irrlicht
b604df103134693f00516ab4e19d7da5b3ee7cb9
Add some logging about chosen fullscreen resolution in X11.
diff --git a/source/Irrlicht/CIrrDeviceLinux.cpp b/source/Irrlicht/CIrrDeviceLinux.cpp index f473918..614d8b9 100644 --- a/source/Irrlicht/CIrrDeviceLinux.cpp +++ b/source/Irrlicht/CIrrDeviceLinux.cpp @@ -1,765 +1,767 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". //...
paupawsan/Irrlicht
1031ae736491ff6718076b7c74b98fa2bb299b10
Ignore setResizable also on X11 when we're fullscreen to avoid messing up the window mode.
diff --git a/changes.txt b/changes.txt index fa5c75a..3033b4e 100644 --- a/changes.txt +++ b/changes.txt @@ -1,515 +1,519 @@ ----------------------------- Changes in 1.7.1 (17.02.2010) + - Ignore setResizable also on X11 when we're fullscreen to avoid messing up the window mode. + + - Work around a crash when ...
paupawsan/Irrlicht
0d378d519f87a521afe02df74dbab26e32152e60
Work around a crash when pressing ESC after closing a Messagebox (found by Acki)
diff --git a/source/Irrlicht/CGUIMessageBox.cpp b/source/Irrlicht/CGUIMessageBox.cpp index d9ec694..c4a8314 100644 --- a/source/Irrlicht/CGUIMessageBox.cpp +++ b/source/Irrlicht/CGUIMessageBox.cpp @@ -1,447 +1,463 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For...
paupawsan/Irrlicht
056033b719acd310bab22dba1425c4686dc91952
Documentation clarification (noticed by a.reichl)
diff --git a/include/IrrCompileConfig.h b/include/IrrCompileConfig.h index fa9d408..ac61788 100644 --- a/include/IrrCompileConfig.h +++ b/include/IrrCompileConfig.h @@ -1,505 +1,505 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and ...
paupawsan/Irrlicht
8bb280f5e24b8e83ac641a360fe054dd7611c138
Fix typo in docs
diff --git a/include/ITexture.h b/include/ITexture.h index 6366400..1b8d2f7 100644 --- a/include/ITexture.h +++ b/include/ITexture.h @@ -1,188 +1,188 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irr...
paupawsan/Irrlicht
201f876df0be2a368972e217b947c3cb7f85aae5
Fix octree naming
diff --git a/source/Irrlicht/SConstruct b/source/Irrlicht/SConstruct index 4ed3277..1117fef 100644 --- a/source/Irrlicht/SConstruct +++ b/source/Irrlicht/SConstruct @@ -1,102 +1,102 @@ import os import sys USE_GCC = 1; NDEBUG = 1; PROFILE = 0; APPLICATION_NAME = 'Irrlicht'; LIBRARIES = ['gdi32', 'ope...
paupawsan/Irrlicht
9d0f1167c296905042fed7ba697aac5502212e10
Fix octree naming
diff --git a/source/Irrlicht/Irrlicht.dev b/source/Irrlicht/Irrlicht.dev index a705c40..704da54 100644 --- a/source/Irrlicht/Irrlicht.dev +++ b/source/Irrlicht/Irrlicht.dev @@ -1681,1605 +1681,1605 @@ BuildCmd= [Unit166] FileName=CD3D9HLSLMaterialRenderer.cpp Folder=Irrlicht/video/DirectX9 Compile=1 Compile...
paupawsan/Irrlicht
ccdd79fc9afbb9255fb1788ff415d28b7819f889
Prevent Borland compile warnings in SColorHSL::FromRGB and in SVertexColorThresholdManipulator (found by mdeininger)
diff --git a/changes.txt b/changes.txt index 8df93e7..fa5c75a 100644 --- a/changes.txt +++ b/changes.txt @@ -1,515 +1,521 @@ ----------------------------- Changes in 1.7.1 (17.02.2010) + - Prevent borland compile warnings in SColorHSL::FromRGB and in SVertexColorThresholdManipulator (found by mdeininger) + + -...
paupawsan/Irrlicht
45a70bcb6acef09675d0f6e12d63f962c2daeb76
Add the improved Windows version detection rules from brferreira (see http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=37579&highlight=) Fix compiling on Visual Studio which got broken by Borland fixes (seems to work now on all compilers).
diff --git a/source/Irrlicht/CD3D9Driver.h b/source/Irrlicht/CD3D9Driver.h index 7b6b12c..ccc7e7f 100644 --- a/source/Irrlicht/CD3D9Driver.h +++ b/source/Irrlicht/CD3D9Driver.h @@ -1,446 +1,448 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distr...
paupawsan/Irrlicht
aa53475d5eb96326244ac22700069dc86b252266
Fix compiling on Borland compilers (thx to mdeininger for help). By now everything except the console device should compile.
diff --git a/include/irrMath.h b/include/irrMath.h index 3d75641..5a1125b 100644 --- a/include/irrMath.h +++ b/include/irrMath.h @@ -1,539 +1,539 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irrlich...
paupawsan/Irrlicht
48b49b3a1da210de423029dbc8064e2f57b6e769
- Fix that clones got dropped too often when SceneNodes without parent got cloned (found by Ulf). - Make sure that CAnimatedMeshSceneNode::clone calls the virtual updateAbsolutePosition for the new object. - Some whitespace changes.
diff --git a/changes.txt b/changes.txt index 647ceaa..8df93e7 100644 --- a/changes.txt +++ b/changes.txt @@ -1,515 +1,533 @@ ----------------------------- Changes in 1.7.1 (17.02.2010) + - Make sure that CAnimatedMeshSceneNode::clone calls the virtual updateAbsolutePosition for the new object + + - Fix that cl...
paupawsan/Irrlicht
8000a89d01607729ca5765317f73489f89a0a111
Make sure TAB is still recognized on X11 when shift+tab is pressed. This also does fix going backwards with tabstops on X11.
diff --git a/source/Irrlicht/CIrrDeviceLinux.cpp b/source/Irrlicht/CIrrDeviceLinux.cpp index dff1a29..b465222 100644 --- a/source/Irrlicht/CIrrDeviceLinux.cpp +++ b/source/Irrlicht/CIrrDeviceLinux.cpp @@ -489,1401 +489,1403 @@ bool CIrrDeviceLinux::createWindow() visualAttrBuffer[19] -= 1; configList=g...
paupawsan/Irrlicht
e2979f4d9eeb9682514eceadec4eca1f80e6e8a5
Document IGUIELement::setAlignment (was missing).
diff --git a/include/IGUIElement.h b/include/IGUIElement.h index 44ded59..cfdcf18 100644 --- a/include/IGUIElement.h +++ b/include/IGUIElement.h @@ -1,701 +1,702 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright n...
paupawsan/Irrlicht
d094e4ead086b09d80c3211181c5ecedc050a370
Fix tooltips: - Make sure they get removed when the element is hidden or removed (thx to seven for finding) - Make (more) sure they don't get confused by gui-subelements - Fix the faster relaunch times (that did sometimes instead hide the tooltip) - Make sure hovered element is never the tooltip Send EGET_ELEMENT_LEFT ...
diff --git a/include/IEventReceiver.h b/include/IEventReceiver.h index 0ca2245..c365c1d 100644 --- a/include/IEventReceiver.h +++ b/include/IEventReceiver.h @@ -1,485 +1,487 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see...
paupawsan/Irrlicht
72bd759594b6314dce1cb748cdd125e66ebd833d
Fix reading of empty pass elements in Ogre materials.
diff --git a/source/Irrlicht/COgreMeshFileLoader.cpp b/source/Irrlicht/COgreMeshFileLoader.cpp index 540308b..96c8064 100644 --- a/source/Irrlicht/COgreMeshFileLoader.cpp +++ b/source/Irrlicht/COgreMeshFileLoader.cpp @@ -417,1024 +417,1026 @@ bool COgreMeshFileLoader::readSubMesh(io::IReadFile* file, ChunkData& parent,...
paupawsan/Irrlicht
c042701b028b49d4f5597d5d2ff956e88ba4aa6e
Fix bug (endless loop) in string::remove with empty strings found by Ulf.
diff --git a/changes.txt b/changes.txt index 5e9e193..1638cec 100644 --- a/changes.txt +++ b/changes.txt @@ -1,512 +1,518 @@ +---------------- +Changes in 1.7.1 + + - Fix string::remove which got in an endless loop when remove was called with an empty string (found and fixed by Ulf) + +---------------- Changes i...
paupawsan/Irrlicht
8645d6d7f063326f84a9fa3d040bce194762b5c0
Backport of the shader release fix and GLSL extension method name changes from trunk.
diff --git a/source/Irrlicht/COpenGLExtensionHandler.cpp b/source/Irrlicht/COpenGLExtensionHandler.cpp index 970d414..8ad9499 100644 --- a/source/Irrlicht/COpenGLExtensionHandler.cpp +++ b/source/Irrlicht/COpenGLExtensionHandler.cpp @@ -1,617 +1,624 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is par...
paupawsan/Irrlicht
c20ffac6029611325e488151d45fc5a607a30b04
Make sure we only use and free the Atom when it's really set. Bug reported by tryum
diff --git a/source/Irrlicht/CIrrDeviceLinux.cpp b/source/Irrlicht/CIrrDeviceLinux.cpp index 7f867ea..dff1a29 100644 --- a/source/Irrlicht/CIrrDeviceLinux.cpp +++ b/source/Irrlicht/CIrrDeviceLinux.cpp @@ -616,1028 +616,1031 @@ bool CIrrDeviceLinux::createWindow() if (!CreationParams.WindowId) { // create ne...
paupawsan/Irrlicht
14b44662446f399f0a387643871189cb20a14fd7
Adapt declaration to method signature.
diff --git a/source/Irrlicht/COpenGLExtensionHandler.h b/source/Irrlicht/COpenGLExtensionHandler.h index 01c827e..d8083fa 100644 --- a/source/Irrlicht/COpenGLExtensionHandler.h +++ b/source/Irrlicht/COpenGLExtensionHandler.h @@ -398,1025 +398,1025 @@ static const char* const OpenGLFeatureStrings[] = { "GL_SGIX_resamp...
paupawsan/Irrlicht
6d14502cd644241d6eaa1eb612615e438aba6370
Add and fix another aabbox intersectsWithBox test.
diff --git a/include/aabbox3d.h b/include/aabbox3d.h index 2005f74..5e9b18d 100644 --- a/include/aabbox3d.h +++ b/include/aabbox3d.h @@ -1,330 +1,332 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright notice in irr...
paupawsan/Irrlicht
04102b27bbb61041cc25523aa3db241097cc24e5
Fix signature of glProgramParameteri function. Might still raise compilation problems on some platforms, which need to be figured out later.
diff --git a/source/Irrlicht/COpenGLExtensionHandler.h b/source/Irrlicht/COpenGLExtensionHandler.h index aabbeeb..01c827e 100644 --- a/source/Irrlicht/COpenGLExtensionHandler.h +++ b/source/Irrlicht/COpenGLExtensionHandler.h @@ -1271,541 +1271,541 @@ inline void COpenGLExtensionHandler::extGlUniform1fv(GLint loc, GLsiz...
paupawsan/Irrlicht
985ddfc305c91d80431c03152a8136674c465e90
Fix memleak found by wing64
diff --git a/source/Irrlicht/COBJMeshFileLoader.cpp b/source/Irrlicht/COBJMeshFileLoader.cpp index 54ca465..c4e1c2e 100644 --- a/source/Irrlicht/COBJMeshFileLoader.cpp +++ b/source/Irrlicht/COBJMeshFileLoader.cpp @@ -1,936 +1,931 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht E...
paupawsan/Irrlicht
527f796151c2b52815773c1ddf1e6ec839ac4860
Remove some defaults from overloaded methods, in order to reduce some ambigious situations
diff --git a/include/IGPUProgrammingServices.h b/include/IGPUProgrammingServices.h index c1046f8..b666648 100644 --- a/include/IGPUProgrammingServices.h +++ b/include/IGPUProgrammingServices.h @@ -1,367 +1,367 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For con...
paupawsan/Irrlicht
d13c15a15d775b80f9f03ce89df662559e712aa5
Fix transparency just as in Demo.
diff --git a/examples/21.Quake3Explorer/main.cpp b/examples/21.Quake3Explorer/main.cpp index 1367fc2..909f83f 100644 --- a/examples/21.Quake3Explorer/main.cpp +++ b/examples/21.Quake3Explorer/main.cpp @@ -1262,914 +1262,916 @@ void CQuake3EventHandler::SetGUIActive( s32 command) ICameraSceneNode * camera = Game->D...
paupawsan/Irrlicht
1b23d7f50da185d274440dfb692a83a7dd27d203
Full upgrade-guide.txt.
diff --git a/doc/upgrade-guide.txt b/doc/upgrade-guide.txt index 77dfbc6..ee638b9 100644 --- a/doc/upgrade-guide.txt +++ b/doc/upgrade-guide.txt @@ -1993,524 +1993,899 @@ Changed parameters to use io::path (instead of C strings/stringc) virtual bool changeWorkingDirectoryTo(const path& newDirectory) =0; virtual pat...
paupawsan/Irrlicht
29419309259ae2307a4e081aacb03c71349fc72c
Fix transparency issues in Demo. Code layout changes in GUI.
diff --git a/examples/Demo/CDemo.cpp b/examples/Demo/CDemo.cpp index d824973..eddee01 100644 --- a/examples/Demo/CDemo.cpp +++ b/examples/Demo/CDemo.cpp @@ -205,609 +205,610 @@ void CDemo::switchToNextScene() case -1: // loading screen timeForThisScene = 0; createLoadingScreen(); break; case 0: // l...
paupawsan/Irrlicht
710b5395150a5f186bbc9174fb384adbfa996f48
Fix some warnings.
diff --git a/include/driverChoice.h b/include/driverChoice.h index eede551..c3827e1 100644 --- a/include/driverChoice.h +++ b/include/driverChoice.h @@ -1,42 +1,42 @@ // Copyright (C) 2009-2010 Christian Stehno // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright ...
paupawsan/Irrlicht
eb28a4ac862d03e97c7bb5d56d48bcd95336249f
Make sure all compiled files are found under a common directory.
diff --git a/source/Irrlicht/Irrlicht9.0.vcproj b/source/Irrlicht/Irrlicht9.0.vcproj index 76d71d1..a505d3c 100644 --- a/source/Irrlicht/Irrlicht9.0.vcproj +++ b/source/Irrlicht/Irrlicht9.0.vcproj @@ -1,1093 +1,1093 @@ <?xml version="1.0" encoding="Windows-1252"?> <VisualStudioProject ProjectType="Visual C++" ...
paupawsan/Irrlicht
be90a888cb8b833a2f1946c4a67c66d7ff0e3ee2
Fix settings and interpretation of flags for SConstruct file.
diff --git a/source/Irrlicht/SConstruct b/source/Irrlicht/SConstruct index 491e7d1..4ed3277 100644 --- a/source/Irrlicht/SConstruct +++ b/source/Irrlicht/SConstruct @@ -1,102 +1,102 @@ import os import sys USE_GCC = 1; NDEBUG = 1; -PROFILE = 1; +PROFILE = 0; APPLICATION_NAME = 'Irrlicht'; LIBRARIES =...
paupawsan/Irrlicht
2e794c7357d748ca7ceefdcb1fa3aec77de4cc14
Make driver choice look like the one from the provided header file. Make a variable const.
diff --git a/examples/02.Quake3Map/main.cpp b/examples/02.Quake3Map/main.cpp index 55eb19c..24aa6b6 100644 --- a/examples/02.Quake3Map/main.cpp +++ b/examples/02.Quake3Map/main.cpp @@ -1,206 +1,206 @@ /** Example 002 Quake3Map This Tutorial shows how to load a Quake 3 map into the engine, create a SceneNode for...
paupawsan/Irrlicht
e7d4082c146448ae871ac11d15ffa4d74b0fd570
Documentation: Autoscrolling in IGUIListBox does not actually jump to last added item. Which is a missing feature, but at least now documented correct.
diff --git a/include/IGUIListBox.h b/include/IGUIListBox.h index 64c02ac..9f53745 100644 --- a/include/IGUIListBox.h +++ b/include/IGUIListBox.h @@ -1,130 +1,130 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright n...
paupawsan/Irrlicht
70ac0921fa10bfd90b1ee8c00d59351af5140430
Document real behavior for EGET_LISTBOX_CHANGED and EGET_LISTBOX_SELECTED_AGAIN. The problem was mentioned by xDan and has bug-id: 2935595 It should be fixed in the future, but the current behavior is necessary for the file-open dialog at the moment, so that has to be changed first.
diff --git a/include/IEventReceiver.h b/include/IEventReceiver.h index ee8bb73..0ca2245 100644 --- a/include/IEventReceiver.h +++ b/include/IEventReceiver.h @@ -1,483 +1,485 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see...
paupawsan/Irrlicht
8487d0d02923d3228c68aa7c00959fb87a060300
Consistently eat events in CGUIFileOpenDialog (mentioned by squisher).
diff --git a/source/Irrlicht/CGUIFileOpenDialog.cpp b/source/Irrlicht/CGUIFileOpenDialog.cpp index 8f6894e..2f22387 100644 --- a/source/Irrlicht/CGUIFileOpenDialog.cpp +++ b/source/Irrlicht/CGUIFileOpenDialog.cpp @@ -1,398 +1,399 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht E...
paupawsan/Irrlicht
cb7424c0b5f7484644446a091fd410570d0a821a
Add hint about supported zip file encryption and compression.
diff --git a/include/IFileSystem.h b/include/IFileSystem.h index ed798c8..39e49ad 100644 --- a/include/IFileSystem.h +++ b/include/IFileSystem.h @@ -1,317 +1,319 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions of distribution and use, see copyright n...
paupawsan/Irrlicht
3232c659a752079f0f9eae531775171c5a935412
Avoid direct3d warning if no surface is intentionally cleared.
diff --git a/source/Irrlicht/CD3D8Driver.cpp b/source/Irrlicht/CD3D8Driver.cpp index 77e4893..a92b8a4 100644 --- a/source/Irrlicht/CD3D8Driver.cpp +++ b/source/Irrlicht/CD3D8Driver.cpp @@ -1,957 +1,960 @@ // Copyright (C) 2002-2009 Nikolaus Gebhardt // This file is part of the "Irrlicht Engine". // For conditions ...
paupawsan/Irrlicht
d0003484378edef54859b5c92e560a9c128b0cf8
Ensure that createMeshWith* always creates unique vertices. Slightly refactored the tangent creation, which is now also possible on demand.
diff --git a/examples/11.PerPixelLighting/main.cpp b/examples/11.PerPixelLighting/main.cpp index 3e3b25f..72f7461 100644 --- a/examples/11.PerPixelLighting/main.cpp +++ b/examples/11.PerPixelLighting/main.cpp @@ -1,485 +1,485 @@ /** Example 011 Per-Pixel Lighting This tutorial shows how to use one of the built in...
tinku99/ahkdll
c8a1fd5186bd4cad716b506d9f9cd9a158652f80
removing more clipboard stuff
diff --git a/source/clipboard.cpp b/source/clipboard.cpp index fa8c15d..b253d5c 100644 --- a/source/clipboard.cpp +++ b/source/clipboard.cpp @@ -1,513 +1,516 @@ /* AutoHotkey Copyright 2003-2009 Chris Mallett (support@autohotkey.com) This program is free software; you can redistribute it and/or modify it under...
tinku99/ahkdll
ec73d985ae21bcd3945ff7e4072a8416b273ae94
remove clipboard functionality remove time idle variables
diff --git a/README b/README index b7f8347..5b632bc 100644 --- a/README +++ b/README @@ -1,183 +1,181 @@ -builds at home -runs only at work 07.10.2012 - Merged latest AutoHotkey_L changes from https://github.com/Lexikos/AutoHotkey_L. - OnMessage accepts optionally a window handle now, e.g. OnMessage(0x200,hwnd,"WM_M...
tinku99/ahkdll
e1d311283c34bd85a2c61056451154d13b77ee4e
modified: source/script2.cpp
diff --git a/source/script2.cpp b/source/script2.cpp index ad444f1..602d20c 100644 --- a/source/script2.cpp +++ b/source/script2.cpp @@ -10925,1035 +10925,1047 @@ ResultType Line::SetToggleState(vk_type aVK, ToggleValueType &ForceLock, LPTSTR // Misc lower level functions // //////////////////////////////// HWND L...
tinku99/ahkdll
d9bbf67d498d7174523a37f06574506c65b19827
modified: .gitignore
diff --git a/.gitignore b/.gitignore index 9ce5f66..dbbaff3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,14 @@ AutoHotkey.sdf *.opensdf *.dll *.suo AutoHotkey.suo AutoHotkey.vcxproj.user ComServer_h.h ComServer_i.c Test bin ipch temp +MDtemp +MDbin diff --git a/AutoHotkey.sln b/AutoHot...
tinku99/ahkdll
57d1d2d01a5d4ce22b55c553b00f87e793bdc227
modified: README
diff --git a/AutoHotkey.vcxproj b/AutoHotkey.vcxproj index 1ac196a..48320fb 100644 --- a/AutoHotkey.vcxproj +++ b/AutoHotkey.vcxproj @@ -1,644 +1,644 @@ <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Prope...
tinku99/ahkdll
46f176d800715603c07dcfc464695ffef8e658cc
WinApi added psapi.dll
diff --git a/source/resources/WINAPI.zip b/source/resources/WINAPI.zip index 6151cff..09b3c5b 100644 Binary files a/source/resources/WINAPI.zip and b/source/resources/WINAPI.zip differ
tinku99/ahkdll
de1a106a1c420819996afd0de324969b505ef9bc
Zero memory used when reading script
diff --git a/source/TextIO.h b/source/TextIO.h index 4b4e9fe..290abb3 100644 --- a/source/TextIO.h +++ b/source/TextIO.h @@ -1,356 +1,359 @@ #pragma once #define TEXT_IO_BLOCK 8192 #ifndef CP_UTF16 #define CP_UTF16 1200 // the codepage of UTF-16LE #endif #ifdef UNICODE #define W_OR_A(n) n##W #else #defi...
tinku99/ahkdll
e28b6f43c23ece8d216b308c49ecd80ef68d6fb9
Zero memory in litezip
diff --git a/source/LiteUnzip.c b/source/LiteUnzip.c index 17a3c86..900fd3f 100644 --- a/source/LiteUnzip.c +++ b/source/LiteUnzip.c @@ -1846,1611 +1846,1641 @@ static int inflate(Z_STREAM * z, int f) z->state->mode = IM_DICT4; } case IM_DICT4: { IM_NEEDBYTE z->state->sub.check.need = (ULG)...
tinku99/ahkdll
cdbd556f64b3a6b977089350dbc3d4598b839e48
BugFix for compressed source
diff --git a/source/script.cpp b/source/script.cpp index 9a1a382..f661ade 100644 --- a/source/script.cpp +++ b/source/script.cpp @@ -2512,2873 +2512,2921 @@ ResultType Script::LoadIncludedText(LPTSTR aScript,LPCTSTR aPathToShow) one_char_string[0] = g_DerefChar; two_char_string[0] = g_EscapeChar; two_...
tinku99/ahkdll
7c3ba7df325717ae88d113b42aea98347174ba2b
Protect compiled sources
diff --git a/source/script.cpp b/source/script.cpp index b1845f2..9a1a382 100644 --- a/source/script.cpp +++ b/source/script.cpp @@ -2981,1082 +2981,1090 @@ examine_line: if (!_tcsicmp(remap_dest, _T("Return"))) break; goto continue_main_loop; // It will see that remap_dest_vk is non-zero and act ...
tinku99/ahkdll
ff764ac59e470a37f8ca878903ab00b4012bff50
/iLib support for WinApi and Resource library
diff --git a/source/script.cpp b/source/script.cpp index b982772..b1845f2 100644 --- a/source/script.cpp +++ b/source/script.cpp @@ -9671,1162 +9671,1202 @@ ResultType Script::DefineClassVars(LPTSTR aBuf, bool aStatic) break; case ':': if (item_end[1] == '=') { item_end += 2; // Point to the charact...
tinku99/ahkdll
8762efcd5ed397d403112679b81e567e71162156
Added A_IsMini and fixed getvar() to return alias pointer
diff --git a/source/lowlevelbif.cpp b/source/lowlevelbif.cpp index d859c03..16be9ef 100644 --- a/source/lowlevelbif.cpp +++ b/source/lowlevelbif.cpp @@ -1,133 +1,136 @@ #include "stdafx.h" // pre-compiled headers #include "globaldata.h" // for access to many global vars #include "application.h" // for MsgSleep() #i...
tinku99/ahkdll
284ea15e1184d405345cea45b8532d44b53ffbaa
Bug fix in Struct
diff --git a/source/script_struct.cpp b/source/script_struct.cpp index e620c0e..16427e3 100644 --- a/source/script_struct.cpp +++ b/source/script_struct.cpp @@ -1,879 +1,886 @@ #include "stdafx.h" // pre-compiled headers #include "defines.h" #include "application.h" #include "globaldata.h" #include "script.h" #in...
tinku99/ahkdll
fc8f9d39f624e8aeb87237ef85b3e38c27362646
Apply previous type for Struct "LPTSTR a,b"
diff --git a/source/script_struct.cpp b/source/script_struct.cpp index 6549e9b..e620c0e 100644 --- a/source/script_struct.cpp +++ b/source/script_struct.cpp @@ -1,743 +1,744 @@ #include "stdafx.h" // pre-compiled headers #include "defines.h" #include "application.h" #include "globaldata.h" #include "script.h" #in...
tinku99/ahkdll
739e4152f161cc8bbd91d45bf8d210843adf6a34
Revert "Bug fix pointers in Struct "*UInt int1,int2""
diff --git a/source/script_struct.cpp b/source/script_struct.cpp index d079742..6549e9b 100644 --- a/source/script_struct.cpp +++ b/source/script_struct.cpp @@ -1,746 +1,743 @@ #include "stdafx.h" // pre-compiled headers #include "defines.h" #include "application.h" #include "globaldata.h" #include "script.h" #in...
tinku99/ahkdll
6b6e56ab7d9f86725a8721b28153c05af5639cda
Bug fix pointers in Struct "*UInt int1,int2"
diff --git a/source/script_struct.cpp b/source/script_struct.cpp index 6549e9b..d079742 100644 --- a/source/script_struct.cpp +++ b/source/script_struct.cpp @@ -1,743 +1,746 @@ #include "stdafx.h" // pre-compiled headers #include "defines.h" #include "application.h" #include "globaldata.h" #include "script.h" #in...
tinku99/ahkdll
d3b619be37ecd1105d30a541eec17a5ffea83167
Fixed using pointers in Struct and small Fix for Sort
diff --git a/source/script2.cpp b/source/script2.cpp index 98a9904..6d7bd01 100644 --- a/source/script2.cpp +++ b/source/script2.cpp @@ -7496,1026 +7496,1034 @@ ResultType Line::SplitPath(LPTSTR aFileSpec) if (!ext_dot) output_var_ext->Assign(); else if (!output_var_ext->Assign(ext_dot + 1)) // Can be emp...
tinku99/ahkdll
1487538246ac0b0a774d8b5c9ce89f28be5b7b20
Small WinApi fix
diff --git a/source/resources/WINAPI.zip b/source/resources/WINAPI.zip index b4cea80..6151cff 100644 Binary files a/source/resources/WINAPI.zip and b/source/resources/WINAPI.zip differ diff --git a/source/script.cpp b/source/script.cpp index 2ef99e9..9e89ab3 100644 --- a/source/script.cpp +++ b/source/script.cpp @@ -96...
tinku99/ahkdll
591ec8306fd2623614f73e12526fced343d13a18
#DllImport terminate parameters
diff --git a/source/util.cpp b/source/util.cpp index ecc1c41..d57743d 100644 --- a/source/util.cpp +++ b/source/util.cpp @@ -2346,808 +2346,809 @@ HBITMAP IconToBitmap(HICON ahIcon, bool aDestroyIcon) HBITMAP hbitmap = NULL; // Set default. This will be the value returned. HDC hdc_desktop = GetDC(HWND_DESKTOP...
tinku99/ahkdll
dfe0becdf14c25735d29b250151792b1ab675fdd
WinApi TCHAR update and some improvements
diff --git a/source/AutoHotkey.cpp b/source/AutoHotkey.cpp index c499542..fe2ab86 100644 --- a/source/AutoHotkey.cpp +++ b/source/AutoHotkey.cpp @@ -1,346 +1,345 @@ /* AutoHotkey Copyright 2003-2009 Chris Mallett (support@autohotkey.com) This program is free software; you can redistribute it and/or modify it u...
tinku99/ahkdll
9f19362b0afac35fa2b1a9137fa7ef821ebbca04
Deleted and added some WinApi functions
diff --git a/source/resources/WINAPI.zip b/source/resources/WINAPI.zip index 6f2a4fc..b4cea80 100644 Binary files a/source/resources/WINAPI.zip and b/source/resources/WINAPI.zip differ
tinku99/ahkdll
862e300e4e9bb41d2361e9837c421c5b59ab6df2
Show only first line of file in ListLines for ahkdll
diff --git a/source/script.cpp b/source/script.cpp index 0118def..5ad23fd 100644 --- a/source/script.cpp +++ b/source/script.cpp @@ -17995,1686 +17995,1750 @@ __forceinline ResultType Line::Perform() // As of 2/9/2009, __forceinline() redu g.IntervalBeforeRest = -1; // Disable the new method in favor of the old on...