https://bugs.winehq.org/show_bug.cgi?id=38289
Bug ID: 38289
Summary: cmd replacement is unable to display a bat file script
correctly.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: njls.yoshi2(a)gmail.com
Distribution: ---
Created attachment 51122
--> https://bugs.winehq.org/attachment.cgi?id=51122
Example batch
The amended Wine cmd.exe (version 6.1.7601 [1.6.2]) is unable to display a
batch script to emulate written text to a command line (script attached).
The script runs true in sequence if perused, however, the line where the text
should be displayed, yields the characters, "a~0,1", which is a defined
argument (expressed in attached script), but not the correct output.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=32449
Bug #: 32449
Summary: QGIS err:module:import
Product: Wine
Version: 1.5.19
Platform: x86
URL: http://hub.qgis.org/projects/quantum-gis/wiki/Download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: guy.roussin(a)teledetection.fr
Classification: Unclassified
Created attachment 42810
--> http://bugs.winehq.org/attachment.cgi?id=42810
Error log when launching qgis 1.8.0-1 on wine 1.5.19
Hi,
QuantumGIS is an open source software which run very fine on linux.
Today, i try the windows version on a quantal 32 bits chroot on my debian sid
amd64.
http://qgis.org/downloads/QGIS-OSGeo4W-1.8.0-1-Setup.exe
I get this error when launching qgis :
(see attachment)
I get the same error with PlayOnLinux ...
Thank you,
Guy
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47486
Bug ID: 47486
Summary: GsView draws one menu item with white background
Product: Wine
Version: 4.11
Hardware: x86
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: dark.shadow4(a)web.de
Distribution: ---
Created attachment 64866
--> https://bugs.winehq.org/attachment.cgi?id=64866
Screenshot on wine
See screenshot.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47071
Bug ID: 47071
Summary: Nest or mixed "FOR" and "IF" command sometimes get
different result in Wine and Windows.
Product: Wine
Version: 3.0
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: mzidbh(a)hotmail.com
Distribution: ---
Created attachment 64257
--> https://bugs.winehq.org/attachment.cgi?id=64257
batch files and snapshots of execution result
The Wine's command interpreter seems to ...
1. could not pair "IF" and "ELSE" correctly. ( Case 1 4 )
2. would ignore scripts after inner "ELSE". ( Case 2 3 )
Case 1
========================================
@ECHO OFF
ECHO FOR in IF 01 :
IF 1 EQU 1 (
FOR %%A IN (1,1) DO (
ECHO A=%%A
)
) ELSE (
ECHO This line should NOT be executed.
)
ECHO This line should be executed.
EXIT /B
----------------------------------------
Result in WINE 3.0
----------------------------------------
FOR in IF 01 :
A=1
A=1
Can't recognize 'ELSE ' as an internal or external command, or batch script.
This line should NOT be executed.
This line should be executed.
----------------------------------------
Result in Windows 7
----------------------------------------
FOR in IF 01 :
A=1
A=1
This line should be executed.
========================================
Case ï¼’
========================================
@ECHO OFF
ECHO IF in FOR 01 :
FOR %%A IN (1,1) DO (
IF 1 EQU 1 (
ECHO This line should be executed. [No.1]
) ELSE (
ECHO This line should NOT be executed.
)
ECHO This line should be executed. [No.2]
)
EXIT /B
----------------------------------------
Result in WINE 3.0
----------------------------------------
IF in FOR 01 :
This line should be executed. [No.1]
This line should be executed. [No.1]
----------------------------------------
Result in Windows 7
----------------------------------------
IF in FOR 01 :
This line should be executed. [No.1]
This line should be executed. [No.2]
This line should be executed. [No.1]
This line should be executed. [No.2]
========================================
Case 3
========================================
@ECHO OFF
ECHO IF in IF 01 :
IF 1 EQU 1 (
IF 1 EQU 1 (
ECHO This line should be executed. [No.1]
) ELSE (
ECHO This line should NOT be executed. [No.1]
)
ECHO This line should be executed. [No.2]
) ELSE (
ECHO This line should NOT be executed. [No.2]
)
EXIT /B
----------------------------------------
Result in WINE 3.0
----------------------------------------
IF in IF 01 :
This line should be executed. [No.1]
----------------------------------------
Result in Windows 7
----------------------------------------
IF in IF 01 :
This line should be executed. [No.1]
This line should be executed. [No.2]
========================================
Case ï¼”
========================================
@ECHO OFF
ECHO IF in IF 04 :
IF 4 EQU 4 (
IF 4 EQU 5 CALL :Label1
ECHO This line should be executed. [No.1]
) ELSE (
ECHO This line should NOT be executed. [No.2]
)
GOTO :Label2
:Label1
ECHO This line should NOT be executed. [No.1]
GOTO :EOF
:Label2
EXIT /B
----------------------------------------
Result in WINE 3.0
----------------------------------------
IF in IF 04 :
This line should NOT be executed. [No.2]
----------------------------------------
Result in Windows 7
----------------------------------------
IF in IF 04 :
This line should be executed. [No.1]
========================================
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=47798
Bug ID: 47798
Summary: Incorrect substring result using
enableDelayedExpansion
Product: Wine
Version: 4.16
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: lois.diqual(a)gmail.com
Distribution: ---
Created attachment 65289
--> https://bugs.winehq.org/attachment.cgi?id=65289
Test file
Batch variable substring yields incorrect results when using
enableDelayedExpansion.
setlocal enableDelayedExpansion
set foo=bar
echo "!foo:~0,2!"
endlocal
Expected output: "ba"
Actual output:
- Wine cmd: "~0,2"
- Windows cmd: "ba"
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=43337
Bug ID: 43337
Summary: Conditional command with parentheses not working.
Product: Wine
Version: unspecified
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: cmd
Assignee: wine-bugs(a)winehq.org
Reporter: distjubo(a)gmail.com
Distribution: ---
If a conditional command contains parentheses, it fails to execute properly.
Example 1:
Command:
echo C:\Program Files (x86)\
Output:
C:\Program Files (x86)\
Example 2:
Command:
if ""=="" echo C:\Program Files (x86)\
Example 2 fails to execute. On Windows, the output of Example 1 and Example 2
are identical, but wine complains about not having found the command "x86".
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=44063
Bug ID: 44063
Summary: Parentheses cause cmd.exe failing to recognize '2>&1'
Product: Wine
Version: 2.20
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: jhasse(a)gmail.com
Distribution: ---
On Windows
cmd.exe /C "(echo foo) 2>&1"
works (only outputs "foo"), while on wine it results in:
foo
Can't recognize '2' as an internal or external command, or batch script.
and a non-zero exit code. Removing the parenthesis would work:
wine cmd.exe /C "echo foo 2>&1"
I need them though, since I want to do stuff like this:
wine cmd.exe /C "(echo foo && echo bar) 2>&1"
Maybe related: https://bugs.winehq.org/show_bug.cgi?id=43337
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21806
Summary: Star Wars Empire at War: Demo crashes during battles
Product: Wine
Version: 1.1.39
Platform: x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=26385)
--> (http://bugs.winehq.org/attachment.cgi?id=26385)
Tutorial 1 debugs, pagefaults, backtraces...
This seems to affect the game any time you are going into battle. At the
loading screen the game will issue a exception.
You have two choices, retry or cancel. I've provided a backtrace log that
results from each selection - as well as the game's built debugger log.
For anyone wishing to confirm, just try Tutorial 1. It will crash in under
2mins. The other tutorials may crash too, but not nearly as often since there's
not many battles to load. I was using the Demo CD I got in a promo.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=42698
Bug ID: 42698
Summary: FL Studio 12.4 setup does not show cursor
Product: Wine
Version: 2.4
Hardware: x86-64
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: seanaubin(a)gmail.com
Distribution: ---
Running Linux Kernel 4.4.0 on Linux Mint 18 and installing FL Studio 12.4, the
cursor does not display during the install.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.
https://bugs.winehq.org/show_bug.cgi?id=46734
Bug ID: 46734
Summary: EditPad Pro 7: Cannot read/capture host (Linux)
application's stdout/stderr to display in its message
panel
Product: Wine
Version: 2.19
Hardware: x86
OS: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
Assignee: wine-bugs(a)winehq.org
Reporter: clay_dakota(a)yahoo.com
Distribution: ---
Created attachment 63726
--> https://bugs.winehq.org/attachment.cgi?id=63726
Python script to write "Hello World" to stdout.
Distribution: Linux Mint 17.3 ; 32-bit ; Trusty ; MATE Desktop
AppDB App: EditPad Pro 7
AppDB Entry: #8392
Wine Ver w/o Bug: 2.18 (devel) & 2.04 (stable)
Wine Ver w/ Bug: 2.19 (devel) & 3.04 (stable) & 4.0 (stable)
Steps to reproduce:
* Download EditPad Pro free trial version 7.6.5 and install
- URL: http://download.jgsoft.com/editpad/SetupEditPadProDemo.exe
* Install Wine 2.18 (devel)
* Run EditPad Pro (EPP) from Wine
- Executable: EditPadPro7.exe
* From the EPP menu, go to Tools -> Configure Tools
* Import the EPP Tool configuration file
- Attachment: RunWithPython.ini
* Open the Python source file
- Attachment: hello.py
* From the EPP menu, go to Tools -> Run w/ Python
* Will see the Python script's output in EPP's message panel as expected
- See attachment: EPP_Wine2.18_WithoutBug.png
* See Wine 2.18's terminal output file to see that the output did not go to
the terminal as expected
- Attachment: Con_Wine2.18_WithoutBug.out
* Install Wine 2.19 (devel)
* Run EditPad Pro (EPP) from Wine
- Executable: EditPadPro7.exe
* Open the Python source file
- Attachment: hello.py
* From the EPP menu, go to Tools -> Run w/ Python
* Will not see the Python script's output in EPP's message panel
- See attachment: EPP_Wine2.19_WithBug.png
* See Wine 2.19's terminal output file to see that the output went to the
terminal instead of EPP's message panel
- Attachment: Con_Wine2.19_WithBug.out
Note: This bug *may* be related to bug 23596. However, bug 23596 is reported
against Wine version: 1.2-rc7.
--
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.