mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2025-12-16 01:02:34 +00:00
Fixed ICO implementation having a top and left offset for bitmap images, icons are now fetched at start up instead of statically being included (More work needed to fetch them after logging), fixed importer incorrectly storing executable basename instead of dirname
This commit is contained in:
@@ -36,7 +36,11 @@ class W3DHub
|
||||
def self.package_path(category, subcategory, name, version)
|
||||
package_cache_dir = Store.settings[:package_cache_dir]
|
||||
|
||||
"#{package_cache_dir}/#{category}/#{subcategory}/#{version}/#{name}.package"
|
||||
if version.to_s.length.zero?
|
||||
"#{package_cache_dir}/#{category}/#{subcategory}/#{name}.package"
|
||||
else
|
||||
"#{package_cache_dir}/#{category}/#{subcategory}/#{version}/#{name}.package"
|
||||
end
|
||||
end
|
||||
|
||||
def self.install_path(application, channel)
|
||||
|
||||
Reference in New Issue
Block a user