Compare commits

...

4 Commits

4 changed files with 22 additions and 21 deletions

View File

@ -13,19 +13,15 @@ end
function xqcheck -d "Quickly lints our packages" function xqcheck -d "Quickly lints our packages"
xqdir xqdir
set f (mktemp) begin
./xbps-src update-check (xqsrcpkgs) > "$f" for pkg in (xqsrcpkgs)
xlint srcpkgs/{(xqsrcpkgs)}/template > "$f" ./xbps-src update-check $pkg
less "$f" xlint srcpkgs/$pkg/template
rm "$f" end
end 2>&1 | tee /tmp/xqcheck.log | less +F
end end
function xqrebuild -d "Rebuild some of our srcpkgs" function xqrebuild -d "Rebuild some of our srcpkgs"
xqdir xqdir
set f (mktemp) xbulk $argv 2>&1 | tee /tmp/xqrebuild.log | less +F
xbulk $argv 2> "$f"
if test -s "$f"
less "$f"
end
rm "$f"
end end

View File

@ -13,6 +13,7 @@ filter_installed = False
view_type = grid view_type = grid
left_side_panel_visible = False left_side_panel_visible = False
right_side_panel_visible = False right_side_panel_visible = False
hide-wine-non-esync-version-warning = True
[list view] [list view]
name_column_width = 200 name_column_width = 200

View File

@ -10,7 +10,7 @@ Core:
SPU Decoder: Recompiler (LLVM) SPU Decoder: Recompiler (LLVM)
Lower SPU thread priority: false Lower SPU thread priority: false
SPU Debug: false SPU Debug: false
Preferred SPU Threads: 0 Preferred SPU Threads: 6
SPU delay penalty: 3 SPU delay penalty: 3
SPU loop detection: true SPU loop detection: true
Max SPURS Threads: 6 Max SPURS Threads: 6
@ -18,7 +18,8 @@ Core:
Accurate GETLLAR: false Accurate GETLLAR: false
Accurate PUTLLUC: false Accurate PUTLLUC: false
SPU Verification: true SPU Verification: true
SPU Cache: true SPU Cache: false
SPU Profiler: false
Enable TSX: Enabled Enable TSX: Enabled
Accurate xfloat: false Accurate xfloat: false
Approximate xfloat: true Approximate xfloat: true
@ -69,10 +70,11 @@ Video:
Disable On-Disk Shader Cache: false Disable On-Disk Shader Cache: false
Disable Vulkan Memory Allocator: false Disable Vulkan Memory Allocator: false
Use full RGB output range: true Use full RGB output range: true
Disable Asynchronous Shader Compiler: false Disable Asynchronous Shader Compiler: true
Strict Texture Flushing: false Strict Texture Flushing: false
Disable native float16 support: false Disable native float16 support: false
Multithreaded RSX: true Multithreaded RSX: true
Relaxed ZCULL Sync: false
Consecutive Frames To Draw: 1 Consecutive Frames To Draw: 1
Consecutive Frames To Skip: 1 Consecutive Frames To Skip: 1
Resolution Scale: 100 Resolution Scale: 100
@ -80,14 +82,14 @@ Video:
Minimum Scalable Dimension: 16 Minimum Scalable Dimension: 16
Driver Recovery Timeout: 1000000 Driver Recovery Timeout: 1000000
Vblank Rate: 60 Vblank Rate: 60
D3D12:
Adapter: ""
Vulkan: Vulkan:
Adapter: AMD RADV POLARIS11 (LLVM 9.0.0) Adapter: Radeon RX 590 Series
Force FIFO present mode: false Force FIFO present mode: false
Force primitive restart flag: false Force primitive restart flag: false
Performance Overlay: Performance Overlay:
Enabled: false Enabled: false
Enable Framerate Graph: false
Enable Frametime Graph: false
Detail level: Medium Detail level: Medium
Metrics update interval (ms): 350 Metrics update interval (ms): 350
Font size (px): 10 Font size (px): 10
@ -109,8 +111,10 @@ Video:
Allow custom background: true Allow custom background: true
Darkening effect strength: 30 Darkening effect strength: 30
Blur effect strength: 0 Blur effect strength: 0
D3D12:
Adapter: ""
Audio: Audio:
Renderer: OpenAL Renderer: PulseAudio
Dump to file: false Dump to file: false
Convert to 16 bit: false Convert to 16 bit: false
Downmix to Stereo: true Downmix to Stereo: true
@ -126,10 +130,10 @@ Audio:
Input/Output: Input/Output:
Keyboard: "Null" Keyboard: "Null"
Mouse: "Null" Mouse: "Null"
Pad: Keyboard
Camera: "Null" Camera: "Null"
Camera type: Unknown Camera type: Unknown
Move: "Null" Move: "Null"
Pad: Keyboard
System: System:
Language: English (US) Language: English (US)
Keyboard Type: English keyboard (US standard) Keyboard Type: English keyboard (US standard)
@ -148,4 +152,4 @@ Miscellaneous:
Use native user interface: true Use native user interface: true
GDB Server: 127.0.0.1:2345 GDB Server: 127.0.0.1:2345
Port: 2345 Port: 2345
Log: {} Log: {}

View File

@ -175,7 +175,6 @@ endfu
set undolevels=10000 set undolevels=10000
set tabpagemax=1000 set tabpagemax=1000
set viminfo='100,/50,<50,s10,h,% set viminfo='100,/50,<50,s10,h,%
set viminfo+=n~/.vim/viminfo
set encoding=utf-8 set encoding=utf-8
set termencoding=utf-8 set termencoding=utf-8
set fileencodings=ucs-bom,utf-8,sjis set fileencodings=ucs-bom,utf-8,sjis
@ -390,6 +389,7 @@ else
" swap files " swap files
set directory=$HOME/.vim/temp// set directory=$HOME/.vim/temp//
set viminfo+=n$HOME/.vim/viminfo
endif endif
if _agw.use_rainbow != 0 if _agw.use_rainbow != 0